summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2010-06-11ir_constant: Eliminate 'void *' constructorir_constant_refactorIan Romanick2-15/+6
2010-06-11Use statically typed ir_constant constructors wherever possibleIan Romanick3-11/+15
2010-06-11ir_reader: Use 'union ir_constant_data' in read_constantIan Romanick1-19/+7
2010-06-11ir_constant_visitor: Type of constant result is same as original expressionIan Romanick1-44/+26
2010-06-11ir_constant_visitor: Types of ir_binop_{equal,nequal} must matchIan Romanick1-40/+36
2010-06-11ir_constant_visitor: Use 'union ir_constant_data' in expression handlerIan Romanick1-80/+63
2010-06-11ir_constant_visitor: Use 'union ir_constant_data' instead of open-coded versionconstant_constructorIan Romanick1-9/+2
2010-06-11Matrix and vector constructors with a single constant scalar are constantIan Romanick2-10/+131
2010-06-11ir_constant_visitor: Handle bool-to-int and int-to-boolIan Romanick1-0/+15
2010-06-11Treat ?: with all constant subexpressions as a constant expressionIan Romanick1-15/+25
2010-06-11Rearrange code in HIR conversion of ?: operatorIan Romanick1-18/+24
2010-06-11ir_constant_visitor: Handle constant swizzlesIan Romanick1-2/+27
2010-06-11ir_constant_visitor: Handle array access of constant vectors and matricesIan Romanick1-3/+51
2010-06-11Remove redundant type checks for constant constructorsIan Romanick1-3/+0
2010-06-11Do simple constant folding while processing function call parametersIan Romanick1-1/+5
2010-06-11ir_constant_visitor: Handle dereferences of constant recordsIan Romanick1-3/+3
2010-06-11ir_constant: Add get_record_field queryIan Romanick2-0/+28
2010-06-11Add glsl_types::field_index to get the location of a record fieldIan Romanick2-0/+21
2010-06-11Detect and process constant record constructorsIan Romanick1-0/+55
2010-06-11Move parameter processing out of match_function_by_nameIan Romanick1-11/+9
2010-06-11ir_constant_visitor: Use clone to create a constant from a variable referenceIan Romanick1-1/+1
2010-06-11ir_constant: Support constant structures in cloneIan Romanick2-4/+43
2010-06-11ir_constant: Add storage for multiple constants for arrays and recordsIan Romanick2-2/+20
2010-06-11Add glsl_type::is_record queryIan Romanick1-0/+8
2010-06-11Add float/bool conversion to ir_constant_expression.cpp.Ian Romanick1-0/+14
2010-06-11Constant-fold constructor parameters after type conversionIan Romanick1-8/+14
2010-06-11Make constructors with all constant parameters generate in-line constantsIan Romanick1-2/+29
2010-06-11Construct an ir_constant from a list of ir_constant valuesIan Romanick2-0/+50
2010-06-11Add queries to determine if a node is a list sentinalIan Romanick1-0/+16
2010-06-11Add methods to ir_constant to get scalar components in a particular typeIan Romanick2-0/+82
2010-06-11Derefence components of constants smarterIan Romanick1-0/+7
2010-06-11Construct an ir_constant from a scalar component of another ir_constantIan Romanick2-0/+25
2010-06-11Use ir_unop_b2i when converting a bool-to-int and add a missing breakIan Romanick1-1/+2
2010-06-09Remove linux_list in favor of exec_list.Kenneth Graunke2-107/+8
2010-06-09Add forgotten autogenerated EXT_texture_array_fs folder.Kenneth Graunke1-0/+27
2010-06-09Implement 1.30 int/uint variants of min/max/clamp.Kenneth Graunke4-0/+766
2010-06-09texture_builtins.py: The unsigned integer type is "uint", not "unsigned"Kenneth Graunke1-1/+1
2010-06-09Implement 1.30 hyperbolic trig builtins (sinh, cosh, tanh).Kenneth Graunke4-0/+216
2010-06-09Implement 1.20 'transpose' builtin.Kenneth Graunke3-0/+310
2010-06-09Implement 1.20 'outerProduct' builtin.Kenneth Graunke3-0/+211
2010-06-09Implement matrixCompMult builtin - the last of the 110 builtins.Kenneth Graunke4-0/+232
2010-06-09ir_constant_visitor: Add support for dFdx and dFdy operations.Kenneth Graunke1-0/+9
2010-06-09Implement dFdx, dFdy, and fwidth via new expression opcodes.Kenneth Graunke4-0/+163
2010-06-09Implement 'refract' builtin.Kenneth Graunke2-0/+208
2010-06-09Fix some typing issues in asin.Kenneth Graunke2-14/+14
2010-06-09Add a completely bogus implementation of the noise[1234] builtins.Kenneth Graunke2-0/+156
2010-06-09Implement 'acos' builtin.Kenneth Graunke2-0/+46
2010-06-09Implement 'faceforward' builtin.Kenneth Graunke2-0/+78
2010-06-09Implement 'distance' builtin.Kenneth Graunke2-0/+70
2010-06-09Add remaining signatures for 'clamp' builtin.Kenneth Graunke2-1/+67