glsl: Fix Doxygen tag \file in recently renamed files
authorChad Versace <chad.versace@intel.com>
Wed, 17 Nov 2010 18:43:10 +0000 (10:43 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 17 Nov 2010 20:07:24 +0000 (12:07 -0800)
23 files changed:
src/glsl/lower_div_to_mul_rcp.cpp
src/glsl/lower_explog_to_explog2.cpp
src/glsl/lower_if_to_cond_assign.cpp
src/glsl/lower_jumps.cpp
src/glsl/lower_mat_op_to_vec.cpp
src/glsl/lower_mod_to_fract.cpp
src/glsl/lower_sub_to_add_neg.cpp
src/glsl/lower_vec_index_to_cond_assign.cpp
src/glsl/lower_vec_index_to_swizzle.cpp
src/glsl/opt_algebraic.cpp
src/glsl/opt_constant_folding.cpp
src/glsl/opt_constant_propagation.cpp
src/glsl/opt_constant_variable.cpp
src/glsl/opt_copy_propagation.cpp
src/glsl/opt_dead_code.cpp
src/glsl/opt_dead_code_local.cpp
src/glsl/opt_dead_functions.cpp
src/glsl/opt_function_inlining.cpp
src/glsl/opt_if_simplification.cpp
src/glsl/opt_noop_swizzle.cpp
src/glsl/opt_structure_splitting.cpp
src/glsl/opt_swizzle_swizzle.cpp
src/glsl/opt_tree_grafting.cpp

index 640d5d64f98ffe75455739a76a5b1f6fcd02b565..d34c4bc46d70d32cc09ecdb7957cfd12eafe276b 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_div_to_mul_rcp.cpp
+ * \file lower_div_to_mul_rcp.cpp
  *
  * Breaks an ir_unop_div expression down to op0 * (rcp(op1)).
  *
index 78694a2029d4a66b15a0dcb6d0249d2baa731f83..8ad02625443c30fab73f727a0728d39d56aa7fa5 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_explog_to_explog2.cpp
+ * \file lower_explog_to_explog2.cpp
  *
  * Many GPUs don't have a base e log or exponent instruction, but they
  * do have base 2 versions, so this pass converts exp and log to exp2
index 0b87413941a2c2f4b3c52a3fc84e641c785b938b..cf48cfb8d611f92a786e64d17581415693824c4f 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_if_to_cond_assign.cpp
+ * \file lower_if_to_cond_assign.cpp
  *
  * This attempts to flatten all if statements to conditional
  * assignments for GPUs that don't do control flow.
index b69cc1ec31529aae356e0ca990db8c7efe5386a6..e1e7a5b0073dea95d7b7f9e6242639493928b86b 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_lower_jumps.cpp
+ * \file lower_jumps.cpp
  */
 
 #include "glsl_types.h"
index 244fe489280e7f416e428818bce19d0689d6dd84..4965df8976dae28f68aa80f9e3a44111b68d940a 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_mat_op_to_vec.cpp
+ * \file lower_mat_op_to_vec.cpp
  *
  * Breaks matrix operation expressions down to a series of vector operations.
  *
index c82a1f64fdde7ccad6beaf1b7fda5738b2ec9c5a..ff907ae97cc2d6c31a537ba323762aed16fc04c5 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_mod_to_fract.cpp
+ * \file lower_mod_to_fract.cpp
  *
  * Breaks an ir_unop_mod expression down to (op1 * fract(op0 / op1))
  *
index 7ed8c1495e3c2f97c56ff4982ec4213a2a8fba62..9e4019709b4ea1b673c96a545f72445e61b9ae70 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_sub_to_add_neg.cpp
+ * \file lower_sub_to_add_neg.cpp
  *
  * Breaks an ir_binop_sub expression down to add(op0, neg(op1))
  *
index cd8dedf2fe1457a304a5da9bd1479c3caf833a2b..f8011a16e5ba1286ef00c74619f491aca7bb3829 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_vec_index_to_cond_assign.cpp
+ * \file lower_vec_index_to_cond_assign.cpp
  *
  * Turns indexing into vector types to a series of conditional moves
  * of each channel's swizzle into a temporary.
index 969dc8f94a25e797a5fbc8b51bbedf612a706101..9ae43c0db17955c7ce4c58002e1e7905e6e54da4 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_vec_index_to_swizzle.cpp
+ * \file lower_vec_index_to_swizzle.cpp
  *
  * Turns constant indexing into vector types to swizzles.  This will
  * let other swizzle-aware optimization passes catch these constructs,
index c7f5c3b4d639fcc777cdfb276733a56e38651a7f..88b6c485d3101a6cb75fd5fa9793c95fb3558c3f 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_algebraic.cpp
+ * \file opt_algebraic.cpp
  *
  * Takes advantage of association, commutivity, and other algebraic
  * properties to simplify expressions.
index 554c54fae3a6c4f587b8adc7d88600e574c94ae9..d69ca75fe03090f9a27f960040eddad40baa1397 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_constant_folding.cpp
+ * \file opt_constant_folding.cpp
  * Replace constant-valued expressions with references to constant values.
  */
 
index 5d875b7be0048ae9f601f958d4369832c568ac09..6719fc818638f11e0de1a64c7ea3986874402332 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_constant_propagation.cpp
+ * \file opt_constant_propagation.cpp
  *
  * Tracks assignments of constants to channels of variables, and
  * usage of those constant channels with direct usage of the constants.
index 1fb73e765e1c842692d2b500d61bb01100a737dc..8068d0c1435fba86a2e09f2f48249a05285419d1 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_constant_variable.cpp
+ * \file opt_constant_variable.cpp
  *
  * Marks variables assigned a single constant value over the course
  * of the program as constant.
index 0fe8fa6c41959e8c3a7d0cac8e8844e964388e3f..8d07fefbfd097e94124e6438600f1130a94656ff 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_copy_propagation.cpp
+ * \file opt_copy_propagation.cpp
  *
  * Moves usage of recently-copied variables to the previous copy of
  * the variable.
index 5cf5e99add42e85a24298de5d4b6764c78b1e61d..cb500d2d105b41f983c13cc59d6e2351daff81ff 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_dead_code.cpp
+ * \file opt_dead_code.cpp
  *
  * Eliminates dead assignments and variable declarations from the code.
  */
index 4bbedf0ff946e50c222c6aa1d69a228384c3e3e5..5689e7d20db70f5a1a4ba628ec3f350122f409fc 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_dead_code_local.cpp
+ * \file opt_dead_code_local.cpp
  *
  * Eliminates local dead assignments from the code.
  *
index 16037a2632d53838ad7ce419327b53a5ffdecf21..cf91cb6d368858bccc6c9292b8471236c4585866 100644 (file)
@@ -22,7 +22,7 @@
   */
 
  /**
-  * \file ir_dead_functions.cpp
+  * \file opt_dead_functions.cpp
   *
   * Eliminates unused functions from the linked program.
   */
index 147c1824c1a06f5a450e92949336b35193e9e9c5..169fd8268825f59de3bb656ab801cc5f61367ffc 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_function_inlining.cpp
+ * \file opt_function_inlining.cpp
  *
  * Replaces calls to functions with the body of the function.
  */
index 021615ebd126f686dc111cfe293ad1d856bade81..618bacfecf17ea2a6cc4666af2bdfa67a207e64d 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_if_simplification.cpp
+ * \file opt_if_simplification.cpp
  *
  * Moves constant branches of if statements out to the surrounding
  * instruction stream.
index 0403dfa4e9368da29cd49131163e93f775484b0e..0a906aaf1da8cae45e2a7afc11af1ab657287709 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_noop_swizzle.cpp
+ * \file opt_noop_swizzle.cpp
  *
  * If a swizzle doesn't change the order or count of components, then
  * remove the swizzle so that other optimization passes see the value
index ff3ec936eb8b93849c10b08ee5d185e4be8ba392..d6191002c2f05d0fccc22ee6126cb11137504e08 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_structure_splitting.cpp
+ * \file opt_structure_splitting.cpp
  *
  * If a structure is only ever referenced by its components, then
  * split those components out to individual variables so they can be
index 0ffb4fa3133b3934b9cbf51cb14b3df03ead423e..bc442fa86939194b124094584f26b2691fd63227 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_swizzle_swizzle.cpp
+ * \file opt_swizzle_swizzle.cpp
  *
  * Eliminates the second swizzle in a swizzle chain.
  */
index 9b569b8284f7cb696d715069ea6e4a2345d6c60f..9917c045b1db607e0f38f981c44bb34295549b14 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * \file ir_tree_grafting.cpp
+ * \file opt_tree_grafting.cpp
  *
  * Takes assignments to variables that are dereferenced only once and
  * pastes the RHS expression into where the variable is dereferenced.