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

Author: Kenneth Graunke <[email protected]>
Date:   Thu May  4 01:25:21 2017 -0700

i965: Drop BRW_NEW_BLORP from 3DSTATE_VF atom.

BLORP doesn't program 3DSTATE_VF, since it doesn't use index buffers,
making the setting irrelevant.  So there's no need to re-emit it after
a BLORP operation - the old setting will still be in place.

Reviewed-by: Topi Pohjolainen <[email protected]>

---

 src/mesa/drivers/dri/i965/genX_state_upload.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c 
b/src/mesa/drivers/dri/i965/genX_state_upload.c
index ca05817e19..67873d0643 100644
--- a/src/mesa/drivers/dri/i965/genX_state_upload.c
+++ b/src/mesa/drivers/dri/i965/genX_state_upload.c
@@ -855,8 +855,7 @@ genX(upload_cut_index)(struct brw_context *brw)
 const struct brw_tracked_state genX(cut_index) = {
    .dirty = {
       .mesa  = _NEW_TRANSFORM,
-      .brw   = BRW_NEW_BLORP |
-               BRW_NEW_INDEX_BUFFER,
+      .brw   = BRW_NEW_INDEX_BUFFER,
    },
    .emit = genX(upload_cut_index),
 };

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to