Mesa (master): radeonsi: rename si_shader_info -> si_shader_binary_info

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jan 14 23:48:43 UTC 2020


Module: Mesa
Branch: master
Commit: 18aaceae8d1d189e145c0e52c81cba664b4e3fd2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=18aaceae8d1d189e145c0e52c81cba664b4e3fd2

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Fri Jan 10 17:04:33 2020 -0500

radeonsi: rename si_shader_info -> si_shader_binary_info

Reviewed-by: Timothy Arceri <tarceri at itsqueeze.com>

---

 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 */



More information about the mesa-commit mailing list