[Mesa-dev] [PATCH 2/9] glsl: make varying_matches::is_varying_packing_safe() const
Brian Paul
brianp at vmware.com
Mon Dec 18 20:47:21 UTC 2017
---
src/compiler/glsl/link_varyings.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/compiler/glsl/link_varyings.cpp b/src/compiler/glsl/link_varyings.cpp
index cadffeb..9039c3b 100644
--- a/src/compiler/glsl/link_varyings.cpp
+++ b/src/compiler/glsl/link_varyings.cpp
@@ -1475,7 +1475,7 @@ public:
private:
bool is_varying_packing_safe(const glsl_type *type,
- const ir_variable *var);
+ const ir_variable *var) const;
/**
* If true, this driver disables varying packing, so all varyings need to
@@ -1608,7 +1608,7 @@ varying_matches::~varying_matches()
*/
bool
varying_matches::is_varying_packing_safe(const glsl_type *type,
- const ir_variable *var)
+ const ir_variable *var) const
{
if (consumer_stage == MESA_SHADER_TESS_EVAL ||
consumer_stage == MESA_SHADER_TESS_CTRL ||
--
1.9.1
More information about the mesa-dev
mailing list