From: Brian Paul Date: Fri, 15 Dec 2017 21:23:39 +0000 (-0700) Subject: glsl: make varying_matches::is_varying_packing_safe() const X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a0430bb62c9eed196aead655165145e0a1a1ff32;p=mesa.git glsl: make varying_matches::is_varying_packing_safe() const Reviewed-by: Timothy Arceri --- 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 ||