nir/types: Add wrappers for a couple of atomic counter methods
authorNeil Roberts <nroberts@igalia.com>
Tue, 28 Nov 2017 12:38:32 +0000 (13:38 +0100)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Tue, 3 Jul 2018 10:41:46 +0000 (12:41 +0200)
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
src/compiler/nir_types.cpp
src/compiler/nir_types.h

index 973881fc41c86f2c51915df775e8fdb805efb1ce..6f1182b742c718df3c02a8527137db0e6726b616 100644 (file)
@@ -539,3 +539,15 @@ glsl_atomic_uint_type(void)
 {
    return glsl_type::atomic_uint_type;
 }
+
+unsigned
+glsl_atomic_size(const struct glsl_type *type)
+{
+   return type->atomic_size();
+}
+
+bool
+glsl_contains_atomic(const struct glsl_type *type)
+{
+   return type->contains_atomic();
+}
index d0fd99706b32315c30575f5f8f8689e4f27b73c8..c128250c7d3f3ba9231e6a0a011d4121f8f9eb55 100644 (file)
@@ -85,6 +85,8 @@ unsigned glsl_get_sampler_target(const struct glsl_type *type);
 unsigned glsl_get_record_location_offset(const struct glsl_type *type,
                                          unsigned length);
 
+unsigned glsl_atomic_size(const struct glsl_type *type);
+
 static inline unsigned
 glsl_get_bit_size(const struct glsl_type *type)
 {
@@ -136,6 +138,7 @@ bool glsl_type_is_numeric(const struct glsl_type *type);
 bool glsl_type_is_boolean(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);
 
 const struct glsl_type *glsl_void_type(void);
 const struct glsl_type *glsl_float_type(void);