Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-05 | mesa: don't call git if it's not git repository | Marcin Slusarz | 1 | -0/+4 | |
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-05 | mesa: don't touch git_sha1.h if sha1 didn't change | Marcin Slusarz | 2 | -2/+9 | |
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-05 | r600g: Match alpha ref precision to color format precision. | Henri Verbeet | 4 | -21/+64 | |
This fixes piglit fbo-alphatest-formats on Evergreen. Signed-off-by: Henri Verbeet <hverbeet@gmail.com> | |||||
2011-05-05 | Revert "DRI2/GLX: make swap event handling match spec" | Dave Airlie | 3 | -4/+4 | |
This reverts commit 70227e21bbd4411956ceeb5039640140e64a11a8. revert this until we sort things out, with a new glproto release with compatible struct names. | |||||
2011-05-05 | r600g: do RV6xx base updates inline with state updates. | Dave Airlie | 2 | -54/+22 | |
This seems more in line with what the documentation suggests we should be doing. It doesn't fix the rv635 regression, though I thought it might, so it means I've no idea whats actually going wrong there. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Alex Deucher <alexdeucher@gmail.com> | |||||
2011-05-04 | DRI2/GLX: make swap event handling match spec | Jesse Barnes | 3 | -4/+4 | |
We only handle a 32 bit swap count, so use the new structure definitions. Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> | |||||
2011-05-04 | GLX: don't crash when indirect clients try to set an event mask | Jesse Barnes | 1 | -0/+3 | |
After sending the GLXChangeDrawableAttributes request, we also set a local set of attributes on the DRI drawable. But in the indirect case this array won't be present, so skip the setting in that case to avoid a crash. Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> | |||||
2011-05-04 | scons: Add a few more human friendly messages. | José Fonseca | 2 | -1/+2 | |
2011-05-04 | mesa/gdi: Silence gcc warning about unused result. | José Fonseca | 1 | -1/+1 | |
2011-05-04 | st/wgl: Allow to create pbuffers bigger than the desktop. | José Fonseca | 1 | -1/+25 | |
We use a hidden window for pbuffer contexts, but Windows limits window sizes to the desktop size by default. This means that creating a big pbuffer on a small resolution single monitor would truncate the pbuffer size to the desktop. This change overrides the windows maximum size, allow to create windows arbitrarily large. | |||||
2011-05-04 | st/wgl: Cope with zero width/height windows. | José Fonseca | 1 | -12/+38 | |
While ensuring the framebuffer area is never zero. | |||||
2011-05-03 | i915g: add const qualifier to silence warning | Brian Paul | 1 | -1/+1 | |
2011-05-03 | mesa: remove unused restart.[ch] files | Brian Paul | 2 | -109/+0 | |
_mesa_PrimitiveRestartIndex() is in varray.c and glPrimitiveRestart() is handled in the vbo module. | |||||
2011-05-03 | glsl: Remove extra newline from error message | Ian Romanick | 1 | -1/+1 | |
2011-05-03 | r600c: add some new pci ids | Alex Deucher | 2 | -0/+8 | |
Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||||
2011-05-03 | r600g: add some new pci ids | Alex Deucher | 1 | -0/+4 | |
Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||||
2011-05-03 | st/xorg: flush after loading the cursor | Marcin Slusarz | 1 | -7/+15 | |
We need cursor data to land in destination buffer before drmModeSetCursor. It fixes "cursor lag" on nv50. | |||||
2011-05-03 | gallium/draw: Fix enum type taken by draw_get_shader_param(). | Michel Dänzer | 1 | -1/+1 | |
Pointed out by clang: src/gallium/auxiliary/draw/draw_context.h:251:41: warning: implicit conversion from enumeration type 'enum pipe_cap' to different enumeration type 'enum pipe_shader_cap' [-Wconversion] return tgsi_exec_get_shader_param(param); ~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~~~~ | |||||
2011-05-03 | mesa: implement AMD_shader_stencil_export | Marek Olšák | 4 | -0/+33 | |
It's just an alias of the ARB variant with some GLSL compiler changes. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> | |||||
2011-05-03 | r600g: reorder caps | Marek Olšák | 1 | -17/+10 | |
2011-05-03 | r600g: set correct PIPE_CAP_MAX_COMBINED_SAMPLERS | Marek Olšák | 1 | -3/+2 | |
2011-05-03 | mesa: make AMD_draw_buffers_blend an alias of the ARB variant | Marek Olšák | 1 | -0/+1 | |
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-03 | glapi: regenerate files for AMD_draw_buffers_blend | Marek Olšák | 10 | -1661/+1760 | |
2011-05-03 | glapi: add functions for AMD_draw_buffers_blend | Marek Olšák | 3 | -0/+40 | |
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-03 | mesa: flush vertices before changing GL_RASTERIZER_DISCARD state, not after | Marek Olšák | 1 | -1/+1 | |
Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-03 | mesa: make _NEW_TEXTURE dirty when changing GL_TEXTURE_CUBE_MAP_SEAMLESS | Marek Olšák | 1 | -1/+4 | |
Otherwise there would be no way to know whether the state has been changed. Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||||
2011-05-03 | nv50,nvc0: advertise GL_FIXED vertex buffers as supported | Christoph Bumiller | 2 | -0/+36 | |
We'll handle them like f64 vertex buffers, by falling back to copying vertex data to the command buffer through translate. | |||||
2011-05-03 | mesa,st/mesa: fix WPOS adjustment | Christoph Bumiller | 3 | -42/+74 | |
Tested-by: Marek Olšák <maraeo@gmail.com> | |||||
2011-05-02 | Default to --disable-gallium-r300 if not --with-driver=dri | Jon TURNEY | 1 | -0/+7 | |
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Marek Olšák <maraeo@gmail.com> | |||||
2011-05-02 | gallium: reorder fields of pipe_rasterizer_state to pack it more tightly | Marek Olšák | 1 | -6/+8 | |
sizeof(struct pipe_rasterizer_state): Before: 32 bytes After: 28 bytes Reviewed-by: Brian Paul <brianp@vmare.com> | |||||
2011-05-02 | r600g: document some new evergreen formats | Marek Olšák | 1 | -0/+3 | |
2011-05-02 | r600g: remove some more FIXME comments | Marek Olšák | 2 | -2/+0 | |
2011-05-02 | st/xorg: Fix two more instances of typo 'accle'. | Michel Dänzer | 1 | -2/+2 | |
2011-05-02 | st/xorg: fix typos | Marcin Slusarz | 2 | -4/+4 | |
2011-05-01 | i965/gen6: Align interleaved URB writes for overflow outputs as well. | Eric Anholt | 1 | -8/+27 | |
Fixes glsl-max-varyings. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=35614 Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> | |||||
2011-05-02 | targets/xorg-nouveau: load nouveau_dri.so instead of i915_dri.so | Marcin Slusarz | 1 | -1/+1 | |
2011-05-02 | targets/xorg-nouveau: add libnvc0.a to nouveau libs | Marcin Slusarz | 1 | -0/+1 | |
2011-05-02 | r600g: remove some FIXME comments | Marek Olšák | 2 | -2/+0 | |
All texture LOD tests pass. | |||||
2011-05-02 | Revert "r600g: truncate point sampled texture coordinates" | Marek Olšák | 2 | -14/+1 | |
This reverts commit 1dc204d145dc8c0b19473a7814c201a8954b6274. MC_COORD_TRUNCATE is for MPEG and produces quite an interesting behavior on regular textures. Anyway that commit broke filtering in demos/cubemap. | |||||
2011-05-01 | st/mesa: remove set-but-unused variables | Marek Olšák | 2 | -12/+0 | |
2011-05-01 | tgsi: remove set-but-unused variables | Marek Olšák | 1 | -4/+0 | |
2011-05-01 | draw: remove set-but-unused variable | Marek Olšák | 1 | -2/+1 | |
2011-05-01 | rbug: remove set-but-unused variables | Marek Olšák | 3 | -28/+0 | |
2011-05-01 | ir_to_mesa: remove set-but-unused variables | Marek Olšák | 1 | -3/+2 | |
2011-05-01 | mesa: remove set-but-unused variables in texcompress_s3tc | Marek Olšák | 1 | -16/+0 | |
2011-05-01 | mesa: remove set-but-unused variable in bind_attrib_location | Marek Olšák | 1 | -9/+1 | |
2011-05-01 | mesa: remove unused-but-set variable in extract_uint_rgba | Marek Olšák | 1 | -3/+0 | |
2011-05-01 | r300/compiler: remove set-but-unused variables | Marek Olšák | 2 | -5/+1 | |
2011-05-01 | r600g: remove set-but-unused variable | Marek Olšák | 1 | -4/+0 | |
2011-05-01 | r600g: remove FIXME comment | Marek Olšák | 1 | -3/+0 | |
DONTBLOCK is correctly handled in r600_bo_map. |