summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2010-06-30glsl2: Fix storing of dead memory in the symbol table.Kenneth Graunke1-2/+2
2010-06-30glsl2: Preprocessed source doesn't need to live past compile time.Kenneth Graunke2-8/+2
2010-06-30glsl2: Create new talloc contexts the "right" way.Kenneth Graunke2-2/+2
2010-06-30glsl2: Use _mesa_glsl_parse_state as the talloc parent, not glsl_shader.Kenneth Graunke6-120/+120
2010-06-30glsl2: Steal the live IR and free the rest of the junk.Kenneth Graunke2-0/+22
2010-06-30linker: Don't dynamically allocate slots for linked shadersIan Romanick2-3/+6
2010-06-30ir_to_mesa: Tell Mesa about our choices for vertex attribute locations.Eric Anholt1-0/+9
2010-06-30linker: Don't automatically allocate VERT_ATTRIB_GENERIC0Ian Romanick1-0/+6
2010-06-30glsl2: Use Mesa's gl_shader_program instead of our own struct glsl_program.Eric Anholt6-66/+36
2010-06-30glsl2: Make function names and variable names be children of the node.Eric Anholt1-3/+2
2010-06-30glsl2: Move our data from a glsl_shader* on the side to the main gl_shader *.Eric Anholt7-125/+95
2010-06-29ir_to_mesa: Add support for ir_unop_abs.Eric Anholt1-0/+4
2010-06-29ir_to_mesa: Add support for dFdx, dFdy.Eric Anholt1-0/+8
2010-06-29ir_to_mesa: Start adding support for texture instructions.Eric Anholt2-2/+142
2010-06-29glsl2: Keep the same number of components in implicit conversions.Kenneth Graunke1-0/+6
2010-06-29glsl2: Make gl_MaxDrawBuffers available in the vertex shaderIan Romanick1-32/+42
2010-06-29glsl2: Make gl_MaxDrawBuffers available in the fragment shaderIan Romanick1-0/+15
2010-06-29glsl2: Make gl_FragData be available in GLSL 1.10 tooIan Romanick1-12/+5
2010-06-29glsl2: Pass MaxDrawBuffers from core Mesa into the GLSL compilerIan Romanick4-24/+35
2010-06-29glsl_type: Add _mesa_glsl_release_types to release all type related storageIan Romanick3-2/+33
2010-06-29glsl_type: All glsl_type objects live in their own talloc contextIan Romanick2-4/+17
2010-06-29glsl_type: Record type constructors are privateIan Romanick2-12/+16
2010-06-29glsl_type: Add get_record_instance methodIan Romanick3-2/+86
2010-06-29glsl_type: Vector, matrix, and sampler type constructors are privateIan Romanick2-34/+42
2010-06-29glsl_type: Make all static objects be class privateIan Romanick3-39/+72
2010-06-29glsl2: Use talloc_strdup when generating constructor temporary namesIan Romanick1-8/+13
2010-06-29glsl_type: Remove vector and matrix constructor generatorsIan Romanick3-370/+0
2010-06-29glsl2: Don't flatten constructor parameters to scalarsIan Romanick1-129/+59
2010-06-29glsl2: Always emit matrix constructors inlineIan Romanick1-1/+321
2010-06-29glsl2: Always emit vector constructors inlineIan Romanick1-1/+100
2010-06-29ir_swizzle: Add new constructor, refactor constructorsIan Romanick2-18/+56
2010-06-29glsl2: Update TODO.Kenneth Graunke1-4/+1
2010-06-29glsl2: Check for non-void functions that don't have a return statement.Kenneth Graunke2-0/+13
2010-06-29glsl2: Reject return types with qualifiers.Kenneth Graunke1-1/+10
2010-06-29glsl2: Add a method for querying if an AST type has any qualifiers.Kenneth Graunke2-0/+11
2010-06-29glsl2: Check that returned expressions match the function return type.Kenneth Graunke1-3/+11
2010-06-29glsl2: Invoke preprocessor before calling the compiler properIan Romanick1-3/+11
2010-06-28ir_to_mesa: Actually initialize the undef register for scalar_op1.Eric Anholt1-1/+1
2010-06-28ir_to_mesa: Support user-defined varyings using the linker's locations.Eric Anholt1-8/+22
2010-06-28ir_to_mesa: Actually add the header file for the interface.Eric Anholt1-0/+36
2010-06-28ir_to_mesa: Fix binop_sqrt for multi-channel and negative source channels.Eric Anholt1-1/+4
2010-06-28ir_to_mesa: Fix indexes of temps used in expressions.Eric Anholt1-29/+30
2010-06-28ir_to_mesa: Notify the driver when we generate new Mesa programs for GLSL.Eric Anholt1-0/+4
2010-06-28ir_to_mesa: Add support for the pow expression.Eric Anholt1-9/+39
2010-06-28ir_to_mesa: Fix EmitCondCodes for boolean vars as condition.Eric Anholt1-0/+14
2010-06-28ir_to_mesa: Respect EmitCondCodes for IF statements.Eric Anholt1-5/+19
2010-06-28ir_to_mesa: Traverse the "else" instrs after "else", instead of "then" again.Eric Anholt1-1/+1
2010-06-28ir_to_mesa: Fix matrix * scalar multiplication.Eric Anholt1-7/+13
2010-06-28ir_to_mesa: Check the right element for matrix * scalar multiplication.Eric Anholt1-1/+1
2010-06-28glsl2: Add support for some builtin matrices.Eric Anholt1-0/+86