nir/types: Add a wrapper to access gl_type
authorNeil Roberts <nroberts@igalia.com>
Mon, 18 Dec 2017 17:33:32 +0000 (18:33 +0100)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Tue, 31 Jul 2018 11:33:37 +0000 (13:33 +0200)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index 3a3864414f332ce698f89f22b87663d3fa3618d7..c8a2940496909682d4c277b5f5388b1cfe7562af 100644 (file)
@@ -81,6 +81,12 @@ glsl_get_column_type(const struct glsl_type *type)
    return type->column_type();
 }
 
+GLenum
+glsl_get_gl_type(const struct glsl_type *type)
+{
+   return type->gl_type;
+}
+
 enum glsl_base_type
 glsl_get_base_type(const struct glsl_type *type)
 {
index 817b7a9b3459288ff6f9ae92362a6228ba440657..db3a4dee2d9c1beb12d573fc253f8d11e7cc2d42 100644 (file)
@@ -59,6 +59,8 @@ glsl_get_function_return_type(const struct glsl_type *type);
 const struct glsl_function_param *
 glsl_get_function_param(const struct glsl_type *type, unsigned index);
 
+GLenum glsl_get_gl_type(const struct glsl_type *type);
+
 enum glsl_base_type glsl_get_base_type(const struct glsl_type *type);
 
 unsigned glsl_get_vector_elements(const struct glsl_type *type);