aboutsummaryrefslogtreecommitdiffstats
path: root/src/glsl/opt_function_inlining.cpp
Commit message (Collapse)AuthorAgeFilesLines
* glsl: Use insert_before for lists instead of open coding itIan Romanick2011-03-081-4/+1
|
* glsl: Function signatures cannot have NULL return typeIan Romanick2011-03-081-1/+1
| | | | | The return type can be void, and this is the case where a `_ret_val' variable should not be declared.
* glsl: Introduce a new "const_in" variable mode.Kenneth Graunke2011-01-311-0/+1
| | | | | | | | This annotation is for an "in" function parameter for which it is only legal to pass constant expressions. The only known example of this, currently, is the textureOffset functions. This should never be used for globals.
* Convert everything from the talloc API to the ralloc API.Kenneth Graunke2011-01-311-3/+3
|
* glsl: Fix Doxygen tag \file in recently renamed filesChad Versace2010-11-171-1/+1
|
* glsl: Rename various ir_* files to lower_* and opt_*.Kenneth Graunke2010-11-151-0/+424
This helps distinguish between lowering passes, optimization passes, and other compiler code.