diff options
author | Lionel Landwerlin <[email protected]> | 2017-08-30 09:07:10 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-08-30 17:59:17 +0100 |
commit | 46213f676e6717931403b5936389161bb953cf77 (patch) | |
tree | 4c8566d177b5bf598fc8f1b6fa068b8294d1a875 /src/mesa/drivers/dri/i965/brw_queryobj.c | |
parent | b83a97a65d16cd28c0763545ee3f78832939237c (diff) |
i965: drop brw->gt in favor of devinfo->gt
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_queryobj.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_queryobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_queryobj.c b/src/mesa/drivers/dri/i965/brw_queryobj.c index 906a68ead1b..bd3f5738eba 100644 --- a/src/mesa/drivers/dri/i965/brw_queryobj.c +++ b/src/mesa/drivers/dri/i965/brw_queryobj.c @@ -95,7 +95,7 @@ brw_write_timestamp(struct brw_context *brw, struct brw_bo *query_bo, int idx) uint32_t flags = PIPE_CONTROL_WRITE_TIMESTAMP; - if (devinfo->gen == 9 && brw->gt == 4) + if (devinfo->gen == 9 && devinfo->gt == 4) flags |= PIPE_CONTROL_CS_STALL; brw_emit_pipe_control_write(brw, flags, @@ -111,7 +111,7 @@ brw_write_depth_count(struct brw_context *brw, struct brw_bo *query_bo, int idx) const struct gen_device_info *devinfo = &brw->screen->devinfo; uint32_t flags = PIPE_CONTROL_WRITE_DEPTH_COUNT | PIPE_CONTROL_DEPTH_STALL; - if (devinfo->gen == 9 && brw->gt == 4) + if (devinfo->gen == 9 && devinfo->gt == 4) flags |= PIPE_CONTROL_CS_STALL; if (devinfo->gen >= 10) { |