summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon
AgeCommit message (Collapse)Author
2009-04-16radeon: take a bo reference when adding to validate listDave Airlie
2009-04-12radeon: emit scissor when using cs pathJerome Glisse
2009-04-09Merge remote branch 'origin/master' into radeon-rewriteDave Airlie
Conflicts: src/mesa/drivers/dri/r200/r200_tex.c src/mesa/drivers/dri/r300/r300_cmdbuf.c src/mesa/drivers/dri/r300/r300_context.h src/mesa/drivers/dri/r300/r300_swtcl.c src/mesa/drivers/dri/r300/r300_tex.c src/mesa/drivers/dri/r300/r300_texmem.c src/mesa/drivers/dri/r300/r300_texstate.c src/mesa/drivers/dri/radeon/radeon_tex.c
2009-04-07radeon: fix compiler warningAlex Deucher
2009-04-07radeon/r200/r300: fix missing dma buffer validationDave Airlie
this make gnome shell run
2009-04-07radeon: fix bocs wrapperDave Airlie
2009-04-06radeon: add support for new ttmJerome Glisse
2009-04-06radeon: Expose a 32 bit RGBA fbconfig even when the screen depth is 16.Michel Dänzer
Otherwise current xserver / libGL no longer expose a 32 bit RGBA GLX visual, and compiz fails. Fixes http://bugs.freedesktop.org/show_bug.cgi?id=20479 .
2009-04-03mesa: rename some gl_light fields to be clearerBrian Paul
EyeDirection -> SpotDirection _NormDirection -> _NormSpotDirection
2009-04-02radeon/r200/r300: fix up the whole buffer space checking.Dave Airlie
This fixes up the buffer validation scheme, so that we keep a list of buffers to validate so cmdbuf flushes during a pipeline get all the buffers revalidated on the next emit. This also fixes radeonFlush to not flush unless we have something useful to send to the GPU, like a DMA buffer or something not state
2009-04-02radeon/common: use glCtx not ctxDave Airlie
2009-04-02radeon/r200/r300: collapse context destruction down to a common path.Dave Airlie
Context destruction was nearly the same over all the drivers, so collapse it down.
2009-04-01dri: use BorderColor instead of _BorderChanBrian Paul
2009-04-01radeon: go back and repick texture formats.Dave Airlie
This might trip up some serious FBO users, will have to see, but it avoids the slow paths for all the demos I have.
2009-04-01radeon: fixup render buffer cleanupsDave Airlie
this fixes qtdemo-qt4 starting and a leak in glxgears exit
2009-03-31radeon/dri2: if the depth buffer is 16-bit force cpp == 2Dave Airlie
This is because the DDX always allocates using the drawable sizes. which gives me twice the depth buffer I asked for, dumb.
2009-03-31radeon: fix pixel readback for RGB8 testsDave Airlie
2009-03-31r200: fix glean pixelFormats regressionDave Airlie
2009-03-31radeon/r200: fix glean failures on readPixSanity since EXT_DEPTH_STENCIL supportDave Airlie
2009-03-30radeon: fix readback problem for piglit testsDave Airlie
2009-03-26radeon/r200/r300: set correct row stride for rbsDave Airlie
2009-03-26r300: check buffer sizes in non-tcl case + set correct VRAM limitsDave Airlie
2009-03-26radeon: fixup map/unmap texture to work with override BOsDave Airlie
if you hit this you've already failed but we shouldn't crash
2009-03-24radeon/r200/r300: fix warningsDave Airlie
2009-03-24radeon: fixup some issue with fbos and sw fallbacksDave Airlie
2009-03-24radeon/r200/r300: set the texture depth correctly for DRI2Dave Airlie
2009-03-24radeon: actual format is rgba8Dave Airlie
2009-03-24radeon: fix typoDave Airlie
2009-03-24radeon: setup pipes for r300Dave Airlie
2009-03-24radeon: stupid mesa extension failDave Airlie
2009-03-23radeon: fixup wrapper bo nameDave Airlie
2009-03-23Merge branch 'radeon-fbo-hacking' into radeon-rewriteDave Airlie
2009-03-23raedon/r200/r300: mega-FBO commits.Dave Airlie
Re work depth issues. Do a lot more FBO abstactions fixup depth/stencil buffer interactions
2009-03-22radeon fbo: add draw offset calcsDave Airlie
2009-03-22radeon/r200/r300: add support for new tfp interfaceDave Airlie
also fixup old interface, gets rid of white boxes in compiz
2009-03-22radeon: use mipmap fns in FBO codeDave Airlie
2009-03-22radeon: add miptree offset functionsDave Airlie
2009-03-21radeon/r200: oops make correct fbo init callsDave Airlie
2009-03-21radeon: add xRGB span functionsDave Airlie
same as ARGB need to add a parameter to get ptr32
2009-03-21radeon: dri2 is hooked up elsewhere nowDave Airlie
2009-03-21radeon/r200: add fbo initDave Airlie
2009-03-21radeon/r200: add fbo state changesDave Airlie
2009-03-21radeon: align FBO pitchDave Airlie
2009-03-21radeon: fixup last missing x_off/y_offDave Airlie
2009-03-21radeon: add cpp/pitch to rrbDave Airlie
2009-03-21radeon/fbo: add x_off and y_off in correct placesDave Airlie
2009-03-21radeon: dPriv handling is now in cliprects codeDave Airlie
2009-03-21radeon: fixup span code for FBOsDave Airlie
2009-03-21radeon: fix up span function settingDave Airlie
2009-03-20more fbo fillinDave Airlie