From: Samuel Pitoiset Date: Thu, 25 May 2017 17:12:12 +0000 (+0200) Subject: glsl: fix a crash in ir_print_visitor() for bindless samplers/images X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1da51ec0f7120be5411568b8e8305d47e19673b8;p=mesa.git glsl: fix a crash in ir_print_visitor() for bindless samplers/images Bindless samplers/images are represented with 64-bit unsigned integers and they can be assigned with explicit constructors. Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri Reviewed-by: Ian Romanick --- diff --git a/src/compiler/glsl/ir_print_visitor.cpp b/src/compiler/glsl/ir_print_visitor.cpp index 43be940a2f7..ba3c1e243fb 100644 --- a/src/compiler/glsl/ir_print_visitor.cpp +++ b/src/compiler/glsl/ir_print_visitor.cpp @@ -492,7 +492,11 @@ void ir_print_visitor::visit(ir_constant *ir) else fprintf(f, "%f", ir->value.f[i]); break; - case GLSL_TYPE_UINT64:fprintf(f, "%" PRIu64, ir->value.u64[i]); break; + case GLSL_TYPE_SAMPLER: + case GLSL_TYPE_IMAGE: + case GLSL_TYPE_UINT64: + fprintf(f, "%" PRIu64, ir->value.u64[i]); + break; case GLSL_TYPE_INT64: fprintf(f, "%" PRIi64, ir->value.i64[i]); break; case GLSL_TYPE_BOOL: fprintf(f, "%d", ir->value.b[i]); break; case GLSL_TYPE_DOUBLE: