summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_bo_legacy.c
AgeCommit message (Collapse)Author
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-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: 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-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-12radeon/r200/r300: make build with out libdrm_radeon installed for nowDave Airlie
2009-02-12radeon: renaming and headers cleanupDave Airlie
2009-02-04radeon: call getpagesize once and store in a staticDave Airlie
2009-02-04radeon: only do the fb read if we are mapping a VRAM objectDave Airlie
this makes writing the DMA buffers got a lot better
2009-02-03radeon: add a reference to the static buffers so they don't get deletedDave Airlie
2009-02-03radeon_bo: align size of bo to page size.Dave Airlie
This is really required for the VRAM allocator upload function.
2009-01-31r200/r300: add aperture space checksDave Airlie
2009-01-29radeon/r200/r300: bring back old style DMA buffer on top of BOs.Dave Airlie
this gets back a lot of the lots speed in gears on r500 at least I also fixed the legacy bufmgr to deal when the dma space fills up
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-14radeon/r200/r300: make legacy emit non-r300 specificDave Airlie
2009-01-14radeon/r200/r300: initial attempt to convert to common context codeDave Airlie
2008-11-15radeon: update to libdrm-radeon API changesJerome Glisse
2008-11-14r300: cs + DRI2 supportJerome Glisse
If DRI2 is enabled then switch cmd assembly to directly build hw packet.
2008-11-14r300: bo and cs abstraction.Jerome Glisse
This abstract memory management and command stream building so we can use different backend either legacy one which use old pathway or a new one like with a new memory manager. This works was done by : Nicolai Haehnle Dave Airlie Jerome Glisse