diff options
author | Timothy Arceri <[email protected]> | 2015-07-23 08:31:59 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2015-10-17 08:43:15 +1100 |
commit | 2e1798f183427d704d32d68165248519781ae864 (patch) | |
tree | 78e9485e71ca7ac9402fa3b0ef15865ff3ca76a3 /src/glsl | |
parent | fd5e0581dda40fbf72f166cb583ea37e0f812d09 (diff) |
nir: wrapper for glsl_type arrays_of_arrays_size()
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/nir/nir_types.cpp | 6 | ||||
-rw-r--r-- | src/glsl/nir/nir_types.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/glsl/nir/nir_types.cpp b/src/glsl/nir/nir_types.cpp index da9807f0e62..965f42320be 100644 --- a/src/glsl/nir/nir_types.cpp +++ b/src/glsl/nir/nir_types.cpp @@ -106,6 +106,12 @@ glsl_get_length(const struct glsl_type *type) return type->is_matrix() ? type->matrix_columns : type->length; } +unsigned +glsl_get_aoa_size(const struct glsl_type *type) +{ + return type->arrays_of_arrays_size(); +} + const char * glsl_get_struct_elem_name(const struct glsl_type *type, unsigned index) { diff --git a/src/glsl/nir/nir_types.h b/src/glsl/nir/nir_types.h index 49d6a65e7c4..009a0fb9918 100644 --- a/src/glsl/nir/nir_types.h +++ b/src/glsl/nir/nir_types.h @@ -59,6 +59,8 @@ unsigned glsl_get_matrix_columns(const struct glsl_type *type); unsigned glsl_get_length(const struct glsl_type *type); +unsigned glsl_get_aoa_size(const struct glsl_type *type); + const char *glsl_get_struct_elem_name(const struct glsl_type *type, unsigned index); |