aboutsummaryrefslogtreecommitdiff
path: root/mesalib/src/glsl/link_functions.cpp
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-08-09 08:25:48 +0200
committermarha <marha@users.sourceforge.net>2011-08-09 08:25:48 +0200
commit8a2c8f93072dc4c9a1f9275b09ac3f2af481f56a (patch)
tree24b60778dfbd64e217b8b08ae4ce465687128d80 /mesalib/src/glsl/link_functions.cpp
parentf8e53281a55d43ae1b17f848f28579d74d877835 (diff)
parent93ed12672618a2e321cb79a3b3a656aae63d6beb (diff)
downloadvcxsrv-8a2c8f93072dc4c9a1f9275b09ac3f2af481f56a.tar.gz
vcxsrv-8a2c8f93072dc4c9a1f9275b09ac3f2af481f56a.tar.bz2
vcxsrv-8a2c8f93072dc4c9a1f9275b09ac3f2af481f56a.zip
Merge remote-tracking branch 'origin/released'
Conflicts: X11/extensions/randr.h mesalib/src/glsl/ast_function.cpp mesalib/src/glsl/ast_to_hir.cpp mesalib/src/glsl/glsl_parser_extras.h mesalib/src/glsl/link_functions.cpp mesalib/src/glsl/linker.cpp mesalib/src/mesa/state_tracker/st_program.c
Diffstat (limited to 'mesalib/src/glsl/link_functions.cpp')
-rw-r--r--mesalib/src/glsl/link_functions.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/mesalib/src/glsl/link_functions.cpp b/mesalib/src/glsl/link_functions.cpp
index b3a701858..68d5b287b 100644
--- a/mesalib/src/glsl/link_functions.cpp
+++ b/mesalib/src/glsl/link_functions.cpp
@@ -104,10 +104,12 @@ public:
if (f == NULL) {
f = new(linked) ir_function(name);
- /* Add the new function to the linked IR.
+ /* Add the new function to the linked IR. Put it at the end
+ * so that it comes after any global variable declarations
+ * that it refers to.
*/
linked->symbols->add_function(f);
- linked->ir->push_head(f);
+ linked->ir->push_tail(f);
}
ir_function_signature *linked_sig =