Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-05 | temporary add some extra renderbuffer debug code | Brian | |
2007-04-02 | updated debug printf | Brian | |
2007-03-25 | Fix some renderbuffer reference counting issues. Also fixes a mem leak. | Brian | |
2007-03-23 | Implement alpha buffer copy for SwapBuffers(). | Brian | |
Nicolai writes: When the pixmap pixel format has no alpha channel, the x11 driver (software rendering) adds a wrapped alpha channel on request. During SwapBuffers, this alpha channel is not copied from back to front, which means that the front buffer doesn't really contain the contents that the back buffer previously contained. A subsequent glReadPixels from the front buffer will return an incorrect result. The following patch attempts to fix this. | |||
2007-03-16 | Assorted fixes for dealing with zero-size frame/renderbuffers. | Brian | |
In xmesa_check_and_update_buffer_size() handle xmctx==NULL correctly: still call _mesa_resize_framebufer(). If we don't we can wind up in a situation where the framebuffer size is non-zero but an attached renderbuffer size is still initialized to zero. This inconsistancy can later cause problems. Check for zero-size renderbuffers in update_color_draw_buffers() and update_color_read_buffer(). See bug 7205. | |||
2007-03-06 | Fix/improve framebuffer object reference counting. | Brian | |
Use _mesa_reference_framebuffer() and _mesa_unreference_framebuffer() functions to be sure reference counting is done correctly. Additional assertions are done too. Note _mesa_dereference_framebuffer() renamed to "unreference" as that's more accurate. | |||
2006-05-20 | Added _mesa_remove_renderbuffer() as a counterpart to _mesa_add_renderbuffer(). | Brian Paul | |
Added _mesa_dereference_renderbuffer() to encapsulate renderbuffer reference count decrement, delete, locking. | |||
2006-05-19 | install renderbuffer adaptors when color channel sizes need to be reduced | Brian Paul | |
2006-05-14 | s/GLbyte/GLubyte/ | Brian Paul | |
2006-04-26 | remove _glthread_INIT_MUTEX() call | Brian Paul | |
2006-04-23 | updated assertion | Brian Paul | |
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-14 | init Red/Green/EtcBits = 0 in soft_renderbuffer_storage() | Brian Paul | |
2006-03-02 | improved error msg | Brian Paul | |
2005-11-16 | added _mesa_new_depthstencil_renderbuffer() for combined depth/stencil buffers | Brian Paul | |
2005-10-04 | change initialization of renderbuffer DepthBits | Brian Paul | |
2005-09-28 | change initialization of rb->DepthBits | Brian Paul | |
2005-09-23 | Add Wrapper field to gl_renderbuffer. Used for wrapping one renderbuffer | Brian Paul | |
with another, such as wrapping a hardware/win-sys RGB renderbuffer with a software-based alpha buffer. Previous alpha buffer wrapping was conflicting with the X driver's xmesa_renderbuffer structure containment/inheritance. That lead to memory corruption. | |||
2005-09-22 | Replace gl_renderbuffer.ComponentSizes[] with separate RedBits, GreenBits, | Brian Paul | |
BlueBits, etc fields. | |||
2005-09-20 | change mask[] test in put_mono_row_uint() | Brian Paul | |
2005-09-19 | s/GLchan/GLubyte/, fix error string, add comment | Brian Paul | |
2005-09-13 | Move _mesa_add_soft_renderbuffers() from framebuffer.c to renderbuffer.c | Brian Paul | |
Update some comments, code, etc. | |||
2005-09-03 | Remove last remnants of pre-renderbuffer code. | Brian Paul | |
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. |