Mesa (master): i965: Remove MIPLAYOUT_BELOW from Gen4-6 constant buffer surface state.

Kenneth Graunke kwg at kemper.freedesktop.org
Tue Sep 17 20:17:27 UTC 2013


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

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Fri Sep 13 20:01:08 2013 -0700

i965: Remove MIPLAYOUT_BELOW from Gen4-6 constant buffer surface state.

Specifying a miptree layout makes no sense for constant buffers.

This has no functional change since BRW_SURFACE_MIPMAPLAYOUT_BELOW is
just a #define for 0.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Paul Berry <stereotype441 at gmail.com>

---

 src/mesa/drivers/dri/i965/brw_wm_surface_state.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
index 25db2e0..8d87786 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
@@ -318,7 +318,6 @@ brw_create_constant_surface(struct brw_context *brw,
 			  6 * 4, 32, out_offset);
 
    surf[0] = (BRW_SURFACE_BUFFER << BRW_SURFACE_TYPE_SHIFT |
-	      BRW_SURFACE_MIPMAPLAYOUT_BELOW << BRW_SURFACE_MIPLAYOUT_SHIFT |
 	      BRW_SURFACEFORMAT_R32G32B32A32_FLOAT << BRW_SURFACE_FORMAT_SHIFT);
 
    if (brw->gen >= 6)




More information about the mesa-commit mailing list