Mesa (master): glsl: rename location layout helper

Timothy Arceri tarceri at kemper.freedesktop.org
Tue Nov 17 20:31:03 UTC 2015


Module: Mesa
Branch: master
Commit: d4fbf11b583d76cbb362fb04334f791cc486b583
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d4fbf11b583d76cbb362fb04334f791cc486b583

Author: Timothy Arceri <timothy.arceri at collabora.com>
Date:   Fri Nov 13 15:43:13 2015 +1100

glsl: rename location layout helper

Change name from validate -> apply to more accurately describe what
the function does.

Reviewed-by: Samuel Iglesias Gonsálvez <siglesias at igalia.com>

---

 src/glsl/ast_to_hir.cpp |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp
index 97e2351..41d05c0 100644
--- a/src/glsl/ast_to_hir.cpp
+++ b/src/glsl/ast_to_hir.cpp
@@ -2650,10 +2650,10 @@ interpret_interpolation_qualifier(const struct ast_type_qualifier *qual,
 
 
 static void
-validate_explicit_location(const struct ast_type_qualifier *qual,
-                           ir_variable *var,
-                           struct _mesa_glsl_parse_state *state,
-                           YYLTYPE *loc)
+apply_explicit_location(const struct ast_type_qualifier *qual,
+                        ir_variable *var,
+                        struct _mesa_glsl_parse_state *state,
+                        YYLTYPE *loc)
 {
    bool fail = false;
 
@@ -2995,7 +2995,7 @@ apply_layout_qualifier_to_variable(const struct ast_type_qualifier *qual,
    }
 
    if (qual->flags.q.explicit_location) {
-      validate_explicit_location(qual, var, state, loc);
+      apply_explicit_location(qual, var, state, loc);
    } else if (qual->flags.q.explicit_index) {
       _mesa_glsl_error(loc, state, "explicit index requires explicit location");
    }




More information about the mesa-commit mailing list