diff options
author | Ian Romanick <[email protected]> | 2017-10-31 15:06:24 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2017-11-08 18:37:29 -0800 |
commit | ae1fd09c1d5cad98c9c5e92fbc32ec5af79d210c (patch) | |
tree | 001d13ba74b2d0e53b05412651a007f4fca25306 /src/compiler/glsl/linker.h | |
parent | 2c7657f62cd717ecb38487620e56c67b3c785809 (diff) |
glsl: Remove program_resource_visitor::visit_field(const glsl_struct_field *)
I could not find any remaining users.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/compiler/glsl/linker.h')
-rw-r--r-- | src/compiler/glsl/linker.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/compiler/glsl/linker.h b/src/compiler/glsl/linker.h index 5cec121e634..03ed9d5f84c 100644 --- a/src/compiler/glsl/linker.h +++ b/src/compiler/glsl/linker.h @@ -159,16 +159,6 @@ protected: const enum glsl_interface_packing packing, bool last_field) = 0; - /** - * Visit a record before visiting its fields - * - * For structures-of-structures or interfaces-of-structures, this visits - * the inner structure before visiting its fields. - * - * The default implementation does nothing. - */ - virtual void visit_field(const glsl_struct_field *field); - virtual void enter_record(const glsl_type *type, const char *name, bool row_major, const enum glsl_interface_packing packing); |