diff options
author | Brian Paul <[email protected]> | 2012-01-12 08:28:20 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-12 08:29:16 -0700 |
commit | 9f2963b631cb2a2899fcb0eb384895fd33f9821d (patch) | |
tree | e393e36c8886a541185b6f4af7268336da67165d | |
parent | 3e044bcc4b2fcf9418f5a8fb682c8fab3bc454e9 (diff) |
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.
-rw-r--r-- | 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 f5bee013d1e..26047cfe078 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) { |