OSDN Git Service

i965: Fix missing dirty bits in the gen8_sbe_state atom.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 18 Mar 2014 03:17:47 +0000 (20:17 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 8 Apr 2014 06:37:18 +0000 (23:37 -0700)
These are clearly needed---the comments in the function are even present
for each one of them.   I originally had two separate state atoms for
3DSTATE_SBE and 3DSTATE_SBE_SWIZ.  When I combined the functions, I must
have forgotten to add the atoms for 3DSTATE_SBE_SWIZ.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/gen8_sf_state.c

index 0693fee..0a69e70 100644 (file)
@@ -101,11 +101,11 @@ upload_sbe(struct brw_context *brw)
 
 const struct brw_tracked_state gen8_sbe_state = {
    .dirty = {
-      .mesa  = _NEW_LIGHT | _NEW_POINT,
+      .mesa  = _NEW_BUFFERS | _NEW_LIGHT | _NEW_POINT | _NEW_PROGRAM,
       .brw   = BRW_NEW_CONTEXT |
                BRW_NEW_FRAGMENT_PROGRAM |
                BRW_NEW_VUE_MAP_GEOM_OUT,
-      .cache = 0
+      .cache = CACHE_NEW_WM_PROG,
    },
    .emit = upload_sbe,
 };