summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
AgeCommit message (Collapse)AuthorFilesLines
2012-05-01radeon: use _mesa_is_winsys/user_fbo() helpersBrian Paul1-1/+2
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
2012-01-24radeon: derive radeon_renderbuffer from swrast_renderbufferBrian Paul1-4/+4
2011-12-05radeon: texture/renderbuffer overhaul.Dave Airlie1-1/+1
This could have been split up better, but the driver is just broken now, so bisecting the brokenness is going to be painful no matter what. This adds renderbuffer mapping/unmapping along with texture image allocation. It drops all the old texture upload paths, some of which could possible be reimplemented with the blitter later. It also redoes the span code paths to use its own set of image mapping handlers, along with removing the tiling decode paths for the color buffers, since we now hope to use the blitter for this. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-11-15radeon: use _mesa_readpixels() instead of _swrast_ReadPixels()Brian Paul1-7/+5
2011-11-11radeon: fix bug with wrong stride being used for rectangluar textures.Dave Airlie1-1/+1
This broke the meta bitmap code when it was enabled. Signed-off-by: Dave Airlie <airlied@redhat.com>
2011-09-19mesa: Use ColorLogicOpEnabled instead of _LogicOpEnabledIan Romanick1-1/+1
Since GL_EXT_blend_logic_op is removed, _LogicOpEnabled and ColorLogicOpEnabled always have the same value. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Marek Olšák <maraeo@gmail.com>
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg1-2/+2
2010-09-05radeon: Make do_blit_readpixels() into a PBO work.Henri Verbeet1-11/+31
2010-08-02radeon: Add DRI2 flush extension support, so we synchronize properly.Mario Kleiner1-0/+3
When a DRI2 swap buffer is pending we need to make sure we have the flush extension so radeon doesn't resume rendering to or reading from the not yet blitted front buffer. This fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28341 https://bugs.freedesktop.org/show_bug.cgi?id=28410 Signed-off-by: Jerome Glisse <jglisse@redhat.com> Signed-off-by: Mario Kleiner <mario.kleiner@tuebingen.mpg.de>
2010-03-13radeon: fix gl format to mesa format mapping and add GL_BGRA formatsMaciej Cencora1-7/+18
2010-03-10radeon: fallback to sw ReadPixels if color logicop is enabledMaciej Cencora1-1/+1
Fixes glean/logicOp (regressed after introducing hw accelerated support for ReadPixels)
2010-03-09radeon: add hw accelerated glReadPixel support (not enabled yet)Maciej Cencora1-0/+188