summaryrefslogtreecommitdiff
path: root/src/glsl/lower_mat_op_to_vec.cpp
AgeCommit message (Collapse)AuthorFilesLines
2011-02-21Use C-style system headers in C++ code to avoid issues with std:: namespaceIan Romanick1-3/+0
2011-02-03glsl: Add using statements for standard library functions.Vinson Lee1-0/+3
Standard library functions in C++ are in the std namespace. When using C++-style header files for the standard library, some compilers, such as Sun Studio, provide symbols only for the std namespace and not for the global namespace. This patch adds using statements for standard library functions. Another option could have been to prepend standard library function calls with 'std::'. This patch fixes several compilation errors with Sun Studio.
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-1/+1
2010-11-19glsl: Eliminate assumptions about size of ir_expression::operandsIan Romanick1-0/+2
This may grow in the near future.
2010-11-17glsl: Fix Doxygen tag \file in recently renamed filesChad Versace1-1/+1
2010-11-15glsl: Rename various ir_* files to lower_* and opt_*.Kenneth Graunke1-0/+488
This helps distinguish between lowering passes, optimization passes, and other compiler code.