Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-30 | Set _NEW_BUFFERS in glRead/DrawBuffer(). | Brian | |
Previously, we set _NEW_PIXEL and _NEW_COLOR in these functions, respectively. That correponds to the GL attribute groups, but doesn't make much sense otherwise. This could improve validation efficiency in a few places too. It looks like all the drivers are already checking for _NEW_BUFFERS in the right places (since that's the bit for FBO state) so we can trim out _NEW_PIXEL and _NEW_COLOR at any time. | |||
2007-10-22 | don't apply ColorMask to main gc | Brian | |
2007-09-17 | update begin/end_query() functions | Brian | |
2007-08-17 | fix buffer clearing problems | Brian | |
2007-08-10 | return (softpipe) in GL_RENDERER string - temporarily | Brian | |
2007-08-09 | asst changes to get softpipe rendering again (no zbuf support for now) | Brian | |
2007-08-02 | pipe->clear() now takes a surface, rather than color/depth/stencil flags. | Brian | |
pipe->clear() only used to clear whole buffers (no scissor) w/out masking. Draw a colored quadrilateral in all other cases. | |||
2007-08-02 | get rid of accum param | Brian | |
2007-08-01 | rearrange things in xmesa_clear() a bit | Brian | |
2007-08-01 | Checkpoint: glClear changes - working, bug very rough. | Brian | |
2007-06-20 | actually use new glClear code | Brian | |
2007-06-14 | Rename directories again?! | Keith Whitwell | |
Some git wierdness going on. | |||
2007-05-24 | Use the x11 driver as a test harness for the softpipe/state_tracker code. | Keith Whitwell | |
This has some limitations as we currently require a mapped framebuffer, so it only really works with double-buffered ximage rgba8888 windows. | |||
2007-05-02 | fix some renderbuffer/wrapper bugs | Brian | |
2007-03-30 | Clean and update XMesa/XFree86 interface. | George Sapountzis | |
Drop XMesaSetVisualDisplay(), XMesaReset(), no longer used. Add XMesaCopyContext() and move the GlxSetRenderTables() call for XGL within XMesaForceCurrent(). This is to make xserver/GL/mesa/X/xf86glx.c unaware of Mesa internals. Also, clean some ifdef's to make it clear that USE_XSHM and XFree86Server are mutually exclusive. Lastly, - move gcstruct.h from glxheader.h up to xmesa_xf86.h since it calls *gc->ops - drop GL/glxtokens.h from xm_api|dd.c, GLX tokens come from glcore.h and are used irrelevant of XFree86. | |||
2006-11-02 | merge current trunk into vbo branch | Alan Hourihane | |
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-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-11 | In xmesa_DrawPixels_8R8G8B() check if drawing into a window system buffer, | Brian Paul | |
not a user-created FBO. | |||
2006-09-10 | don't use xmesa_DrawPixels_8R8G8B() if there's a software alpha channel | Brian Paul | |
2006-04-27 | assorted clean-ups, fixes | Brian Paul | |
2006-04-26 | minor clean-up | 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-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-09 | only call xmesa_set_renderbuffer_funcs() when really necessary | Brian Paul | |
2006-01-09 | check XGetGeometry() return value | Brian Paul | |
2005-12-07 | Updates for GL_EXT_timer_query: | Brian Paul | |
New GLint64EXT and GLuint64EXT types (use C99's long long types). New glGetQueryObject[u]i64vEXT() functions. | |||
2005-10-21 | fix GLX server resize/crash when resizing windows | Brian Paul | |
2005-09-28 | Initial work for GL_EXT_packed_depth_stencil extension. | Brian Paul | |
glReadPixels done, glDrawPixels mostly done. | |||
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-08 | Committing in . | Jouk Jansen | |
Define suseconds_t for OpenVMS Modified Files: Mesa/src/mesa/drivers/x11/xm_dd.c ---------------------------------------------------------------------- | |||
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-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-23 | Remove the xmesa_set_buffer() function. No longer needed since the | Brian Paul | |
span functions pass in a gl_renderbuffer to indicate which color buffer should be drawn into. Optimized line/triangle routines are smart enough to know which buffer to draw into as well. The swrast->SetBuffer() routine should eventually be removed from all drivers. | |||
2005-05-06 | remove bad assertion, added new ones in clear_pixmap() | 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-04-18 | comments and clean-up | Brian Paul | |
2004-11-27 | Remove _mesa_ResizeBuffersMESA() call from _mesa_set_viewport(). | Brian Paul | |
Now, the driver's Viewport routine should call _mesa_ResizeBuffersMESA() if necessary. Cleaned up code related to GLframebuffer width/height initialization. Set initial viewport/scissor params in _mesa_make_current2(), instead of in the drivers' MakeCurrent functions. | |||
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-11-25 | Use __GLXextFuncPtr type instead of void * for generic functions to | Brian Paul | |
avoid gcc 3.4 compiler warnings. Remove the unused/obsolete GLX_render_texture stuff. | |||
2004-11-10 | GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking | Brian Paul | |
and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions. | |||
2004-11-09 | Removed _swrast_clip_pixelrect(). Use _mesa_clip_drawpixels() instead. | Brian Paul | |
2004-10-31 | Removed _swrast_validate_pbo_access(). | Brian Paul | |
In x11 driver, map/unmap PBO as needed in DrawPixels functions. | |||
2004-10-12 | SWTC trick (disabled for now) | Daniel Borca | |
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |