summaryrefslogtreecommitdiffstats
path: root/src/glsl/linker.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-2/+2
* glsl: Add linker support for explicit attribute locationsIan Romanick2010-10-081-1/+32
* glsl: Fail linking if assign_attribute_locations failsIan Romanick2010-10-081-1/+3
* glsl: Also update implicit sizes of varyings at link time.Eric Anholt2010-09-281-4/+7
* glsl2: fix typo in error msgBrian Paul2010-09-211-1/+1
* glsl: add several EmitNo* options, and MaxUnrollIterationsLuca Barbieri2010-09-081-1/+1
* glsl: Move is_builtin flag back to ir_function_signature.Kenneth Graunke2010-09-071-2/+2
* linker: Fix assertion and cross-version checks for version 100.Kenneth Graunke2010-09-071-2/+3
* glsl2: check for _NumLinkedShaders being 0Török Edvin2010-09-071-1/+1
* linker: Handle varying arrays, matrices, and arrays of matricesIan Romanick2010-08-301-6/+15
* linker: Treat sized and unsized array types as the sameIan Romanick2010-08-291-6/+20
* glsl: Move is_built_in flag from ir_function_signature to ir_function.Kenneth Graunke2010-08-261-2/+2
* ir_to_mesa: Convert this code to using linker.cpp's uniform locations.Eric Anholt2010-08-251-0/+1
* glsl: Make uniform linking generate separate uniforms for struct members.Eric Anholt2010-08-251-42/+89
* glsl: Include main/core.h.Chia-I Wu2010-08-241-4/+1
* glsl: Count function call outvals as writing to variables for linker checks.Eric Anholt2010-08-231-0/+21
* glsl: Trim the size of uniform arrays to the maximum element used.Eric Anholt2010-08-231-0/+52
* glsl: Also strdup the names of uniform list entries for >vec4 types.Eric Anholt2010-08-181-1/+1
* mesa: Free old linked shaders when relinking new shaders.Eric Anholt2010-08-181-5/+10
* linker: Demote user-defined varyings in the VS-only caseIan Romanick2010-08-171-14/+28
* linker: Include compiler.h to avoid spurious warnings about INLINEIan Romanick2010-08-161-0/+1
* glsl2: Move the common optimization passes to a helper function.Eric Anholt2010-08-131-41/+6
* linker: Assign attrib location 0 if gl_Vertex is not usedIan Romanick2010-08-131-1/+36
* glsl2: Add a pass to transform ir_binop_sub to add(op0, neg(op1))Eric Anholt2010-08-091-0/+1
* glsl2: Add constant propagation.Eric Anholt2010-08-091-0/+1
* glsl2: Don't assert in a couple of places when encountering sampler arrays.Eric Anholt2010-08-061-4/+6
* glsl2: Add a pass to convert exp and log to exp2 and log2.Eric Anholt2010-08-051-0/+1
* ir_structure_splitting: New pass to chop structures into their components.Eric Anholt2010-08-051-0/+1
* glsl2: Add a pass for removing unused functions.Eric Anholt2010-08-051-0/+1
* glsl2: Remove the shader_in/shader_out tracking separate from var->mode.Eric Anholt2010-08-041-2/+0
* glsl2: Use linked ir_constant_variable after linking, instead of unlinked.Eric Anholt2010-08-041-1/+1
* glsl2: Don't try to assign locations for samplers during linking.Eric Anholt2010-08-041-0/+3
* glsl2: Make the clone() method take a talloc context.Eric Anholt2010-08-041-11/+14
* glsl2: Give the path within src/mesa/ for headers instead of relying on -I.Aras Pranckevicius2010-08-021-1/+1
* glsl2: Do algebraic optimizations after linking as well.Eric Anholt2010-07-311-0/+1
* glsl2: Add new tree grafting optimization pass.Eric Anholt2010-07-311-0/+1
* glsl2: Fix spelling of "sentinel."Eric Anholt2010-07-291-1/+1
* glsl2: Fail linking where the FS reads a varying that the VS doesn't write.Eric Anholt2010-07-281-7/+30
* glsl2: Unmark unwritten varyings as varying.Eric Anholt2010-07-281-0/+1
* glsl2: Actually use the linked dead code eliminator.Eric Anholt2010-07-271-1/+1
* glsl2: Use ir_dead_code's linked version after linking.Eric Anholt2010-07-271-3/+1
* Merge remote branch 'origin/master' into glsl2Eric Anholt2010-07-261-1/+1
* linker: Link built-in functions instead of including them in every shaderIan Romanick2010-07-211-1/+22
* linker: Do post-link lowering and optimizationIan Romanick2010-07-201-0/+38
* glsl2: Add and use new variable mode ir_var_temporaryIan Romanick2010-07-201-6/+44
* linker: Remove the FINISHME comment for intrastage linkingIan Romanick2010-07-191-1/+2
* linker: Remove redundant check for 'main' in shadersIan Romanick2010-07-191-10/+0
* linker: Track and validate GLSL versions used in shadersIan Romanick2010-07-191-0/+21
* linker: Add comment about bug in initializer handlingIan Romanick2010-07-191-0/+8
* linker: First bits of intrastage, intershader function linkingIan Romanick2010-07-191-0/+2