Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added instruction counter to catch infinite loops (temporary). | Brian | 2006-12-18 | 1 | -1/+11 |
| | |||||
* | Check for inst->CondUpdate, print .C suffix. | Brian | 2006-12-18 | 1 | -4/+3 |
| | |||||
* | Generate IR code for for/while loops, break and continue statements. | Brian | 2006-12-18 | 1 | -2/+101 |
| | |||||
* | Implement if-conditionals and while loops, added temporary resolve-branches ↵ | Brian | 2006-12-18 | 3 | -52/+167 |
| | | | | function in linker. | ||||
* | GLSL API functions. | Brian | 2006-12-18 | 2 | -0/+1449 |
| | |||||
* | Use _mesa_free_linked_program_data() | Brian | 2006-12-18 | 1 | -40/+6 |
| | |||||
* | comments | Brian | 2006-12-18 | 2 | -26/+32 |
| | |||||
* | fix comment, handle NOP | Brian | 2006-12-16 | 1 | -1/+3 |
| | |||||
* | Initial code for conditional constructs. | Brian | 2006-12-16 | 2 | -16/+79 |
| | |||||
* | print BRA instructions | Brian | 2006-12-16 | 1 | -1/+30 |
| | |||||
* | added cases for BRA, NOP | Brian | 2006-12-16 | 1 | -0/+5 |
| | |||||
* | cases for NOP, BRA | Brian | 2006-12-16 | 1 | -0/+7 |
| | |||||
* | start implementing relational operators | Brian | 2006-12-15 | 3 | -18/+40 |
| | |||||
* | start rewriting the matrix/vector functions | Brian | 2006-12-15 | 2 | -204/+260 |
| | |||||
* | added assertion to catch use of too many temporaries | Brian | 2006-12-15 | 1 | -0/+1 |
| | |||||
* | fix double-printing of comment info | Brian | 2006-12-15 | 1 | -3/+0 |
| | |||||
* | code movement | Brian | 2006-12-15 | 2 | -50/+47 |
| | |||||
* | Lots of assorted changes. | Brian | 2006-12-15 | 7 | -154/+242 |
| | | | | | | Implement assignment/move for types larger than 4 floats. Fix codegen bug for "return expr" in inlined functions. More clean-up of storage allocation code (slang_resolve_storage). | ||||
* | redo mat4 addition, mat4 constructor from vec4s | Brian | 2006-12-15 | 2 | -507/+535 |
| | |||||
* | vertex/fragment program field changes | Brian | 2006-12-15 | 2 | -3/+2 |
| | |||||
* | varying var changes | Brian | 2006-12-15 | 1 | -6/+12 |
| | |||||
* | varying var changes | Brian | 2006-12-15 | 3 | -17/+17 |
| | |||||
* | varying changes | Brian | 2006-12-15 | 2 | -2/+2 |
| | |||||
* | updated includes | Brian | 2006-12-15 | 1 | -1/+1 |
| | |||||
* | updated includes | Brian | 2006-12-15 | 3 | -4/+10 |
| | |||||
* | use MAX_VARYING | Brian | 2006-12-15 | 1 | -2/+2 |
| | |||||
* | use MAX_VARYING | Brian | 2006-12-15 | 1 | -1/+1 |
| | |||||
* | more debug output | Brian | 2006-12-15 | 1 | -2/+11 |
| | |||||
* | Lots of assorted changes for new GLSL compiler backend. | Brian | 2006-12-15 | 9 | -126/+265 |
| | | | | New datatypes, constants, variables. | ||||
* | change/add/rm several filenames | Brian | 2006-12-15 | 1 | -3/+10 |
| | |||||
* | Renamed s_nvfragprog.[ch] to s_fragprog.[ch] | Brian | 2006-12-15 | 3 | -17/+9 |
| | |||||
* | Renamed s_nvfragprog.[ch] to s_fragprog.[ch], program_instruction.h to ↵ | Brian | 2006-12-15 | 3 | -2093/+0 |
| | | | | prog_instruction.h | ||||
* | remove unneeded includes | Brian | 2006-12-14 | 1 | -2/+1 |
| | |||||
* | remove unneeded includes | Brian | 2006-12-14 | 3 | -7/+0 |
| | |||||
* | remove unneded includes | Brian | 2006-12-14 | 2 | -4/+0 |
| | |||||
* | remove some unneeded includes | Brian | 2006-12-14 | 1 | -3/+0 |
| | |||||
* | include prog_print.h | Brian | 2006-12-14 | 1 | -0/+1 |
| | |||||
* | Remove some moved extern decls. | Brian | 2006-12-14 | 1 | -15/+0 |
| | |||||
* | Move some code from prog_print.c to prog_instruction.c | Brian | 2006-12-14 | 2 | -112/+112 |
| | |||||
* | Renamed from s_nvfragprog.[ch] | Brian | 2006-12-14 | 2 | -0/+1729 |
| | |||||
* | Updated includes. | Brian | 2006-12-14 | 2 | -2/+4 |
| | |||||
* | chmod a-x | Brian | 2006-12-14 | 1 | -0/+0 |
| | |||||
* | Updated includes. | Brian | 2006-12-14 | 3 | -2/+6 |
| | |||||
* | Updated includes. | Brian | 2006-12-14 | 4 | -4/+9 |
| | |||||
* | Updated #includes after splitting program.h | Brian | 2006-12-14 | 4 | -3/+11 |
| | |||||
* | Move many functions into new files. | Brian | 2006-12-14 | 2 | -1855/+4 |
| | |||||
* | Split the program.[ch] files into several new files. | Brian | 2006-12-14 | 8 | -0/+2482 |
| | |||||
* | Modify _mesa_strdup() so it handles NULL correctly. | Brian | 2006-12-14 | 1 | -6/+14 |
| | |||||
* | Updates for new linker (merged varying/uniform vars). | Brian | 2006-12-14 | 1 | -7/+11 |
| | |||||
* | Assorted fix-ups for the new linker. | Brian | 2006-12-14 | 2 | -3/+18 |
| | | | | Disable some of the excessive debug output. |