radv: Allow NGG culling with LLVM.

Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28430>
This commit is contained in:
Timur Kristóf
2024-03-27 16:09:50 +01:00
committed by Marge Bot
parent af2a0ea452
commit c32401f49b

View File

@@ -1721,10 +1721,8 @@ radv_determine_ngg_settings(struct radv_device *device, struct radv_shader_stage
: 3;
}
/* TODO: Enable culling for LLVM. */
es_stage->info.has_ngg_culling = radv_consider_culling(device->physical_device, es_stage->nir, ps_inputs_read,
num_vertices_per_prim, &es_stage->info) &&
!radv_use_llvm_for_stage(device, es_stage->stage);
num_vertices_per_prim, &es_stage->info);
nir_function_impl *impl = nir_shader_get_entrypoint(es_stage->nir);
es_stage->info.has_ngg_early_prim_export = exec_list_is_singular(&impl->body);