summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-05-12mesa/es: Remove omit list.Chia-I Wu
vbo/vbo_save* are the last members on the omit list. Test FEATURE_dlist in the sources and remove the omit list.
2010-05-12mesa: Make FEATURE_ATI_fragment_shader more modular.Chia-I Wu
This allows atifragshader.h to be used without knowing if FEATURE_ATI_fragment_shader is enabled. As a result, atifragshader.c is removed from the omit list in ES overlay.
2010-05-12mesa/es: Remove sources.mak.Chia-I Wu
All ES overlay sources have been merged into core Mesa. Not much is left in sources.mak so merge it into Makefile.
2010-05-12mesa/es: Update sources.mak and fix the build.Chia-I Wu
Remove sources that are feature-aware from the omit list. x86 -O0 build is ~12KiB smaller afther making those sources feature-aware. Also, remove get.c from the omit list as get_es[12].c have been merged to it.
2010-05-12st/mesa: Make st_cb_drawtex.h FEATURE_OES_draw_texture aware.Chia-I Wu
This change allows st_cb_drawtex.h to be used without knowing if FEATURE_OES_draw_texture is enabled.
2010-05-12mesa: Add dummy _mesa_lookup_query_object to queryobj.h.Chia-I Wu
This allows condrender.c to be compiled without FEATURE_queryobj.
2010-05-12st/mesa: Make st_cb_blit.h FEATURE_EXT_framebuffer_blit aware.Chia-I Wu
This change allows st_cb_blit.h to be used without knowing if FEATURE_EXT_framebuffer_blit is enabled.
2010-05-12st/mesa: Make st_cb_queryobj.h FEATURE_queryobj aware.Chia-I Wu
This change allows st_cb_queryobj.h to be used without knowing if FEATURE_queryobj is enabled.
2010-05-12st/mesa: Make FEATURE_feedback and FEATURE_rastpos more modular.Chia-I Wu
Make st_cb_feedback.h FEATURE_feedback aware and st_cb_rastpos.h FEATURE_rastpos aware. Move creation of selection/feedback draw context to st_init_draw.
2010-05-12st/mesa: Make st_cb_{bitmap,drawpixels}.h FEATURE_drawpix aware.Chia-I Wu
This change allows st_cb_{bitmap,drawpixels}.h to be used without knowing if FEATURE_drawpix is enabled.
2010-05-12st/mesa: Make st_cb_accum.h FEATURE_accum aware.Chia-I Wu
This change allows st_cb_accum.h to be used without knowing if FEATURE_accum is enabled.
2010-05-12mesa: Make FEATURE_EXT_transform_feedback more modular.Chia-I Wu
This allows transformfeedback.h and st_cb_xformfb.h to be included and used without knowing if FEATURE_EXT_transform_feedback is enabled. Fix build of ES overlay.
2010-05-11glapi: fix generator scripts w.r.t. GLX_USE_APPLEGLBrian Paul
Commit 80b280db883edc9550484dba03bd5c124b6a9bf9 changed the .c files instead of the .py generator scripts.
2010-05-11glapi: added GL_ARB_transform_feedback2 entrypointsBrian Paul
2010-05-11progs/tests: disable invalid 3D texture compression testsBrian Paul
2010-05-11progs/tests: fix a couple bugs in the getprocaddress.c testBrian Paul
2010-05-11mesa: fix error message stringsBrian Paul
2010-05-11progs/tests: update getprocaddress test since moving glapi filesBrian Paul
2010-05-11mesa: added glGet code for GL_ARB_transform_feedback2Brian Paul
2010-05-11mesa: remove unused headerBrian Paul
2010-05-11mesa: remove unused headerBrian Paul
2010-05-11glew: update to version 1.5.4Brian Paul
2010-05-11st/mesa: update query code for transform feedbackBrian Paul
2010-05-11docs: update GL3.txt w/ GL 3.3, 4.0 listsBrian Paul
2010-05-11mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens().José Fonseca
This fixes crashes with the memory debugging routines on Windows. NOTE: This is a candidate for the 7.8 stable branch
2010-05-11autoconf: Also strip '\r' character in version scrape.Vinson Lee
Fixes autoconf GCC conftest.c test on Cygwin.
2010-05-11mesa: Optimize get.c by using a table-driven approachKristian Høgsberg
2010-05-11llvmpipe: fix texture image size calculationBrian Paul
We were allocating too much memory for linear layouts. The block_size factor is already included in the row_stride and should not be used in the img_stride calculation. This is typically a 4x savings!
2010-05-11llvmpipe: add a simple resource tracking/debug featureBrian Paul
If debug build, keep a linked list of all allocated resources (textures). The llvmipe_print_resources() function can be called from a debugger to print a list of all resources, their sizes, total size, etc.
2010-05-11llvmpipe: remove trailing whitespace, rewrap commentBrian Paul
2010-05-11scons: Export shouldn't be part of the if stanza.José Fonseca
2010-05-11st/mesa: Remove unnecessary header.Vinson Lee
2010-05-11intel: Don't update renderbuffers in intelSetTexBuffer2 if we have invalidateKristian Høgsberg
2010-05-11intel: Drop viewport hack when we canKristian Høgsberg
2010-05-11glx: Provide the __DRI_USE_INVALIDATE extension to the driver when we canKristian Høgsberg
When we have DRI2 protocol at least 2.3, we get an event from the server when the back buffers get invalidated. When that's the case let the driver know that it can rely on invalidate instead of the glViewport polling.
2010-05-11dri_interface.h: Add new __DRI_USE_INVALIDATE extensionKristian Høgsberg
The presence of this extension indicates to the DRI driver that the loader will call invalidate in the __DRI2_FLUSH extension, whenever the needs to query for new buffers. This means that the DRI driver can drop the polling in glViewport().
2010-05-11st/xorg: Fix SCons build.Michel Dänzer
2010-05-11mesa/st: Remove internal flushes from Mesa state tracker.José Fonseca
Now that transfers are context operations it is the driver's responsibility to ensure that transfers happen in order with all other context operations, so flushes and finishes inside Mesa should be no longer necessary. The attached patch implements that. This should proportionate significant improvements for hardware drivers which are able to stream transfers in the command buffers. You can use the softpipe/llvmpipe_flush_resource() as reference implementation of the worst case scenario, where the driver is not able to streamline transfers. But the expectation is that driver implementators will want to avoid flushing as much as possible.
2010-05-11tests/graw: raw -> grawJosé Fonseca
for consistency
2010-05-10mesa: s/uint/GLuint/ in _mesa_BindTransformFeedback prototype.Vinson Lee
From http://www.opengl.org/registry/api/glext.h GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); Fixes MinGW build.
2010-05-11gallium: Add llvmpipe support to st/egl.Chia-I Wu
Update Makefile rules for st/egl.
2010-05-10mesa: more transform feedback infrastructureBrian Paul
Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects.
2010-05-10intel: Also flush front buffer in glFinish()Kristian Høgsberg
2010-05-10llvmpipe: enable PIPE_CAP_INDEP_BLEND_ENABLEBrian Paul
This enables the GL_EXT_draw_buffers2 extension. Tested with progs/tests/drawbuffers2.
2010-05-10llvmpipe: fix up indexing of blend/colormask state for render targetsBrian Paul
2010-05-10llvmpipe: update image dump/debug codeBrian Paul
2010-05-10llvmpipe: add, update, rewrap commentsBrian Paul
2010-05-10gallivm/llvmpipe: move an old comment to a better locationBrian Paul
2010-05-10st/mesa: rename vars, added commentsBrian Paul
2010-05-10i915: Drop intelFlush().Vinson Lee
This was missed in commit c4775a27e3aaa2006b98f225387499b79bc609ef. Fixes i915 build.