diff options
author | Samuel Pitoiset <[email protected]> | 2017-05-25 19:12:12 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-01 11:54:06 +0200 |
commit | 1da51ec0f7120be5411568b8e8305d47e19673b8 (patch) | |
tree | 6b18c86401a599d1faedc56778baff78cbcc8d7a | |
parent | e4e5562d8ad99ef39f430ce0546f4f8775d4824f (diff) |
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 <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/compiler/glsl/ir_print_visitor.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
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: |