Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-09-27 | mesa: use _mesa_get_format_base_format() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_bytes() | Brian Paul | |
2009-09-27 | mesa: added _mesa_get_format_datatype() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_format_bits() | Brian Paul | |
2009-09-27 | mesa: added _mesa_get_format_bits() | Brian Paul | |
2009-09-27 | mesa: remove unused gl_texture_format fields | Brian Paul | |
2009-09-27 | mesa: added MESA_FORMAT_NONE | Brian Paul | |
2009-09-27 | mesa: move StoreTexImageFunc to texstore.h | Brian Paul | |
2009-09-27 | mesa: rework null texel fetch/store funcs | Brian Paul | |
2009-09-27 | mesa: replace function pointer types with void * | Brian Paul | |
These fields are no longer used and will be removed soon. | |||
2009-09-27 | st/mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | glide: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: NULL-out unused texformat field initializers | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | st/mesa: use _mesa_get_texstore_func() | Brian Paul | |
2009-09-27 | mesa: null-out StoreTexImageFunc fields | Brian Paul | |
2009-09-27 | g3dvl: Implement XvMC using pipe_video_context. | Younes Manton | |
2009-09-27 | mesa: use _mesa_get_texel_store_func() | Brian Paul | |
2009-09-27 | mesa: use new look-up table to get texel fetch/store funcs | Brian Paul | |
2009-09-27 | mesa: make some s3tc/fxt1 functions public | Brian Paul | |
2009-09-27 | g3dvl: pipe_video_context interface, softpipe impl, auxiliary libs | Younes Manton | |
2009-09-27 | util: Add util_next_power_of_two() for rounding a uint up to a POT. | Younes Manton | |
2009-09-27 | mesa: minor clean-up in _mesa_texstore_srgb8() | Brian Paul | |
2009-09-27 | mesa: use _mesa_get_texstore_func() to get texture image store func | Brian Paul | |
2009-09-27 | r300g: fix erroneous condition | Maciej Cencora | |
2009-09-27 | r300g: don't force vertex position for HW TCL path | Maciej Cencora | |
It could be generated by vertex shader. | |||
2009-09-27 | r300g: add some assertions | Maciej Cencora | |
Not sure why we are getting a shader with two inputs with position semantic, but we don't know how to handle it correctly so it's better to stop the app than lock the machine. | |||
2009-09-27 | r300g: plug memory leak | Maciej Cencora | |
2009-09-27 | r300g: add some debugging info | Maciej Cencora | |
2009-09-28 | r300g: fix r300 rs path | Dave Airlie | |
2009-09-28 | r300g: rewrite RS state setup. | Dave Airlie | |
Not 100% sure this is correct, but its more correct than what was here previous however it may require changes in the input routing for the frag shader. | |||
2009-09-28 | r300g: silence compiler warning | Dave Airlie | |
2009-09-27 | i915g: Submit direct vertex buffers | Jakob Bornecrantz | |
2009-09-27 | i915g: Fix warning | Jakob Bornecrantz | |
2009-09-27 | i915g: Tile shared buffers as well | Jakob Bornecrantz | |
2009-09-27 | i915g: Make sure to map tiled buffers via the gtt | Jakob Bornecrantz | |
2009-09-27 | i915g: Use boolean | Jakob Bornecrantz | |
2009-09-27 | i915g: Enable reuse of buffers | Jakob Bornecrantz | |
2009-09-27 | st/egl: Remove buffer from screen | Jakob Bornecrantz | |
It is no longer needed since the new drm api code, and it incorrectly checked if the buffer where there for testing completeness when it should have checked the texture instead. | |||
2009-09-27 | r600 : Enable draw_prim. | Richard Li | |
2009-09-27 | softpipe: Grab a ref when the fb is set. | Younes Manton | |
Nasty bug when the surface is freed and another is allocated right on top of it. The next time we set the fb state SP thinks it's the same surface and doesn't flush, and when the flush eventually happens the surface belongs to a completely different texture. | |||
2009-09-26 | mesa: move _mesa_get_texstore_func() to texstore.c | Brian Paul | |
2009-09-26 | mesa: begin removing dependencies on gl_texture_format in texstore code | Brian Paul | |
2009-09-26 | mesa: added formats.c to build | Brian Paul | |
2009-09-26 | mesa: include formats.h | Brian Paul | |
2009-09-26 | mesa: initial check-in of new formats.[ch] files | Brian Paul | |
2009-09-26 | r300g: add tx depth support in register. | Dave Airlie | |
also enable cube/3d bits in txformat reg | |||
2009-09-26 | r300g: only pass complete texture state to hw setup function | Dave Airlie | |
No point passing things twice here, also allows more state to be setup properly. | |||
2009-09-26 | r300g: add missing break in OQ emit | Dave Airlie | |