summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/cell/ppu/cell_gen_fp.c
AgeCommit message (Expand)Author
2009-12-08cell: use boolean instead of boolRoland Scheidegger
2009-12-02cell: fix TGSI breakageBrian Paul
2009-11-24tgsi: rename fields of tgsi_full_src_register to reduce verbosityKeith Whitwell
2009-11-24tgsi: rename fields of tgsi_full_dst_register to reduce verbosityKeith Whitwell
2009-11-24tgsi: rename fields of tgsi_full_declaration to reduce verbosityKeith Whitwell
2009-11-24tgsi: rename fields of tgsi_full_instruction to avoid excessive verbosityKeith Whitwell
2009-10-23gallium: remove the swizzling parts of ExtSwizzleKeith Whitwell
2009-10-20cell: fix compilation on cellMarc Dietrich
2009-08-30cell: fix compilationMarc Dietrich
2009-07-31Rename TGSI LOOP instruction to better match theri usage.Michal Krol
2009-07-22gallium: simplify tgsi_full_immediate structKeith Whitwell
2009-01-10cell: use tgsi_dump_instruction() instead of spe_comment()Brian Paul
2009-01-05cell: fix code emit for RSQ/RCP when src arg == dst argBrian Paul
2009-01-04cell: initial codegen support for fragment shader loopsBrian Paul
2009-01-04cell: clean-up, improve SPU code generationBrian Paul
2008-11-11cell: implement NRM3 opcodeBrian Paul
2008-10-29cell: add scalar param to emit_function_call() to indicate scalar function callsBrian Paul
2008-10-22cell: note that dst reg writing needs clampingBrian Paul
2008-10-16cell: implement KIL instructionBrian Paul
2008-10-16cell: clean up various texture-related thingsBrian Paul
2008-10-14cell: fall-through case for TGSI_OPCODE_TXBBrian Paul
2008-10-10cell: more instruction scheduling optimizations (MIN/MAX/LERP/etc)Brian Paul
2008-10-10cell: pass texture unit (sampler number) to txp() functionBrian Paul
2008-10-10cell: fix function prologue/epilogue code for large stack framesBrian Paul
2008-10-10cell: fix LERP when dst reg is a src regBrian Paul
2008-10-10cell: fix fm/fs copy & paste bug from a few commits agoBrian Paul
2008-10-10cell: fix bug in emit_FLR() when src reg == dst regBrian Paul
2008-10-10cell: fix bug in emit_FRC() when src register == dst register.Brian Paul
2008-10-09cell: implement basic TXP instruction in fragment shadersBrian Paul
2008-10-09cell: better immediate value allocation, better commentsBrian Paul
2008-10-09cell: massage the emit functions to get better instruction schedulingBrian Paul
2008-10-08cell: implement function calls from shader code. fslight demo runs now.Brian Paul
2008-10-07cell: add support for fragment shader constant buffersBrian Paul
2008-10-07cell: fix incorrect extended swizzle term code in get_src_reg()Brian Paul
2008-10-07cell: fix formattingBrian Paul
2008-09-26cell: checkpoint: more work in emit_function_call()Brian Paul
2008-09-26cell: checkpoint: support for function calls in SPU shadersBrian Paul
2008-09-22cell: Fixed bug with absolute, negate, set-negative logic in source fetch for...Jonathan White
2008-09-22cell: Added TRUNC, SWZ (extended) and XPD instructions, verified against soft...Jonathan White
2008-09-22cell: Added DPH instruction and verified against softpipe.Jonathan White
2008-09-19cell: Added FRC instructionJonathan White
2008-09-19cell: Added FLR instruction. Verified the following instructions match softp...Jonathan White
2008-09-19cell: Fixed bugs with DP3 and DP4, they match softpipe results now.Jonathan White
2008-09-19cell: change spe_complement() to take a src and dst reg, like other instructionsBrian Paul
2008-09-18cell: Added CMP instructionJonathan White
2008-09-18cell: Fix bug with complement logic for SGE and SLEJonathan White
2008-09-18cell: Added SGE and SLE instructions to dispatch functionJonathan White
2008-09-18cell: Added SGE and SLE instructionsJonathan White
2008-09-16cell: Added RCP and RSQ instruction support.Jonathan White
2008-09-16cell: Added DP3 and DP4 instructionsJonathan White