diff options
Diffstat (limited to 'src/compiler/glsl/link_uniforms.cpp')
-rw-r--r-- | src/compiler/glsl/link_uniforms.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/compiler/glsl/link_uniforms.cpp b/src/compiler/glsl/link_uniforms.cpp index 30c48b94fce..4aa29f45b27 100644 --- a/src/compiler/glsl/link_uniforms.cpp +++ b/src/compiler/glsl/link_uniforms.cpp @@ -132,9 +132,6 @@ program_resource_visitor::recursion(const glsl_type *t, char **name, const char *field = t->fields.structure[i].name; size_t new_length = name_length; - if (t->fields.structure[i].type->is_record()) - this->visit_field(&t->fields.structure[i]); - if (t->is_interface() && t->fields.structure[i].offset != -1) this->set_buffer_offset(t->fields.structure[i].offset); @@ -216,11 +213,6 @@ program_resource_visitor::recursion(const glsl_type *t, char **name, } void -program_resource_visitor::visit_field(const glsl_struct_field *) -{ -} - -void program_resource_visitor::enter_record(const glsl_type *, const char *, bool, const enum glsl_interface_packing) { |