summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/draw
Commit message (Collapse)AuthorAgeFilesLines
* draw: Cap max vertices instead of failing assert.José Fonseca2009-02-111-2/+3
|
* draw: Fix build -- rename Size to NrTokens.Michal Krol2009-02-102-2/+2
|
* gallium: standardize on stride instead of pitch in the interfaceZack Rusin2009-01-274-8/+8
|
* draw: silence some warningsKeith Whitwell2009-01-271-1/+4
|
* draw: queiten compiler warningsKeith Whitwell2009-01-271-1/+4
|
* gallium: code to dump/debug PPC code (disabled)Brian Paul2009-01-101-0/+5
|
* draw: Add missing include.José Fonseca2009-01-091-0/+2
|
* draw: Predeclare struct.José Fonseca2009-01-081-1/+2
|
* Merge commit 'origin/gallium-0.1' into gallium-0.2José Fonseca2009-01-082-4/+28
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/tgsi/tgsi_exec.c src/gallium/drivers/cell/spu/spu_command.h src/gallium/include/pipe/p_shader_tokens.h src/mesa/main/config.h src/mesa/main/mtypes.h src/mesa/shader/prog_execute.c src/mesa/shader/slang/slang_emit.c src/mesa/state_tracker/st_program.c src/mesa/state_tracker/wgl/stw_wgl.h src/mesa/state_tracker/wgl/stw_wgl_pixelformat.h
| * draw: allow driver-override of draw_need_pipeline()Keith Whitwell2008-12-232-4/+28
| |
* | draw: Avoid integer overflow converting pointers on 64bit archs.José Fonseca2008-12-311-1/+1
| | | | | | | | Not really an error, as we only care for the lower 4 bits.
* | draw: Do not specify types in bitfields.José Fonseca2008-12-301-3/+3
| | | | | | | | As advised by gcc -pedantic.
* | gallium: fix some assertsAlan Hourihane2008-12-161-4/+4
| |
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Alan Hourihane2008-12-151-1/+1
|\| | | | | | | | | | | Conflicts: src/gallium/winsys/gdi/SConscript
| * draw: Silencium compiler warnings on Windows.Michal Krol2008-12-111-1/+1
| |
* | gallium: catch vertex overflow higher upAlan Hourihane2008-12-111-6/+7
| |
* | gallium: added missing brace to fix broken buildBrian Paul2008-12-101-1/+1
| |
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Brian Paul2008-12-104-6/+20
|\|
| * gallium: added draw_set_mrd() function to fix polygon offsetBrian Paul2008-12-104-2/+16
| | | | | | | | | | | | | | | | The Minimum Resolvable Depth factor depends on the driver and can't just be computed from the number of Z buffer bits. Glean's polygon offset test now passes with softpipe. Still need to determine the MRD factor for other gallium drivers, if they use the draw module's polygon offset stage...
| * draw: add const qualifiersKeith Whitwell2008-12-102-4/+4
| |
| * draw: Add missing include.Michal Krol2008-11-121-0/+1
| |
* | gallium: change 65535 to UNDEFINED_VERTEX_IDAlan Hourihane2008-12-104-9/+9
| |
* | gallium: more vertex count checksAlan Hourihane2008-12-103-4/+31
| |
* | gallium: temporary check for > 65535 verticesAlan Hourihane2008-12-104-0/+11
| |
* | gallium: added draw_texture_samplers() to support texture fetches from ↵Brian2008-12-044-3/+27
| | | | | | | | | | | | vertex shaders This may only be practical for the softpipe driver at this time.
* | draw: Add missing include.Michal Krol2008-11-121-0/+1
| |
* | gallium: use PIPE_ARCH_SSE to protect use of SSE instrinsics onlyBrian2008-11-091-1/+1
| | | | | | | | | | | | 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.
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Brian Paul2008-11-061-0/+89
|\|
| * gallium: debug code to print vertex array data (disabled)Brian Paul2008-11-061-0/+89
| |
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Brian Paul2008-11-054-1/+46
|\| | | | | | | | | | | | | | | | | 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
| * gallium: call tgsi_set_exec_mask() and use exec mask in SSE ARL codeBrian Paul2008-11-052-0/+20
| | | | | | | | | | This prevents vertex shaders from referencing invalid memory locations when the shader is operating on less than four vertices or fragments.
| * gallium: added some debug code (disabled)Brian Paul2008-11-051-0/+24
| |
| * gallium: disable some debug outputBrian Paul2008-11-051-1/+2
| |
| * draw: Implement TGSI_OPCODE_TRUNC.michal2008-11-051-0/+14
| |
* | draw: Implement TGSI_OPCODE_TRUNC.michal2008-11-051-0/+14
| |
* | gallium: no longer pass max_inst to ppc_init_func()Brian Paul2008-10-291-1/+1
| |
* | gallium: clean-upsBrian Paul2008-10-291-10/+4
| |
* | gallium: remove old codeBrian Paul2008-10-281-29/+0
| |
* | gallium: ppc: don't replicate/smear immediate values, use vspltw instruction ↵Brian Paul2008-10-281-4/+4
| | | | | | | | as with constants
* | scons: ppc support.Michel Dänzer2008-10-231-0/+1
| |
* | gallium: new PPC built-in constants arrayBrian Paul2008-10-221-2/+6
| | | | | | | | It's hard to form PPC vector immediates so load them from an array.
* | cell: turn on PPC assembly vertex transformBrian Paul2008-10-221-4/+1
| | | | | | | | gears runs with it now (3x faster FPS than before).
* | gallium: temporarily disable PPC vertex shader until more things runBrian Paul2008-10-221-0/+3
| |
* | gallium: PPC vertex shader supportBrian Paul2008-10-224-1/+279
| | | | | | | | Works, but dead code lingering, debug code present, etc.
* | gallium: fix the test in vs_exec_prepare() to avoid redundant bindingsBrian Paul2008-10-151-3/+1
| | | | | | | | Fixes regressions seen in progs/samples/prim.c, progs/demos/ray.c
* | draw: don't assume output buffer pointer is alignedKeith Whitwell2008-10-151-1/+1
| | | | | | | | (cherry picked from commit 23cc303994eb630c56b1224dfdac51dcea41ed03)
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell2008-10-1010-38/+82
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/auxiliary/gallivm/instructionssoa.cpp src/gallium/auxiliary/gallivm/soabuiltins.c src/gallium/auxiliary/rtasm/rtasm_x86sse.c src/gallium/auxiliary/rtasm/rtasm_x86sse.h src/mesa/main/texenvprogram.c src/mesa/shader/arbprogparse.c src/mesa/shader/prog_statevars.c src/mesa/state_tracker/st_draw.c src/mesa/vbo/vbo_exec_draw.c
| * draw: don't assume output buffer pointer is alignedKeith Whitwell2008-10-071-1/+1
| |
| * draw: add switch for drivers to force vertex data passthroughKeith Whitwell2008-10-074-19/+33
| |
| * draw: Fix compiler errors on Windows.Michal Krol2008-10-061-3/+3
| |