nir: Add a C wrapper for glsl_type::is_array_of_arrays().
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 12 Oct 2016 07:13:55 +0000 (00:13 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 19 Nov 2016 20:30:26 +0000 (12:30 -0800)
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index 5b04e181e4ca48b63b88a5b0a90921fa062676a7..cc90efd2ae7e59a330a4e0fa0033493bd4f159c5 100644 (file)
@@ -184,6 +184,12 @@ glsl_type_is_array(const struct glsl_type *type)
    return type->is_array();
 }
 
+bool
+glsl_type_is_array_of_arrays(const struct glsl_type *type)
+{
+   return type->is_array_of_arrays();
+}
+
 bool
 glsl_type_is_struct(const struct glsl_type *type)
 {
index 57f4708b67a8cdc5a1fd7fcecf807958b8c2573d..9088a064cf75bc008edf3bc95d08416409e78e66 100644 (file)
@@ -108,6 +108,7 @@ bool glsl_type_is_scalar(const struct glsl_type *type);
 bool glsl_type_is_vector_or_scalar(const struct glsl_type *type);
 bool glsl_type_is_matrix(const struct glsl_type *type);
 bool glsl_type_is_array(const struct glsl_type *type);
+bool glsl_type_is_array_of_arrays(const struct glsl_type *type);
 bool glsl_type_is_struct(const struct glsl_type *type);
 bool glsl_type_is_sampler(const struct glsl_type *type);
 bool glsl_type_is_image(const struct glsl_type *type);