diff options
author | Ian Romanick <[email protected]> | 2016-09-01 14:17:49 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-01-20 15:41:23 -0800 |
commit | 3ca0029a0dc7b2ed2c61de72ef16e7ad1831c101 (patch) | |
tree | cf1a0d42b9ee355d0ca9df787a8a6fba0a924348 /src/compiler/glsl | |
parent | 48e122244b05415204ef28107286d099f17da56b (diff) |
nir: Add 64-bit integer constant support
v2: Rebase on 19a541f (nir: Get rid of nir_constant_data)
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Connor Abbott <[email protected]> [v1]
Diffstat (limited to 'src/compiler/glsl')
-rw-r--r-- | src/compiler/glsl/glsl_to_nir.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/compiler/glsl/glsl_to_nir.cpp b/src/compiler/glsl/glsl_to_nir.cpp index 33f71bf416a..f4c3d01e723 100644 --- a/src/compiler/glsl/glsl_to_nir.cpp +++ b/src/compiler/glsl/glsl_to_nir.cpp @@ -254,6 +254,22 @@ constant_copy(ir_constant *ir, void *mem_ctx) } break; + case GLSL_TYPE_UINT64: + /* Only float base types can be matrices. */ + assert(cols == 1); + + for (unsigned r = 0; r < rows; r++) + ret->values[0].u64[r] = ir->value.u64[r]; + break; + + case GLSL_TYPE_INT64: + /* Only float base types can be matrices. */ + assert(cols == 1); + + for (unsigned r = 0; r < rows; r++) + ret->values[0].i64[r] = ir->value.i64[r]; + break; + case GLSL_TYPE_BOOL: /* Only float base types can be matrices. */ assert(cols == 1); |