freedreno/a6xx: disable LRZ when color channels are masked
[mesa.git] / src / gallium / drivers / zink / zink_query.c
index bf046bbb0e92d669403013ed3037cbc8cd359793..0d0c4fe53d0265e5f328cc3da9ab0e6631db590d 100644 (file)
@@ -88,7 +88,7 @@ zink_create_query(struct pipe_context *pctx,
    pool_create.queryType = query->vkqtype;
    pool_create.queryCount = query->num_queries;
    if (query_type == PIPE_QUERY_PRIMITIVES_GENERATED)
-     pool_create.pipelineStatistics = VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT;
+     pool_create.pipelineStatistics = VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT;
 
    VkResult status = vkCreateQueryPool(screen->dev, &pool_create, NULL, &query->query_pool);
    if (status != VK_SUCCESS) {