summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary
AgeCommit message (Collapse)Author
2008-07-13util: Eliminate pipe from the arguments to pipe_get/put_tile_xxx functions.José Fonseca
You don't need a pipe_context * for this, and all other necessary info is already inside pipe_surface.
2008-07-13pb: buffer over/underflows are errors.José Fonseca
2008-07-13tgsi: Parse destination operand modulate modifier.Michal Krol
2008-07-13tgsi: Parse extended source register modifiers.Michal Krol
2008-07-13tgsi: Parse _SAT and _SAT opcode suffix.Michal Krol
2008-07-13tgsi: Parse IMM statements.Michal Krol
2008-07-13tgsi: Parse texture instructions correctly.Michal Krol
2008-07-13tgsi: Fix instruction operand counts.Michal Krol
2008-07-13tgsi: Fix instruction opcode parsing.Michal Krol
2008-07-13tgsi: Add missing SWZ opcode.Michal Krol
2008-07-13tgsi: Parse DCL statements.Michal Krol
2008-07-13tgsi: Remove depricated ATTRIB interpolate mode.Michal Krol
2008-07-13llvm: build fixes.Stephane Marchesin
2008-07-12scons: List `util/tgsi_text.c'.Michal Krol
2008-07-12tgsi: Add tgsi_text utility module.Michal Krol
Translates textual shader into a binary token stream. The syntax matches the tgsi_dump module, so it's possible to simply copy-paste the shader dump and transform it back to a binary form.
2008-07-12tgsi: Fix dumping of indirect addressing.Michal Krol
2008-07-12tgsi: Add missing copyright headers.Michal Krol
2008-07-09gallium: fix logic in pb_check_usage()Brian Paul
2008-07-09draw: remove some debug outputZack Rusin
2008-07-08gallium: tweak printing of generic declarationsBrian Paul
2008-07-04gallium: fix trim() function bug when count < firstBrian Paul
If the user called glDrawArrays(GL_TRIANGLES, count=1), trim() returned a very large integer because of the unsigned arithmetic.
2008-07-03gallium: added a4r4g4b4_put_tile_rgba()Brian Paul
2008-07-03gallium: increase TGSI interpreter's number of temp registers to 64Brian Paul
Also, clean up the definitions of the misc/extra temp regs. A few new assertions too.
2008-07-03gallium: increase TGSI_EXEC_MAX_COND_NESTING, etcBrian Paul
2008-07-03pipebuffer: Silent warnings.José Fonseca
Although rarely hit in normal apps, they are too noisy with test suites.
2008-07-03gallium: Don't forget to get overllaping blits working again.José Fonseca
2008-07-03gallium: Use surface_copy for 1:1 blits.José Fonseca
2008-07-02gallium: replace 128 with MAX_LABELSBrian Paul
2008-07-02gallium: Allow draw module to work on non-x86 platforms again.Michel Dänzer
2008-07-02pipebuffer: Debug buffer manager to detect buffer under- and overflows.José Fonseca
It should detect both cpu and gpu buffer overflows.
2008-07-02pipebuffer: Verify usage flag consistency. Minor cleanups.José Fonseca
2008-06-27gallium: Drop pipe_texture->cpp and pipe_surface->cpp.José Fonseca
The chars-per-pixel concept falls apart with compressed and yuv images, where more than one pixel are coded in a single data block.
2008-06-24gallium: Fix whole source being used in u_blitJakob Bornecrantz
2008-06-24gallium: Fix warning in u_blit.hJakob Bornecrantz
2008-06-24gallium: Avoid double arithmetic.José Fonseca
2008-06-23gallium: added support for fixed-point formats, drawingBrian Paul
2008-06-23gallium: code for PIPE_SUBSYSTEM_WINDOWS_USERJonathan White
2008-06-24gallium: Use the more portable PIPE_ARCH_* PIPE_CC_* macros instead of ↵José Fonseca
ad-hoc ones.
2008-06-23gallium: fix Y-inverted copiesBrian Paul
Don't require the caller to pass a non-intuitive negative src_y coord anymore when doing a src-inverted copy.
2008-06-23gallium: added some assertionsBrian Paul
2008-06-23util: Blit can now copy from texture to surfaceJakob Bornecrantz
2008-06-23gallium: Fix warning in u_draw_quad.hJakob Bornecrantz
2008-06-22draw: fix non-i386 buildsKeith Whitwell
2008-06-19gallium: Handle malloc failure.José Fonseca
2008-06-19gallium: Add extra parenthesis as advised by gcc.José Fonseca
2008-06-19util: Add missing format names.Michal Krol
2008-06-19draw: Fix MSVC integer size conversion warning.José Fonseca
2008-06-18gallium: additional fixes to ensure even number of vertices per bufferBrian Paul
2008-06-18gallium: split long prims into chunks with an even number of verticesBrian Paul
This fixes culling "parity" errors when splitting long tri strips. Splitting strips into chunks with an odd number of vertices causes front/back-face orientation to get reversed and upsets culling.
2008-06-18gallium: remove duplicated u_mm.c in file listBrian Paul