From b617bfcccfd906c638ef6c6eb5adab857e1938e5 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 25 Jan 2018 07:59:06 -0500 Subject: 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 Signed-off-by: Rob Clark Signed-off-by: Karol Herbst --- src/compiler/nir/nir.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/compiler/nir') diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 40b10283f4f..6a51b7c4ab1 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -735,6 +735,10 @@ nir_get_nir_type_for_glsl_base_type(enum glsl_base_type base_type) case GLSL_TYPE_INT16: return nir_type_int16; break; + case GLSL_TYPE_UINT8: + return nir_type_uint8; + case GLSL_TYPE_INT8: + return nir_type_int8; case GLSL_TYPE_UINT64: return nir_type_uint64; break; -- cgit v1.2.3