Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-10-17 | Remove get_buffer_size() | Brian Paul | |
Always check window size in XMesaMakeCurrent() in case glViewport is not called. | |||
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-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-03-30 | When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fields | 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-01-10 | added a couple new assertions to help debug XGL problem | Brian Paul | |
2005-12-02 | Fix two failures encountered when running out of memory during XImage | Brian Paul | |
allocation. Append \n to _mesa_warning() strings. | |||
2005-09-26 | Added XMesaDrawable to xmesa_renderbuffer. Use it in a few places instead | Brian Paul | |
of the XMesaPixmap field to avoid some X server-side issues with casting. | |||
2005-09-23 | improve the test for using software alpha buffer | Brian Paul | |
2005-09-12 | added a return upon out-of-memory, remove a needless assignment | Brian Paul | |
2005-09-12 | restore brace lost in previous check-in | Brian Paul | |
2005-09-07 | some clean-up and re-org for renderbuffers | Brian Paul | |
2005-09-02 | Prototype implementation of new GL_EXT_timer_query extension (not finalized ↵ | Brian Paul | |
yet). Extends the query mechanism to query elapsed time while rendering. | |||
2005-08-09 | _mesa_free_framebuffer_data() call frees the renderbuffers, no need to call ↵ | Brian Paul | |
the Delete methods after | |||
2005-07-19 | include driverfuncs.h | Brian Paul | |
2005-07-16 | XMesaResizeBuffers needs separate paths for client and server builds | Adam Jackson | |
2005-07-01 | Remove NEW_RENDERBUFFER stuff. | Brian Paul | |
Now, OLD_RENDERBUFFER marks code that needs to eventually be removed when all the drivers are updated to no longer need the SetBuffer() function. | |||
2005-06-08 | check for double-buffered buffer in XMesaDestroyBuffer() (Dave Reveman) | Brian Paul | |
2005-05-09 | fix some typos in FX code | Daniel Borca | |
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-04-20 | clean up buffer creation code | Brian Paul | |
2005-04-12 | PF_8A8R8G8B pixel format (Dave Reveman) | Brian Paul | |
2005-04-04 | updated warning string to match patch in bug report 2868 | Brian Paul | |
2005-03-03 | When building in the X-Server, attr.depth doesn't exist. Instead, use | Ian Romanick | |
(XMesaDrawable)w)->depth in the error message. | |||
2005-02-18 | XMesaGetDepthBuffer() returned wrong bytesPerValue (Karl Schultz) | Brian Paul | |
2005-02-07 | improved warning message | Brian Paul | |
2005-01-17 | fix compilation error for fx/Mesa | Daniel Borca | |
2004-11-28 | fix missing width/height error | Brian Paul | |
2004-11-27 | Remove the redundant width, height fields in xmesa_buffer struct. Just use | Brian Paul | |
the values in the contained GLframebuffer. Removed some other unneeded code. | |||
2004-10-12 | SWTC trick (disabled for now) | Daniel Borca | |
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |
2004-04-30 | If we can't allocate the rowimage - bail | Alan Hourihane | |
2004-04-26 | remove DitherValues | Alan Hourihane | |
2004-04-26 | bring over build fixes from stable branch | Alan Hourihane | |
2004-04-21 | check return values of _swrast_CreateContext, etc | Brian Paul | |
2004-03-21 | Implemented support for software-based AUX color buffers. | Brian Paul | |
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc. | |||
2004-03-04 | a bunch of assorted clean-ups, etc to fix warnings, etc | Brian Paul | |
2004-03-02 | workaround for crash-upon-exit in verbose mode | Daniel Borca | |
fxMesa now uses grQueryResolution minor fixes to X11 and DOS drivers | |||
2004-02-19 | Refactored several variables out of XMesaVisual in favor of identical | Ian Romanick | |
fields in __GLcontextModes (the base type). Removed the need to keep the XMesaVisualInfo pointer when building inside the X-server. | |||
2004-01-20 | Before calling _mesa_create_context(), initialize a dd_function_table struct | Brian Paul | |
by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future. | |||
2004-01-12 | Glide driver (windowed mode) fix for Voodoo2 | Daniel Borca | |
2003-12-19 | DMesa: removed MGA2064W driver | Daniel Borca | |
DMesa: added capability to query visuals fxMesa: WGL_3DFX_gamma_control fxMesa: minor fixes to interface (fxQueryHardware vs fxMesaSelect...) | |||
2003-12-04 | Port over changes from XFree86/Mesa 5.0.2, mostly to silence compiler warnings. | Brian Paul | |
2003-11-25 | silence a warning | Brian Paul | |
2003-10-21 | prevent from optimizing out by some compilers (from XFree86 CVS) | Alan Hourihane | |
2003-10-13 | glide driver (wip) | Daniel Borca | |
2003-09-17 | added call to _mesa_enable_1_5_extensions() | Brian Paul | |
2003-04-02 | fix double-memory free in XMesaDestroyContext | Brian Paul | |
2003-04-01 | use structure containment to derive xmesa_context from GLcontext | Brian Paul | |