Browse Source

glsl: Fix Doxygen tag \file in recently renamed files

tags/android-x86-2.2
Chad Versace 14 years ago
parent
commit
df883eb157

+ 1
- 1
src/glsl/lower_div_to_mul_rcp.cpp View 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)).
*

+ 1
- 1
src/glsl/lower_explog_to_explog2.cpp View 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

+ 1
- 1
src/glsl/lower_if_to_cond_assign.cpp View 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.

+ 1
- 1
src/glsl/lower_jumps.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_lower_jumps.cpp
* \file lower_jumps.cpp
*/

#include "glsl_types.h"

+ 1
- 1
src/glsl/lower_mat_op_to_vec.cpp View 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.
*

+ 1
- 1
src/glsl/lower_mod_to_fract.cpp View 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))
*

+ 1
- 1
src/glsl/lower_sub_to_add_neg.cpp View 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))
*

+ 1
- 1
src/glsl/lower_vec_index_to_cond_assign.cpp View 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.

+ 1
- 1
src/glsl/lower_vec_index_to_swizzle.cpp View 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,

+ 1
- 1
src/glsl/opt_algebraic.cpp View 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.

+ 1
- 1
src/glsl/opt_constant_folding.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_constant_folding.cpp
* \file opt_constant_folding.cpp
* Replace constant-valued expressions with references to constant values.
*/


+ 1
- 1
src/glsl/opt_constant_propagation.cpp View 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.

+ 1
- 1
src/glsl/opt_constant_variable.cpp View 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.

+ 1
- 1
src/glsl/opt_copy_propagation.cpp View 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.

+ 1
- 1
src/glsl/opt_dead_code.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_dead_code.cpp
* \file opt_dead_code.cpp
*
* Eliminates dead assignments and variable declarations from the code.
*/

+ 1
- 1
src/glsl/opt_dead_code_local.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_dead_code_local.cpp
* \file opt_dead_code_local.cpp
*
* Eliminates local dead assignments from the code.
*

+ 1
- 1
src/glsl/opt_dead_functions.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_dead_functions.cpp
* \file opt_dead_functions.cpp
*
* Eliminates unused functions from the linked program.
*/

+ 1
- 1
src/glsl/opt_function_inlining.cpp View 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.
*/

+ 1
- 1
src/glsl/opt_if_simplification.cpp View 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.

+ 1
- 1
src/glsl/opt_noop_swizzle.cpp View 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

+ 1
- 1
src/glsl/opt_structure_splitting.cpp View 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

+ 1
- 1
src/glsl/opt_swizzle_swizzle.cpp View File

@@ -22,7 +22,7 @@
*/

/**
* \file ir_swizzle_swizzle.cpp
* \file opt_swizzle_swizzle.cpp
*
* Eliminates the second swizzle in a swizzle chain.
*/

+ 1
- 1
src/glsl/opt_tree_grafting.cpp View 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.

Loading…
Cancel
Save