diff options
author | Brian Paul <brianp@vmware.com> | 2010-09-14 09:05:46 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-09-14 09:05:46 -0600 |
commit | 2b04ead569fbfa48ea01d2f25b20f1f8a8b8dee1 (patch) | |
tree | c36a88794ee19d941a70751b07aa26185b981112 | |
parent | 9476efe77ff196993937c3aa2e5bca725ceb0b41 (diff) |
glsl2: fix comments
-rw-r--r-- | src/glsl/ir_if_simplification.cpp | 2 | ||||
-rw-r--r-- | src/glsl/ir_lower_jumps.cpp | 2 | ||||
-rw-r--r-- | src/glsl/ir_mod_to_fract.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/glsl/ir_if_simplification.cpp b/src/glsl/ir_if_simplification.cpp index 6882ef72b95..021615ebd12 100644 --- a/src/glsl/ir_if_simplification.cpp +++ b/src/glsl/ir_if_simplification.cpp @@ -22,7 +22,7 @@ */ /** - * \file ir_function_inlining.cpp + * \file ir_if_simplification.cpp * * Moves constant branches of if statements out to the surrounding * instruction stream. diff --git a/src/glsl/ir_lower_jumps.cpp b/src/glsl/ir_lower_jumps.cpp index 79eb6f0939d..b69cc1ec315 100644 --- a/src/glsl/ir_lower_jumps.cpp +++ b/src/glsl/ir_lower_jumps.cpp @@ -22,7 +22,7 @@ */ /** - * \file ir_remove_loop_jumps.cpp + * \file ir_lower_jumps.cpp */ #include "glsl_types.h" diff --git a/src/glsl/ir_mod_to_fract.cpp b/src/glsl/ir_mod_to_fract.cpp index 71c9472b12b..c82a1f64fdd 100644 --- a/src/glsl/ir_mod_to_fract.cpp +++ b/src/glsl/ir_mod_to_fract.cpp @@ -22,7 +22,7 @@ */ /** - * \file ir_mod_to_floor.cpp + * \file ir_mod_to_fract.cpp * * Breaks an ir_unop_mod expression down to (op1 * fract(op0 / op1)) * |