summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_nvfragprog.c
AgeCommit message (Expand)AuthorFilesLines
2004-12-18Added PRINT instruction for GL_NV_fragment_program.Brian Paul1-5/+22
2004-12-15tweaks to the LIT instructionsBrian Paul1-5/+7
2004-08-10added a few more debug printfs (disabled)Brian Paul1-0/+14
2004-06-20store's to RC/HC didn't work (bug 976287)Brian Paul1-0/+4
2004-04-21only init temp regs to zero if executing NV fragment programBrian Paul1-6/+10
2004-04-18Audit/fixes for NV/ARB TEX, TXP, TXB, TXD instructions.Brian Paul1-10/+27
2004-04-14Use tcc and the emitted C code from s_fragprog_to_c.c to dynamically compileKeith Whitwell1-0/+8
2004-04-02Implement ARB_f_p KIL correctly.Brian Paul1-1/+10
2004-03-29fix array indexing for UP4B and UP4UBBrian Paul1-6/+6
2004-03-29Accomodate ARB_fp XPD opcode separately from NV_fp's X2D.Keith Whitwell1-0/+12
2004-03-03s/_swrast_exec_nv_fragment_program/_swrast_exec_fragment_program/Brian Paul1-1/+5
2004-02-27move _mesa_load_state_parameters() to state validation stageBrian Paul1-6/+1
2004-02-27fix PK2H, UP2H, PK2US bugsBrian Paul1-18/+21
2004-01-27Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a singleKeith Whitwell1-1/+1
2004-01-23Initial support for floating point and signed texture formats.Brian Paul1-0/+1
2004-01-14added blurb about NVIDIA extensionsBrian Paul1-2/+10
2003-12-13Problem computing specular value in OPCODE_LIT - pulled in value fromKarl Rasche1-1/+1
2003-11-22pass ctx to fetch_vector4_deriv()Brian Paul1-3/+6
2003-11-21fix some bugs in computation of DDX, DDY commandsBrian Paul1-19/+22
2003-11-19Initial checkin of new ARB_frag/vertex program parserKarl Rasche1-4/+10
2003-09-19Assorted casts to silence g++ warnings.Brian Paul1-1/+1
2003-09-18Add casts to prevent double->float conversion compiler warnings.Karl Schultz1-2/+2
2003-09-04implement SWZ and TXB. some code clean-upBrian Paul1-46/+55
2003-09-04Added new opcodes for ARB_fragment_program, like ABS, CMP, TXB, etc.Brian Paul1-0/+62
2003-08-31update parameter indexingBrian Paul1-4/+5
2003-08-30Silence compiler warnings about implicit casts or conversions by supplying ex...Karl Schultz1-6/+7
2003-08-27 Committing in .Jouk Jansen1-1/+1
2003-08-17Re-org of register files for vertex/fragment programs. Will be easier toBrian Paul1-106/+158
2003-07-22Implement debugger callback, etc for vertex programs. Misc clean-ups.Brian Paul1-0/+4
2003-07-21Initial implementation of GL_MESA_program_debug - a vertex/fragment programBrian Paul1-7/+19
2003-05-10initialize condition codes before running programBrian Paul1-3/+17
2003-04-21fix DDX, DDY instructions (probably not finished though)Brian Paul1-2/+2
2003-04-11Some groundwork for GL_ARB_vertex/fragment_program.Brian Paul1-2/+2
2003-04-08Added ctx->Texture._EnabledCoordUnits bitfield.Brian Paul1-21/+57
2003-04-05fragment program named constants and named program parameters basically work nowBrian Paul1-69/+85
2003-03-25replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]Brian Paul1-2/+2
2003-03-19 Committing in .Jouk Jansen1-7/+7
2003-03-19Rewrite of fragment program named parameters, constants, etc. Not done.Brian Paul1-17/+23
2003-03-16Store partial derivative values in sw_span structure.Brian Paul1-102/+340
2003-03-15Fix up some fragment program texture enable issues.Brian Paul1-64/+78
2003-03-14Clean-up of parser error handling/reporting.Brian Paul1-15/+21
2003-03-04added _mesa_inv_sqrtf() and INV_SQRTF() (Josh Vanderhoof)Brian Paul1-3/+2
2003-03-01Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch]Brian Paul1-23/+9
2003-02-25pass the instruction to store_vector4(). implement KIL.Brian Paul1-151/+116
2003-02-23Move span stuff from swrast.h to s_context.h (it's private).Brian Paul1-39/+475
2003-02-17Implement parsing of texture instructions and prototype execution.Brian Paul1-1/+106
2003-01-14fragment program executionBrian Paul1-0/+376