Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | i965: use align1 access mode for instructions with execSize=1 in VS | Xiang, Haihao | 2010-12-24 | 1 | -0/+2 |
| | | | | | All operands must be 16-bytes aligned in aligh16 mode. This fixes l_xxx.c in oglconform. | ||||
* | i965: fix register region description | Xiang, Haihao | 2010-12-24 | 1 | -1/+1 |
| | | | | | This fixes brw_eu_emit.c:179: validate_reg: Assertion `width == 1' failed. | ||||
* | r600g: Rearrange print order of outputs of R600_ERR. | Vinson Lee | 2010-12-23 | 1 | -1/+1 |
| | |||||
* | mesa: Assert _mesa_DeleteFragmentShaderATI doesn't ever free static DummyShader. | Vinson Lee | 2010-12-23 | 1 | -0/+1 |
| | |||||
* | st/egl: Remove unnecessary header. | Vinson Lee | 2010-12-23 | 1 | -1/+0 |
| | |||||
* | libgl-xlib: Remove unnecessary header. | Vinson Lee | 2010-12-23 | 1 | -1/+0 |
| | |||||
* | r300g: Remove unnecessary header. | Vinson Lee | 2010-12-23 | 1 | -2/+0 |
| | |||||
* | tgsi_text: just parse as an integer (value is a boolean). | Dave Airlie | 2010-12-24 | 1 | -1/+0 |
| | | | | | | fixes warning reported by vlee on irc. Signed-off-by: Dave Airlie <[email protected]> | ||||
* | mapi: Remove unnecessary header. | Vinson Lee | 2010-12-23 | 1 | -1/+0 |
| | |||||
* | intel: Remove unnecessary headers. | Vinson Lee | 2010-12-23 | 2 | -2/+0 |
| | |||||
* | r300g: add support for color0 writes to all bound color buffers. | Dave Airlie | 2010-12-24 | 5 | -9/+54 |
| | | | | | | Thanks to Marek Olšák for making my initial attempt actually work. Signed-off-by: Dave Airlie <[email protected]> | ||||
* | mesa/st: set the color write cbuf property for fragColor writes | Dave Airlie | 2010-12-24 | 1 | -0/+5 |
| | |||||
* | softpipe: add support for color writes all color bufs property | Dave Airlie | 2010-12-24 | 3 | -4/+14 |
| | |||||
* | gallium: add fragment shader property for color writes to all buffers. (v2) | Dave Airlie | 2010-12-24 | 5 | -3/+30 |
| | | | | | | | | | | For GL fragColor semantics we need to tell the pipe drivers that the fragment shader color result is to be replicated to all bound color buffers, this adds the basic TGSI + documentation. v2: fix missing comma pointed out by Tilman on mesa-dev. Signed-off-by: Dave Airlie <[email protected]> | ||||
* | i965: Remove unnecessary headers. | Vinson Lee | 2010-12-23 | 1 | -2/+0 |
| | |||||
* | mesa: Fix #ifdef typo in _mesa_format_to_type_and_comps. | Vinson Lee | 2010-12-23 | 1 | -1/+1 |
| | | | | According to the comment, the warning should be for debug builds. | ||||
* | r300g: use a simpler fallback for misaligned ushort indices with triangles | Marek Olšák | 2010-12-23 | 1 | -26/+53 |
| | | | | | | If 'start' is odd, render the first triangle with indices embedded in the command stream, which adds 3 to 'start' and makes it even. Then continue with the fast path. | ||||
* | r300g: add support for B2G3R3 texturing | Marek Olšák | 2010-12-23 | 2 | -0/+9 |
| | |||||
* | mesa: fix texel store functions for some float formats | Marek Olšák | 2010-12-23 | 1 | -10/+17 |
| | | | | These are copy-paste errors obviously. | ||||
* | st/mesa: do not require all texture formats to be renderable | Marek Olšák | 2010-12-23 | 1 | -1/+6 |
| | | | | | | | | | This is a bandaid on the problem that if some formats were not renderable (like luminance_alpha), st/mesa fell back to some RGBA format, so basically some non-renderable formats were actually not used at all. This is only a problem with hardware drivers, softpipe can render to anything. Instead, require only RGB8/RGBA8 to be renderable. | ||||
* | st/mesa: use the formats RGB233, ARGB2101010, AL44, AL1616, A16, L16, I16 | Marek Olšák | 2010-12-23 | 1 | -17/+78 |
| | |||||
* | gallium: add new formats L16A16_UNORM, A16_UNORM, I16_UNORM, B2G3R3_UNORM | Marek Olšák | 2010-12-23 | 2 | -0/+10 |
| | |||||
* | mesa: implement new texture format I16 | Marek Olšák | 2010-12-23 | 6 | -4/+50 |
| | |||||
* | mesa: implement new texture format L16 | Marek Olšák | 2010-12-23 | 7 | -4/+55 |
| | |||||
* | mesa: implement new texture format A16 | Marek Olšák | 2010-12-23 | 7 | -8/+58 |
| | |||||
* | mesa: implement new texture format AL44 | Marek Olšák | 2010-12-23 | 7 | -1/+95 |
| | | | | | | Radeon GPUs can do this. R600 can even do render-to-texture. Packing and extracting aren't implemented, but we shouldn't hit them (I think). Tested with swrast, softpipe, and r300g. | ||||
* | mesa: implement new texture format ARGB2101010 | Marek Olšák | 2010-12-23 | 7 | -0/+128 |
| | | | | Radeon GPUs do support GL_RGB10_A2. | ||||
* | st/mesa: if Z32 is unsupported, prefer Z24 to Z16 | Marek Olšák | 2010-12-23 | 1 | -2/+2 |
| | |||||
* | st/mesa: use RGBA16 for RGB12 and RGB16 | Marek Olšák | 2010-12-23 | 1 | -2/+2 |
| | | | | To provide enough precision if a user wants it. | ||||
* | st/mesa: use DXT SRGB formats for COMPRESSED_SRGB | Marek Olšák | 2010-12-23 | 1 | -4/+16 |
| | | | | | And also check if the formats are supported to return something meaningful if compression cannot be used. | ||||
* | i965: Keep around a copy of the VS constant surface dumping code. | Eric Anholt | 2010-12-23 | 1 | -0/+9 |
| | | | | | | Just like everywhere else, I never trust my constant uploads to correctly put constants in the right places, even though that's so rarely where the issue is. | ||||
* | i965: Correct the dp_read message descriptor setup on g4x. | Eric Anholt | 2010-12-23 | 3 | -1/+23 |
| | | | | | | | It's mostly like gen4 message descriptor setup, except that the sizes of type/control changed to be like gen5. Fixes 21 piglit cases on gm45, including the regressions in bug #32311 from increased VS constant buffer usage. | ||||
* | i965: upload multisample state for fragment program change | Zhenyu Wang | 2010-12-23 | 3 | -25/+38 |
| | | | | | This makes conformance tests stable on sandybridge D0 to track multisample state before SF/WM state. | ||||
* | i965: Use MI_FLUSH_DW for blt ring flush on sandybridge | Zhenyu Wang | 2010-12-23 | 2 | -2/+7 |
| | | | | Old MI_FLUSH command is deprecated on sandybridge blt. | ||||
* | st/mesa: Remove unnecessary header. | Vinson Lee | 2010-12-23 | 1 | -1/+0 |
| | |||||
* | gallivm: Disable MMX-disabling code on llvm-2.9. | Vinson Lee | 2010-12-22 | 1 | -0/+2 |
| | | | | | | | The disable-mmx option was removed in llvm-2.9svn by revisions 122188 and 122189. Fixes FDO bug 32564. | ||||
* | gallivm: Fix 'cast from pointer to integer of different size' warning. | Vinson Lee | 2010-12-22 | 1 | -1/+1 |
| | | | | | | Fixes this GCC warning. lp_bld_const.h: In function 'lp_build_const_int_pointer': lp_bld_const.h:137: warning: cast from pointer to integer of different size | ||||
* | i915g: Remove unnecessary header. | Vinson Lee | 2010-12-22 | 1 | -1/+0 |
| | |||||
* | llvmpipe: Remove unnecessary headers. | Vinson Lee | 2010-12-22 | 2 | -3/+0 |
| | |||||
* | r300g: Remove unnecessary headers. | Vinson Lee | 2010-12-22 | 2 | -3/+0 |
| | |||||
* | svga: Remove unnecessary header. | Vinson Lee | 2010-12-22 | 1 | -1/+0 |
| | |||||
* | st/vega: Remove unnecessary headers. | Vinson Lee | 2010-12-22 | 6 | -12/+0 |
| | |||||
* | r600g: Remove the unused "pframebuffer" field from r600_pipe_context. | Henri Verbeet | 2010-12-22 | 3 | -5/+0 |
| | |||||
* | r600g: r600_new() and r600_delete() are unused. | Henri Verbeet | 2010-12-22 | 4 | -124/+15 |
| | |||||
* | i965: explicit tell header present for fb write on sandybridge | Zhenyu Wang | 2010-12-22 | 4 | -8/+8 |
| | | | | | | | | | Determine header present for fb write by msg length is not right for SIMD16 dispatch, and if there're more output attributes, header present is not easy to tell from msg length. This explicitly adds new param for fb write to say header present or not. Fixes many cases' hang and failure in GL conformance test. | ||||
* | st/egl: Assorted fixes for dri2_display_get_configs. | Chia-I Wu | 2010-12-22 | 1 | -4/+36 |
| | | | | | | Set window_bit only when the visual id is greater than zero. Correct visual types. Skip slow configs as they are not relevant. Finally, do not return duplicated configs. | ||||
* | r600g: remove useless switch statements | Alex Deucher | 2010-12-22 | 2 | -105/+0 |
| | | | | Signed-off-by: Alex Deucher <[email protected]> | ||||
* | st/egl: Fix eglCopyBuffers. | Chia-I Wu | 2010-12-22 | 1 | -6/+5 |
| | | | | Flush before presenting. | ||||
* | st/egl: Plug pbuffer leaks. | Chia-I Wu | 2010-12-22 | 1 | -8/+2 |
| | | | | Unreference validated resources or remove unnecessary validations. | ||||
* | st/egl: Allow single-buffered pixmaps. | Chia-I Wu | 2010-12-22 | 2 | -26/+17 |
| | | | | | | | All single-buffered configs were ignored before to make sure EGL_RENDER_BUFFER is settable for window surfaces. It is better to allow single-buffered configs and set EGL_WINDOW_BIT only for double-buffered ones. This way there can be single-buffered pixmaps. |