Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-04 | intel: Drop DRI1 CopySubBuffer implementation | Kristian Høgsberg | |
2010-01-04 | intel: Drop DRI1 support | Kristian Høgsberg | |
The DDX driver stopped supporting DRI1 so we're dropping support for that from the DRI driver too. | |||
2010-01-04 | Push __driDriverExtensions out of dri_util.c and into the drivers | Kristian Høgsberg | |
This lets the individual drivers select which extensions to advertise. Specifically, most drivers (tdfx, sis, savage etc) don't support DRI2 but the shared extension list in dri_util.c does list the DRI2 extension. Pushing the list into the drivers, lets us avoid listing the DRI2 extension for drivers that don't support it. | |||
2010-01-04 | Remove leftover __DRI{screen,drawable,context}Private references | Kristian Høgsberg | |
As part of the DRI driver interface rewrite I merged __DRIscreenPrivate and __DRIscreen, and likewise for __DRIdrawablePrivate and __DRIcontextPrivate. I left typedefs in place though, to avoid renaming all the *Private use internal to the driver. That was probably a mistake, and it turns out a one-line find+sed combo can do the mass rename. Better late than never. | |||
2010-01-04 | Check for libdrm_$chipset.pc when needed | Kristian Høgsberg | |
This adds missing pkg-config lookup for intel and moves the radeon lookup into a case...esac so it's only looked up when one or more of the radeon drivers are enabled. | |||
2010-01-04 | st/mesa: Only call st_texture_image_unmap() if texImage->Data is non-NULL. | Michel Dänzer | |
This was already done in st_TexImage() but was missed between incremental changes to st_TexSubimage(). | |||
2010-01-04 | r600: support vertex_array_bgra | Andre Maasikas | |
Use vertex program key mechanism and swizzle during vertex fetch - is there a better way? | |||
2010-01-03 | r300: Use C-style comments. | Vinson Lee | |
2010-01-03 | r300: Silence 'mixed declarations and code' warnings. | Vinson Lee | |
2010-01-03 | Only enable verbose NoOp dispatch if DEBUG is defined | Kristian Høgsberg | |
By default we generate a function per GL entry point to warn if it's called without a context set. This is to allow the function to print it's name in the warning. By using a generic function that doesn't print the function name in the non-DEBUG case, we reduce libGL size from 320008 bytes to 283144 bytes (11%). | |||
2010-01-03 | r300: Silence 'mixed declarations and code' warning. | Vinson Lee | |
2010-01-03 | Noop dispatch: move warning code out of the generated functions | Kristian Høgsberg | |
This reduces libGL size by 11% here, going from 360968 bytes to 320008 bytes. | |||
2010-01-03 | r300: Silence 'mixed declarations and code' warning. | Vinson Lee | |
2010-01-03 | Export a few glapi functions used by gallium and r300 | Kristian Høgsberg | |
Fixes breakage from -fvisibility-hidden commit. | |||
2010-01-03 | mesa: Cope with the degenerate case of zero length ranges. | José Fonseca | |
Fixes assertion failures on glean's bufferObject test. | |||
2010-01-03 | mesa: fix blend enable/disable calls in meta.c code | Francis Galiegue | |
Fixes regression in some DRI drivers since the GL_EXT_draw_buffers2 changes. Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-01-03 | apple: Purge existing (not working) GLX_USE_APPLEGL from dated libGL on OSX | Jeremy Huddleston | |
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org> | |||
2010-01-02 | i810: Fix include recursion. | Vinson Lee | |
2010-01-02 | sis: ifdef out unused variable. | Vinson Lee | |
Silences GCC warning. | |||
2010-01-02 | mesa: added _mesa_GetBufferParameteri64v() | Brian Paul | |
This is a new function in GL 3.2. No dispatch for this function yet. | |||
2010-01-01 | x86: Silence printf format warnings. | Vinson Lee | |
2010-01-01 | ARB prog parser: Silence unused variable warnings. | Vinson Lee | |
2010-01-01 | mesa: Make condrender.[ch] prototypes match. | José Fonseca | |
GLAPI on windows is more than "extern" -- it includes the --, so the mismatch between condrender.[ch] prototypes causes "different linkage" errors on windows. | |||
2009-12-31 | st/mesa: implement conditional rendering | Brian Paul | |
2009-12-31 | st/mesa: move st_query_object type to header to make it public | Brian Paul | |
2009-12-31 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: configs/darwin src/gallium/auxiliary/util/u_clear.h src/gallium/state_trackers/xorg/xorg_exa_tgsi.c src/mesa/drivers/dri/i965/brw_draw_upload.c | |||
2009-12-31 | mesa: remove a line of dead code | Brian Paul | |
2009-12-31 | mesa: enable ColorMaskIndexed in display lists | Brian Paul | |
2009-12-31 | mesa: enable GL_EXT_draw_buffers2 for sw drivers | Brian Paul | |
2009-12-31 | mesa: turn on NV_conditional_render for software drivers | Brian Paul | |
2009-12-31 | swrast: add check for conditional rendering | Brian Paul | |
2009-12-31 | tnl: add check for conditional rendering | Brian Paul | |
2009-12-31 | mesa: plug in API functions for conditional rendering | Brian Paul | |
2009-12-31 | mesa: added dispatch for GL_NV_conditional_render extension | Brian Paul | |
2009-12-31 | mesa: added FLUSH_VERTICES(), more comments | Brian Paul | |
2009-12-31 | mesa: add flag for GL_NV_conditional_render extension | Brian Paul | |
2009-12-31 | mesa: _mesa_Begin/EndConditionalRender() functions | Brian Paul | |
For GL_NV_conditional_render and GL3. The drawing functions don't check the query object yet. No API dispatch yet. | |||
2009-12-31 | mesa: make _mesa_lookup_query_object() an non-private inline function | Brian Paul | |
2009-12-31 | swrast: use different temp array in _swrast_get_dest_rgba() | Brian Paul | |
When using multiple color drawbuffers with blending/logicop/masking we were overwriting color values which we still needed. | |||
2009-12-31 | mesa: Silence unused variable warning. | Vinson Lee | |
2009-12-30 | mesa: implement _mesa_GetStringi() for GL3 | Brian Paul | |
Note: not plugged into the dispatch table yet. | |||
2009-12-30 | mesa: _mesa_get_enabled_extension() function | Brian Paul | |
2009-12-30 | mesa: implement GL3 GL_NUM_EXTENSIONS query | Brian Paul | |
2009-12-30 | mesa: simplify some extension testing code | Brian Paul | |
2009-12-30 | mesa: display list support for glClearBuffer functions | Brian Paul | |
Note: some code disabled until dispatch table supports GL3 entrypoints. | |||
2009-12-30 | mesa: implement GL3 glClearBuffer() functions | Brian Paul | |
These functions clear color/depth/stencil buffers with a value that's passed to the function, rather than the context clear values. For now these functions are implemented in terms of the existing ctx->Driver.Clear() hook. In the future when we have non-normalized integer and unsigned integer color buffer formats we'll need new driver hook(s) to pass int and uint clear values to the driver. Note: these functions are not hooked into the dispatch table at this time. | |||
2009-12-29 | st/mesa: add PIPE_FORMAT_Z24S8_UNORM in st_get_format_info() | Brian Paul | |
Fixes progs/demos/fbotexture on Nouveau. Patch submitted by Luca Barbieri <luca@luca-barbieri.com>. | |||
2009-12-29 | mesa: fix-up blend enable/disable code in _mesa_PopAttrib() | Brian Paul | |
2009-12-29 | mesa: finish-up indexed color mask code in _mesa_PopAttrib() | Brian Paul | |
2009-12-29 | mesa: plug in GL_EXT_draw_buffers2 functions | Brian Paul | |