radeonsi: rename si_shader_info -> si_shader_binary_info
authorMarek Olšák <marek.olsak@amd.com>
Fri, 10 Jan 2020 22:04:33 +0000 (17:04 -0500)
committerMarek Olšák <marek.olsak@amd.com>
Tue, 14 Jan 2020 23:46:07 +0000 (18:46 -0500)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/gallium/drivers/radeonsi/si_shader.h

index ced395411c04c6ccffe93f639406c1e65f589527..1699560bc8ab6e22c1e7f4b660291e8ec688b812 100644 (file)
@@ -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 */