From: Timothy Arceri Date: Tue, 1 Sep 2015 05:52:10 +0000 (+1000) Subject: glsl: make variables private X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=12af915e27e4f10bc4c29f1cc8119b28ba27d874;p=mesa.git glsl: make variables private Reviewed-by: Jason Ekstrand --- diff --git a/src/glsl/link_uniforms.cpp b/src/glsl/link_uniforms.cpp index 879c4885384..238546ba22e 100644 --- a/src/glsl/link_uniforms.cpp +++ b/src/glsl/link_uniforms.cpp @@ -808,6 +808,17 @@ private: unsigned next_image; unsigned next_subroutine; + /** + * Field counter is used to take care that uniform structures + * with explicit locations get sequential locations. + */ + unsigned field_counter; + + /** + * Current variable being processed. + */ + ir_variable *current_var; + /* Used to store the explicit location from current_var so that we can * reuse the location field for storing the uniform slot id. */ @@ -826,17 +837,6 @@ public: gl_texture_index targets[MAX_SAMPLERS]; - /** - * Current variable being processed. - */ - ir_variable *current_var; - - /** - * Field counter is used to take care that uniform structures - * with explicit locations get sequential locations. - */ - unsigned field_counter; - /** * Mask of samplers used by the current shader stage. */