radeonsi: fix a regression due to reordering PIPE_SHADER_*

Fixes: 27f46465c7 - gallium/tgsi: reorder pipe shader type defines.

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17902>
This commit is contained in:
Marek Olšák
2022-08-04 21:58:22 -04:00
committed by Marge Bot
parent 7e45622728
commit bdfaf51014
+2 -2
View File
@@ -1055,10 +1055,10 @@ struct si_context {
union {
struct {
struct si_shader_ctx_state vs;
struct si_shader_ctx_state ps;
struct si_shader_ctx_state gs;
struct si_shader_ctx_state tcs;
struct si_shader_ctx_state tes;
struct si_shader_ctx_state gs;
struct si_shader_ctx_state ps;
} shader;
/* indexed access using pipe_shader_type (not by MESA_SHADER_*) */
struct si_shader_ctx_state shaders[SI_NUM_GRAPHICS_SHADERS];