mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-24 05:00:48 +02:00
radv: constify radv_shader_info in radv_declare_shader_args()
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13542>
This commit is contained in:
parent
096c02bcf5
commit
5a94271069
2 changed files with 2 additions and 2 deletions
|
|
@ -514,7 +514,7 @@ is_pre_gs_stage(gl_shader_stage stage)
|
|||
|
||||
void
|
||||
radv_declare_shader_args(const struct radv_nir_compiler_options *options,
|
||||
struct radv_shader_info *info, gl_shader_stage stage,
|
||||
const struct radv_shader_info *info, gl_shader_stage stage,
|
||||
bool has_previous_stage, gl_shader_stage previous_stage,
|
||||
struct radv_shader_args *args)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -64,6 +64,6 @@ struct radv_nir_compiler_options;
|
|||
struct radv_shader_info;
|
||||
|
||||
void radv_declare_shader_args(const struct radv_nir_compiler_options *options,
|
||||
struct radv_shader_info *info, gl_shader_stage stage,
|
||||
const struct radv_shader_info *info, gl_shader_stage stage,
|
||||
bool has_previous_stage, gl_shader_stage previous_stage,
|
||||
struct radv_shader_args *args);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue