summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
AgeCommit message (Collapse)Author
2009-02-10trident: Fix signedness warning.Eric Anholt
2009-02-10tdfx: Fix begin/endquery for current API.Eric Anholt
2009-02-10intel: Don't do the extra MI_FLUSH in flushing except when doing glFlush().Eric Anholt
Everything other than "make sure the last rendering ends up visible on the screen" doesn't need that behavior.
2009-02-10intel: Speed up glDrawPixels(GL_ALPHA) by using an alpha texture format.Eric Anholt
2009-02-10intel: Fix some state leakage of {Client,}ActiveTexture in metaops.Eric Anholt
Found while debugging cairo-gl.
2009-02-10intel: don't crash when dri2 tells us about buffers we don't care about.Eric Anholt
2009-02-10Merge commit 'origin/gallium-master-merge'Brian Paul
This is the big merge of the gallium-0.2 branch into master. gallium-master-merge was just the staging area for it. Both gallium-0.2 and gallium-master-merge are considered closed now. Conflicts: progs/demos/Makefile src/mesa/main/state.c src/mesa/main/texenvprogram.c
2009-02-10intel: minor reformatting, commentsBrian Paul
2009-02-11radeon: fix span init needs more workDave Airlie
2009-02-11radeon/r200/r300: merge span code into single shared fileDave Airlie
2009-02-11radeon/r200: flush vertices when data in cmdbuf.Dave Airlie
This fixes a whole bunch of regressions in piglit
2009-02-11radeon: r100 can't use some of the texture formats.Dave Airlie
this fixes the texrect-many test
2009-02-11radeon/r200/r300: fix span code for depth reading.Dave Airlie
makes the maskedClear test work
2009-02-10r100: remove debug codeDave Airlie
2009-02-10r100: fix 3D texture fallbackDave Airlie
2009-02-10radeon: fix fallback case where t->mt is valid NULLDave Airlie
2009-02-10gallium: Fixups for driCreateConfigs MSAA support.Michel Dänzer
Add the MSAA samples array or make sure its contents are initialized.
2009-02-09mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer()Brian Paul
2009-02-09i965: need to disable current shader, if any, in intel_clear_tris()Brian Paul
Fixes bad background in all the progs/glsl/ tests.
2009-02-10radeon: put back state emission lastcmdDave Airlie
2009-02-10r200: invalidate texture paths in some more placesDave Airlie
2009-02-10radeon: major cleanups removing old dead codepaths.Dave Airlie
This should be working gears on radeon state
2009-02-09re-add MSAA supportBrian Paul
(cherry picked from commit f7d80aa00611917bc8ce637136d982b151b8f44f) This also involved adding the new MSAA fields to driCreateConfigs(). Also, re-add prog_instructions->Sampler field for i965 driver. Will have to revisit that.
2009-02-09mesa: merge gallium-0.2 into gallium-master-mergeBrian Paul
Merge commit 'origin/gallium-0.2' into gallium-master-merge Conflicts: Makefile docs/relnotes-7.4.html docs/relnotes.html src/mesa/drivers/dri/i965/brw_wm.h src/mesa/main/imports.c src/mesa/main/mtypes.h src/mesa/main/texcompress.c src/mesa/main/texenvprogram.c src/mesa/main/version.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_draw.c
2009-02-09radeon: fix alignment issues in ELT codeDave Airlie
2009-02-09radeon: make more r100 workDave Airlie
2009-02-09r200: cleanup some bits that aren't usedDave Airlie
2009-02-07radeon: remove include that breaks build in !OLD_PACKET pathDave Airlie
this path isn't enabled by default in any case.
2009-02-06radeon: port over arrays code even though not in use yetDave Airlie
2009-02-06r100: fixup radeon so gears seems to workDave Airlie
2009-02-06radeon: remove unused texmemDave Airlie
2009-02-06r300: fix some autostate batch setupsDave Airlie
2009-02-04mesa: make Xlib glXIsDirect() always return TrueBrian Paul
2009-02-04intel: Decode MI operands using specific length masksChris Wilson
The MI opcodes have different variable length masks, so use an operand specific mask to decode the length.
2009-02-04intel: Correct decoding of 3DSTATE_PIXEL_SHADER_CONSTANTSChris Wilson
A couple of minor typos that proclaimed an error in the wrong command, and failed to offset the mask.
2009-02-04intel: Fix fbo_firecube regression with FBconfigs change.Eric Anholt
By selecting a 4444 texture format due to a bad test, we hit the intel_update_wrapper error path, and despite the appearance of error handling in it and its callers, the desired behavior (software fallback) doesn't occur.
2009-02-04r300: make the macros safe. add missing parenthesis.Maciej Cencora
2009-02-04r300: Fix EXP2 fogMaciej Cencora
2009-02-04radeon/r200 remove more unused codeDave Airlie
2009-02-04radeon: make compile again.Dave Airlie
Not tested but ripped out lots of stuff unneeded anymore time to test later
2009-02-04r300: fix up CS for modesetting - gears under kms worksDave Airlie
2009-02-03intel: Fix commented-out glViewport in intel_meta_set_passthrough_transform.Eric Anholt
Too much commit -a while debugging.
2009-02-03swrast: Add support for x8r8g8b8 fbconfig.Eric Anholt
This lets swrast produce an fbconfig suitable for the root visual now that the server's not allowing mismatched fbconfigs.
2009-02-04radeon: make generate_mipmap staticDave Airlie
2009-02-04r300: fix swtclDave Airlie
2009-02-04r200: fixup DMA region stuffDave Airlie
2009-02-04radeon: call getpagesize once and store in a staticDave Airlie
2009-02-04r300: make dma buffer reuse much more sensibleDave Airlie
2009-02-04radeon: add support for stencil buffers + misc debug changesDave Airlie
this adds the stencil rb setup, along with misc changes to formatting and debug
2009-02-04r200: move to new mipmap interfaceDave Airlie