nir/types: add more nir_type_is_xxx() wrappers
authorConnor Abbott <connor.w.abbott@intel.com>
Thu, 16 Jul 2015 04:58:32 +0000 (21:58 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Mon, 31 Aug 2015 23:58:20 +0000 (16:58 -0700)
src/glsl/nir/nir_types.cpp
src/glsl/nir/nir_types.h

index d44d480..809a7cf 100644 (file)
@@ -169,6 +169,18 @@ glsl_type_is_matrix(const struct glsl_type *type)
 }
 
 bool
+glsl_type_is_array(const struct glsl_type *type)
+{
+   return type->is_array();
+}
+
+bool
+glsl_type_is_struct(const struct glsl_type *type)
+{
+   return type->is_record() || type->is_interface();
+}
+
+bool
 glsl_type_is_sampler(const struct glsl_type *type)
 {
    return type->is_sampler();
index 60e1d9d..a2fa793 100644 (file)
@@ -76,6 +76,8 @@ bool glsl_type_is_vector(const struct glsl_type *type);
 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_struct(const struct glsl_type *type);
 bool glsl_type_is_sampler(const struct glsl_type *type);
 bool glsl_sampler_type_is_shadow(const struct glsl_type *type);
 bool glsl_sampler_type_is_array(const struct glsl_type *type);