aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/radeon
Commit message (Collapse)AuthorAgeFilesLines
* raedon/r200/r300: mega-FBO commits.Dave Airlie2009-03-2313-353/+466
| | | | | | Re work depth issues. Do a lot more FBO abstactions fixup depth/stencil buffer interactions
* radeon fbo: add draw offset calcsDave Airlie2009-03-223-2/+12
|
* radeon: use mipmap fns in FBO codeDave Airlie2009-03-221-3/+2
|
* radeon: add miptree offset functionsDave Airlie2009-03-222-2/+30
|
* radeon/r200: oops make correct fbo init callsDave Airlie2009-03-211-1/+1
|
* radeon: add xRGB span functionsDave Airlie2009-03-211-1/+11
| | | | same as ARGB need to add a parameter to get ptr32
* radeon: dri2 is hooked up elsewhere nowDave Airlie2009-03-211-4/+0
|
* radeon/r200: add fbo initDave Airlie2009-03-211-0/+1
|
* radeon/r200: add fbo state changesDave Airlie2009-03-211-2/+12
|
* radeon: align FBO pitchDave Airlie2009-03-211-3/+5
|
* radeon: fixup last missing x_off/y_offDave Airlie2009-03-211-4/+4
|
* radeon: add cpp/pitch to rrbDave Airlie2009-03-211-0/+2
|
* radeon/fbo: add x_off and y_off in correct placesDave Airlie2009-03-211-10/+10
|
* radeon: dPriv handling is now in cliprects codeDave Airlie2009-03-211-12/+0
|
* radeon: fixup span code for FBOsDave Airlie2009-03-213-15/+44
|
* radeon: fix up span function settingDave Airlie2009-03-213-6/+15
|
* more fbo fillinDave Airlie2009-03-201-0/+68
|
* radeon: some more fbo workDave Airlie2009-03-203-97/+303
|
* radeon: initial couch code copy from radeonDave Airlie2009-03-202-0/+195
|
* Merge remote branch 'main/master' into radeon-rewriteDave Airlie2009-03-204-16/+16
|\ | | | | | | | | | | | | | | | | 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
| * fix typo in fragment pipe alu define, should fix dot3_rgb tex combineRoland Scheidegger2009-03-091-1/+1
| |
| * mesa: remove last of _mesa_unreference_framebuffer() callsBrian Paul2009-03-071-1/+1
| |
| * r300: shut up valgrindMaciej Cencora2009-03-071-1/+1
| | | | | | | | | | | | It complained about uninitialized values Signed-off-by: Nicolai Haehnle <[email protected]>
| * R300: Add support for RS600 chipsAlex Deucher2009-02-252-2/+12
| |
| * mesa: re-org texgen stateBrian Paul2009-02-211-12/+12
| | | | | | | | New gl_texgen struct allows quite a bit of code reduction.
* | radeon/r200/r300: cleanup some of the renderbuffer codeDave Airlie2009-03-196-78/+69
| |
* | radeon: fix up locking like the intel driver for pageflip/swapsDave Airlie2009-03-191-5/+6
| |
* | Fixup previous commit.Michel Dänzer2009-03-161-3/+2
| | | | | | | | | | radeonScheduleSwap() already takes the lock in the SwapBuffers case, only the CopySubBuffer case was missing it.
* | radeon: Take the hardware lock for swaps and flips.Michel Dänzer2009-03-161-0/+3
| | | | | | | | Otherwise they fail with AIGLX at least.
* | radeon: remove unused linesDave Airlie2009-03-101-3/+0
| |
* | r300: move firevertices out into the main place its needed.Dave Airlie2009-03-092-2/+1
| | | | | | | | This fixes a hang on context destruction on rs690
* | radeon: fix cut-n-paste typoDave Airlie2009-03-081-1/+1
| |
* | rs690: fix r300 swtcl bug in DMA code.Dave Airlie2009-03-071-2/+9
| | | | | | | | | | | | | | | | 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.
* | radeon: implement userspace clearsDave Airlie2009-03-062-29/+238
| | | | | | | | | | | | | | | | 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.
* | radeon: use t->bo to figure out of settexbuffer override is in actionDave Airlie2009-03-051-1/+1
| |
* | r200: add set tex buffer supportDave Airlie2009-03-061-3/+6
| |
* | radeon: r100 clean up CS packet size calcDave Airlie2009-03-041-4/+3
| |
* | radeon: settexbuffer supportDave Airlie2009-03-044-1/+119
| | | | | | | | This gets DRI2 compiz going
* | radeon: fix texturing for r100Dave Airlie2009-03-041-9/+66
| |
* | radeon: use swrast clear - fail on depthDave Airlie2009-03-041-54/+103
| | | | | | | | need to write real hw user clear
* | radeon: fixup some segfaults/exit at startupDave Airlie2009-03-042-6/+4
| |
* | radeon: remove debuggingDave Airlie2009-03-031-1/+0
| |
* | radeon: refactor framebuffer code like intelDave Airlie2009-03-039-391/+557
| | | | | | | | | | this is a step towards fbos and should fix pageflipping, but I think the first flip seems broken.
* | R300: add support for RS600 chipsAlex Deucher2009-02-272-1/+11
| |
* | R300: set the number of GB pipes on all r3xx-r5xx chipsAlex Deucher2009-02-271-1/+1
| |
* | radeon: add more fbconfigsDave Airlie2009-02-271-2/+56
| | | | | | | | this makes glxgears get its background back when running under DRI2
* | r200: port over cs emit changes from radeonDave Airlie2009-02-271-1/+0
| |
* | radeon: fixup old packets emission for CS caseDave Airlie2009-02-261-3/+35
| |
* | r100: fixup kms state emissionsDave Airlie2009-02-261-2/+38
| |
* | radeon: avoid page flip code in DRI2Dave Airlie2009-02-261-1/+2
| |