Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-09 | optimize per-pixel fog program | Roland Scheidegger | |
use the same internal state as for vertex fog. From the old implemenentation, this changes a SUB+MUL into a MAD for linear fog, and saves a MUL for EXP/EXP2, plus saves a (constant) parameter. While here, fix the broken (forgotten) swizzling. (untested) | |||
2007-02-09 | optimize generated vertex programs a bit | Roland Scheidegger | |
Use new internal state to avoid per-vertex normalization of static spot direction vector. Use internal state for simpler per-vertex fog computations (MAD instead of SUB/MUL for linear fog, EX2 instead of POW for EXP/EXP2 fog). Simplify point size calc (2 MADs instead of MOV, MUL, MUL, DP3), and while there fix it up (RSQ instead of RCP). All untested... | |||
2007-01-23 | fixes for C++ warnings/errors | Brian | |
2007-01-15 | mesa: Update _Current along Current on fragment program bound. | Jerome Glisse | |
Same as a previously committed patch for vertex program, we update fragment program ptr _Current along the Current one so that _Current can't end up pointing to a no more valid program. | |||
2007-01-14 | mesa: Update _Current ptr along Current when a new vertex program is bind. | Jerome Glisse | |
On new vertex program bind only the Current ptr where updated to point to the new program; this could lead to _Current pointing to and out of date or even a no more existing program which in turn could lead to a segfault in some driver. To avoid this _Current ptr is updated along Current if _Current where previously pointing to the same program. | |||
2006-12-14 | Replace __extension__ with LONGSTRING. | Brian | |
2006-11-29 | call Driver.ProgramStringNotify if a ati_fragment_shader changes and pick up ↵ | Roland Scheidegger | |
the change in the r200 driver accordingly. | |||
2006-11-28 | indent, comments, etc | Brian Paul | |
2006-11-27 | comments | Brian Paul | |
2006-11-24 | call slang_variable_construct() inside slang_variable_scope_grow() | Brian Paul | |
2006-11-24 | new slang_variable_scope_grow() function | Brian Paul | |
2006-11-23 | const correctness, clean-ups | Brian Paul | |
2006-11-23 | indent | Brian Paul | |
2006-11-23 | fix several program-related bugs (bug 9136) | Brian Paul | |
2006-11-23 | s/ource/source/ | Brian Paul | |
2006-11-23 | move comments | Brian Paul | |
2006-11-23 | indent | Brian Paul | |
2006-11-23 | clean-up, comments | Brian Paul | |
2006-11-22 | indent | Brian Paul | |
2006-11-22 | const correctness | Brian Paul | |
2006-11-22 | new comments | Brian Paul | |
2006-11-22 | clean-up, comments | Brian Paul | |
2006-11-22 | reindent | Brian Paul | |
2006-11-22 | fix comments | Brian Paul | |
2006-11-21 | list header files in sources files (Dan Nicholson) | Brian Paul | |
2006-11-20 | Committing in . | Jouk Jansen | |
Solve small definition problem for OpenVMS Modified Files: Mesa/src/mesa/shader/descrip.mms | |||
2006-11-18 | move fix-up code into new slang_fixup_save() function | Brian Paul | |
2006-11-18 | comments | Brian Paul | |
2006-11-18 | reindent | Brian Paul | |
2006-11-17 | reindent, doxygen-style comments | Brian Paul | |
2006-11-17 | Comment and indent the atom functions. | Michal Krol | |
2006-11-17 | add STATE_INTERNAL_DRIVER, etc (Rune Petersen) | Brian Paul | |
2006-11-16 | revert prev check-in | Brian Paul | |
2006-11-16 | Add a lot of const qualifiers for const-correctness. | Brian Paul | |
New comments, misc clean-ups. | |||
2006-11-16 | reindent | Brian Paul | |
2006-11-16 | Initial implementation work for CAL, RET, and BRA instructions for fragment | Brian Paul | |
programs. | |||
2006-11-16 | disable yesterday's _mesa_add_named_constant() change for now | Brian Paul | |
2006-11-16 | reindent, clean-up | Brian Paul | |
2006-11-15 | Add a size parameter to _mesa_add_unnamed_constant() and | Brian Paul | |
_mesa_add_named_constant() to indicate vector size (1, 2, 3 or 4). Always 4 for now... | |||
2006-11-15 | Add new _mesa_lookup_parameter_constant() to search for a GLfloat4 constant | Brian Paul | |
in a parameter list. Use it in _mesa_add_named_constant() and _mesa_add_unnamed_constant() to avoid duplication of identical constants. | |||
2006-11-15 | reindent, add some comments | Brian Paul | |
2006-11-15 | reindent | Brian Paul | |
2006-11-15 | indent, comments | Brian Paul | |
2006-11-15 | s/int/GLboolean/ | Brian Paul | |
2006-11-15 | improved error mesages | Brian Paul | |
2006-11-15 | fix casts to silence warnings | Brian Paul | |
2006-11-15 | #define LONGSTRING __extension__ in imports.h and use it to silence gcc | Brian Paul | |
warnings about long string literals. | |||
2006-11-15 | Comments for operations. | Brian Paul | |
2006-11-05 | reindent | Brian Paul | |
2006-11-04 | Fix for glGetVertexAttribfvNV, bug 8883 | Brian Paul | |