glsl: Modify uniform_field_visitor::recursion to take a row_major parameter

Not used yet, but the UBO layout visitor will use this.

v2: Add some commentary as to why row_major is always set to false in
process.  Suggesed by Paul Berry.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Carl Worth <cworth@cworth.org>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Ian Romanick
2013-01-21 22:32:07 -05:00
parent 23b7ce3a82
commit 6a0c1bc163
2 changed files with 19 additions and 5 deletions

View File

@@ -62,10 +62,15 @@ uniform_field_visitor::process(ir_variable *var)
{ {
const glsl_type *t = var->type; const glsl_type *t = var->type;
/* false is always passed for the row_major parameter to the other
* processing functions because no information is available to do
* otherwise. See the warning in linker.h.
*/
/* Only strdup the name if we actually will need to modify it. */ /* Only strdup the name if we actually will need to modify it. */
if (t->is_record() || (t->is_array() && t->fields.array->is_record())) { if (t->is_record() || (t->is_array() && t->fields.array->is_record())) {
char *name = ralloc_strdup(NULL, var->name); char *name = ralloc_strdup(NULL, var->name);
recursion(var->type, &name, strlen(name)); recursion(var->type, &name, strlen(name), false);
ralloc_free(name); ralloc_free(name);
} else { } else {
this->visit_field(t, var->name); this->visit_field(t, var->name);
@@ -74,7 +79,7 @@ uniform_field_visitor::process(ir_variable *var)
void void
uniform_field_visitor::recursion(const glsl_type *t, char **name, uniform_field_visitor::recursion(const glsl_type *t, char **name,
size_t name_length) size_t name_length, bool row_major)
{ {
/* Records need to have each field processed individually. /* Records need to have each field processed individually.
* *
@@ -90,7 +95,8 @@ uniform_field_visitor::recursion(const glsl_type *t, char **name,
/* Append '.field' to the current uniform name. */ /* Append '.field' to the current uniform name. */
ralloc_asprintf_rewrite_tail(name, &new_length, ".%s", field); ralloc_asprintf_rewrite_tail(name, &new_length, ".%s", field);
recursion(t->fields.structure[i].type, name, new_length); recursion(t->fields.structure[i].type, name, new_length,
t->fields.structure[i].row_major);
} }
} else if (t->is_array() && t->fields.array->is_record()) { } else if (t->is_array() && t->fields.array->is_record()) {
for (unsigned i = 0; i < t->length; i++) { for (unsigned i = 0; i < t->length; i++) {
@@ -99,7 +105,8 @@ uniform_field_visitor::recursion(const glsl_type *t, char **name,
/* Append the subscript to the current uniform name */ /* Append the subscript to the current uniform name */
ralloc_asprintf_rewrite_tail(name, &new_length, "[%u]", i); ralloc_asprintf_rewrite_tail(name, &new_length, "[%u]", i);
recursion(t->fields.array, name, new_length); recursion(t->fields.array, name, new_length,
t->fields.structure[i].row_major);
} }
} else { } else {
this->visit_field(t, *name); this->visit_field(t, *name);

View File

@@ -75,6 +75,12 @@ public:
* \param var The uniform variable that is to be processed * \param var The uniform variable that is to be processed
* *
* Calls \c ::visit_field for each leaf of the uniform. * Calls \c ::visit_field for each leaf of the uniform.
*
* \warning
* This entry should only be used with uniform blocks in cases where the
* row / column ordering of matrices in the block does not matter. For
* example, enumerating the names of members of the block, but not for
* determining the offsets of members.
*/ */
void process(ir_variable *var); void process(ir_variable *var);
@@ -92,7 +98,8 @@ private:
* \param name_length Length of the current name \b not including the * \param name_length Length of the current name \b not including the
* terminating \c NUL character. * terminating \c NUL character.
*/ */
void recursion(const glsl_type *t, char **name, size_t name_length); void recursion(const glsl_type *t, char **name, size_t name_length,
bool row_major);
}; };
void void