mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
i965: Fix occlusion query when no other WM state updates occur.
Turns out that XXX comment was important. We weren't flagging the WM to re-update with the statistics enable, so we got zeroes out of our query. Bug #20740, fixes piglit occlusion_query test. Signed-off-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
1a28750b43
commit
c0d6e07909
1 changed files with 3 additions and 2 deletions
|
|
@ -113,7 +113,7 @@ wm_unit_populate_key(struct brw_context *brw, struct brw_wm_unit_key *key)
|
|||
/* temporary sanity check assertion */
|
||||
ASSERT(bfp->isGLSL == brw_wm_is_glsl(fp));
|
||||
|
||||
/* XXX: This needs a flag to indicate when it changes. */
|
||||
/* _NEW_DEPTH */
|
||||
key->stats_wm = intel->stats_wm;
|
||||
|
||||
/* _NEW_LINE */
|
||||
|
|
@ -282,7 +282,8 @@ const struct brw_tracked_state brw_wm_unit = {
|
|||
.mesa = (_NEW_POLYGON |
|
||||
_NEW_POLYGONSTIPPLE |
|
||||
_NEW_LINE |
|
||||
_NEW_COLOR),
|
||||
_NEW_COLOR |
|
||||
_NEW_DEPTH),
|
||||
|
||||
.brw = (BRW_NEW_FRAGMENT_PROGRAM |
|
||||
BRW_NEW_CURBE_OFFSETS |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue