Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-08-26 | r600: Update vertex fetch shader if necessary | Cooper Yuan | |
2009-08-26 | st/dri: make the GL_ARB_map_buffer_range entrypoints available | Ben Skeggs | |
2009-08-26 | radeon/r100/r200: actually init the OQ support properly | Dave Airlie | |
2009-08-26 | radeon/r200: OQ support for r200 in theory. | Dave Airlie | |
this is an untested port of the r100 OQ code | |||
2009-08-26 | radeon: add r100 OQ support with kms. | Dave Airlie | |
This adds OQ support for the r100 chipsets, it requires KMS unless someone wants to make a kernel patch to add support for OQ regs. | |||
2009-08-25 | progs/glsl: call ValidateShaderProgram() | Brian Paul | |
2009-08-25 | mesa: validate shader before drawing (for debugging, disabled) | Brian Paul | |
2009-08-25 | glsl: update a texture/sampler comment | Brian Paul | |
2009-08-25 | glsl: implement shader sampler validation | Brian Paul | |
Shader validation should fail if there are two samplers of different types which reference the same texture unit. For example, if a cubemap sampler and a 2D sampler both reference texture unit 0, that's invalid. | |||
2009-08-25 | mesa: use gl_texture_index type for gl_program::SamplerTargets | Brian Paul | |
2009-08-25 | progs/util: added ValidateShaderProgram() to shaderutil.c | Brian Paul | |
2009-08-25 | i965: add some texture unit/target assertions | Brian Paul | |
2009-08-25 | mesa: print some program fields in binary too | Brian Paul | |
2009-08-26 | r200: Add scissor to state atom list. | Pauli Nieminen | |
Scissors are jsut one of states that we have to emit so it should be in state list | |||
2009-08-25 | radeon/r600: Fix remaining warnings when building 64 bit binary. | Pauli Nieminen | |
2009-08-25 | r200: Addd missing parameter to debug output. | Pauli Nieminen | |
2009-08-25 | r200: Fix commit size prediction. | Pauli Nieminen | |
Scissor are emited for every primitive so fix that in prediction. | |||
2009-08-25 | xorg: insert shaders into the cache | Zack Rusin | |
2009-08-25 | exa: add basic code to cache vertex and fragment shaders | Zack Rusin | |
2009-08-25 | exa: check whether the op is accelerated | Zack Rusin | |
2009-08-25 | radeon: Fix all compiler warnings. | Pauli Nieminen | |
2009-08-25 | mesa: remove -I$(TOP)/src/gallium/drivers from sources.mak | Brian Paul | |
Core Mesa and the state tracker do not depend on any gallium drivers. | |||
2009-08-25 | Revert "glapi: Fix a possible race in getting current context/dispatch." | Brian Paul | |
This reverts commit 17090cf3efb0db8fa01b502a9c0df27cbd1a67da. We're reverting this because it causes ABI breakage with the X server. Maybe re-attempt with another patch. | |||
2009-08-25 | xorg: revert bad merge | Zack Rusin | |
2009-08-25 | Add support for building the Xorg state tracker with scons. | Michel Dänzer | |
scons ... statetrackers=xorg | |||
2009-08-25 | Revert "glx: Make drawables persistent untill they are changed by ↵ | Pauli Nieminen | |
glXMakeCurrent" This commit was not mean to end in to master yet. It is still queston if this right design to fix the problem. This reverts commit 45e3be3c07f543f3f2869ba7750ba4695cd25122. | |||
2009-08-25 | Merge branch 'master' of ssh://git.freedesktop.org/git/mesa/mesa into ↵ | Pauli Nieminen | |
r600_state_predict | |||
2009-08-25 | r300: fix condition logic | Maciej Cencora | |
The s3tc extensions are properly enabled now, when force_s3tc_enable option is set in driconf. | |||
2009-08-25 | r300: set proper CS section size | Maciej Cencora | |
2009-08-25 | radeon/r200/r300/r600: Warn if we emit more than prediction was. | Pauli Nieminen | |
Prediction code making too small prediction may cause space check aserttion failure later in rendering. So warning about any failure to predict correctly should be fixed. | |||
2009-08-24 | xorg: fix compilation | Zack Rusin | |
2009-08-24 | xorg: start on code accelerating render | Zack Rusin | |
2009-08-24 | r300: add support for getting Z pipe info from drm | Alex Deucher | |
Needed for occulsion queries on rv530 chips Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2009-08-24 | r600: code cleanup | Alex Deucher | |
2009-08-25 | radeon: fix fbo size calculation to after pitch | Dave Airlie | |
2009-08-24 | Merge branch 'master' of ssh://zack@git.freedesktop.org/git/mesa/mesa | Zack Rusin | |
2009-08-24 | openvg: fix vgTransformPath with relative coords | Zack Rusin | |
2009-08-24 | ARB prog: Set error instead of falling through with incorrect value | Brian Paul | |
If a fragment program only parameter was queried of a vertex program (e.g., GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB) no error would be set and a random value would be returned. This caused 'glxinfo -l' to show the same values for GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB, GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB as for GL_MAX_PROGRAM_ENV_PARAMETERS_ARB. This is confusing and incorrect. (cherry picked from master, commit 4bccd693a72a0b42dffc849034263a68e779ca91) | |||
2009-08-24 | ARB prog: Set error instead of falling through with incorrect value | Ian Romanick | |
If a fragment program only parameter was queried of a vertex program (e.g., GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB) no error would be set and a random value would be returned. This caused 'glxinfo -l' to show the same values for GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB, GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB, GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB as for GL_MAX_PROGRAM_ENV_PARAMETERS_ARB. This is confusing and incorrect. | |||
2009-08-24 | mesa: add new program parser sources to tarball | Brian Paul | |
The end user doesn't need the .y or .l or Makefile but include them anyway in case someone wants to patch or debug things. | |||
2009-08-24 | docs: recent 7.5.1 bug fixes | Brian Paul | |
2009-08-24 | xlib: fix single buffer window resize bug | Brian Paul | |
When a single-buffered window was resized the new window size was never detected. This fix that, but there's still a bug which causes window contents corruption for certain window sizes... | |||
2009-08-24 | vbo: fix divide by zero exception | Brian Paul | |
Fixes bug 23489. | |||
2009-08-24 | glsl: Silence gcc uninitialized variable warning. | Vinson Lee | |
2009-08-24 | st/mesa: flush bitmap cache if Z value changes | Brian Paul | |
When adding a new bitmap to the cache we have to check if the Z value is changing and flush first if it is. This is a modified version of a patch from Justin Dou <justin.dou@intel.com> | |||
2009-08-24 | docs: recent 7.5.1 bug fixes | Brian Paul | |
2009-08-24 | ARB prog parser: Regenerate parser from previous commit | Ian Romanick | |
2009-08-24 | ARB prog parser: use correct context limits | Brian Paul | |
2009-08-24 | xlib: fix single buffer window resize bug | Brian Paul | |
When a single-buffered window was resized the new window size was never detected. This fix that, but there's still a bug which causes window contents corruption for certain window sizes... | |||
2009-08-24 | vbo: fix divide by zero exception | Brian Paul | |
Fixes bug 23489. |