Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-20 | osmesa: link against libtalloc | Orion Poplawski | |
Otherwise consumers have to, and that's lame. Signed-off-by: Adam Jackson <ajax@redhat.com> | |||
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-08-30 | Add talloc to osmesa library dependencies | Jon TURNEY | |
also link osmesa with C++ standard libraries, as it now contains C++ code Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> | |||
2010-08-11 | osmesa: link with new libglsl.a lib | Brian Paul | |
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-06-16 | osmesa: always build standalone for internal symbols | Dan Nicholson | |
When building OSMesa and xlib GL, the resulting OSMesa would be linked against libGL instead of the internal mesa libraries. However, when building with -fvisibility=hidden, some of the internal functions used in OSMesa could not be resolved through libGL. Instead, always build OSMesa standalone without linking against libGL. This has the advantage that OSMesa is always built the same way, but it means that disk space is wasted when libGL is installed since both libraries will contain the internal objects. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Tested-by: Tom Fogal <tfogal@alumni.unh.edu> | |||
2010-05-09 | osmesa: use unsigned 16-bit/channel format | Brian Paul | |
2010-05-07 | glapi: Move to src/mapi/. | Chia-I Wu | |
Move glapi to src/mapi/{glapi,es1api,es2api}. | |||
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 | |
2010-02-05 | osmesa: Add OSMesaColorClamp and OSMesaGetProcAddress to symbol defs. | Brian Paul | |
Without this patch, the two symbols get an underscore prepended and an "@4" appended when compiling with VC8. Signed-off-by: Brian Paul <brianp@vmware.com> (cherry picked from commit e65029e9b32ddabea0ec583c04484345b40f1557) | |||
2009-12-21 | osmesa: Fix a copy/paste error in building libOSMesa | Jeremy Huddleston | |
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> | |||
2009-12-21 | osmesa: added new GLSL libs | Brian Paul | |
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-06-04 | osmesa: Allow building standalone in all three channel widths | Dan Nicholson | |
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. | |||
2009-02-09 | mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() | Brian Paul | |
2009-01-07 | mesa: OSMesa Makefile fixes (use LIB_DIR) | Brian Paul | |
2008-08-11 | Apple: Cleaned up some linking and dylib ids issues | Jeremy Huddleston | |
2008-07-12 | Always pass -linker and -ldflags to mklib for shared libraries | Dan Nicholson | |
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. | |||
2008-07-12 | Call mklib with $(SHELL) so the user controls the interpreter | Dan Nicholson | |
Respect the user's choice of shell when running mklib rather than always using /bin/sh. | |||
2008-06-05 | Move construction of libOSMesa.so into src/mesa/drivers/osmesa/Makefile | Brian Paul | |
This removes some cruft from src/mesa/Makefile. Something similar could be done for stand-alone / Xlib-Mesa libGL... | |||
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-10-03 | Update of OpenVMS makefiles for the use of "new" include file convention | Jouk | |
2007-05-10 | Updated OpenVMS makefiles | J.Jansen | |
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 | |||
2007-04-24 | assorted fixes for Windows/VC8 | Karl Schultz | |
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). |