Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-11 | st/xorg: initialize pipe in the renderer | Zack Rusin | |
2009-10-11 | st/xorg: lots of rendering and xv changes | Zack Rusin | |
extract all the rendering code to xorg_rendedrer, make both exa and xv share that code. in the process cleanup the rendering code and implement a lot more of the xv infrastructure. | |||
2009-10-11 | configs: fix some remains of the i915simple driver | Zack Rusin | |
2009-10-11 | st/xorg: implement basics of xv | Zack Rusin | |
2009-10-11 | i965: Fix the last valid address setting for the index buffer. | Eric Anholt | |
Again, last valid address, not first invalid address. Fixes regression in 255e5be265133280293bbfd8b2f9b74b2dec50bb that the kernel now catches and caused piglit draw_elements_base_vertex to fail. | |||
2009-10-11 | i965: Fix the bounds emitted in the vertex buffer packets. | Eric Anholt | |
It's the address of the last valid byte, not the address of the first invalid byte. This should also fix problems with rendering with the new sanity checks in the kernel. | |||
2009-10-11 | r300g: Fix fragment program constants upload on R300 | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-11 | r300g: fix blending default state + alpha separate. | Dave Airlie | |
this makes the default state same as r300 | |||
2009-10-10 | llvmpipe: Only invoke the shader if necessary. | José Fonseca | |
2009-10-10 | progs/perf: Fix MSVC build. | Vinson Lee | |
2009-10-10 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-10-10 | softpipe: fix multi-drawbuffers regression | Brian Paul | |
This is part of the fix for bug 24401. | |||
2009-10-10 | softpipe: revert 564df9dc5f6335eb8dc68f3c69cf054d2142663c | Brian Paul | |
This change silenced valgrind warnings but broke progs/tests/drawbuffers. The problem is we don't know the surface's state when we start caching it (it may or may not be initialized/cleared/etc). So "clearing" it here was presumptuous. Leaving the code in place (but disabled) for reference and when using valgrind. Fixes bug 24401 | |||
2009-10-10 | r300g: add video surface create and destroy functions | Cooper Yuan | |
2009-10-09 | radeon: fix scissor regression | Alex Deucher | |
fixes fdo bug 24248 | |||
2009-10-09 | docs: fix aux buffer bug 24426 | Brian Paul | |
2009-10-09 | st/mesa: create aux buffers according to visual | Brian Paul | |
Fixes bug 24426 for gallium. | |||
2009-10-09 | mesa: fix incorrect assertion in _mesa_add_aux_renderbuffers() | Brian Paul | |
Fixes bug 24426. | |||
2009-10-09 | llvmpipe: Additional checks for binner block lists. | José Fonseca | |
2009-10-09 | llvmpipe: Use framebuffer coords consistently. | José Fonseca | |
2009-10-09 | llvmpipe: Fix type in tri bounding box check. | José Fonseca | |
2009-10-09 | llvmpipe: fill in tri min/max values | Keith Whitwell | |
2009-10-09 | llvmpipe: Remove partial tile override. | José Fonseca | |
2009-10-09 | llvmpipe: Undo debug override. | José Fonseca | |
2009-10-09 | llvmpipe: properly clip tile writes | Keith Whitwell | |
2009-10-09 | llvmpipe: Pass framebuffer coords to shader. | José Fonseca | |
2009-10-09 | llvmpipe: Tell setup shader inputs. | José Fonseca | |
2009-10-09 | llvmpipe: correct binning maths for iterating over whole tiles | Keith Whitwell | |
2009-10-09 | llvmpipe: Get jit_context/jit_function across the rasterizer. | José Fonseca | |
2009-10-09 | llvmpipe: set block count/used values back to zero on reset | Keith Whitwell | |
2009-10-09 | llvmpipe: just bin whole tiles for now | Keith Whitwell | |
2009-10-09 | llvmpipe: always call begin_binning on transition to active state | Keith Whitwell | |
2009-10-09 | llvmpipe: add LP_DEBUG env var | Keith Whitwell | |
2009-10-09 | llvmpipe: initialize setup data store | Keith Whitwell | |
2009-10-09 | llvmpipe: initialize setup line/tri/point funcs | Keith Whitwell | |
2009-10-09 | llvmpipe: Put jit_context in store. | José Fonseca | |
2009-10-09 | llvmpipe: trivial/clear works | Keith Whitwell | |
2009-10-09 | llvmpipe: more debug | Keith Whitwell | |
2009-10-09 | llvmpipe: Replace util_pack_color with straight float_to_ubyte. | José Fonseca | |
2009-10-09 | llvmpipe: debug, crash fixes | Keith Whitwell | |
2009-10-09 | llvmpipe: fix crash on init | Keith Whitwell | |
2009-10-09 | llvmpipe: fix a couple of warnings | Keith Whitwell | |
2009-10-09 | llvmpipe: Add stub lp_setup_is_texture_referenced. | José Fonseca | |
2009-10-09 | llvmpipe: Pass state to setup. | José Fonseca | |
2009-10-09 | util: Force ESI register for cpuid's ebx result. | José Fonseca | |
Fixes a segfault and better code. Unfortunately using an arbitrary register ("=r") causes the gcc to abort when the code is optimized saying it can't satisfy the constraint. Setting seems to do the trick. | |||
2009-10-09 | llvmpipe: Eliminate constant mapping/unmapping. | José Fonseca | |
2009-10-09 | llvmpipe: remove dead code | Keith Whitwell | |
2009-10-09 | llvmpipe: get lp_setup_tri building | Keith Whitwell | |
2009-10-09 | llvmpipe: use union lp_cmd_rast_arg directly, rather than through a pointer | Keith Whitwell | |
The union itself consists of pointers. We don't need to be passing pointer to pointers. | |||
2009-10-09 | llvmpipe: hook up some state, add stub line and point functions | Keith Whitwell | |