From eeedd355cfc2f0c578282657bd4259440a88742c Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 9 Jun 2010 17:27:31 -0700 Subject: [PATCH] Add glsl_types::field_index to get the location of a record field --- glsl_types.cpp | 15 +++++++++++++++ glsl_types.h | 6 ++++++ 2 files changed, 21 insertions(+) diff --git a/glsl_types.cpp b/glsl_types.cpp index 9487819..4b6a61a 100644 --- a/glsl_types.cpp +++ b/glsl_types.cpp @@ -718,3 +718,18 @@ glsl_type::field_type(const char *name) const return error_type; } + + +int +glsl_type::field_index(const char *name) const +{ + if (this->base_type != GLSL_TYPE_STRUCT) + return -1; + + for (unsigned i = 0; i < this->length; i++) { + if (strcmp(name, this->fields.structure[i].name) == 0) + return i; + } + + return -1; +} diff --git a/glsl_types.h b/glsl_types.h index 823897d..3265016 100644 --- a/glsl_types.h +++ b/glsl_types.h @@ -356,6 +356,12 @@ struct glsl_type { /** + * Get the location of a filed within a record type + */ + int field_index(const char *name) const; + + + /** * Query the number of elements in an array type * * \return -- 2.7.4