Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-08 | mesa: remove _mesa_initialize_context_for_api() | Brian Paul | |
Just add the gl_api parameter to _mesa_initialize_context(). | |||
2011-01-04 | osmesa: pass context to _mesa_update_framebuffer_visual() | Brian Paul | |
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=32814 | |||
2010-10-30 | osmesa: fix renderbuffer memleak in OSMesaMakeCurrent() | Brian Paul | |
Fixes fd.o bug 31128. | |||
2010-10-13 | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | |
2010-10-13 | Drop GLframebuffer typedef and just use struct gl_framebuffer | Kristian Høgsberg | |
2010-10-13 | Rename GLvisual and __GLcontextModes to struct gl_config | Kristian Høgsberg | |
2010-07-02 | osmesa: remove old renderbuffer before adding new | Brian Paul | |
Fixes fd.o bug 10966 when OSMesaMakeCurrent() was called twice. NOTE: This is a candidate for the 7.8 branch. | |||
2010-05-09 | osmesa: use unsigned 16-bit/channel format | Brian Paul | |
2010-05-04 | osmesa: remove unused var | Brian Paul | |
2010-05-04 | osmesa: fix OSMesa for CHAN_BITS=32 | Brian Paul | |
CHAN_BITS=16 still broken. NOTE: this is a candidate for back-porting to the 7.8 stable branch. | |||
2010-03-03 | mesa: Remove support for creating color-index visuals | Ian 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-03 | osmesa: Remove support for color-index rendering | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2010-02-19 | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | |
2010-02-19 | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | |
2009-10-08 | mesa: remove a bunch of gl_renderbuffer fields | Brian 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-20 | osmesa: call _mesa_meta_init/free() | Brian Paul | |
2009-02-09 | mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() | Brian Paul | |
2008-06-05 | insert mesa/ before include files | Brian Paul | |
2008-04-01 | added some missing calls to _mesa_enable_x_y_extensions() | Brian | |
2007-04-14 | set osmesa renderbuffer refcount=1 upon creation, free renderbuffer in ↵ | Brian | |
OSMesaDestroyContext() | |||
2007-03-28 | Add missing OSMesaColorClamp function | Alan Hourihane | |
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. | |||
2006-10-30 | switch several dri drivers over | Keith Whitwell | |
2006-10-29 | switch over to vbo module | Keith Whitwell | |
2006-10-17 | Lots of fixes/changes to select color depth at runtime. | Brian Paul | |
2006-10-14 | Some code movement so that the gl_framebuffer is fully initialized before | Brian Paul | |
calling _mesa_make_current() to avoid hitting the initialize_framebuffer_size() stuff in context.c | |||
2006-05-20 | use new _mesa_remove_renderbuffer() | Brian Paul | |
2006-05-19 | Allow rendering 8, 16 and 32-bit/channel images without recompiling. | Brian Paul | |
Uses new renderbuffer adaptors. | |||
2006-05-14 | remove some unused macros | Brian Paul | |
2006-05-14 | fix typo, remove dead code | Brian Paul | |
2006-04-25 | silence warnings | Brian Paul | |
2006-04-01 | Initialize renderbuffer size. | Daniel Borca | |
2006-03-30 | When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fields | Brian Paul | |
2006-03-28 | Match pixel addresses with `compute_row_addresses' in RGB mode (also obey ↵ | Daniel Borca | |
RGB/UNSIGNED_BYTE rule). | |||
2006-03-27 | PutRowRGB was not initialized for OSMESA_RGB_565 | Daniel Borca | |
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-26 | remove unneeded init of swrast->invalidate_line/triangle | Brian Paul | |
2005-12-08 | add {} to RENDER_SPAN macro to fix compilation problem | Karl Schultz | |
2005-11-12 | Added OSMesaColorClamp(), bug 4917 | Brian Paul | |
2005-09-21 | replace GLdepth with GLuint | Brian Paul | |
2005-09-14 | remove unused vars | Brian Paul | |
2005-09-14 | remove _tnl_MakeCurrent call | Brian Paul | |
2005-09-10 | fix a problem w/ color index mode when CHAN_BITS=16 | Brian Paul | |
2005-09-01 | remove the old set_buffer() routine | Brian Paul | |
2005-05-17 | fix some BCOMP/ACOMP typos (fixes Brad King's vtk failures) | Brian Paul | |
2005-05-07 | remove some dead code | Brian Paul | |
2005-05-05 | more updates for users of s_spantemp.h | Brian Paul | |
2005-05-04 | fix s_spantemp.h includes | 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-01-29 | fix initial viewport size bug | Brian Paul | |