From: Matt Turner Date: Fri, 25 Apr 2014 19:22:22 +0000 (-0700) Subject: glsl: Use properly typed arguments for bitfieldInsert. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18993f78920b89234b8a7a96f04bb51892f299f3;p=mesa.git glsl: Use properly typed arguments for bitfieldInsert. bitfieldInsert takes scalar integers for its last two arguments. Since bitfieldInsert is lowered on i965 to two instructions that have more flexible arguments, I didn't notice when I wrote this. Reviewed-by: Ilia Mirkin --- diff --git a/src/glsl/lower_instructions.cpp b/src/glsl/lower_instructions.cpp index 01ea0f01fb6..49316d0020e 100644 --- a/src/glsl/lower_instructions.cpp +++ b/src/glsl/lower_instructions.cpp @@ -359,8 +359,8 @@ lower_instructions_visitor::ldexp_to_arith(ir_expression *ir) ir_constant *sign_mask = new(ir) ir_constant(0x80000000u, vec_elem); - ir_constant *exp_shift = new(ir) ir_constant(23u, vec_elem); - ir_constant *exp_width = new(ir) ir_constant(8u, vec_elem); + ir_constant *exp_shift = new(ir) ir_constant(23); + ir_constant *exp_width = new(ir) ir_constant(8); /* Temporary variables */ ir_variable *x = new(ir) ir_variable(ir->type, "x", ir_var_temporary);