Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-05 | gallium: s/mmDestroy/u_mmDestroy/ | Brian Paul | |
2008-11-05 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | Brian Paul | |
Conflicts: src/gallium/auxiliary/rtasm/rtasm_execmem.c src/mesa/shader/slang/slang_emit.c src/mesa/shader/slang/slang_log.c src/mesa/state_tracker/st_atom_framebuffer.c | |||
2008-11-05 | gallium: added check for degenerate drawing calls | Brian Paul | |
2008-11-05 | gallium: if VERBOSE_GLSL flag is set, check for non-initialized uniforms at ↵ | Brian Paul | |
draw time This will warn the user that the shader being run may be using uninitialized uniform variables. | |||
2008-11-05 | mesa: fix a GLSL array indexing codegen bug | Brian Paul | |
Expressions like array[i] + array[j] didn't work properly before. | |||
2008-11-05 | gallium: call tgsi_set_exec_mask() and use exec mask in SSE ARL code | Brian Paul | |
This prevents vertex shaders from referencing invalid memory locations when the shader is operating on less than four vertices or fragments. | |||
2008-11-05 | gallium: added tgsi_set_exec_mask() | Brian Paul | |
2008-11-05 | gallium: added some sanity check assertions for constant buffer indexing | Brian Paul | |
2008-11-05 | mesa: remove extra \n from printf string | Brian Paul | |
2008-11-05 | mesa: add Initialized field to gl_uniform struct, for debugging purposes only | Brian Paul | |
2008-11-05 | gallium: added some debug code (disabled) | Brian Paul | |
2008-11-05 | gallium: disable some debug output | Brian Paul | |
2008-11-05 | i915: Remove faulty assert | Jakob Bornecrantz | |
2008-11-05 | draw: Implement TGSI_OPCODE_TRUNC. | michal | |
2008-11-05 | tgsi: Implement OPCODE_TRUNC. | michal | |
2008-11-05 | Merge commit 'origin/master' into gallium-0.2 | Alan Hourihane | |
2008-11-05 | draw: Implement TGSI_OPCODE_TRUNC. | michal | |
2008-11-05 | tgsi: Implement OPCODE_TRUNC. | michal | |
2008-11-04 | mesa: fix float-valued GLSL vertex attribute variables | Brian Paul | |
The swizzle mask for such variables wasn't set up properly. | |||
2008-11-04 | mesa: fix float-valued GLSL vertex attribute variables | Brian Paul | |
The swizzle mask for such variables wasn't set up properly. | |||
2008-11-03 | gallium: no renderbuffer, so just exit. | Alan Hourihane | |
2008-11-03 | gallium: Silence compiler warnings on Windows. | Michal Krol | |
2008-11-03 | gallium: Read from PIPE_FORMAT_Z32_FLOAT. | José Fonseca | |
Mainly for debugging purposes for now. | |||
2008-11-03 | i965: Clean up stale NDC comment. | Eric Anholt | |
2008-11-03 | i965: Avoid vs header computation for negative rhw on G4X. | Eric Anholt | |
This cuts one MOV out when setting a zero header. | |||
2008-11-03 | i965: Merge GM45 into the G4X chipset define. | Eric Anholt | |
The mobile and desktop chipsets are the same, and having them separate is more typing and more chances to screw up. | |||
2008-11-03 | i965: Fix copy'n'paste issue that made brw->urb.constrained useless. | Eric Anholt | |
Also, add a comment explaining what brw->urb.constrained tries to do. | |||
2008-11-03 | gallium: WinCE portability fixes. | José Fonseca | |
2008-11-03 | gallium: Fix typo. | José Fonseca | |
2008-11-03 | softpipe: Don't call pipe_buffer_destroy directly. | José Fonseca | |
Use pipe_buffer_reference instead. | |||
2008-11-03 | pipebuffer: Ensure refcounts of live buffer objects are never zero. | José Fonseca | |
2008-11-03 | gallium: Ensure refcounts of live objects are never zero. | José Fonseca | |
2008-11-03 | gallium: Fix msvc warning. | José Fonseca | |
2008-11-02 | i965: Clean up stale NDC comment. | Eric Anholt | |
2008-11-02 | i965: Avoid vs header computation for negative rhw on G4X. | Eric Anholt | |
This cuts one MOV out when setting a zero header. | |||
2008-11-02 | i965: Merge GM45 into the G4X chipset define. | Eric Anholt | |
The mobile and desktop chipsets are the same, and having them separate is more typing and more chances to screw up. | |||
2008-11-02 | i965: Fix copy'n'paste issue that made brw->urb.constrained useless. | Eric Anholt | |
Also, add a comment explaining what brw->urb.constrained tries to do. | |||
2008-11-01 | Merge commit 'origin/master' into gallium-0.2 | Alan Hourihane | |
Conflicts: src/mesa/shader/slang/library/slang_vertex_builtin_gc.h | |||
2008-11-01 | mesa: silence warnings | Brian Paul | |
2008-11-01 | mesa: do scope replacement for while/for loops too | Brian Paul | |
This fixes a function inlining bug involving vars declared inside loop bodies. | |||
2008-11-01 | mesa: glsl tree print improvements | Brian Paul | |
2008-11-01 | mesa: fix assignment / parameter passing of sampler types | Brian Paul | |
2008-11-01 | mesa: additional debug flags for glsl debug/disassembly | Brian Paul | |
2008-11-01 | mesa: silence warnings | Brian Paul | |
2008-11-01 | mesa: do scope replacement for while/for loops too | Brian Paul | |
This fixes a function inlining bug involving vars declared inside loop bodies. | |||
2008-11-01 | mesa: glsl tree print improvements | Brian Paul | |
2008-11-01 | mesa: fix assignment / parameter passing of sampler types | Brian Paul | |
2008-11-01 | mesa: additional debug flags for glsl debug/disassembly | Brian Paul | |
2008-11-01 | Fix for 58dc8b7: dest regions must not use HorzStride 0 in ExecSize 1 | Keith Packard | |
Quoting section 11.3.10, paragraph 10.2 of the 965PRM: 10.2. If ExecSize is 1, dst.HorzStride must not be 0. Note that this is relaxed from rule 10.1.2. Also note that this rule for destination horizontal stride is different from that for source as stated in rule #7. GM45 gets very angry when rule 10.2 is violated. Patch 58dc8b7 (i965: support destination horiz strides in align1 access mode) added support for additional horizontal strides in the ExecSize 1 case, but failed to notice that mesa occasionally re-purposes a register as a temporary destination, even though it was constructed as a repeating source with HorzStride = 0. While, ideally, we should probably fix the code using these register specifications, this patch simply rewrites them to use HorzStride 1 as the pre-58dc8b7 code did. Signed-off-by: Keith Packard <keithp@keithp.com> | |||
2008-10-31 | mesa: fix some bugs with precision qualifier parsing | Brian Paul | |