| Commit message (Expand) | Author | Age | Files | Lines |
* | mesa: Move the common _mesa_glsl_compile_shader() code to glsl/. | Eric Anholt | 2013-06-21 | 2 | -64/+0 |
* | mesa: Move shader compiler API code to shaderapi.c | Eric Anholt | 2013-06-21 | 1 | -31/+0 |
* | mesa: Fix missing setting of shader->IsES. | Eric Anholt | 2013-06-21 | 1 | -0/+1 |
* | mesa: Use shared code for converting shader targets to short strings. | Eric Anholt | 2013-06-21 | 1 | -4/+1 |
* | glsl: Remove ir_print_visitor.h includes and usage | Eric Anholt | 2013-06-21 | 1 | -5/+4 |
* | mesa: remove outdated version lines in comments | Rico Schüller | 2013-06-05 | 20 | -20/+0 |
* | mesa: Fix test for optimistic coloring being necessary. | Eric Anholt | 2013-05-29 | 1 | -1/+1 |
* | mesa: fix GLSL program objects with more than 16 samplers combined | Marek Olšák | 2013-05-28 | 2 | -8/+27 |
* | ARB_fp: accept duplicate precision options | Chris Forbes | 2013-05-24 | 1 | -9/+15 |
* | glsl: Add lowering pass for ir_triop_vector_insert | Ian Romanick | 2013-05-13 | 1 | -0/+1 |
* | glsl: Add ir_triop_vector_insert | Ian Romanick | 2013-05-13 | 1 | -0/+1 |
* | glsl: Add ir_binop_vector_extract | Ian Romanick | 2013-05-13 | 1 | -0/+1 |
* | mesa: Move the mvp_with_dp4 flag to ShaderCompilerOptions. | Kenneth Graunke | 2013-05-12 | 1 | -1/+1 |
* | glsl: Pass struct shader_compiler_options into do_common_optimization. | Kenneth Graunke | 2013-05-12 | 1 | -2/+5 |
* | mesa: move max texture image unit constants to gl_program_constants | Marek Olšák | 2013-05-11 | 1 | -1/+1 |
* | mesa/program: Don't copy propagate from swizzles. | Fabian Bieler | 2013-05-08 | 1 | -0/+2 |
* | glsl: Add a pass to lower bitfield-insert into bfm+bfi. | Matt Turner | 2013-05-06 | 1 | -0/+2 |
* | glsl: Add support for new bit built-ins in ARB_gpu_shader5. | Matt Turner | 2013-05-06 | 1 | -0/+9 |
* | build: remove unused API_DEFINES | Andreas Boll | 2013-05-01 | 1 | -1/+1 |
* | mesa: Restore 78-column wrapping of license text in C-style comments. | Kenneth Graunke | 2013-04-23 | 18 | -54/+72 |
* | mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability. | Kenneth Graunke | 2013-04-23 | 18 | -18/+18 |
* | mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text. | Kenneth Graunke | 2013-04-23 | 18 | -18/+18 |
* | mesa: remove unused opcodes AND, DP2A, NOT, NRM3, NRM4, OR, PRINT, XOR | Marek Olšák | 2013-04-24 | 5 | -173/+0 |
* | mesa: Fix up program_parse.y to avoid uninitialized $$ | Paul Berry | 2013-04-19 | 1 | -0/+5 |
* | mesa: remove #include "mfeatures.h" from numerous source files | Brian Paul | 2013-04-17 | 1 | -1/+0 |
* | build: Rename sources.mak -> Makefile.sources | Matt Turner | 2013-04-15 | 2 | -3/+3 |
* | mesa: Add a macro to bitset for determining bitset size. | Eric Anholt | 2013-04-12 | 1 | -1/+1 |
* | register_allocate: Fix the type of best_benefit. | Matt Turner | 2013-04-08 | 1 | -1/+1 |
* | mesa: don't set _ClampFragmentColor to TRUE if it has no effect | Marek Olšák | 2013-04-06 | 1 | -2/+3 |
* | mesa: don't memcmp() off the end of a cache key. | Chris Forbes | 2013-04-06 | 1 | -2/+9 |
* | i965: Ask the register allocator to round-robin through registers. | Eric Anholt | 2013-04-04 | 2 | -3/+29 |
* | glsl: Implement ARB_texture_query_lod | Dave Airlie | 2013-03-29 | 1 | -0/+3 |
* | mesa: handle STATE_CURRENT_ATTRIB_MAYBE_VP_CLAMPED for parameter printing | Marek Olšák | 2013-03-28 | 1 | -0/+3 |
* | Replace gl_frag_attrib enum with gl_varying_slot. | Paul Berry | 2013-03-15 | 6 | -29/+29 |
* | mtypes.h: Modify gl_frag_attrib to refer to new gl_varying_slot enum. | Paul Berry | 2013-03-15 | 1 | -4/+11 |
* | Replace gl_geom_result enum with gl_varying_slot. | Paul Berry | 2013-03-15 | 1 | -1/+1 |
* | Replace gl_geom_attrib enum with gl_varying_slot. | Paul Berry | 2013-03-15 | 1 | -1/+1 |
* | Replace gl_vert_result enum with gl_varying_slot. | Paul Berry | 2013-03-15 | 4 | -29/+29 |
* | mtypes.h: Modify gl_vert_result to refer to new gl_varying_slot enum. | Paul Berry | 2013-03-15 | 1 | -0/+4 |
* | mesa: Reduce memory usage for reg alloc with many graph nodes (part 2). | Eric Anholt | 2013-03-11 | 1 | -4/+8 |
* | mesa: Reduce the memory usage for reg alloc with many graph nodes (part 1) | Eric Anholt | 2013-03-11 | 1 | -1/+13 |
* | mesa: add switch case for ir_txf_ms to silence warning | Brian Paul | 2013-03-02 | 1 | -0/+3 |
* | ir_to_mesa: Translate ir_triop_lrp to OPCODE_LRP. | Matt Turner | 2013-02-28 | 1 | -2/+5 |
* | glsl: Convert mix() to use a new ir_triop_lrp opcode. | Kenneth Graunke | 2013-02-28 | 1 | -1/+5 |
* | glsl: Rename uniform_field_visitor to program_resource_visitor. | Paul Berry | 2013-02-04 | 1 | -2/+2 |
* | mesa: use GLbitfield64 when copying program inputs | Brian Paul | 2013-01-25 | 1 | -2/+2 |
* | mesa: add some casts to silence MSVC warnings | Brian Paul | 2013-01-25 | 1 | -14/+14 |
* | glsl: Extend ir_expression_operation for ARB_shading_language_packing | Matt Turner | 2013-01-25 | 1 | -0/+4 |
* | glsl: Modify uniform_field_visitor::visit_field to take a row_major parameter | Ian Romanick | 2013-01-25 | 1 | -2/+6 |
* | glsl: Add ir_variable::is_in_uniform_block predicate | Ian Romanick | 2013-01-25 | 1 | -1/+1 |