Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Rename GLvisual and __GLcontextModes to struct gl_config | Kristian Høgsberg | 2010-10-13 | 1 | -1/+1 | |
| | ||||||
* | osmesa: remove old renderbuffer before adding new | Brian Paul | 2010-07-02 | 1 | -0/+1 | |
| | | | | | | Fixes fd.o bug 10966 when OSMesaMakeCurrent() was called twice. NOTE: This is a candidate for the 7.8 branch. | |||||
* | osmesa: use unsigned 16-bit/channel format | Brian Paul | 2010-05-09 | 1 | -1/+1 | |
| | ||||||
* | osmesa: remove unused var | Brian Paul | 2010-05-04 | 1 | -1/+0 | |
| | ||||||
* | osmesa: fix OSMesa for CHAN_BITS=32 | Brian Paul | 2010-05-04 | 1 | -7/+30 | |
| | | | | | | CHAN_BITS=16 still broken. NOTE: this is a candidate for back-porting to the 7.8 stable branch. | |||||
* | mesa: Remove support for creating color-index visuals | Ian Romanick | 2010-03-03 | 1 | -3/+1 | |
| | | | | | | | | 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> | |||||
* | osmesa: Remove support for color-index rendering | Ian Romanick | 2010-03-03 | 1 | -67/+11 | |
| | | | | Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
* | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | 2010-02-19 | 1 | -6/+6 | |
| | ||||||
* | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | 2010-02-19 | 1 | -1/+1 | |
| | ||||||
* | mesa: remove a bunch of gl_renderbuffer fields | Brian Paul | 2009-10-08 | 1 | -16/+3 | |
| | | | | | | _ActualFormat is replaced by Format (MESA_FORMAT_x). ColorEncoding, ComponentType, RedBits, GreenBits, BlueBits, etc. are all replaced by MESA_FORMAT_x queries. | |||||
* | osmesa: call _mesa_meta_init/free() | Brian Paul | 2009-09-20 | 1 | -0/+5 | |
| | ||||||
* | mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() | Brian Paul | 2009-02-09 | 1 | -1/+1 | |
| | ||||||
* | insert mesa/ before include files | Brian Paul | 2008-06-05 | 1 | -7/+7 | |
| | ||||||
* | added some missing calls to _mesa_enable_x_y_extensions() | Brian | 2008-04-01 | 1 | -0/+2 | |
| | ||||||
* | set osmesa renderbuffer refcount=1 upon creation, free renderbuffer in ↵ | Brian | 2007-04-14 | 1 | -2/+7 | |
| | | | | OSMesaDestroyContext() | |||||
* | Add missing OSMesaColorClamp function | Alan Hourihane | 2007-03-28 | 1 | -0/+1 | |
| | ||||||
* | Fix/improve framebuffer object reference counting. | Brian | 2007-03-06 | 1 | -1/+2 | |
| | | | | | | | 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. | |||||
* | switch several dri drivers over | Keith Whitwell | 2006-10-30 | 1 | -1/+2 | |
| | ||||||
* | switch over to vbo module | Keith Whitwell | 2006-10-29 | 1 | -4/+3 | |
| | ||||||
* | Lots of fixes/changes to select color depth at runtime. | Brian Paul | 2006-10-17 | 1 | -109/+100 | |
| | ||||||
* | Some code movement so that the gl_framebuffer is fully initialized before | Brian Paul | 2006-10-14 | 1 | -5/+9 | |
| | | | | | calling _mesa_make_current() to avoid hitting the initialize_framebuffer_size() stuff in context.c | |||||
* | use new _mesa_remove_renderbuffer() | Brian Paul | 2006-05-20 | 1 | -8/+3 | |
| | ||||||
* | Allow rendering 8, 16 and 32-bit/channel images without recompiling. | Brian Paul | 2006-05-19 | 1 | -234/+591 | |
| | | | | Uses new renderbuffer adaptors. | |||||
* | remove some unused macros | Brian Paul | 2006-05-14 | 1 | -43/+6 | |
| | ||||||
* | fix typo, remove dead code | Brian Paul | 2006-05-14 | 1 | -2/+1 | |
| | ||||||
* | silence warnings | Brian Paul | 2006-04-25 | 1 | -0/+2 | |
| | ||||||
* | Initialize renderbuffer size. | Daniel Borca | 2006-04-01 | 1 | -0/+3 | |
| | ||||||
* | When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fields | Brian Paul | 2006-03-30 | 1 | -0/+23 | |
| | ||||||
* | Match pixel addresses with `compute_row_addresses' in RGB mode (also obey ↵ | Daniel Borca | 2006-03-28 | 1 | -2/+2 | |
| | | | | RGB/UNSIGNED_BYTE rule). | |||||
* | PutRowRGB was not initialized for OSMESA_RGB_565 | Daniel Borca | 2006-03-27 | 1 | -1/+1 | |
| | ||||||
* | Moved _glapi_check_multithread() call into drivers, instead of in | Brian Paul | 2006-03-16 | 1 | -1/+7 | |
| | | | | | _mesa_make_current(). This removes an ugly #if !defined(IN_DRI_DRIVER) from core Mesa. | |||||
* | remove unneeded init of swrast->invalidate_line/triangle | Brian Paul | 2006-01-26 | 1 | -17/+0 | |
| | ||||||
* | add {} to RENDER_SPAN macro to fix compilation problem | Karl Schultz | 2005-12-08 | 1 | -4/+6 | |
| | ||||||
* | Added OSMesaColorClamp(), bug 4917 | Brian Paul | 2005-11-12 | 1 | -0/+16 | |
| | ||||||
* | replace GLdepth with GLuint | Brian Paul | 2005-09-21 | 1 | -2/+2 | |
| | ||||||
* | remove unused vars | Brian Paul | 2005-09-14 | 1 | -60/+1 | |
| | ||||||
* | remove _tnl_MakeCurrent call | Brian Paul | 2005-09-14 | 1 | -4/+0 | |
| | ||||||
* | fix a problem w/ color index mode when CHAN_BITS=16 | Brian Paul | 2005-09-10 | 1 | -3/+3 | |
| | ||||||
* | remove the old set_buffer() routine | Brian Paul | 2005-09-01 | 1 | -13/+0 | |
| | ||||||
* | fix some BCOMP/ACOMP typos (fixes Brad King's vtk failures) | Brian Paul | 2005-05-17 | 1 | -5/+5 | |
| | ||||||
* | remove some dead code | Brian Paul | 2005-05-07 | 1 | -12/+1 | |
| | ||||||
* | more updates for users of s_spantemp.h | Brian Paul | 2005-05-05 | 1 | -0/+26 | |
| | ||||||
* | fix s_spantemp.h includes | Brian Paul | 2005-05-04 | 1 | -7/+7 | |
| | ||||||
* | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | 2005-05-04 | 1 | -230/+242 | |
| | | | | | | | Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||||
* | fix initial viewport size bug | Brian Paul | 2005-01-29 | 1 | -15/+12 | |
| | ||||||
* | Have OSMesaGetProcAddress() return new OSMESAproc typedef. | Brian Paul | 2004-11-27 | 1 | -16/+15 | |
| | ||||||
* | Use a generic function typedef instead of void * to avoid gcc 3.4 warnings. | Brian Paul | 2004-11-25 | 1 | -18/+23 | |
| | ||||||
* | check return values of _swrast_CreateContext, etc | Brian Paul | 2004-04-21 | 1 | -4/+9 | |
| | ||||||
* | Implemented support for software-based AUX color buffers. | Brian Paul | 2004-03-21 | 1 | -1/+1 | |
| | | | | | | Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc. | |||||
* | fix stride bug in RGB and BGR span rendering | Brian Paul | 2004-03-14 | 1 | -4/+4 | |
| |