summaryrefslogtreecommitdiff
path: root/src/glsl/ast_function.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-05-03glsl: Remove extra newline from error messageIan Romanick1-1/+1
2011-04-18glsl: 80-column wrapping and whitespace fixesIan Romanick1-1/+5
2011-02-11glsl: Finish out the reduce/reduce error fixesIan Romanick1-48/+61
2011-02-01glsl: Fix invalid use of ralloc_asprintf in prototype_string.Kenneth Graunke1-1/+1
2011-01-31glsl: add cast to silence signed/unsigned comparison warningBrian Paul1-1/+1
2011-01-31glsl: Introduce a new "const_in" variable mode.Kenneth Graunke1-0/+9
2011-01-31Convert everything from the talloc API to the ralloc API.Kenneth Graunke1-10/+10
2011-01-21glsl: Improve error message when read-only vars are writtenChad Versace1-6/+21
2010-12-06glsl: Properly add functions during lazy built-in prototype importing.Kenneth Graunke1-7/+13
2010-11-30glsl: Lazily import built-in function prototypes.Kenneth Graunke1-29/+40
2010-11-19glsl: Fix matrix constructors with vector parametersIan Romanick1-9/+9
2010-11-16glsl: Simplify generation of swizzle for vector constructorsIan Romanick1-6/+5
2010-11-09glsl: Remove unnecessary "unused variable" warning suppression.Kenneth Graunke1-3/+0
2010-10-25glsl: Fix constant component count in vector constructor emitting.Kenneth Graunke1-1/+1
2010-09-22glsl: Rework assignments with write_masks to have LHS chan count match RHS.Eric Anholt1-21/+22
2010-09-07ast_to_hir: Allow matrix-from-matrix constructors in GLSL ES.Kenneth Graunke1-1/+1
2010-09-01glsl: Apply implicit conversions to structure constructor parameters.Kenneth Graunke1-2/+9
2010-09-01glsl: Convert constant record constructor parameters to ir_constants.Kenneth Graunke1-1/+3
2010-09-01glsl: Reject structure constructors that have too many arguments.Kenneth Graunke1-0/+6
2010-09-01glsl2: Emit structure constructors inlineIan Romanick1-37/+70
2010-09-01glsl: Fix write mask in matrix-from-matrix constructors.Kenneth Graunke1-3/+5
2010-09-01glsl: Move generate_constructor_(matrix|vector) to ir_constant ctor.Kenneth Graunke1-99/+1
2010-09-01ast_function: Fix check for "too few components".Kenneth Graunke1-1/+2
2010-09-01ast_function: Remove bogus cases from generate_constructor_matrix.Kenneth Graunke1-29/+8
2010-08-31glsl2: Write vector constructor constants in a single assignmentIan Romanick1-11/+72
2010-08-29glsl: Initialize data in ast_function_expression::hir.Vinson Lee1-1/+1
2010-08-24glsl: Include main/core.h.Chia-I Wu1-1/+1
2010-08-17glsl2: Fix transpose of rows and colsIan Romanick1-2/+2
2010-08-12glsl2: Use MIN2 from macros.h instead of open coding itIan Romanick1-11/+7
2010-08-05glsl2: Log a better error message when a matching function cannot be foundIan Romanick1-6/+51
2010-08-04glsl2: Generate masked assignments in vector and matrix constructorsIan Romanick1-36/+46
2010-08-04glsl2: Remove uses of deprecated TALLOC_CTX type.Kenneth Graunke1-6/+6
2010-08-03glsl2: No need to strdup the name passed in to ir_variable constructor.Eric Anholt1-13/+5
2010-07-29glsl2: Fix spelling of "sentinel."Eric Anholt1-3/+3
2010-07-28ast_function: Set constant_value on return value temporaries in 1.20+.Kenneth Graunke1-0/+2
2010-07-21glsl2: Extend ir_constant to store constant arrays, and generate them.Kenneth Graunke1-3/+2
2010-07-21glsl2: Emit array constructors inline.Kenneth Graunke1-11/+53
2010-07-21glsl2: Add some comments.Kenneth Graunke1-1/+4
2010-07-21glsl2: Replace insert_before/remove pairs with exec_node::replace_with.Kenneth Graunke1-2/+1
2010-07-20glsl2: glsl_type has its own talloc context, don't pass one inIan Romanick1-2/+1
2010-07-20glsl2: Add and use new variable mode ir_var_temporaryIan Romanick1-7/+14
2010-07-20glsl2: Always insert function calls into the instruction stream.Eric Anholt1-1/+24
2010-07-18glsl2: Remove the const disease from function signature's callee.Eric Anholt1-2/+1
2010-07-14ast_function: Actually do type conversion on function arguments.Kenneth Graunke1-3/+8
2010-07-09ast_function: Fix non-float constructors with matrix arguments.Kenneth Graunke1-22/+55
2010-07-09ast_function: Move error return earlier and don't indent the world.Kenneth Graunke1-142/+139
2010-07-09ast_function: Remove unnecessary check for empty constructors.Kenneth Graunke1-9/+0
2010-06-30glsl2: Use _mesa_glsl_parse_state as the talloc parent, not glsl_shader.Kenneth Graunke1-5/+5
2010-06-29glsl2: Use talloc_strdup when generating constructor temporary namesIan Romanick1-8/+13
2010-06-29glsl2: Don't flatten constructor parameters to scalarsIan Romanick1-129/+59