Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-06 | explicit calls to _mesa_unreference_framebuffer() not always needed now | Brian | |
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. | |||
2007-03-01 | move oldFb decl into tighter scopes | Brian | |
2006-11-01 | Merge texmem-0-3-branch. | Keith Whitwell | |
2006-09-29 | Move mipmap generation functions, texture scaling functions into new | Brian Paul | |
mipmap.c file. | |||
2006-09-22 | Flush driver, not just tnl module. | Keith Whitwell | |
2006-05-20 | use new _mesa_dereference_frame/renderbuffer() functions | Brian Paul | |
2006-04-13 | casts to fix some -pedantic warnings | Brian Paul | |
2006-04-05 | Remove the code that checks for duplicated framebuffer attachments (which | Brian Paul | |
generated the error GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT). This was removed in version 117 of the GL_EXT_framebuffer_object spec. | |||
2006-04-05 | Silence minor compiler warnings (-Wextra). | Brian Paul | |
2006-03-28 | update conditional for render to GL_DEPTH_STENCIL texture, check for valid ↵ | Brian Paul | |
teximage before calling ctx->Driver.RenderTexture() | |||
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-20 | Lots of changes/fixes for rendering to framebuffer objects. | Brian Paul | |
- When deleting texture objects, unbind from FBOs if necessary. - Changed driver hooks for starting/ending render to texture. - Now properly handle case where gl[Copy]TexImage() is called after glFramebufferTexture[123]D(). That didn't work before. | |||
2006-03-20 | additional assertions and debug code for testing FBO completeness | Brian Paul | |
2006-03-15 | sync with texmem branch | Brian Paul | |
2006-03-07 | call _mesa_update_framebuffer_visual() in _mesa_FramebufferRenderbufferEXT() ↵ | Brian Paul | |
to fix some minor glitches | |||
2006-03-01 | remove temporary tokens, more error checks for blit function | Brian Paul | |
2005-12-01 | Added FinishRenderTexture() device driver function to indicate when | Brian Paul | |
rendering to a texture has likely completed. Fixed refcount issue in texture renderbuffer wrapper. | |||
2005-11-18 | In _mesa_RenderbufferStorageEXT(), try to avoid needless reallocation. | Brian Paul | |
Simplify _mesa_GetRenderbufferParameterivEXT() queries. | |||
2005-11-16 | Support for combined depth/stencil renderbuffers (GL_EXT_packed_depth_stencil). | Brian Paul | |
depthstencil.c provides wrappers for treating depth/stencil buffers either as regular depth or stencil renderbuffers. | |||
2005-11-08 | some initial work on upcoming GL_EXT_framebuffer_blit extension | Brian Paul | |
2005-10-08 | Fix some issues with state updates and renderbuffers. Querying GL_RED_BITS, | Brian Paul | |
etc. after calling glRenderBufferStorageEXT gave undefined results. | |||
2005-10-05 | In gl_texture_image replace IntFormat with InternalFormat and Format with | Brian Paul | |
_BaseFormat to be consistant with gl_renderbuffer. | |||
2005-10-04 | check if deleting currently bound frame/renderbuffer object | Brian Paul | |
2005-10-04 | fix behaviour of glIsFrame/Renderbuffer() | Brian Paul | |
2005-10-03 | added a few calls to _mesa_update_framebuffer_visual() | Brian Paul | |
2005-09-28 | Initial work for GL_EXT_packed_depth_stencil extension. | Brian Paul | |
glReadPixels done, glDrawPixels mostly done. | |||
2005-09-22 | Replace gl_renderbuffer.ComponentSizes[] with separate RedBits, GreenBits, | Brian Paul | |
BlueBits, etc fields. | |||
2005-09-07 | new comment | Brian Paul | |
2005-09-06 | minor formatting fix | Brian Paul | |
2005-06-07 | fix GL_ALPHA render-to-texture problem (Jon Smirl) | Brian Paul | |
2005-06-01 | added code to detect GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT error | Brian Paul | |
2005-05-31 | add support for GL_RENDERBUFFER_RED/GREEN/BLUE/etc_SIZE_EXT querie | 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. | |||
2005-02-27 | silence warnings | Brian Paul | |
2005-02-24 | More GL_EXT_framebuffer_object: rename some things, added device driver hooks. | Brian Paul | |
2005-02-10 | new comments, fix zoffset error test | Brian Paul | |
2005-02-09 | implement the 'completeness' tests | Brian Paul | |
2005-02-08 | just some comments | Brian Paul | |
2005-02-08 | a bunch of assorted fixes | Brian Paul | |
2005-02-08 | checkpoint latest work | Brian Paul | |
2005-02-07 | additional work on GL_EXT_framebuffer_object | Brian Paul | |
2005-02-05 | Some initial work on GL_EXT_framebuffer_object. | Brian Paul | |