summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
AgeCommit message (Collapse)Author
2009-02-17radeon: fix not emitting texture state correctlyDave Airlie
this is whole texture dirty bit is probably not needed with the current codebase, need to revisit
2009-02-17radeon: steal miptree optimisation from intel codebaseDave Airlie
This replaces a miptree if it won't distrub anything else.
2009-02-17radeon: move YUV on first texunit check after hw state is setupDave Airlie
2009-02-17dri/radeon: export a function to cleanup a texture object.Dave Airlie
The radeon legacy code want to cleanup not free the texture obj, so export a function to do that and wrap it.
2009-02-16radeon: fix texcompress2 test.Dave Airlie
this makes compressed subimages work properly.
2009-02-16radeon: fix compressed tex subimage unpack parameterDave Airlie
2009-02-15radeon: add cflags to decide whether to link libdrm_radeon or not.Dave Airlie
You don't need libdrm_radeon for the legacy driver to build, only for the experimental mm/cs paths.
2009-02-14radeon-common: Fix crash in glGetTexImageNicolai Haehnle
Since texture images are now stored in miptrees, we cannot usually access them directly via the Data pointer. So we wrap Mesa's implementation by map/unmap calls. This crash was triggered by Sauerbraten, Piglit now contains a regression test. Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
2009-02-14r300: Fix crash in cubemap tree creationNicolai Haehnle
The mip tree creation would crash if the first baselevel image to be uploaded was not the positive-x image. Found with Sauerbraten, also added a regression test to Piglit. Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
2009-02-14r300: Redirect constant TEX coordinatesNicolai Haehnle
R3xx/R5xx fragment program texture constants must come from a hardware register instead of the constant file, so we redirect if necessary during the native rewrite phase. The symptoms of this bug started appearing when the Mesa fixed function texenvprogram code started using STATE_CURRENT_ATTRIB constants for texture coordinates when the corresponding attributes were constant across all vertices. Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
2009-02-14r300: Fix R300_CMD_SCRATCH on big endian.Michel Dänzer
2009-02-14radeon: remove unused radeon_compat.cDave Airlie
2009-02-14r200: fixup cube emit debugDave Airlie
2009-02-14r200: fix another cmdbuf sizing issueDave Airlie
2009-02-14radeon: check for valid bo in release arraysDave Airlie
2009-02-14radeon: remove old cube codeDave Airlie
2009-02-14radeon/r300: fix warningsDave Airlie
2009-02-14radeon: add initial cubemap support appears to workDave Airlie
2009-02-13radeon/r200: make setTexOffset work againDave Airlie
2009-02-13radeon/r200: fix set tex offset functionsDave Airlie
2009-02-13radeon: revert unneeded change to texturing codeDave Airlie
2009-02-13radeon: fix compressed texture upload on all radeonsDave Airlie
tested on r200, texcmp works. May need more verification
2009-02-13r200: update with changes from r100 driver for texture stateDave Airlie
2009-02-13r200: port over state emit fix from r100Dave Airlie
2009-02-13r200: fixup some CS emission sizesDave Airlie
2009-02-13r200: use correct finish interfaceDave Airlie
2009-02-13radeon: fixup include orderingDave Airlie
2009-02-13Merge remote branch 'origin/master' into radeon-rewriteDave Airlie
Conflicts: configure.ac src/mesa/drivers/dri/r200/r200_context.c src/mesa/drivers/dri/r300/r300_render.c
2009-02-13r300: fix warning about mesa_lock_context_textureDave Airlie
2009-02-12radeon: add stdint includeDave Airlie
2009-02-12radeon: add mminfo struct to wrapperDave Airlie
2009-02-12radeon: add defines for future bitsDave Airlie
2009-02-12r200: make build completeDave Airlie
2009-02-12r300: make r300 work with latest changesDave Airlie
2009-02-12radeon: make build without libdrm_radeon betterDave Airlie
2009-02-13radeon/r200/r300: make build again with tracker changesDave Airlie
2009-02-12radeon: remove depends on libdrm_radeon for now.Dave Airlie
will fixup makefiles later to detect and use libdrm_Radeon in proper places
2009-02-12radeon/r200/r300: make build with out libdrm_radeon installed for nowDave Airlie
2009-02-12r200/r300: get up to speed on renamed filesDave Airlie
2009-02-12radeon: renaming and headers cleanupDave Airlie
2009-02-12r100/r200: fix front rendering issue.Dave Airlie
2009-02-12radeon/r200/r300: another big merge upheavel.Dave Airlie
This merges lots of the hw state atom emission and firevertices code. it also removes a lot of the extra radeon crap from r300 and merge scissor
2009-02-11Fix an i965 assertion failure on glClear()Robert Ellison
While running conform with render-to-texture: conform -d 33 -v 2 -t -direct the i965 driver failed this assertion: intel_clear.c:77: intel_clear_tris: Assertion `(mask & ~((1 << BUFFER_BACK_LEFT) | (1 << BUFFER_FRONT_LEFT) | (1 << BUFFER_DEPTH) | (1 << BUFFER_STENCIL))) == 0' failed. The problem is that intel_clear_tris() is called by intelClear() to clear any and all of the available color buffers, but intel_clear_tris() actually only handles the back left and front left color buffers; so the assertion fails as soon as you try to clear a non-standard color buffer. The fix is to have intelClear() only call intel_clear_tris() with buffers that intel_clear_tris() can support. intelClear() already backs down to _swrast_Clear() for all buffers that aren't handled explicitly.
2009-02-11r300: disable assert that firesDave Airlie
2009-02-11radeon: unmap in case of two dma regions being used for one cmdbufDave Airlie
2009-02-11radeon: cleanup cmdbufferDave Airlie
2009-02-11r300: fix front buffer rendering properly fixes tests in gleanDave Airlie
2009-02-11r200: fix buildDave Airlie
2009-02-10intel: Add x8r8g8b8 visuals to DRI1 fbconfigs alongside a8r8gb8.Eric Anholt
This involved fixing driConcatConfigs to not return const (which had made a mess of a previous patch too).
2009-02-10sis: fix signedness warningsEric Anholt