Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
return type->is_array();
}
+bool
+glsl_type_is_unsized_array(const struct glsl_type *type)
+{
+ return type->is_unsized_array();
+}
+
bool
glsl_type_is_array_of_arrays(const struct glsl_type *type)
{
bool glsl_type_is_matrix(const struct glsl_type *type);
bool glsl_matrix_type_is_row_major(const struct glsl_type *type);
bool glsl_type_is_array(const struct glsl_type *type);
+bool glsl_type_is_unsized_array(const struct glsl_type *type);
bool glsl_type_is_array_of_arrays(const struct glsl_type *type);
bool glsl_type_is_array_or_matrix(const struct glsl_type *type);
bool glsl_type_is_struct(const struct glsl_type *type);