Mesa (master): i965: Bump MaxTexMbytes from 1GB to 1.5GB.

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


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

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Sun Feb  2 03:03:39 2014 -0800

i965: Bump MaxTexMbytes from 1GB to 1.5GB.

Even with the other limits raised, TestProxyTexImage would still reject
textures > 1GB in size.  This is an artificial limit; nothing prevents
us from having a larger texture.  I stayed shy of 2GB to avoid the
larger-than-aperture situation.

For 3D textures, this raises the effective limit:
 - RGBA8:   645 -> 738
 - RGBA16:  512 -> 586
 - RGBA32F: 406 -> 465

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 |    1 +
 1 file changed, 1 insertion(+)

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




More information about the mesa-commit mailing list