summaryrefslogtreecommitdiffstats
path: root/src/glsl
Commit message (Expand)AuthorAgeFilesLines
* glsl/loops: Get rid of lower_bounded_loops and ir_loop::normative_bound.Paul Berry2013-12-0940-195/+35
* glsl/loops: Stop creating normatively bound loops in loop_controls.Paul Berry2013-12-093-20/+41
* glsl/loops: Get rid of loop_variable_state::max_iterations.Paul Berry2013-12-093-38/+19
* glsl/loops: Simplify loop unrolling logic by breaking into functions.Paul Berry2013-12-091-108/+184
* glsl/loops: Move some analysis from loop_controls to loop_analysis.Paul Berry2013-12-093-80/+125
* glsl/loops: Allocate loop_terminator using new(mem_ctx) syntax.Paul Berry2013-12-091-1/+1
* glsl/loops: Remove unnecessary list walk from loop_control_visitor.Paul Berry2013-12-092-33/+39
* glsl/loops: Remove unused fields iv_scale and biv from loop_variable class.Paul Berry2013-12-092-12/+4
* glsl/loops: replace loop controls with a normative bound.Paul Berry2013-12-0942-239/+88
* glsl/loops: consolidate bounded loop handling into a lowering pass.Paul Berry2013-12-093-0/+119
* glsl: In loop analysis, handle unconditional second assignment.Paul Berry2013-12-091-3/+4
* glsl: Fix handling of function calls inside nested loops.Paul Berry2013-12-091-7/+7
* glsl: Fix loop analysis of nested loops.Paul Berry2013-12-092-17/+29
* glsl: Extract functions from loop_analysis::visit(ir_dereference_variable *).Paul Berry2013-12-092-25/+71
* glsl: Populate gl_fragment_program::IsSample bitfieldChris Forbes2013-12-071-1/+4
* glsl: Put `sample`-qualified varyings in their own packing classesChris Forbes2013-12-071-1/+1
* glsl: Add ir support for `sample` qualifier; adjust compiler and linkerChris Forbes2013-12-0713-4/+60
* glsl: Add frontend support for `sample` auxiliary storage qualifierChris Forbes2013-12-075-4/+13
* glsl: Don't emit empty declaration warning for a struct specifierIan Romanick2013-12-061-1/+1
* glsl: Use fabs() on floating point values.Matt Turner2013-12-041-2/+2
* glsl: Remove silly OR(..., 0x0) from ldexp() lowering.Matt Turner2013-12-041-3/+1
* glsl: Simplify the built-in function linking code.Kenneth Graunke2013-12-015-32/+29
* glsl: Create an accessor for the built-in function shader.Kenneth Graunke2013-12-012-2/+13
* glsl: Drop crazy looping from no_matching_function_error().Kenneth Graunke2013-12-011-16/+23
* glsl: Merge "candidates are: " message to the previous line.Kenneth Graunke2013-12-011-6/+4
* glsl: Drop unused call_ir parameter from generate_call().Kenneth Graunke2013-12-011-8/+6
* glsl: Remove useless iteration through function parameters.Kenneth Graunke2013-12-011-6/+0
* glsl: Remove unused field loop_variable_state::loop.Paul Berry2013-11-291-5/+0
* glsl: Improve documentation of ir_loop counter/control fields.Paul Berry2013-11-291-6/+28
* glsl: In ir_validate, check that ir_loop::counter always refers to a new var.Paul Berry2013-11-291-0/+13
* glsl: Fix inconsistent assumptions about ir_loop::counter.Paul Berry2013-11-293-2/+9
* glsl: Teach ir_variable_refcount about ir_loop::counter variables.Paul Berry2013-11-292-0/+22
* glsl: Link glcpp with math library.Vinson Lee2013-11-271-1/+3
* glsl: Initialize _mesa_glsl_parse_state::atomic_counter_offsets before using it.Francisco Jerez2013-11-261-0/+2
* glsl/linker: Validate IR just before reparenting.Paul Berry2013-11-261-0/+5
* glsl: Fix lowering of direct assignment in lower_clip_distance.Paul Berry2013-11-261-0/+5
* glsl: Improve error message when attemping assignment to unsized arrayTimothy Arceri2013-11-231-2/+8
* mesa: Remove the ralloc canary on release builds.Eric Anholt2013-11-221-0/+6
* glsl: Fix interstage uniform interface block link error detection.Paul Berry2013-11-213-32/+62
* glsl: Fix cross-version linking between VS and GS.Paul Berry2013-11-211-4/+23
* glsl: Prohibit illegal mixing of redeclarations inside/outside gl_PerVertex.Paul Berry2013-11-215-1/+60
* glsl: Use more portable bash invocation construct.Vinson Lee2013-11-2026-26/+26
* glsl: cleanup, remove duplicate assignmentTapani Pälli2013-11-171-1/+0
* glsl: Apply the transformation "1/rsq(x) == sqrt(x)" in opt_algebraic.Eric Anholt2013-11-151-3/+4
* glsl: Apply the transformation "(a ^^ a) -> false" in opt_algebraic.Eric Anholt2013-11-151-1/+3
* glsl: Apply the transformation "(a && a) -> a" in opt_algebraic.Eric Anholt2013-11-151-1/+3
* glsl: Apply the transformation "(a || a) -> a" in opt_algebraic.Eric Anholt2013-11-151-1/+3
* glsl: Move the CSE equality functions to the ir class.Eric Anholt2013-11-154-179/+222
* glsl: Rework interface block linking.Paul Berry2013-11-151-20/+251
* glsl: fix missing breaks in equals(ir_texture,..)Chris Forbes2013-11-101-0/+2