glsl: use casts to silence warning

(cherry picked from commit 7eb7d67d50)
This commit is contained in:
Brian Paul 2011-07-07 16:47:59 -06:00
parent 8428b48673
commit c4da12e74f

View file

@ -1248,7 +1248,7 @@ assign_attribute_or_color_locations(gl_shader_program *prog,
*/
const int generic_base = (target_index == MESA_SHADER_VERTEX)
? VERT_ATTRIB_GENERIC0 : FRAG_RESULT_DATA0;
? (int) VERT_ATTRIB_GENERIC0 : (int) FRAG_RESULT_DATA0;
const enum ir_variable_mode direction =
(target_index == MESA_SHADER_VERTEX) ? ir_var_in : ir_var_out;