From d9834fcaa6c946c454f16020cd5b3526dc7ecf00 Mon Sep 17 00:00:00 2001 From: Sushma Venkatesh Reddy Date: Fri, 21 Nov 2025 02:56:31 +0000 Subject: [PATCH] compiler: Add FP8 types to GLSL type decoder Reviewed-by: Caio Oliveira Reviewed-by: Ian Romanick Part-of: --- src/compiler/glsl_types.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/glsl_types.c b/src/compiler/glsl_types.c index 74f31a0e945..d57af7c16b4 100644 --- a/src/compiler/glsl_types.c +++ b/src/compiler/glsl_types.c @@ -3238,6 +3238,8 @@ decode_type_from_blob(struct blob_reader *blob) case GLSL_TYPE_FLOAT: case GLSL_TYPE_FLOAT16: case GLSL_TYPE_BFLOAT16: + case GLSL_TYPE_FLOAT_E4M3FN: + case GLSL_TYPE_FLOAT_E5M2: case GLSL_TYPE_DOUBLE: case GLSL_TYPE_UINT8: case GLSL_TYPE_INT8: