nir: add glsl_type_is_integer() helper
authorTimothy Arceri <tarceri@itsqueeze.com>
Mon, 12 Nov 2018 02:24:42 +0000 (13:24 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Mon, 12 Nov 2018 04:38:56 +0000 (15:38 +1100)
Fixes: 1c9c42d16b4c ("nir: add varying component packing helpers")
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index d24f09415196234382d67882621cb3ad5df1e278..3cd61f66056af704d09ea3be923056974b0e2215 100644 (file)
@@ -301,6 +301,11 @@ glsl_type_is_boolean(const struct glsl_type *type)
 {
    return type->is_boolean();
 }
+bool
+glsl_type_is_integer(const struct glsl_type *type)
+{
+   return type->is_integer();
+}
 
 const glsl_type *
 glsl_void_type(void)
index 77454fa9fab57659f072cfc111599b03b4d01cbf..70d593b96ab082f5145032dace2276c178501f8d 100644 (file)
@@ -142,6 +142,7 @@ bool glsl_type_is_image(const struct glsl_type *type);
 bool glsl_type_is_dual_slot(const struct glsl_type *type);
 bool glsl_type_is_numeric(const struct glsl_type *type);
 bool glsl_type_is_boolean(const struct glsl_type *type);
+bool glsl_type_is_integer(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);
 bool glsl_contains_atomic(const struct glsl_type *type);