Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-05-18 | r5xx: Fix typo of epic proportions. | Corbin Simpson | |
2008-05-18 | r5xx: ALU/OUT fixups. | Corbin Simpson | |
Lots of small changes. Intentionally breaks some tex stuffs. | |||
2008-05-18 | Move _mesa_init_glsl_driver_functions() into shader_api.c | Brian Paul | |
This allows making a bunch of functions static, and removes a state tracker dependency on driverfuncs.c cherry-picked from gallium-0.1 | |||
2008-05-18 | additional fog/color matrix changes from gallium-0.1 | Brian Paul | |
2008-05-18 | add state vars for color matrix, pixel transfer scale&bias | Brian Paul | |
cherry-picked from gallium-0.1 (068c7bd912283e051a55b2fd5c4568685d10f3ed) | |||
2008-05-18 | mesa: added internal post color matrix scale/bias vars | Brian Paul | |
cherry-picked from gallium-0.1 (302daeb2ec62c59bd28d0c53cdc0fb07dc9d0f58) | |||
2008-05-18 | fixes to _mesa_combine_programs(), from gallium-0.1 | Brian Paul | |
2008-05-18 | added div by zero check for Fog.End/Start (from gallium-0.1) | Brian Paul | |
2008-05-18 | clean-ups / additions from gallium-0.1 branch | Brian Paul | |
2008-05-18 | r300: fixup US_OUT_FMT bits | Dave Airlie | |
2008-05-18 | r500: you can have a single texcoord | Dave Airlie | |
2008-05-17 | r5xx: Add OPCODE_KIL. | Corbin Simpson | |
2008-05-17 | r5xx: Added OPCODE_DPH. | Corbin Simpson | |
Like DP4, but with one swizzle change. | |||
2008-05-17 | r5xx: Fix FRC. | Corbin Simpson | |
This makes tri-frc work. (Remind me again why I'm allowed near a compiler, lawl.) | |||
2008-05-17 | r5xx: Fix SCS. | Corbin Simpson | |
Output instructions need to be marked OUT so they can write to the fifo. Also, negation doesn't work with SWZ yet. | |||
2008-05-17 | r5xx: Add OPCODE_SWZ. | Corbin Simpson | |
It's so easy! | |||
2008-05-17 | r5xx: Add OPCODE_SCS. | Corbin Simpson | |
It's disabled, though, because it doesn't work. I'll figure it out later... | |||
2008-05-17 | r5xx: Adding more opcodes. | Corbin Simpson | |
EX2, FRC, LG2, SIN, RCP, and RSQ, if you care. All of these except FRC are like COS. This pretty much rounds out the set of opcodes which can be done in one ALU inst. | |||
2008-05-17 | r5xx: First swing at OPCODE_COS. | Corbin Simpson | |
2008-05-17 | r5xx: Unbreak MAX and MIN. | Corbin Simpson | |
Both of them had faulty copypasta. | |||
2008-05-17 | r500: set fragprog end to correct place | Dave Airlie | |
2008-05-17 | r300: SC register naming cleanup | Alex Deucher | |
2008-05-17 | r500: write out the correct FP registers | Alex Deucher | |
2008-05-16 | bring in fixes/changes from gallium-0.1 | Brian Paul | |
2008-05-16 | fix an attr/src mix-up when setting-up/binding vertex arrays | Brian Paul | |
This fixes problems with incorrect material coefficients when glMaterial is called per-vertex. | |||
2008-05-16 | fix merge collision | Brian Paul | |
2008-05-16 | silence warning, new assertion | Brian Paul | |
2008-05-16 | free(key) in _tnl_UpdateFixedFunctionProgram() | Shunichi Fuji | |
2008-05-16 | Fix a program refcounting error, don't share program parameter lists. | Brian Paul | |
The refcounting bug was causing a memleak (unfreed programs). The old parameter list sharing is not needed since the change in how uniforms are handled. | |||
2008-05-16 | minor changes to aid debugging | Brian Paul | |
2008-05-16 | remove stray, left-over RefCount++ | Brian Paul | |
2008-05-16 | whitespace/formatting | Brian Paul | |
2008-05-16 | init SamplersUsed bits in _mesa_parse_arb_fragment_program | Brian Paul | |
2008-05-16 | fix assertion typo: s/=/==/ | Brian Paul | |
2008-05-16 | Fix memory leak in _tnl_UpdateFixedFunctionProgram | Shunichi Fuji | |
2008-05-16 | Fix DRI build | Brian Paul | |
2008-05-15 | r500: default rsunit swizzle like fglrx | Dave Airlie | |
2008-05-15 | r500: shift tex src properly | Dave Airlie | |
2008-05-15 | r500: fixup r500 rs unit texture coordinate counting | Dave Airlie | |
2008-05-15 | r500: remove some debugging | Dave Airlie | |
2008-05-15 | r500: split output/pixel masks and emit in the correct places | Dave Airlie | |
2008-05-15 | r3/500: emit RS state before VAP | Dave Airlie | |
2008-05-15 | r500: fixup the program allocations to be the correct sizes | Dave Airlie | |
2008-05-15 | r300: set screen so that context init can find out chip ids | Dave Airlie | |
2008-05-15 | r500: add cmp support in theory | Dave Airlie | |
2008-05-15 | r500: some trivial fixups to get tri working. | Dave Airlie | |
the counter was being used one instruction over the end | |||
2008-05-15 | r500: we just need to emit a colour for clear drop tex instruction | Dave Airlie | |
2008-05-14 | Updated GLSL uniform/sampler handling from gallium-0.1 branch | Brian Paul | |
Previously, the shader linker combined the uniforms used by the vertex and fragment shaders into a combined set of uniforms. This made the implementation of glUniform*() simple, but was rather inefficient otherwise. Now each shader gets its own set of uniforms (no more modelview matrix showing up in the fragment shader uniforms, for example). cherry-picked by hand from gallium-0.1 branch | |||
2008-05-14 | mesa: new functions for managing list/index of uniforms | Brian Paul | |
cherry-picked from gallium-0.1 | |||
2008-05-14 | clean-up swizzle fields in fog code, fix NegateBase | Brian Paul | |
cherry-picked from gallium-0.1 |