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:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user