Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-22 | radeon/fbo: use correct depth texture offset for depth textures | Andre Maasikas | |
2010-01-04 | Remove leftover __DRI{screen,drawable,context}Private references | Kristian Høgsberg | |
As part of the DRI driver interface rewrite I merged __DRIscreenPrivate and __DRIscreen, and likewise for __DRIdrawablePrivate and __DRIcontextPrivate. I left typedefs in place though, to avoid renaming all the *Private use internal to the driver. That was probably a mistake, and it turns out a one-line find+sed combo can do the mass rename. Better late than never. | |||
2009-12-18 | radeon: protect fbo allocation message with debug | Alex Deucher | |
fixes fdo bug 25708 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2009-12-03 | radeon: workaround an FBO issue | Maciej Cencora | |
Fixes #21501 | |||
2009-11-17 | radeon: FBO fixes for big endian. | Michel Dänzer | |
2009-10-29 | radeon: fix incorrect Z format in radeon_alloc_renderbuffer_storage() | Brian Paul | |
And update error message. | |||
2009-10-28 | Merge branch 'texformat-rework' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/radeon/radeon_fbo.c src/mesa/drivers/dri/s3v/s3v_tex.c src/mesa/drivers/dri/s3v/s3v_xmesa.c src/mesa/drivers/dri/trident/trident_context.c src/mesa/main/debug.c src/mesa/main/mipmap.c src/mesa/main/texformat.c src/mesa/main/texgetimage.c | |||
2009-10-27 | radeon: add case for MESA_FORMAT_X8_Z24 in radeon_create_renderbuffer() | Brian Paul | |
2009-10-25 | mesa: choose texture format in core mesa, not drivers | Brian Paul | |
Call the ctx->Driver.ChooseTextureFormat() function from core Mesa's _mesa_[Copy]TexImage functions instead of in the driver functions. One less thing for drivers to do. | |||
2009-10-22 | radeon: simplify radeon_create_renderbuffer() | Brian Paul | |
2009-10-22 | radeon: fix some renderbuffer format bugs | Brian Paul | |
2009-10-19 | Merge branch 'mesa_7_6_branch' of ↵ | Alex Deucher | |
git+ssh://agd5f@git.freedesktop.org/git/mesa/mesa regenerated lex.yy.c | |||
2009-10-15 | Use the right pitch when rendering to a texture | Owen Taylor | |
We need to get the pitch from the texture level we are rendering to, rather than just using the base texel width. | |||
2009-10-14 | radeon: initialize renderbuffer Format field in radeon_create_renderbuffer() | Brian Paul | |
Plus, use MESA_FORMAT_S8_Z24 everywhere. | |||
2009-10-08 | mesa: remove a bunch of gl_renderbuffer fields | Brian Paul | |
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries. | |||
2009-10-05 | drivers: don't include texformat.h | Brian Paul | |
And remove other unneeded #includes while we're at it. | |||
2009-09-30 | mesa: replace gl_texture_format with gl_format | Brian Paul | |
Now gl_texture_image::TexFormat is a simple MESA_FORMAT_x enum. ctx->Driver.ChooseTexture format also returns a MESA_FORMAT_x. gl_texture_format will go away next. | |||
2009-09-27 | drivers: use more mesa format functions | Brian Paul | |
2009-09-19 | mesa: rename functions to be more consistant with rest of mesa | Brian Paul | |
2009-08-31 | r100: Use shared debug code. | Pauli Nieminen | |
Converted r100 to use shared debug code with sed and fast compile check. New code has compability layer so old debugging code doesn't have to be changed all immidiatly. | |||
2009-08-25 | radeon: fix fbo size calculation to after pitch | Dave Airlie | |
2009-08-24 | r300: add support for EXT_framebuffer_blit | Maciej Cencora | |
2009-08-17 | radeon: remove RADEON_DEBUG_BO stuff | Alex Deucher | |
This stuff was a vestige of the r600 bring up and now mostly serves to periodically break the build. | |||
2009-08-10 | radeon_fbo: switch short to byte for 565 | Dave Airlie | |
2009-08-10 | radeon: fix cut-n-paste in alphabits in fbo code | Dave Airlie | |
2009-07-15 | Merge branch 'master' of git+ssh://agd5f@git.freedesktop.org/git/mesa/mesa ↵ | Alex Deucher | |
into r6xx-rewrite This builds, but I get an assertion in radeonGetLock() due to the drawable being null. | |||
2009-07-15 | make sure ctx->Driver.Flush is valid before calling it | Alex Deucher | |
2009-07-14 | radeon/fbo: stencil bits fix from Michel in intel fbo code | Dave Airlie | |
2009-07-12 | radeon: fbo fix firecube crashes | Dave Airlie | |
it might still be misrendering not sure | |||
2009-07-06 | radeon: fixup FBO depth 24 allocations to avoid assert | Dave Airlie | |
2009-05-19 | Makeup checkin for radeon code change paired with r6/7 code. | root | |
2009-05-08 | R6xx/R7xx: WIP r6xx-rewrite code | Richard Li | |
2009-04-01 | radeon: 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-03-31 | radeon: fix pixel readback for RGB8 tests | Dave Airlie | |
2009-03-24 | radeon/r200/r300: fix warnings | Dave Airlie | |
2009-03-24 | radeon: fixup some issue with fbos and sw fallbacks | Dave Airlie | |
2009-03-24 | radeon: actual format is rgba8 | Dave Airlie | |
2009-03-23 | raedon/r200/r300: mega-FBO commits. | Dave Airlie | |
Re work depth issues. Do a lot more FBO abstactions fixup depth/stencil buffer interactions | |||
2009-03-22 | radeon fbo: add draw offset calcs | Dave Airlie | |
2009-03-22 | radeon: use mipmap fns in FBO code | Dave Airlie | |
2009-03-21 | radeon: align FBO pitch | Dave Airlie | |
2009-03-21 | radeon: add cpp/pitch to rrb | Dave Airlie | |
2009-03-21 | radeon: fix up span function setting | Dave Airlie | |
2009-03-20 | more fbo fillin | Dave Airlie | |
2009-03-20 | radeon: some more fbo work | Dave Airlie | |
2009-03-20 | radeon: initial couch code copy from radeon | Dave Airlie | |