Mesa (8.0): st/mesa: fix struct vs. class compilation warning

Brian Paul brianp at kemper.freedesktop.org
Fri Jan 13 17:27:12 UTC 2012


Module: Mesa
Branch: 8.0
Commit: 89a1e7caf486b089b8c2790fc8e61debebbe7590
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=89a1e7caf486b089b8c2790fc8e61debebbe7590

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Jan 12 08:28:20 2012 -0700

st/mesa: fix struct vs. class compilation warning

glsl_to_tgsi_visitor is earlier defined as a class, not a struct.
Fixes MSVC warning.

NOTE: This is a candidate for the 8.0 branch.
(cherry picked from commit 9f2963b631cb2a2899fcb0eb384895fd33f9821d)

---

 src/mesa/state_tracker/st_glsl_to_tgsi.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
index f5bee01..26047cf 100644
--- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
+++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
@@ -5093,7 +5093,7 @@ st_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
 }
 
 void
-st_translate_stream_output_info(struct glsl_to_tgsi_visitor *glsl_to_tgsi,
+st_translate_stream_output_info(glsl_to_tgsi_visitor *glsl_to_tgsi,
                                 const GLuint outputMapping[],
                                 struct pipe_stream_output_info *so)
 {




More information about the mesa-commit mailing list