From: Chris Forbes Date: Sun, 4 May 2014 08:23:55 +0000 (+1200) Subject: glsl: Add support for int -> uint implicit conversions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=240974e93f2df10f64aae17e1ed257379bdac5f7;p=mesa.git glsl: Add support for int -> uint implicit conversions This is required for ARB_gpu_shader5. Signed-off-by: Chris Forbes Reviewed-by: Kenneth Graunke --- diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index 659e8cb1145..d1c77f1ec82 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -176,6 +176,14 @@ get_conversion_operation(const glsl_type *to, const glsl_type *from, default: return (ir_expression_operation)0; } + case GLSL_TYPE_UINT: + if (!state->is_version(400, 0) && !state->ARB_gpu_shader5_enable) + return (ir_expression_operation)0; + switch (from->base_type) { + case GLSL_TYPE_INT: return ir_unop_i2u; + default: return (ir_expression_operation)0; + } + default: return (ir_expression_operation)0; } }