Module: Mesa Branch: master Commit: a8bdf0e0c4c792634551c14e2dd02d72b75a8db5 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a8bdf0e0c4c792634551c14e2dd02d72b75a8db5
Author: Timothy Arceri <[email protected]> Date: Wed Nov 8 15:43:16 2017 +1100 radeonsi: copy some nir gs info v2: copy input primitive Reviewed-by: Nicolai Hähnle <[email protected]> --- src/gallium/drivers/radeonsi/si_shader_nir.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/gallium/drivers/radeonsi/si_shader_nir.c b/src/gallium/drivers/radeonsi/si_shader_nir.c index 847d75ba14..5d82715f7a 100644 --- a/src/gallium/drivers/radeonsi/si_shader_nir.c +++ b/src/gallium/drivers/radeonsi/si_shader_nir.c @@ -139,6 +139,13 @@ void si_nir_scan_shader(const struct nir_shader *nir, info->num_inputs = nir->num_inputs; info->num_outputs = nir->num_outputs; + if (nir->info.stage == MESA_SHADER_GEOMETRY) { + info->properties[TGSI_PROPERTY_GS_INPUT_PRIM] = nir->info.gs.input_primitive; + info->properties[TGSI_PROPERTY_GS_OUTPUT_PRIM] = nir->info.gs.output_primitive; + info->properties[TGSI_PROPERTY_GS_MAX_OUTPUT_VERTICES] = nir->info.gs.vertices_out; + info->properties[TGSI_PROPERTY_GS_INVOCATIONS] = nir->info.gs.invocations; + } + i = 0; nir_foreach_variable(variable, &nir->inputs) { unsigned semantic_name, semantic_index; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
