aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2020-01-10 17:04:33 -0500
committerMarek Olšák <[email protected]>2020-01-14 18:46:07 -0500
commit18aaceae8d1d189e145c0e52c81cba664b4e3fd2 (patch)
tree07a52fdd4602ff4a3cc8f8f092653f1659032be7 /src/gallium
parent7f4a54d5bd132dc276ff454f37b1359e91e9942a (diff)
radeonsi: rename si_shader_info -> si_shader_binary_info
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/radeonsi/si_shader.h4
1 files 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 */