Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-21 | mesa: fix some feature tests | Brian Paul | |
(cherry picked from commit 74b14fe6ddbece8bc662aac4d3b2b18d8d853486) | |||
2008-08-06 | fix some FBO/texture queries (bug 15296) | Brian Paul | |
2008-07-04 | mesa: remove incorrect assertion | Brian Paul | |
2008-07-03 | mesa: fix problem freeing framebuffer/renderbuffer objects | Brian Paul | |
Basically, set up no-op Delete() methods for the DummyFrame/Renderbuffer objects. | |||
2008-05-09 | Revert "mesa/intel: map/unmap texture objects around mipmap generation ↵ | Dave Airlie | |
function." This reverts commit c50ffc4cb89b67ae59208eb72cdb664c846ba987. I'll fix this using the mipmap hooks I just picked from gallium-0.1 | |||
2008-05-09 | Remove unused texunit parameter to ctx->Driver.GenerateMipmap() | Brian | |
(cherry picked from commit c3395f4473c8fdf75d04c0dd72e687bc8d8127a7) | |||
2008-05-09 | Added ctx->Driver.GenerateMipmap() driver hook | Dave Airlie | |
(cherry picked from commit 4c2f3dbca940f289e67248682b84a3516d5a3031) Conflicts: src/mesa/drivers/common/driverfuncs.c | |||
2008-05-09 | mesa/intel: map/unmap texture objects around mipmap generation function. | Dave Airlie | |
This at least stops the compiz brain explosion we were seeing, I do wonder though if we should somehow be calling intel_generate_mipmap somehow. | |||
2008-03-28 | fix texture/renderbuffer mix-up in test_attachment_completeness() | Brian | |
2007-11-09 | check for texture and renderbuffer in check_end_texture_render() | Brian | |
2007-08-18 | remove dead code left over after fixing GL_READ/DRAW_BUFFER state issues | Brian | |
2007-08-16 | Rework the GL_READ_BUFFER, GL_DRAW_BUFFER state repairs that Roland ↵ | Brian | |
previously did. Basically, in update_framebuffer() (which should be called after an FBO is bound with MakeCurrent or BindFramebuffer) we check if the FBO is a window-system FBO. If it is, update the FBO's GL_READ/DRAW_BUFFER state according to the context state. Old code still in place but disabled with #if 0 / #endif. | |||
2007-08-13 | Implement mutex/locking around texture object reference counting. | Brian | |
Use new _mesa_reference_texobj() function for referencing/unreferencing textures. Add new assertions/tests to try to detect invalid usage of deleted textures. | |||
2007-07-19 | fix mesa's handling of fbo's / window fb (again) | Roland Scheidegger | |
Make sure the relevant fields in window fbs get updated at appropriate time (those are NOT the same as fbos!!!), and fix up related code accordingly. This is a bit ugly, but there's a reason the issues section in EXT_fbo is a couple hundred pages long... Hopefully correct now. | |||
2007-07-19 | more fixes for mesa's fbo handling (fixes tests/fbotest1/2) | Roland Scheidegger | |
2007-07-19 | fix mesa fb binding | Roland Scheidegger | |
Make sure that we bind the right buffer (draw or read) when rebinding the window framebuffer (the api doesn't allow binding different draw and read buffers at the same time, but the default window framebuffer is basically 2 fb objects, one for read, one for write, which can be different). Pass both of these two down the driver api (no driver uses this right now). | |||
2007-05-16 | Initial implementation of MESA_texture_array | Ian Romanick | |
Shadow sampling from texture arrays is still not implemented. Everything else should be there, though. | |||
2007-05-15 | Bring framebuffer_texture's error checking more in-line with the spec. | Ian Romanick | |
2007-04-02 | use _mesa_reference_renderbuffer() in a few more places | Brian | |
2007-03-25 | Fix some renderbuffer reference counting issues. Also fixes a mem leak. | Brian | |
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 | |