summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_vs_aos.h
AgeCommit message (Collapse)Author
2009-03-18draw: use AOS_ERROR rather than clash-prone ERROR() macroKeith Whitwell
2008-10-02draw: don't keep refetching constant inputsKeith Whitwell
2008-10-02draw: add streamlined paths for fetching linear vertsKeith Whitwell
2008-09-02gallium: fix out of bounds array errors in SSE executionBrian Paul
1. #define MAX_INPUTS/OUTPUTS/TEMPS/etc with better values. 2. Add assertions in aos_get_x86() to check register file indexes 3. Assert that constant regs haven't changed after running SSE code.
2008-06-12gallium: fix SSE codegen for instructions that use both a CONSTANT and IMMEDIATEKeith Whitwell
Fixes codegen for instructions like MUL dst, CONST[0], IMM[0]; the two operands would up getting aliased in the x86/sse code. Fixes glean/vertProg1/fogparams test.
2008-06-11draw: remove another debug assert on failover to generic vs varientKeith Whitwell
2008-06-06draw: Compile draw_vs_aos only on x86.José Fonseca
2008-05-29draw: michal's patch for calling powf... teapot still not quite rightKeith Whitwell
2008-05-29draw: Put PIPE_CDECL in the right places.José Fonseca
MSVC seems picky about this.
2008-05-29draw: share machineKeith Whitwell
2008-05-28draw: enable FSE by defaultKeith Whitwell
2008-05-28draw: Use PIPE_CDECL.José Fonseca
2008-05-27draw: support psize in vs_varient pathsKeith Whitwell
Preserve the vinfo "EMIT_*" format descriptors in the varient key, and deal with PSIZE directly in each implementation.
2008-05-26draw: extend precision in RSQ opcodeKeith Whitwell
2008-05-24draw: use lookup tables to avoid calling pow() in LIT opcodeKeith Whitwell
2008-05-24draw: add a debug-print which can be called from inside generated shadersKeith Whitwell
2008-05-23draw: clean up internal immediates in aos sseKeith Whitwell
2008-05-23draw: fix vs aos internal/machine stateKeith Whitwell
2008-05-23draw: add viewport to varient stateKeith Whitwell
2008-05-23draw: add aos vertex shader varientKeith Whitwell