summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/osmesa/osmesa.c
AgeCommit message (Collapse)Author
2011-02-08mesa: remove _mesa_initialize_context_for_api()Brian Paul
Just add the gl_api parameter to _mesa_initialize_context().
2011-01-04osmesa: pass context to _mesa_update_framebuffer_visual()Brian Paul
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=32814
2010-10-30osmesa: fix renderbuffer memleak in OSMesaMakeCurrent()Brian Paul
Fixes fd.o bug 31128.
2010-10-13Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg
2010-10-13Drop GLframebuffer typedef and just use struct gl_framebufferKristian Høgsberg
2010-10-13Rename GLvisual and __GLcontextModes to struct gl_configKristian Høgsberg
2010-07-02osmesa: remove old renderbuffer before adding newBrian Paul
Fixes fd.o bug 10966 when OSMesaMakeCurrent() was called twice. NOTE: This is a candidate for the 7.8 branch.
2010-05-09osmesa: use unsigned 16-bit/channel formatBrian Paul
2010-05-04osmesa: remove unused varBrian Paul
2010-05-04osmesa: fix OSMesa for CHAN_BITS=32Brian Paul
CHAN_BITS=16 still broken. NOTE: this is a candidate for back-porting to the 7.8 stable branch.
2010-03-03mesa: Remove support for creating color-index visualsIan Romanick
Remove the rgbMode and indexBits parameters from _mesa_create_visual and _mesa_initialize_visual. These values are now hardcoded to GL_TRUE and 0. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2010-03-03osmesa: Remove support for color-index renderingIan Romanick
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2010-02-19Remove _mesa_strcmp in favor of plain strcmp.Kenneth Graunke
2009-10-08mesa: remove a bunch of gl_renderbuffer fieldsBrian Paul
_ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries.
2009-09-20osmesa: call _mesa_meta_init/free()Brian Paul
2009-02-09mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer()Brian Paul
2008-06-05insert mesa/ before include filesBrian Paul
2008-04-01added some missing calls to _mesa_enable_x_y_extensions()Brian
2007-04-14set osmesa renderbuffer refcount=1 upon creation, free renderbuffer in ↵Brian
OSMesaDestroyContext()
2007-03-28Add missing OSMesaColorClamp functionAlan Hourihane
2007-03-06Fix/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.
2006-10-30switch several dri drivers overKeith Whitwell
2006-10-29switch over to vbo moduleKeith Whitwell
2006-10-17Lots of fixes/changes to select color depth at runtime.Brian Paul
2006-10-14Some code movement so that the gl_framebuffer is fully initialized beforeBrian Paul
calling _mesa_make_current() to avoid hitting the initialize_framebuffer_size() stuff in context.c
2006-05-20use new _mesa_remove_renderbuffer()Brian Paul
2006-05-19Allow rendering 8, 16 and 32-bit/channel images without recompiling.Brian Paul
Uses new renderbuffer adaptors.
2006-05-14remove some unused macrosBrian Paul
2006-05-14fix typo, remove dead codeBrian Paul
2006-04-25silence warningsBrian Paul
2006-04-01Initialize renderbuffer size.Daniel Borca
2006-03-30When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fieldsBrian Paul
2006-03-28Match pixel addresses with `compute_row_addresses' in RGB mode (also obey ↵Daniel Borca
RGB/UNSIGNED_BYTE rule).
2006-03-27PutRowRGB was not initialized for OSMESA_RGB_565Daniel Borca
2006-03-16Moved _glapi_check_multithread() call into drivers, instead of inBrian Paul
_mesa_make_current(). This removes an ugly #if !defined(IN_DRI_DRIVER) from core Mesa.
2006-01-26remove unneeded init of swrast->invalidate_line/triangleBrian Paul
2005-12-08add {} to RENDER_SPAN macro to fix compilation problemKarl Schultz
2005-11-12Added OSMesaColorClamp(), bug 4917Brian Paul
2005-09-21replace GLdepth with GLuintBrian Paul
2005-09-14remove unused varsBrian Paul
2005-09-14remove _tnl_MakeCurrent callBrian Paul
2005-09-10fix a problem w/ color index mode when CHAN_BITS=16Brian Paul
2005-09-01remove the old set_buffer() routineBrian Paul
2005-05-17fix some BCOMP/ACOMP typos (fixes Brad King's vtk failures)Brian Paul
2005-05-07remove some dead codeBrian Paul
2005-05-05more updates for users of s_spantemp.hBrian Paul
2005-05-04fix s_spantemp.h includesBrian Paul
2005-05-04Major 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-01-29fix initial viewport size bugBrian Paul