diff options
author | Karol Herbst <[email protected]> | 2018-01-25 07:59:06 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2018-03-14 10:08:42 -0400 |
commit | b617bfcccfd906c638ef6c6eb5adab857e1938e5 (patch) | |
tree | 01c44f5b0cf4fa03642d6333b7faa15110581074 /src/compiler/glsl/ir_clone.cpp | |
parent | fcf267ba087dd00c48ceaf9277424dac079f9319 (diff) |
compiler: int8/uint8 support
OpenCL kernels also have int8/uint8.
v2: remove changes in nir_search as Jason posted a patch for that
Reviewed-by: Jason Ekstrand <[email protected]>
Signed-off-by: Rob Clark <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ir_clone.cpp')
-rw-r--r-- | src/compiler/glsl/ir_clone.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/glsl/ir_clone.cpp b/src/compiler/glsl/ir_clone.cpp index f088b6aebd5..69441fae7de 100644 --- a/src/compiler/glsl/ir_clone.cpp +++ b/src/compiler/glsl/ir_clone.cpp @@ -344,6 +344,8 @@ ir_constant::clone(void *mem_ctx, struct hash_table *ht) const case GLSL_TYPE_INT64: case GLSL_TYPE_UINT16: case GLSL_TYPE_INT16: + case GLSL_TYPE_UINT8: + case GLSL_TYPE_INT8: case GLSL_TYPE_SAMPLER: case GLSL_TYPE_IMAGE: return new(mem_ctx) ir_constant(this->type, &this->value); |