From: Jason Ekstrand Date: Fri, 14 Sep 2018 21:34:22 +0000 (-0500) Subject: anv/query: Write both dwords in emit_zero_queries X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=07e214f1ce263edcecb674d6d2f48569fa1d12ed;p=mesa.git anv/query: Write both dwords in emit_zero_queries Each query slot is a uint64_t and we were only zeroing half of it. Fixes: 7ec6e4e68980 "anv/query: implement multiview interactions" Reviewed-by: Lionel Landwerlin --- diff --git a/src/intel/vulkan/genX_query.c b/src/intel/vulkan/genX_query.c index 1b26401c9ff..817a3a3c4e2 100644 --- a/src/intel/vulkan/genX_query.c +++ b/src/intel/vulkan/genX_query.c @@ -347,6 +347,11 @@ emit_zero_queries(struct anv_cmd_buffer *cmd_buffer, sdi.Address.offset = slot_offset + j * sizeof(uint64_t); sdi.ImmediateData = 0ull; } + anv_batch_emit(&cmd_buffer->batch, GENX(MI_STORE_DATA_IMM), sdi) { + sdi.Address.bo = &pool->bo; + sdi.Address.offset = slot_offset + j * sizeof(uint64_t) + 4; + sdi.ImmediateData = 0ull; + } } emit_query_availability(cmd_buffer, &pool->bo, slot_offset); }