aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/osmesa
Commit message (Collapse)AuthorAgeFilesLines
* mesa: remove a bunch of gl_renderbuffer fieldsBrian Paul2009-10-081-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 Paul2009-09-201-0/+5
|
* osmesa: Allow building standalone in all three channel widthsDan Nicholson2009-06-041-27/+9
| | | | | | | | | autoconf had been designating the 8 bit libOSMesa as the default standalone osmesa, but the Makefile expected it to be linked to libGL. Fix up the osmesa Makefile so that it allows any of the combinations of standalone and channel width to be built. Fixes bug #21980.
* mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer()Brian Paul2009-02-091-1/+1
|
* mesa: OSMesa Makefile fixes (use LIB_DIR)Brian Paul2009-01-071-4/+3
|
* Apple: Cleaned up some linking and dylib ids issuesJeremy Huddleston2008-08-111-0/+2
|
* Always pass -linker and -ldflags to mklib for shared librariesDan Nicholson2008-07-121-6/+4
| | | | | | This just makes the use of mklib more consistent throughout Mesa where we always want to pass the linker and LDFLAGS when we might be making a shared library.
* Call mklib with $(SHELL) so the user controls the interpreterDan Nicholson2008-07-121-4/+2
| | | | | Respect the user's choice of shell when running mklib rather than always using /bin/sh.
* Move construction of libOSMesa.so into src/mesa/drivers/osmesa/MakefileBrian Paul2008-06-051-0/+74
| | | | | This removes some cruft from src/mesa/Makefile. Something similar could be done for stand-alone / Xlib-Mesa libGL...
* insert mesa/ before include filesBrian Paul2008-06-051-7/+7
|
* added some missing calls to _mesa_enable_x_y_extensions()Brian2008-04-011-0/+2
|
* Update of OpenVMS makefiles for the use of "new" include file conventionJouk2007-10-031-1/+4
|
* Updated OpenVMS makefilesJ.Jansen2007-05-101-3/+4
| | | | | | | | | | | | modified: src/mesa/descrip.mms modified: src/mesa/drivers/osmesa/descrip.mms modified: src/mesa/drivers/x11/descrip.mms modified: src/mesa/main/descrip.mms modified: src/mesa/shader/descrip.mms modified: src/mesa/shader/slang/descrip.mms modified: src/mesa/swrast/descrip.mms modified: src/mesa/swrast_setup/descrip.mms modified: src/mesa/tnl/descrip.mms
* assorted fixes for Windows/VC8Karl Schultz2007-04-241-1/+1
|
* set osmesa renderbuffer refcount=1 upon creation, free renderbuffer in ↵Brian2007-04-141-2/+7
| | | | OSMesaDestroyContext()
* Add missing OSMesaColorClamp functionAlan Hourihane2007-03-281-0/+1
|
* Fix/improve framebuffer object reference counting.Brian2007-03-061-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 overKeith Whitwell2006-10-301-1/+2
|
* switch over to vbo moduleKeith Whitwell2006-10-291-4/+3
|
* Lots of fixes/changes to select color depth at runtime.Brian Paul2006-10-171-109/+100
|
* Some code movement so that the gl_framebuffer is fully initialized beforeBrian Paul2006-10-141-5/+9
| | | | | calling _mesa_make_current() to avoid hitting the initialize_framebuffer_size() stuff in context.c
* use new _mesa_remove_renderbuffer()Brian Paul2006-05-201-8/+3
|
* Allow rendering 8, 16 and 32-bit/channel images without recompiling.Brian Paul2006-05-191-234/+591
| | | | Uses new renderbuffer adaptors.
* remove some unused macrosBrian Paul2006-05-141-43/+6
|
* fix typo, remove dead codeBrian Paul2006-05-141-2/+1
|
* silence warningsBrian Paul2006-04-251-0/+2
|
* Initialize renderbuffer size.Daniel Borca2006-04-011-0/+3
|
* When creating front/back renderbuffers, init the Red/Green/Blue/AlphaBits fieldsBrian Paul2006-03-301-0/+23
|
* Match pixel addresses with `compute_row_addresses' in RGB mode (also obey ↵Daniel Borca2006-03-281-2/+2
| | | | RGB/UNSIGNED_BYTE rule).
* PutRowRGB was not initialized for OSMESA_RGB_565Daniel Borca2006-03-271-1/+1
|
* Moved _glapi_check_multithread() call into drivers, instead of inBrian Paul2006-03-161-1/+7
| | | | | _mesa_make_current(). This removes an ugly #if !defined(IN_DRI_DRIVER) from core Mesa.
* remove unneeded init of swrast->invalidate_line/triangleBrian Paul2006-01-261-17/+0
|
* add {} to RENDER_SPAN macro to fix compilation problemKarl Schultz2005-12-081-4/+6
|
* Added OSMesaColorClamp(), bug 4917Brian Paul2005-11-121-0/+16
|
* Committing in .Jouk Jansen2005-09-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 1) change compilation on VMS to use IEEE floating points 2) one more problem with _mesa_sprintf solved Modified Files: Mesa/docs/README.VMS Mesa/progs/demos/descrip.mms Mesa/progs/tests/descrip.mms Mesa/progs/util/descrip.mms Mesa/progs/xdemos/descrip.mms Mesa/src/glu/mesa/descrip.mms Mesa/src/glu/sgi/descrip.mms Mesa/src/glut/glx/descrip.mms Mesa/src/mesa/array_cache/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/drivers/osmesa/descrip.mms Mesa/src/mesa/drivers/x11/descrip.mms Mesa/src/mesa/glapi/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/main/texobj.c Mesa/src/mesa/math/descrip.mms Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/shader/grammar/descrip.mms Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
* replace GLdepth with GLuintBrian Paul2005-09-211-2/+2
|
* remove unused varsBrian Paul2005-09-141-60/+1
|
* remove _tnl_MakeCurrent callBrian Paul2005-09-141-4/+0
|
* fix a problem w/ color index mode when CHAN_BITS=16Brian Paul2005-09-101-3/+3
|
* remove the old set_buffer() routineBrian Paul2005-09-011-13/+0
|
* moved to windows build dirKarl Schultz2005-05-241-119/+0
|
* fix some BCOMP/ACOMP typos (fixes Brad King's vtk failures)Brian Paul2005-05-171-5/+5
|
* remove some dead codeBrian Paul2005-05-071-12/+1
|
* more updates for users of s_spantemp.hBrian Paul2005-05-051-0/+26
|
* fix s_spantemp.h includesBrian Paul2005-05-041-7/+7
|
* Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul2005-05-041-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 bugBrian Paul2005-01-291-15/+12
|
* Have OSMesaGetProcAddress() return new OSMESAproc typedef.Brian Paul2004-11-271-16/+15
|
* Use a generic function typedef instead of void * to avoid gcc 3.4 warnings.Brian Paul2004-11-251-18/+23
|
* check return values of _swrast_CreateContext, etcBrian Paul2004-04-211-4/+9
|