Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-19 | draw: Move loop variable declaration outside for loop. | Vinson Lee | |
Fixes MSVC build. | |||
2010-10-19 | draw: make sure viewport gets updated in draw llvm shader | Keith Whitwell | |
The viewport state was being baked in at compile time (oops...) | |||
2010-10-19 | Merge branch 'llvm-cliptest-viewport' | Keith Whitwell | |
2010-10-19 | draw: corrections to allow for different cliptest cases | Hui Qi Tay | |
2010-10-19 | i965: Use the new style of IF statement with embedded comparison on gen6. | Eric Anholt | |
"Everyone else" does it this way, so follow suit. It's fewer instructions, anyway. | |||
2010-10-19 | i965: Set the source operand types for gen6 if/else/endif to integer. | Eric Anholt | |
I don't think this should matter, but I'm not sure, and it's recommended by a kernel checker in fulsim. | |||
2010-10-19 | i965: Add EU emit support for gen6's new IF instruction with comparison. | Eric Anholt | |
2010-10-19 | linker: Improve handling of unread/unwritten shader inputs/outputs | Ian Romanick | |
Previously some shader input or outputs that hadn't received location assignments could slip through. This could happen when a shader contained user-defined varyings and was used with either fixed-function or assembly shaders. See the piglit tests glsl-[fv]s-user-varying-ff and sso-user-varying-0[12]. NOTE: this is a candidate for the 7.9 branch. | |||
2010-10-19 | glsl: Commit generated file glsl_lexer.cpp | Chad Versace | |
Changes are due to commit "glsl: Fix lexer rule for ^=". | |||
2010-10-19 | glsl: Fix lexer rule for ^= | Chad Versace | |
The caret is a special character, and needs to be quoted or escaped. | |||
2010-10-19 | glsl: Implement ast-to-hir for bit-logic ops | Chad Versace | |
Implement by adding to ast_expression::hir() the following cases: - ast_and_assign - ast_or_assign - ast_xor_assign | |||
2010-10-19 | glsl: Define bit_logic_result_type() in ast_to_hir.cpp | Chad Versace | |
This function type checks the operands of and returns the result type of bit-logic operations. It replaces the type checking performed in the following cases of ast_expression::hir() : - ast_bit_and - ast_bit_or - ast_bit_xor | |||
2010-10-19 | glsl: Implement ast-to-hir for bit-shift-assignment | Chad Versace | |
Implement by adding to ast_expression::hir() these cases: - ast_ls_assign - ast_rs_assign | |||
2010-10-19 | glsl: Define shift_result_type() in ast_to_hir.cpp | Chad Versace | |
This function type checks the operands of and returns the result type of bit-shift operations. It replaces the type checking performed in the following cases of ast_expression::hir() : - ast_lshift - ast_rshift | |||
2010-10-19 | i965: Disable thread dispatch when the FS doesn't do any work. | Eric Anholt | |
This should reduce the cost of generating shadow maps, for example. No performance difference measured in nexuiz, though it does trigger this path. | |||
2010-10-19 | i965: Remove the gen6 emit_mi_flushes I sprinkled around the driver. | Eric Anholt | |
These were for debugging in bringup. Now that relatively complicated apps are working, they haven't helped debug anything in quite a while. | |||
2010-10-19 | i965: Tell the shader compiler when we expect depth writes for gen6. | Eric Anholt | |
This fixes hangs in some Z-writes-in-shaders tests, though other pieces don't come out correctly. Bug #30392: hang in fbo-fblit-d24s8. (still fails with bad color drawn to some targets) | |||
2010-10-19 | llvmpipe: Initialize variable. | Vinson Lee | |
2010-10-19 | llvmpipe: Initialize state variable in debug_bin function. | Vinson Lee | |
2010-10-19 | st/xorg: Fix memory leak on error path. | Vinson Lee | |
2010-10-19 | gallivm: fix incorrect type for zero vector in emit_kilp() | Brian Paul | |
http://bugs.freedesktop.org/show_bug.cgi?id=30974 | |||
2010-10-19 | mesa: fix mesa version string construction | Brian Paul | |
Now that MESA_MINOR=10, we no longer need the extra '0' in the version string. | |||
2010-10-19 | mesa: Make sure we have the talloc cflags when using the talloc headers | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | st/xorg: Fix compilation for Xservers >= 1.10 | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | xorg/vmwgfx: Don't use deprecated x*alloc / xfree functions | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | st/xorg: Don't use deprecated x*alloc / xfree functions | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | st/xorg: Fix compilation errors for Xservers compiled without Composite | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | st/xorg, xorg/vmwgfx: Be a bit more frendly towards cross-compiling environments | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-10-19 | r300/compiler: Remove unused variable. | Vinson Lee | |
2010-10-18 | r300g: Add new debug option for logging vertex/fragment program stats | Tom Stellard | |
2010-10-18 | r300/compiler: Add a new function for more efficient dataflow analysis | Tom Stellard | |
rc_get_readers_normal() supplies a list of readers for a given instruction. This function is now being used by the copy propagate optimization and will eventually be used by most other optimization passes as well. | |||
2010-10-18 | r300/compiler: Clear empty registers after constant folding | Tom Stellard | |
2010-10-18 | r300/compiler: Fix incorrect assumption | Tom Stellard | |
It is possible for a single pair instruction arg to select from both an RGB and an Alpha source. | |||
2010-10-18 | r300/compiler: Create a helper function for merging presubtract sources | Tom Stellard | |
2010-10-18 | i965: Remove unused variable. | Kenneth Graunke | |
2010-10-18 | glsl: Regenerate parser files. | Kenneth Graunke | |
2010-10-18 | glsl: Fix copy and paste error in ast_bit_and node creation. | Kenneth Graunke | |
All & operations were incorrectly being generated as ast_bit_or. | |||
2010-10-18 | i965: Avoid blits in BufferCopySubdata on gen6. | Eric Anholt | |
Fixes glean/bufferObject. | |||
2010-10-18 | i965: Fix scissor-offscreen on gen6 like we did pre-gen6. | Eric Anholt | |
2010-10-18 | i965: Assert out on gen6 VS constant buffer reads that hang the GPU for now. | Eric Anholt | |
2010-10-18 | i965: Fix assertion failure on gen6 BufferSubData to busy BO. | Eric Anholt | |
Fixes fbo-blit and probably several other tests. | |||
2010-10-18 | i965: Fix a weirdness in NOT handling. | Eric Anholt | |
XOR makes much more sense. Note that the previous code would have failed for not(not(x)), but that gets optimized out. | |||
2010-10-18 | i965: Disable the debug printf I added for FS disasm. | Eric Anholt | |
2010-10-18 | i965: Add missing "break" statement. | Kenneth Graunke | |
Otherwise, it would try to handle arrays as structures, use uninitialized memory, and crash. | |||
2010-10-18 | llvmpipe: Don't test rounding of x.5 numbers. | José Fonseca | |
SSE4.1 has different rules, and so far this doesn't seem to cause any problems with conformance test suites. | |||
2010-10-18 | gallivm: Add a note about SSE4.1's nearest mode rounding. | José Fonseca | |
2010-10-18 | mesa: Add missing else in do_row_3D | Brian Rogers | |
This fixes erroneous "bad format in do_row()" messages Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-10-18 | llvmpipe: remove lp_setup_coef*.c files from Makefile | Brian Paul | |
2010-10-18 | egl/i965: include inline_wrapper_sw_helper.h | Victor Tseng | |
Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2010-10-18 | glsl: Don't return NULL IR for erroneous bit-shift operators. | Kenneth Graunke | |
Existing code relies on IR being generated (possibly with error type) rather than returning NULL. So, don't break - go ahead and generate the operation. As long as an error is flagged, things will work out. Fixes fd.o bug #30914. |