diff options
author | marha <marha@users.sourceforge.net> | 2013-09-25 09:37:58 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-09-25 09:37:58 +0200 |
commit | 1245204b2091d108a8688ff7f749f2c6cc830381 (patch) | |
tree | c903bf477d9ddf666685494f3b035680d5d41580 /mesalib/src/glsl/lower_mat_op_to_vec.cpp | |
parent | b299d73bb416e2a26a642a54d5a15ea9fa30df33 (diff) | |
parent | 14718f10dcda487178690de9a51cc5acdf21e468 (diff) | |
download | vcxsrv-1245204b2091d108a8688ff7f749f2c6cc830381.tar.gz vcxsrv-1245204b2091d108a8688ff7f749f2c6cc830381.tar.bz2 vcxsrv-1245204b2091d108a8688ff7f749f2c6cc830381.zip |
Merge remote-tracking branch 'origin/released'
* origin/released:
fontconfig mesa git update 25 Sep 2013
Diffstat (limited to 'mesalib/src/glsl/lower_mat_op_to_vec.cpp')
-rw-r--r-- | mesalib/src/glsl/lower_mat_op_to_vec.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mesalib/src/glsl/lower_mat_op_to_vec.cpp b/mesalib/src/glsl/lower_mat_op_to_vec.cpp index 08cae29fa..105ee0d3f 100644 --- a/mesalib/src/glsl/lower_mat_op_to_vec.cpp +++ b/mesalib/src/glsl/lower_mat_op_to_vec.cpp @@ -35,6 +35,8 @@ #include "ir_expression_flattening.h" #include "glsl_types.h" +namespace { + class ir_mat_op_to_vec_visitor : public ir_hierarchical_visitor { public: ir_mat_op_to_vec_visitor() @@ -63,6 +65,8 @@ public: bool made_progress; }; +} /* anonymous namespace */ + static bool mat_op_to_vec_predicate(ir_instruction *ir) { |