From 16b5fda0328abb65f0bf245e28e85b753984e0c3 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 12 Jan 2012 10:13:37 +0000 Subject: [PATCH] softpipe: bump max texture array layers to 256. This as per GL3 specification. Signed-off-by: Dave Airlie --- src/gallium/drivers/softpipe/sp_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c index 37aa5852f62..32408f35cc8 100644 --- a/src/gallium/drivers/softpipe/sp_screen.c +++ b/src/gallium/drivers/softpipe/sp_screen.c @@ -121,7 +121,7 @@ softpipe_get_param(struct pipe_screen *screen, enum pipe_cap param) case PIPE_CAP_VERTEX_ELEMENT_INSTANCE_DIVISOR: return 1; case PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS: - return 64; /* matches core Mesa defaults */ + return 256; /* for GL3 */ case PIPE_CAP_MIN_TEXEL_OFFSET: return -8; case PIPE_CAP_MAX_TEXEL_OFFSET: -- 2.30.2