From a0430bb62c9eed196aead655165145e0a1a1ff32 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 15 Dec 2017 14:23:39 -0700 Subject: [PATCH] glsl: make varying_matches::is_varying_packing_safe() const Reviewed-by: Timothy Arceri --- 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 cadffeb2466..9039c3b8b83 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 || -- 2.30.2