Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-16 | added null xmctx check to XMesaResizeBuffers(), bug 7205 | Mathias Hopf | |
2007-03-14 | clear the b->frontxrb->drawable field in xmesa_free_buffer(), see bug 7205 | Brian | |
2007-03-14 | move CLIENT_ID code in xmesa_delete_framebuffer(), see bug 7205 | Brian | |
2007-03-06 | fix renderbuffer mem leak | Brian | |
2007-03-06 | formatting fix | 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-02-27 | fix comment | Brian | |
2007-02-26 | Rewrite code related to buffer destruction. | Brian | |
Do proper reference counting so that we don't wind up with dangling references to deleted windows/framebuffers. Should help with bug 7205. | |||
2007-02-02 | Merge branch 'vbo-0.2' | Keith Whitwell | |
Conflicts: src/mesa/main/texcompress_s3tc.c src/mesa/tnl/t_array_api.c | |||
2007-01-26 | Override Const.CheckArrayBounds for Xserver in XMesaCreateContext(). | George Sapountzis | |
This leaves one last XFree86Server ifdef in Mesa core. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. | |||
2007-01-23 | fixes for C++ warnings/errors | Brian | |
2007-01-16 | Merge branch 'master' of git+ssh://keithw@git.freedesktop.org/git/mesa/mesa ↵ | Keith Whitwell | |
into vbo-0.2 Conflicts: src/mesa/array_cache/sources src/mesa/drivers/dri/i965/brw_context.c src/mesa/drivers/dri/i965/brw_draw.c src/mesa/drivers/dri/i965/brw_fallback.c src/mesa/drivers/dri/i965/brw_vs_emit.c src/mesa/drivers/dri/i965/brw_vs_tnl.c src/mesa/drivers/dri/mach64/mach64_context.c src/mesa/main/extensions.c src/mesa/main/getstring.c src/mesa/tnl/sources src/mesa/tnl/t_save_api.c src/mesa/tnl/t_save_playback.c src/mesa/tnl/t_vtx_api.c src/mesa/tnl/t_vtx_exec.c src/mesa/vbo/vbo_attrib.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_api.c src/mesa/vbo/vbo_save_draw.c | |||
2006-11-09 | Fix some && (logical) that should clearly have been & (bitwise). | Adam Jackson | |
2006-11-02 | merge current trunk into vbo branch | Alan Hourihane | |
2006-11-01 | Remove x/y/width/height parameters from Clear functions. | Brian Paul | |
2006-10-30 | switch several dri drivers over | Keith Whitwell | |
2006-10-29 | switch over to vbo module | Keith Whitwell | |
2006-10-18 | Don't use x/y/w/h params given to Clear(). | Brian Paul | |
2006-10-17 | Remove get_buffer_size() | Brian Paul | |
Always check window size in XMesaMakeCurrent() in case glViewport is not called. | |||
2006-10-16 | remove some old code that could cause infinite recursion | Brian Paul | |
2006-10-14 | Big re-org of buffer size management. | Brian Paul | |
All buffer resizes now handled by xmesa_check_and_update_buffer_size() which uses the _mesa_resize_framebuffer() function. Moved all low-level XImage/Pixmap resizing into xm_buffers.c file. Also, update lots of comments for Doxygen. | |||
2006-10-14 | assorted clean-ups | Brian Paul | |
2006-10-11 | In xmesa_DrawPixels_8R8G8B() check if drawing into a window system buffer, | Brian Paul | |
not a user-created FBO. | |||
2006-10-11 | List of source (.c) files in each directory. | Brian Paul | |
To be included by X.org Makefile.am files so that lists of files don't need to be hardcoded and frequently updated there. | |||
2006-09-20 | make current GLX context per-thread | Brian Paul | |
2006-09-20 | fix a memleak in DestroyContext() | Brian Paul | |
2006-09-10 | don't use xmesa_DrawPixels_8R8G8B() if there's a software alpha channel | Brian Paul | |
2006-08-31 | check if ext->name is null before strcmp() | Brian Paul | |
2006-08-30 | Use XAddExtension() to register an XCloseDisplay() callback function. | Brian Paul | |
When the callback is called, free all Mesa's private visual and buffer data structures which are tied to the display. Fixes problems reported by Kitware. | |||
2006-07-06 | Don't include unused header files. | Kristian Høgsberg | |
2006-06-13 | Do a cheesy implementation of glXWait/GetVideoSyncSGI() functions, but | Brian Paul | |
disable reporting the GLX_SGI_video_sync extension anyway. Google Earth works now. | |||
2006-06-13 | GLX_BAD_CONTEXT checks in video-sync functions | Brian Paul | |
2006-05-19 | added some CHAN_BITS tests | Brian Paul | |
2006-05-08 | fix warning | Brian Paul | |
2006-05-07 | added CHAN_BITS != 8 test | Brian Paul | |
2006-04-27 | assorted clean-ups, fixes | Brian Paul | |
2006-04-27 | replace a bunch of casts with GET_XRB macro | Brian Paul | |
2006-04-26 | minor clean-up | Brian Paul | |
2006-04-26 | remove old XFree86 tag | Brian Paul | |
2006-03-30 | When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fields | Brian Paul | |
2006-03-28 | a little code movement so we don't make invalid casts from gl_renderbuffers ↵ | Brian Paul | |
to xmesa_renderbuffers | |||
2006-03-16 | added #undef GET_DISPATCH | Brian Paul | |
2006-03-16 | Moved _glapi_check_multithread() call into drivers, instead of in | Brian Paul | |
_mesa_make_current(). This removes an ugly #if !defined(IN_DRI_DRIVER) from core Mesa. | |||
2006-03-01 | added Flush in glXCopyContext() | Brian Paul | |
2006-02-24 | need to check for _NEW_BUFFERS in xmesa_update_state() | Brian Paul | |
2006-01-26 | New comments, clean-up of fields related to point/line/triangle validation. | Brian Paul | |
2006-01-10 | added a couple new assertions to help debug XGL problem | Brian Paul | |