Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-08 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/common/meta.c | |||
2009-10-07 | mesa/xlib: call XQueryExtension() in glXQueryExtension() | Brian Paul | |
See bug 24321. | |||
2009-10-07 | Merge branch 'mesa_7_6_branch' | Nicolai Hähnle | |
2009-10-07 | mesa/xlib: fix glXQueryDrawable() bugs, see bug 24320 | Brian Paul | |
2009-10-07 | mesa/xlib: return 0 for errorBase, eventBase in glXQueryExtension() | Brian Paul | |
A little better than leaving the values undefined, I think. See bug 24321. | |||
2009-10-05 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_cpu_detect.c | |||
2009-10-02 | xlib: use bitwise-and to test GLX_RGBA_BIT in choose_visual() | Brian Paul | |
The parameter is a bitmask. | |||
2009-10-01 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
2009-09-29 | mesa/xlib: fix GLX_RENDER_TYPE query | Brian Paul | |
Return GLX_RGBA_TYPE or GLX_COLOR_INDEX_TYPE. | |||
2009-09-20 | xlib: always call _mesa_meta_init/free() | Brian Paul | |
2009-09-20 | Revert "mesa: move _mesa_meta_init/free() calls to core Mesa" | Brian Paul | |
This reverts commit 651cffd626a82d9bf539437ca4bdf8ea4b396fab. The commit inadvertantly introduced a new gallium dependency on the meta code. | |||
2009-09-19 | mesa: rename functions to be more consistant with rest of mesa | Brian Paul | |
2009-09-19 | mesa: move _mesa_meta_init/free() calls to core Mesa | Brian Paul | |
2009-09-08 | mesa: Add support for ARB_draw_elements_base_vertex. | Eric Anholt | |
2009-09-08 | mesa: Expose NV_depth_clamp if ARB_depth_clamp is supported. | Eric Anholt | |
The wording of these two is exactly the same, except for the issue "Can fragments with wc<=0 be generated when this extension is supported?", which idr thinks is a non-issue for us. | |||
2009-09-08 | mesa: Add support for ARB_depth_clamp. | Eric Anholt | |
This currently doesn't include fixing up the cliptests in the assembly paths to support ARB_depth_clamp, so enabling depth_clamp forces the C path. | |||
2009-09-06 | xlib: test _mesa_meta_bitmap() | Brian Paul | |
2009-09-06 | xlib: move misplaced brace | Brian Paul | |
2009-09-03 | Add ARB_sync to the xorg sw dri driver. | Eric Anholt | |
2009-08-31 | xlib: plug in more meta functions, if TEST_META_FUNCS is set | Brian Paul | |
2009-08-31 | xlib: option to enable/test meta functions (disabled) | Brian Paul | |
2009-06-24 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: src/mesa/drivers/dri/i915/i915_tex_layout.c src/mesa/drivers/dri/i965/brw_wm_glsl.c src/mesa/drivers/dri/intel/intel_buffer_objects.c src/mesa/drivers/dri/intel/intel_pixel_bitmap.c src/mesa/drivers/dri/intel/intel_pixel_draw.c src/mesa/main/enums.c src/mesa/main/texstate.c src/mesa/vbo/vbo_exec_array.c | |||
2009-06-17 | mesa: added null ptr check in Fake_glXCreatePixmap() | Brian Paul | |
Fixes segfault in progs/xdemos/glxgears_pixmap.c | |||
2009-05-01 | mesa: in glReadBufer() set _NEW_BUFFERS, not _NEW_PIXEL | Brian Paul | |
Since GL_READ_BUFFER is historically part of the gl_pixel_attrib group it made sense to signal changes with _NEW_PIXEL. But now with FBOs it's also part of the framebuffer state. Now _NEW_PIXEL strictly indicates pixels transfer state changes. This change avoids framebuffer state validation when any random bit of pixel-transfer state is set. DRI drivers updated too: don't check _NEW_COLOR when updating framebuffer state. I think that was just copied from the Xlib driver because we care about dither enable/disable state there. | |||
2009-03-18 | Use the specified X11 headers for xlib mesa | Dan Nicholson | |
The xlib build was using the system's Xlib headers or bombing if they weren't available. | |||
2009-03-09 | xmesa: set back-buffer's drawable field | Brian Paul | |
Fixes back-buffer rendering when MESA_BACK_BUFFER=pixmap | |||
2009-03-03 | xlib: code to force fixed function -> shader translation (for debug, disabled) | Brian Paul | |
2009-03-02 | mesa: comments and code documenting a bug with depth 32 TrueColor ↵ | Brian Paul | |
drawing/reading It seems that XGetImage() from a depth 32 TrueColor window is flakey. Drawing with XPutImage() instead of XPutPixel() seems to work better, but still not perfectly. Keep using the original code for now until more is learned. | |||
2009-03-02 | mesa: remove unused AUX buffers | Brian Paul | |
Remove all references to aux buffers 1..3. Keep AUX0 around for now just in case, but it'll probably go too someday. I don't know of any OpenGL drivers since the IRIX days that support aux color buffers. | |||
2009-02-23 | mesa: fix _glxapi_get_proc_address() for mangled names | Tom Fogal | |
2009-02-22 | mesa: move a bunch of compiler-related stuff into new compiler.h header | Brian Paul | |
This trims down and cleans up imports.h and glheader.h quite a bit. | |||
2009-02-21 | mesa: use an array for current texture objects | Brian Paul | |
Use loops to consolidate lots of texture object code. | |||
2009-02-09 | mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() | Brian Paul | |
2009-02-04 | mesa: make Xlib glXIsDirect() always return True | Brian Paul | |
2009-02-03 | xlib: use MESA_GLX_FORCE_DIRECT to make glXIsDirect() always return True | Brian Paul | |
Some apps won't run w/ indirect rendering contexts. Also, consolidate some context-init code in new init_glx_context() function. | |||
2009-01-28 | Make GL_{EXT,SUN}_multi_draw_arrays and GL_IBM_multimode_draw_arrays mandatory | Ian Romanick | |
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2009-01-10 | mesa: deprecate the GL/fxmesa.h header | Brian Paul | |
2009-01-10 | xmesa: deprecate the "XMesa" interface | Brian Paul | |
Move the include/GL/xmesa*.h files to src/mesa/drivers/x11/ so they're no longer considered public. | |||
2008-09-21 | mesa: improved driver query interface | Keith Whitwell | |
Brought over from gallium-0.2 branch. | |||
2008-09-18 | mesa: prefix more #includes with "main/" | Brian Paul | |
2008-08-11 | Apple: Cleaned up some linking and dylib ids issues | Jeremy Huddleston | |
2008-07-15 | mesa: extra braces | Blair Sadewitz | |
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-21 | remove old comments | Brian Paul | |
2008-06-17 | assorted glide driver fixes | Wilfried Holzke | |
2008-06-09 | fix Xlib libGL.so build problem. | Brian Paul | |
Also, build driverfuncs.c into libmesa.a since it's always needed. | |||
2008-06-08 | remove realglx.[ch] from build | Brian | |
2008-06-05 | added dependencies | Brian Paul | |
2008-06-05 | new Makefile for building "stand-alone", Xlib-based libGL | Brian Paul | |