Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-20 | st/mesa: fix format logic in compatible_src_dst_formats() | Brian Paul | |
We need to consider the user-requested formats, not the actual device- chosen formats. See code comments for more details. | |||
2010-01-19 | st/dri: update dri2 drawables when viewport is changed | Ben Skeggs | |
Fixes gnome-shell on nouveau, as well as window resize with various other applications. Signed-off-by: Ben Skeggs <bskeggs@redhat.com> | |||
2010-01-18 | mesa: Handle PIPE_FORMAT_B8G8R8X8_UNORM. | José Fonseca | |
2010-01-18 | st/mesa: change instruction count assertion to > 0 | Brian Paul | |
Shaders should at least have an END instruction. | |||
2010-01-16 | st/mesa: Remove unnecessary header from st_cb_drawpixels.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_framebuffer.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_pixeltransfer.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_sampler.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary header from st_atom_shader.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary headers from st_cb_accum.c. | Vinson Lee | |
2010-01-16 | st/mesa: Remove unnecessary headers from st_cb_bitmap.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_blit.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_clear.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_drawpixels.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_fbo.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary headers from st_cb_feedback.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_program.c. | Vinson Lee | |
2010-01-15 | st/mesa: Remove unnecessary header from st_cb_queryobj.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_cb_rasterpos.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_readpixels.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_cb_strings.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_texture.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_cb_viewport.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_context.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_draw_feedback.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_extensions.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary header from st_format.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_framebuffer.c. | Vinson Lee | |
2010-01-14 | st/mesa: Remove unnecessary headers from st_gen_mipmap.c. | Vinson Lee | |
2010-01-13 | st/mesa: Remove unnecessary header from st_program.c. | Vinson Lee | |
2010-01-13 | st/mesa: Remove unnecessary header from st_texture.c. | Vinson Lee | |
2010-01-05 | st/mesa: fix broken translation of negative register indexes | Brian Paul | |
A src register's index can be negative if we're doing indirect addressing into the constant buffer. Ex: MOV OUT[1], CONST[ADDR[0].x-3] This fixes the piglit vp-arl-neg-array.vpfp test. Before this change we were going out of bounds of the t->constants[] array and getting garbage that later triggered an assertion. | |||
2010-01-05 | st/mesa: added PROGRAM_LOCAL_PARAM case in src_register() | Brian Paul | |
Fixes piglit vpfp-generic arl.vpfp failure when using gallium. | |||
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-03 | mesa: Cope with the degenerate case of zero length ranges. | José Fonseca | |
Fixes assertion failures on glean's bufferObject test. | |||
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-27 | st/mesa: add missing case for PIPE_FORMAT_B8G8R8A8_UNORM | Brian Paul | |
2009-12-23 | gallium: only create pipe buffer when size is nonzero | Maarten Maathuis | |
- This fixes a crash upon starting spring (a rts engine/game). Signed-off-by: Maarten Maathuis <madman2003@gmail.com> | |||
2009-12-21 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
Conflicts: configure.ac progs/demos/morph3d.c progs/demos/textures.c progs/glsl/shtest.c progs/glsl/texaaline.c progs/tests/packedpixels.c progs/xdemos/corender.c src/mesa/main/version.h | |||
2009-12-21 | st/mesa: Check for single level mipmap trees. | Younes Manton | |
The assert in util_gen_mipmap() caught it, although it does the right thing anyway. | |||
2009-12-16 | st/mesa: remove //-style comments | Brian Paul | |
2009-12-12 | st/mesa: Silence uninitialized variables warnings in st_draw.c. | Vinson Lee | |
2009-12-18 | st/mesa: move assert on nr vs insns until after pos_invarient expansion | Keith Whitwell | |
It is possible to have a 1-instruction vertex shader before expanding pos_invarient. Not sure what this assert achieved, but at least move it where it is correct. | |||
2009-11-03 | st/mesa: clip pixels in draw_stencil_pixels to avoid crash | Marek Olšák | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2009-11-03 | st/mesa: don't use util_blit_pixels_writemask() for depth or depth/stencil | Brian Paul | |
util_blit_pixels_writemask() only works for color formats at this time. Also, it might never work for depth/stencil surfaces since we can't get handle stencil values in a fragment shader. Fixes glCopyTexSubImage(GL_DEPTH_COMPONENT). | |||
2009-11-03 | st/mesa: fix tests for depth and depth/stencil texture formats | Brian Paul | |
2009-10-09 | st/mesa: create aux buffers according to visual | Brian Paul | |
Fixes bug 24426 for gallium. | |||
2009-10-01 | st/mesa: check for null before asserts, fix possible mem leak | Brian Paul | |
2009-10-01 | st/mesa: silence hidden parameter warning | Brian Paul | |
2009-10-01 | st/mesa: fix non-mipmap lastLevel calculation. | Brian Paul | |
reviewed by Brian Paul. (cherry picked from master, commit ae2daacbac7242938cffe0e2409071e030e00863) |