diff options
-rw-r--r-- | src/compiler/nir_types.cpp | 8 | ||||
-rw-r--r-- | src/compiler/nir_types.h | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/compiler/nir_types.cpp b/src/compiler/nir_types.cpp index 31c463bda46..9101d49ffbb 100644 --- a/src/compiler/nir_types.cpp +++ b/src/compiler/nir_types.cpp @@ -78,6 +78,14 @@ glsl_get_struct_field_offset(const struct glsl_type *type, return type->fields.structure[index].offset; } +const struct glsl_struct_field * +glsl_get_struct_field_data(const struct glsl_type *type, unsigned index) +{ + assert(type->is_struct() || type->is_interface()); + assert(index < type->length); + return &type->fields.structure[index]; +} + unsigned glsl_get_explicit_stride(const struct glsl_type *type) { diff --git a/src/compiler/nir_types.h b/src/compiler/nir_types.h index 0c4bd4d1dbb..4d8aada5f27 100644 --- a/src/compiler/nir_types.h +++ b/src/compiler/nir_types.h @@ -49,6 +49,9 @@ const struct glsl_type *glsl_get_struct_field(const struct glsl_type *type, int glsl_get_struct_field_offset(const struct glsl_type *type, unsigned index); +const struct glsl_struct_field * +glsl_get_struct_field_data(const struct glsl_type *type, unsigned index); + unsigned glsl_get_explicit_stride(const struct glsl_type *type); const struct glsl_type *glsl_get_array_element(const struct glsl_type *type); const struct glsl_type *glsl_without_array(const struct glsl_type *type); |