Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-15 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Ian Romanick | |
Conflicts: src/gallium/drivers/softpipe/sp_quad_blend.c | |||
2009-12-15 | intel: Fallback to software if drawable size is > MaxRenderbufferSize | Ian Romanick | |
This prevents the mystery blank window if, for example, glxgears is resized larger than 2048 wide on 915. Since the Intel drivers in Mesa 7.6 lack GTT mapped fallbacks, the performance is a slideshow at best. On Mesa 7.7 and later the performance is much better. | |||
2009-12-15 | x86: ifdef out unused function cptr. | Vinson Lee | |
2009-12-14 | mesa: Add missing $(DESTDIR) support to src/gallium/winsys/xlib/Makefile | Matthew Bell | |
2009-12-14 | mga: Silence uninitialized variable warnings. | Vinson Lee | |
2009-12-14 | mach64: Silence uninitialized variable warnings. | Vinson Lee | |
2009-12-14 | i965: Use current draw buffer instead of drawable visual to get alpha bits | Ian Romanick | |
Use the currently bound draw buffer instead of the visual from the drawable used to create the context. This cause problems generating mipmaps for an RGBA texture in an RGB context. This fixes the failure in piglit's glsl-lod-bias test reported in bug #25614. | |||
2009-12-14 | vmwgfx: Update vmwgfx_drm.h to the on upstream | Jakob Bornecrantz | |
2009-12-14 | vmware/xorg: Use new stream ioctl | Jakob Bornecrantz | |
2009-12-14 | mesa/meta: move BindTexture() call in _mesa_meta_GenerateMipmap() | Brian Paul | |
This is a follow-up to commit e3fa700c178e11e6735430119232919176ab7b42. The call to _mesa_BindTexture() must be before we set any other texture object state, namely the _mesa_TexParameteri() calls. This fixes bug 25601 (piglit gen-nonzero-unit failure). | |||
2009-12-13 | i810: Silence uninitialized variable warnings in i180tris.c | Vinson Lee | |
2009-12-12 | swrast: Silence uninitialized variable warnings in s_triangle.c | Vinson Lee | |
2009-12-12 | st/mesa: Silence uninitialized variables warnings in st_draw.c. | Vinson Lee | |
2009-12-12 | swrast: Silence uninitialized variable warnings in ss_tritmp.h. | Vinson Lee | |
2009-12-12 | glut: Prevent potential double free in menuVisualSetup. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_poly_elts. | Vinson Lee | |
2009-12-12 | glsl: Initialize member label of struct slang_operation to NULL. | Vinson Lee | |
2009-12-12 | softpipe: Initialize source in blend_quad. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp2.h: Silence unused value warnings. | Vinson Lee | |
2009-12-12 | i915g: Silence unused value warning in intel_drm_get_device_id. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warnings in render_line_loop_elts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_tri_fan_elts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_poly_verts. | Vinson Lee | |
2009-12-12 | swrast: Initialize tex_coords in handle_sample_op. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_quads_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_tri_fan_verts. | Vinson Lee | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. | Vinson Lee | |
2009-12-12 | vmware/xorg: Fix failure paths and add some debug printing | Jakob Bornecrantz | |
2009-12-12 | vmwgfx/core: Check for 3D via the get param ioctl | Jakob Bornecrantz | |
2009-12-12 | t_dd_dmatmp.h: Silence unused value warning in render_line_loop_verts. | Vinson Lee | |
2009-12-12 | radeon: fix #25463 | Maciej Cencora | |
This is just a workaroung until we properly fix texture mapping in radeonSpanRenderStart | |||
2009-12-11 | r300: fix depth textures | Maciej Cencora | |
2009-12-11 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
2009-12-11 | mesa: remove unnecessary loop in _mesa_remove_output_reads() | Brian Paul | |
2009-12-11 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
2009-12-11 | mesa: check dst reg in _mesa_find_free_register() | Brian Paul | |
If a register was only being used as a destination (as will happen when generated condition-codes) we missed its use. So we'd errantly return a register index that was really in-use, not free. Fixes bug 25579. | |||
2009-12-11 | sparc: additional preprocessor test for SPARC 64-bit | Aurelien Jarno | |
2009-12-11 | svga: Add a missing dependency from the prescale state. | José Fonseca | |
Thanks for Keith to finding this. Fixes Jedi Knight 2 menus. | |||
2009-12-11 | svga: Always pass SVGA3D_SURFACE_HINT_DYNAMIC. | José Fonseca | |
Since we're reusing buffers we're effectively transforming all of them into dynamic buffers. It would be nice to not cache long lived static buffers. But there is no way to detect the long lived from short lived ones yet. A good heuristic would be buffer size. | |||
2009-12-11 | svga: Keep tight control of texture handle ownership. | José Fonseca | |
The texture owns the surface handle. All derivatives need to keep a reference to texture. This fixes several assertions failures starting up Jedi Knight 2. Should cause no change for DRM surface sharing -- reference count still done as before there. | |||
2009-12-11 | svga: Fix mixed signed comparisons. | José Fonseca | |
2009-12-10 | mesa: Initialize variable in MatchInstruction. | Vinson Lee | |
2009-12-10 | mesa: Assign _mesa_lookup_parameter_index return value to GLint. | Vinson Lee | |
2009-12-10 | i915: Add missing break statement in i915_debug_packet. | Vinson Lee | |
2009-12-10 | glsl: Increase size of array in_slang_lookup_constant from 4 to 16. | Vinson Lee | |
For some cases, _mesa_GetIntegerv reads up to params[15]. | |||
2009-12-10 | intel: Remove ARGB internal_format == GL_RGB hacks | Ian Romanick | |
Now that XRGB is supported, we don't need to hack around cases of an RGBA format buffer with an internal format of GL_RGB. | |||
2009-12-10 | intel: Make RGB textures use XRGB8888 | Ian Romanick | |
2009-12-10 | intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system buffers. | Ian Romanick | |
2009-12-10 | i965: Fix handling of drawing to MESA_FORMAT_XRGB8888 | Ian Romanick | |
It turns out that 965 and friends cannot actually render to an xRGB surfaces. Instead, the surface has to be RGBA with writes to alpha disabled and the blend function modified to always use 1.0 for destination alpha. | |||
2009-12-10 | intel: Use spantmp2 GL_BGR / GL_UNSIGNED_INT_8_8_8_8_REV for XRGB8888 | Ian Romanick | |