Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-13 | softpipe: add support for shader stencil export capability | Dave Airlie | |
this allows softpipe to be used to test shader stencil ref exporting. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-03-10 | softpipe: fix memcpy params to avoid static analysis warnings | Brian Paul | |
See fd.o bug 26970. Also added sanity check assertions. | |||
2010-01-28 | gallium: Implement 2D constant buffers for fragment shader in softpipe. | Michal Krol | |
2009-10-05 | Merge branch 'mesa_7_6_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_cpu_detect.c | |||
2009-10-02 | gallium: replace // comments with /* */ | Brian Paul | |
2009-08-11 | softpipe: reduce textual differences between exec and sse shader paths | Keith Whitwell | |
Unshare one function (setup_pos_vector) as we want to push this code into the generated shader in the SSE case. | |||
2009-07-30 | softpipe: setup quad outputs from with fs->run | Keith Whitwell | |
2009-07-16 | tgsi: initial texturing support on sse path | Keith Whitwell | |
Most obvious problem is drawpixels comes out blocky, but this may be an existing issue of KIL on the sse path. | |||
2009-07-16 | tgsi: reduce x86 reg usage in tgsi_sse generated programs | Keith Whitwell | |
Pass the tgsi_exec_machine struct in directly and just hold a single pointer to this struct, rather than keeping one for each of its internal members. | |||
2009-03-22 | softpipe: reformatting, comments, minor clean-ups | Brian Paul | |
2009-03-13 | gallium: no need to keep a copy of shader tokens in state tracker | Keith Whitwell | |
Any driver who needs a copy of the shader tokens must organize to do so itself. This has been the case for a long time, but there was still defensive code in the state tracker, which is now removed. Any bugs resulting from this need to be fixed in the offending driver... | |||
2009-03-04 | gallium: Remove some superfluous instances of #include "p_inlines.h". | Michel Dänzer | |
2009-02-11 | softpipe: rename sp_headers.h to sp_quad.h | Brian | |
This header describes the quad-related datatypes afterall. | |||
2008-11-23 | softpipe: remove old/unneeded dependencies between TGSI exec and softpipe | Brian | |
Use tgsi_sampler struct as a base class. Softpipe subclasses it and adds the fields it needs. | |||
2008-11-09 | gallium: use PIPE_ARCH_SSE to protect use of SSE instrinsics only | Brian | |
This allows us to use SSE codegen with debug builds again. When PIPE_ARCH_SSE is set (w/ gcc -msse -msse2) we will also use the gcc SSE intrinsic functions. | |||
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: 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-10-07 | gallium: Introduce PIPE_ARCH_SSE define for SSE support. | José Fonseca | |
Besides meaning x86 and x86-64 architecture, it also depends on SSE2 support enabled on gcc. This fixes the linux-debug build. | |||
2008-09-08 | softpipe: Split changing fields of quad_header into input, inout and output ↵ | Michal Krol | |
parts. | |||
2008-08-24 | gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.h | Brian Paul | |
Also, rename p_tile.[ch] to u_tile.[ch] | |||
2008-07-28 | Merge tgsi/exec and tgsi/util directories. | José Fonseca | |
2008-06-02 | gallium: Replace XSTDCALL by PIPE_CDECL. | José Fonseca | |
2008-05-19 | if x86_get_func() returns NULL, handle it properly instead of aborting | Brian Paul | |
2008-04-29 | gallium: test for new PIPE_ARCH_X86 | Brian Paul | |
2008-04-28 | gallium: Generate SSE code to swizzle and unswizzle vs inputs and outputs. | Michal Krol | |
Change SSE_SWIZZLES #define to 0 to disable it. | |||
2008-04-18 | softpipe: fix const-related compiler warnings | Keith Whitwell | |
2008-04-11 | gallium: merge the tgsi_emit_sse2() and tgsi_emit_sse2_fs() functions. | Brian Paul | |
The two functions were mostly the same. We can look at the shader header info to determine if it's a vertex or fragment shader. | |||
2008-04-11 | gallium: implement immediates (aka literals) for SSE fragment shaders | Brian Paul | |
2008-02-21 | [PATCH] softpipe: unbreak sp_setup_pos_vector on non-x86 systems | Keith Whitwell | |
2008-02-19 | gallium: initialize the killmask register to zero before running shader | Brian | |
This fixes mysterious missing fragments when running with SSE. | |||
2008-02-19 | Use gallium's rtasm module. | José Fonseca | |
2008-02-15 | softpipe: rename some functions to disambiguate | Keith Whitwell | |
2008-02-15 | Merge commit 'origin/gallium-0.1' into gallium-0.1 | Keith Whitwell | |
Conflicts: src/gallium/drivers/softpipe/sp_quad_fs.c src/gallium/drivers/softpipe/sp_state.h src/gallium/drivers/softpipe/sp_state_fs.c |