summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2009-01-22glapi: include ARB_framebuffer_object.xmlBrian Paul
2009-01-22glapi: XML spec for GL_ARB_framebuffer_objectBrian Paul
2009-01-22glsl: call _mesa_write_shader_to_file(). Debug-only, disabledBrian Paul
2009-01-22glsl: new _mesa_write_shader_to_file() functionBrian Paul
Used to log a shader to a file. Includes shader source code, the info log and generated GPU instructions.
2009-01-22glsl: set shader->CompileStatus in _slang_compile()Brian Paul
2009-01-22mesa: added _mesa_fprintf() wrapperBrian Paul
2009-01-22mesa: master is open for new development, eventually will be Mesa 7.5Brian Paul
2009-01-22mesa: set version to 7.3Brian Paul
2009-01-22r200: fix up swtcl/tcl flushesDave Airlie
2009-01-23radeon: plug memory leak running gearsDave Airlie
2009-01-23radeon: remove some debuggingDave Airlie
2009-01-22radeon: better free of arrayDave Airlie
2009-01-22radeon: free all relocs in arrayDave Airlie
2009-01-22radeon: check relocs before derefDave Airlie
2009-01-22radeon: fix relocs even moreDave Airlie
2009-01-22radeon: fix reloc free harderDave Airlie
2009-01-22radeon: free indices caught with valgrindDave Airlie
2009-01-22radeon: cleanup bo unref codepath in pending codeDave Airlie
assert for bad case hopefully
2009-01-22radeon: fix counting for cfree handles in an inlineDave Airlie
2009-01-23radeon: add r100/r200 workarounds for legacy agingDave Airlie
2009-01-23r200: disable some debugDave Airlie
2009-01-23r200: emit elts into a separate ELT boDave Airlie
2009-01-22Merge commit 'origin/master' into gallium-0.2Alan Hourihane
Conflicts: windows/VC8/mesa/osmesa/osmesa.vcproj windows/VC8/progs/demos/gears.vcproj windows/VC8/progs/progs.sln
2009-01-21i915: Add decode for PS in batchbuffers.Eric Anholt
2009-01-21i965: Remove gratuitous whitespace in INTEL_DEBUG=wm output.Eric Anholt
2009-01-21i965: Use _mesa_num_inst_src_regs() instead of keeping a copy of its contents.Eric Anholt
2009-01-22r200r300: start merging span codeDave Airlie
2009-01-21[intel] Remove remaining references to intel_wait_flips().Kristian Høgsberg
Oops.
2009-01-22r200: remove indexed vertsDave Airlie
2009-01-21swrast: fix redundant texture application in affine_textured_triangle().Brian Paul
This function does simple texture mapping so disable normal texture mapping before we call _swrast_write_rgba_span() so that we don't do it twice.
2009-01-22radeon: fix 1D texturesDave Airlie
2009-01-21mesa: add some debug assertions to detect null current texture object pointersBrian Paul
See bug #17895. These assertions could be removed when this is resolved.
2009-01-22r200: fix cubemapsDave Airlie
2009-01-22r200/r300: port r200 texture handling to common codeDave Airlie
we now get texrect + trivial textures working
2009-01-21r300/radeon: move face_for_targetDave Airlie
2009-01-20[intel] Go back to using the typedef for the sarea structTimo Aaltonen
The upstream linux kernel headers and libdrm kernel headers disagree on the tag name for the sarea struct: _drm_i915_sarea vs drm_i915_sarea. They both typedef it to drm_i915_sarea_t though, so just use that.
2009-01-20Remove intel pageflipping support in its entirety.Owain G. Ainsworth
It's been broken and deprecated for a while, so it's time to die. This has the wonderful benefit of cleaning up the code a fair amount; making it marginally less twisty. I'm unsure if the for loops in IntelWindowMoved are still needed.
2009-01-21r300: start migrating common functions into common codeDave Airlie
2009-01-20glsl: silence unused var warningsBrian Paul
2009-01-20mesa: silence uninitialized var warningsBrian Paul
2009-01-20mesa: silence compiler warning at -O2Brian Paul
2009-01-21r300: move to common texture_image objectDave Airlie
2009-01-20mesa: bump version to 7.3-rc3Brian Paul
2009-01-21radeon/r200/r300: start to move to common miptree/texobjDave Airlie
2009-01-21r200: make tri render on my r200.Dave Airlie
2009-01-20r200: tri runs without crashing - doesn't draw anythingDave Airlie
2009-01-20r200: clear is working at least - not much elseDave Airlie
2009-01-20Add a comment about _tnl_emit_indexed_vertices_to_buffer.Thomas Hellstrom
2009-01-20tnl: Add a utility to emit indexed vertices to a DMA buffer.Thomas Hellstrom
This utility is useful for hardware that doesn't support HW index buffers. It's a bit inefficient but appears to give a substantial performance gain, as we can emit tri strips that would otherwise be split into triangles.
2009-01-20Fix store texel for argb4444.Thomas Hellstrom