Mesa (master): i965: Bump GL_MAX_CUBE_MAP_TEXTURE_SIZE to 8192.

Kenneth Graunke kwg at kemper.freedesktop.org
Wed Feb 19 02:58:50 UTC 2014


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

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Sun Feb  2 02:58:42 2014 -0800

i965: Bump GL_MAX_CUBE_MAP_TEXTURE_SIZE to 8192.

Gen4+ supports 8192x8192 cube maps.  Ivybridge and later can actually
support 16384, but that would place GL_MAX_CUBE_MAP_TEXTURE_SIZE above
GL_MAX_TEXTURE_SIZE, which seems like a bad idea.

(Unfortunately, we can't bump GL_MAX_TEXTURE_SIZE to 16384 without
causing regressions due to awful W-tiled stencil buffer interactions.)

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74130
Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/mesa/drivers/dri/i965/brw_context.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index 50d6ca1..339b493 100644
--- a/src/mesa/drivers/dri/i965/brw_context.c
+++ b/src/mesa/drivers/dri/i965/brw_context.c
@@ -312,7 +312,7 @@ brw_initialize_context_constants(struct brw_context *brw)
    if (ctx->Const.MaxTextureLevels > MAX_TEXTURE_LEVELS)
       ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
    ctx->Const.Max3DTextureLevels = 12; /* 2048 */
-   ctx->Const.MaxCubeTextureLevels = 12;
+   ctx->Const.MaxCubeTextureLevels = 14; /* 8192 */
 
    if (brw->gen >= 7)
       ctx->Const.MaxArrayTextureLayers = 2048;




More information about the mesa-commit mailing list