summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon
AgeCommit message (Collapse)Author
2009-03-20radeon: some more fbo workDave Airlie
2009-03-20radeon: initial couch code copy from radeonDave Airlie
2009-03-20Merge remote branch 'main/master' into radeon-rewriteDave Airlie
Conflicts: src/mesa/drivers/dri/r300/r300_cmdbuf.c src/mesa/drivers/dri/r300/r300_state.c src/mesa/drivers/dri/r300/r300_swtcl.c src/mesa/drivers/dri/r300/radeon_ioctl.c src/mesa/drivers/dri/radeon/radeon_screen.c
2009-03-19radeon/r200/r300: cleanup some of the renderbuffer codeDave Airlie
2009-03-19radeon: fix up locking like the intel driver for pageflip/swapsDave Airlie
2009-03-16Fixup previous commit.Michel Dänzer
radeonScheduleSwap() already takes the lock in the SwapBuffers case, only the CopySubBuffer case was missing it.
2009-03-16radeon: Take the hardware lock for swaps and flips.Michel Dänzer
Otherwise they fail with AIGLX at least.
2009-03-10radeon: remove unused linesDave Airlie
2009-03-09fix typo in fragment pipe alu define, should fix dot3_rgb tex combineRoland Scheidegger
2009-03-09r300: move firevertices out into the main place its needed.Dave Airlie
This fixes a hang on context destruction on rs690
2009-03-07mesa: remove last of _mesa_unreference_framebuffer() callsBrian Paul
2009-03-08radeon: fix cut-n-paste typoDave Airlie
2009-03-07r300: shut up valgrindMaciej Cencora
It complained about uninitialized values Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
2009-03-07rs690: fix r300 swtcl bug in DMA code.Dave Airlie
When we finish emitting swtcl objects, we request space in the cmdbuf, and flush if no space exists. However in this case we also flush the DMA buffer we just put the vertices we wanted to send in. This checks in advance if we have space in the buffer.
2009-03-06radeon: implement userspace clearsDave Airlie
This is pretty much Eric Anholts implementation of clear using the GL state machine from the Intel drivers. It works quite well for now for us, probably could do with trying to use Z engine for clears.
2009-03-05radeon: use t->bo to figure out of settexbuffer override is in actionDave Airlie
2009-03-06r200: add set tex buffer supportDave Airlie
2009-03-04radeon: r100 clean up CS packet size calcDave Airlie
2009-03-04radeon: settexbuffer supportDave Airlie
This gets DRI2 compiz going
2009-03-04radeon: fix texturing for r100Dave Airlie
2009-03-04radeon: use swrast clear - fail on depthDave Airlie
need to write real hw user clear
2009-03-04radeon: fixup some segfaults/exit at startupDave Airlie
2009-03-03radeon: remove debuggingDave Airlie
2009-03-03radeon: refactor framebuffer code like intelDave Airlie
this is a step towards fbos and should fix pageflipping, but I think the first flip seems broken.
2009-02-27R300: add support for RS600 chipsAlex Deucher
2009-02-27R300: set the number of GB pipes on all r3xx-r5xx chipsAlex Deucher
2009-02-27radeon: add more fbconfigsDave Airlie
this makes glxgears get its background back when running under DRI2
2009-02-27r200: port over cs emit changes from radeonDave Airlie
2009-02-26radeon: fixup old packets emission for CS caseDave Airlie
2009-02-26r100: fixup kms state emissionsDave Airlie
2009-02-26radeon: avoid page flip code in DRI2Dave Airlie
2009-02-26radeon: enable DRI2 for r100Dave Airlie
2009-02-26radeon: move CB/ZB state init into emit codeDave Airlie
This removes the use of the sarea for this stuff so makes DRI2 easier and emits the CB/ZB info in the correct place
2009-02-25R300: Add support for RS600 chipsAlex Deucher
2009-02-23r300: fixup old setTexOffset DRI1 extensionDave Airlie
2009-02-23radeon: add more debug info to the flush debugDave Airlie
2009-02-23radeon: stabilise r300 driver like the F10 mesa bufmgrDave Airlie
For some reason flushs caused by this CS needs flush hook, caused the chip to lockup on r300 under compiz, whereas the F10 driver was rock solid.
2009-02-23radeon: add some debugging for flush ioctlsDave Airlie
2009-02-23radeon: make state atom print like old r300 codeDave Airlie
2009-02-23radeon: fixup legacy bo/cs out of VRAM waiting.Dave Airlie
This is similiar to the code from the F10 r300 bufmgr
2009-02-21mesa: re-org texgen stateBrian Paul
New gl_texgen struct allows quite a bit of code reduction.
2009-02-18radeon: move device param id check ifndefDave Airlie
2009-02-17radeon: initialise swapped objects pointerDave Airlie
2009-02-17radeon: legacy texMem interface fixups.Dave Airlie
The texmem.c interface is wildly messed up it really wants to own the objects so let it, pain in the ass but this code should work a lot better now
2009-02-17Revert "dri/radeon: export a function to cleanup a texture object."Dave Airlie
This reverts commit 5325f8624093bb1ec30d581b4ff64218ceab99f9.
2009-02-17radeon/r200: drop legacy texture heap codeDave Airlie
2009-02-17radeon/r200: fixup texturing aging callsDave Airlie
2009-02-17radeon: fixup destroy texture object exit path and update LRUDave Airlie
the destroy path was doing bad things with structure names, make it do less bad things, use container_of instead
2009-02-17radeon: remove leftover debugDave Airlie
2009-02-17radeon/r200: drop dirty state from texture object + pp_txoffsetDave Airlie
this is just more code cleanup for old dead code