Mesa (master): softpipe: bump max texture array layers to 256.

Dave Airlie airlied at kemper.freedesktop.org
Thu Jan 12 11:19:13 UTC 2012


Module: Mesa
Branch: master
Commit: 16b5fda0328abb65f0bf245e28e85b753984e0c3
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=16b5fda0328abb65f0bf245e28e85b753984e0c3

Author: Dave Airlie <airlied at redhat.com>
Date:   Thu Jan 12 10:13:37 2012 +0000

softpipe: bump max texture array layers to 256.

This as per GL3 specification.

Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/gallium/drivers/softpipe/sp_screen.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 37aa585..32408f3 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:




More information about the mesa-commit mailing list