From a57f588fa9a376ee7421a612b86c9825a220775f Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Fri, 18 Aug 2017 18:35:57 +0200 Subject: radeonsi/gfx9: set 'not a query' for r600_gfx_write_event_eop correctly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 0 is PIPE_QUERY_OCCLUSION_COUNTER, which is not what we want. Reviewed-by: Nicolai Hähnle --- src/gallium/drivers/radeon/r600_pipe_common.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gallium/drivers/radeon') diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h index c10cf18219e..813ea067f16 100644 --- a/src/gallium/drivers/radeon/r600_pipe_common.h +++ b/src/gallium/drivers/radeon/r600_pipe_common.h @@ -66,6 +66,8 @@ struct u_log_context; /* special primitive types */ #define R600_PRIM_RECTANGLE_LIST PIPE_PRIM_MAX +#define R600_NOT_QUERY 0xffffffff + /* Debug flags. */ /* logging and features */ #define DBG_TEX (1 << 0) -- cgit v1.2.3