From 18aaceae8d1d189e145c0e52c81cba664b4e3fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 10 Jan 2020 17:04:33 -0500 Subject: [PATCH] radeonsi: rename si_shader_info -> si_shader_binary_info Reviewed-by: Timothy Arceri --- src/gallium/drivers/radeonsi/si_shader.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_shader.h b/src/gallium/drivers/radeonsi/si_shader.h index ced395411c0..1699560bc8a 100644 --- a/src/gallium/drivers/radeonsi/si_shader.h +++ b/src/gallium/drivers/radeonsi/si_shader.h @@ -590,7 +590,7 @@ struct si_shader_key { #pragma pack(pop) /* GCN-specific shader info. */ -struct si_shader_info { +struct si_shader_binary_info { ubyte vs_output_param_offset[SI_MAX_VS_OUTPUTS]; ubyte num_input_sgprs; ubyte num_input_vgprs; @@ -644,7 +644,7 @@ struct si_shader { /* The following data is all that's needed for binary shaders. */ struct si_shader_binary binary; struct ac_shader_config config; - struct si_shader_info info; + struct si_shader_binary_info info; struct { uint16_t ngg_emit_size; /* in dwords */