Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2009-12-29 | mesa: regenerate API files related to GL_EXT_draw_buffers2 | Brian Paul | |
2009-12-29 | glapi: extension info for GL_EXT_draw_buffers2 | Brian Paul | |
2009-12-29 | tdfx: Silence uninitialized variable warning. | Vinson Lee | |
2009-12-29 | mesa: added infrastructure for GL_EXT_draw_buffers2 | Brian Paul | |
2009-12-29 | mesa: add dlist support for indexed colormask and indexed enables/disables | Brian Paul | |
Not plugged into dispatch table yet... | |||
2009-12-29 | mesa: implement per-buffer color masking | Brian Paul | |
This is part of the GL_EXT_draw_buffers2 extension and part of GL 3.0. The ctx->Color.ColorMask field is now a 2-D array. Until drivers are modified to support per-buffer color masking, they can just look at the 0th color mask. The new _mesa_ColorMaskIndexed() function will be called by glColorMaskIndexedEXT() or glColorMaski(). | |||
2009-12-29 | mesa: implement indexed glGet functions | Brian Paul | |
The functions are _mesa_GetBooleanIndexedv(), _mesa_GetIntegerIndexedv(), and _mesa_GetInteger64Indexedv(). These will be called from API functions such as glGetBooleanIndexedvEXT() and glGetBooleani_v(). Only the GL_BLEND query is supported at this time. | |||
2009-12-29 | mesa: per-buffer blend enabled flags | Brian Paul | |
ctx->Color.BlendEnabled is now a GLbitfield instead of a GLboolean to indicate blend on/off status for each color/draw buffer. This is infrastructure for GL_EXT_draw_buffers2 and OpenGL 3.x New functions include _mesa_EnableIndexed(), _mesa_DisableIndexed(), and _mesa_IsEnabledIndexed(). The enable function corresponds to glEnableIndexedEXT() for GL_EXT_draw_buffers2 or glEnablei() for GL3. Note that there's quite a few tests for ctx->Color.BlendEnabled != 0 in drivers, etc. Those tests can remain as-is since the mask will be 0 or ~0 unless GL_EXT_draw_buffers2 is enabled. | |||
2009-12-29 | mesa: Initialize variable in get_tex_color_index. | Vinson Lee | |
2009-12-29 | glsl: added uniform initializer check | Brian Paul | |
GLSL 1.10 disallows initializers for uniforms but GLSL 1.20 and later allows them. This patch uses the #version directive to allow/disallow uniform initializers. This addresses bug 25807, but piglit also needs to be fixed to specify the GLSL version in the shader. | |||
2009-12-29 | ARB prog parser: use _mesa_add_unnamed_constant() to use fewer constant slots | Brian Paul | |
This function will search the constant parameters in an effort to re-use constant slots. For example, {1,2,3,4} and {4,1,1,2} can be stored in one constant slot and accessed with different swizzles. The swizzle info must be propogated though the parsing code in a few places. Fixes Piglit "vpfp-generic tests/shaders/generic/big-param.vpfp" failure. | |||
2009-12-28 | intel: Fix false positives in checking for non-packed depth/stencil RB. | Eric Anholt | |
The wine d3d9 visual.c testcase was tripping over this and failing. Presumably it's binding a packed depth/stencil texture to both stencil and depth attachment points, and we make a new renderbuffer wrapper for each in that case. | |||
2009-12-28 | intel: Allow binding a stencil but not a depth buffer. | Eric Anholt | |
Wine's d3d9 visual.c testcase tries this a lot, so I've added some piglit tests (fbo-nodepth-test, fbo-nostencil-test, fbo-stencil-only) and enabled it. | |||
2009-12-28 | intel: Improve INTEL_DEBUG=fbo output. | Eric Anholt | |
2009-12-28 | intel: Remove dead fthrottle_mode option. We only do IRQ waits. | Eric Anholt | |
Noticed by clang. | |||
2009-12-28 | mesa: remove gratuitous stores I added in remove_instructions. | Eric Anholt | |
2009-12-28 | intel: Silence compiler warnings. | Vinson Lee | |
2009-12-27 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_network.c src/gallium/auxiliary/util/u_network.h src/gallium/drivers/i915/i915_state.c src/gallium/drivers/trace/tr_rbug.c src/gallium/state_trackers/vega/bezier.c src/gallium/state_trackers/vega/vg_context.c src/gallium/state_trackers/xorg/xorg_crtc.c src/gallium/state_trackers/xorg/xorg_driver.c src/gallium/winsys/xlib/xlib_brw_context.c src/mesa/main/mtypes.h | |||
2009-12-27 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
2009-12-27 | st/mesa: add missing case for PIPE_FORMAT_B8G8R8A8_UNORM | Brian Paul | |
2009-12-26 | mesa: Remove comma at end of enumerator list. | Vinson Lee | |
2009-12-26 | i915: Fix assert. | Vinson Lee | |
2009-12-26 | i965: Extra asserts on flow control instructions to clarify for clang. | Eric Anholt | |
2009-12-26 | i965: Clean up double initialization of dst_flags from a rebase resolve. | Eric Anholt | |
Caught by clang. | |||
2009-12-26 | i965: Fix setup of immediate types for gen4 disasm. | Eric Anholt | |
Caught by clang. | |||
2009-12-25 | intel: Silence implicit function declaration warning. | Vinson Lee | |
2009-12-25 | gallium: add geometry shader support to gallium | Zack Rusin | |
2009-12-24 | i965: Fix assert. | Vinson Lee | |
2009-12-24 | i965: Add missing va_end. | Vinson Lee | |
2009-12-23 | glsl: Initialize member a_obj of struct slang_operation. | Vinson Lee | |