diff options
author | Timothy Arceri <[email protected]> | 2016-03-08 22:33:44 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-03-09 09:21:36 +1100 |
commit | 3026b3565a0df4c70feb009d2d9780229df25311 (patch) | |
tree | ec52b872be93cfa479826f906d1eec40bd76aff8 /src/compiler/glsl/link_interface_blocks.cpp | |
parent | ebc419fcbddb80648c526efc2b15e15e474724e3 (diff) |
glsl: make interstage_match() static
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Diffstat (limited to 'src/compiler/glsl/link_interface_blocks.cpp')
-rw-r--r-- | src/compiler/glsl/link_interface_blocks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/link_interface_blocks.cpp b/src/compiler/glsl/link_interface_blocks.cpp index 64c30fea9a3..9d36836d0e2 100644 --- a/src/compiler/glsl/link_interface_blocks.cpp +++ b/src/compiler/glsl/link_interface_blocks.cpp @@ -90,7 +90,7 @@ intrastage_match(ir_variable *a, * an array and the producer interface is required to be a non-array. * This is used for tessellation control and geometry shader consumers. */ -bool +static bool interstage_match(ir_variable *producer, ir_variable *consumer, bool extra_array_level) |