nir: add glsl_channel_type() helper
authorTimothy Arceri <tarceri@itsqueeze.com>
Tue, 19 Sep 2017 23:49:57 +0000 (09:49 +1000)
committerTimothy Arceri <tarceri@itsqueeze.com>
Sun, 15 Oct 2017 22:06:53 +0000 (09:06 +1100)
Reviewed-by: Eric Anholt <eric@anholt.net>
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index b0d84aae384055e091e2efcb38d999a0bb4ef845..b1b17ebd83125bfb649a13623e8eb4503d325124 100644 (file)
@@ -397,3 +397,30 @@ glsl_transposed_type(const struct glsl_type *type)
    return glsl_type::get_instance(type->base_type, type->matrix_columns,
                                   type->vector_elements);
 }
+
+const glsl_type *
+glsl_channel_type(const glsl_type *t)
+{
+   switch (glsl_get_base_type(t)) {
+   case GLSL_TYPE_ARRAY: {
+      const glsl_type *base = glsl_channel_type(glsl_get_array_element(t));
+      return glsl_array_type(base, glsl_get_length(t));
+   }
+   case GLSL_TYPE_UINT:
+      return glsl_uint_type();
+   case GLSL_TYPE_INT:
+      return glsl_int_type();
+   case GLSL_TYPE_FLOAT:
+      return glsl_float_type();
+   case GLSL_TYPE_BOOL:
+      return glsl_bool_type();
+   case GLSL_TYPE_DOUBLE:
+      return glsl_double_type();
+   case GLSL_TYPE_UINT64:
+      return glsl_uint64_t_type();
+   case GLSL_TYPE_INT64:
+      return glsl_int64_t_type();
+   default:
+      unreachable("Unhandled base type glsl_channel_type()");
+   }
+}
index d9a9513b9f4fa7981b262c1347630ae7894c8a72..9f398b92786e79a7ecf251cfc7380819e45db0f0 100644 (file)
@@ -163,6 +163,8 @@ const struct glsl_type * glsl_function_type(const struct glsl_type *return_type,
 
 const struct glsl_type *glsl_transposed_type(const struct glsl_type *type);
 
+const struct glsl_type *glsl_channel_type(const struct glsl_type *type);
+
 #ifdef __cplusplus
 }
 #endif