diff options
author | Paul Berry <[email protected]> | 2013-10-22 14:48:08 -0700 |
---|---|---|
committer | Paul Berry <[email protected]> | 2013-10-24 22:00:59 -0700 |
commit | f65feb5335331ed0960d3fd62a70d0d0aaf23ab7 (patch) | |
tree | 4b763d64a299302b4d947385602315f17b7ccd22 /src/glsl/link_varyings.cpp | |
parent | 1e3e72e3054de27b35322feb6c715e433b00be2a (diff) |
glsl: Pull interpolation_string() out of ir_variable.
Future patches will need to call this function when there isn't an
ir_varible present to refer to.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/glsl/link_varyings.cpp')
-rw-r--r-- | src/glsl/link_varyings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/link_varyings.cpp b/src/glsl/link_varyings.cpp index c503645fda1..be36b5f8f6b 100644 --- a/src/glsl/link_varyings.cpp +++ b/src/glsl/link_varyings.cpp @@ -125,9 +125,9 @@ cross_validate_types_and_qualifiers(struct gl_shader_program *prog, "interpolation qualifier\n", _mesa_glsl_shader_target_name(producer_type), output->name, - output->interpolation_string(), + interpolation_string(output->interpolation), _mesa_glsl_shader_target_name(consumer_type), - input->interpolation_string()); + interpolation_string(input->interpolation)); return; } } |