radv: do not set gs.has_pipeline_stat_query twice for NGG GS

It's already initialized in gather_shader_info_gs().

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27722>
This commit is contained in:
Samuel Pitoiset
2024-02-15 10:38:58 +01:00
committed by Marge Bot
parent 6c1e82e309
commit 7f8a84a024
-1
View File
@@ -1574,7 +1574,6 @@ gfx10_get_ngg_query_info(const struct radv_device *device, struct radv_shader_st
{
struct radv_shader_info *info = gs_stage ? &gs_stage->info : &es_stage->info;
info->gs.has_pipeline_stat_query = device->physical_device->emulate_ngg_gs_query_pipeline_stat && !!gs_stage;
info->has_xfb_query = gs_stage ? !!gs_stage->nir->xfb_info : !!es_stage->nir->xfb_info;
info->has_prim_query = device->cache_key.primitives_generated_query || info->has_xfb_query;
}