summaryrefslogtreecommitdiff
path: root/src/mesa/shader/program.h
AgeCommit message (Collapse)Author
2006-05-24Roll _mesa_free_parameters() into calling function (the only caller).Brian Paul
Replace assert(0) with _mesa_warning(). Use new _mesa_align_realloc() function. New comments, clean-ups.
2006-05-24use GLbitfield for StateFlags, improved commentsBrian Paul
2005-11-22track state flags which might invalidate parameter listsKeith Whitwell
2005-11-19No longer derive 'ati_fragment_shader' from 'program' class. Only theBrian Paul
program->Id and program->RefCount fields were used and ATI fragment shaders didn't have too much in common with ARB/NV vertex/fragment programs anyway.
2005-11-12Move stuff common to vertex/fragment_program into the base class, including:Brian Paul
Instructions, InputsRead, OutputsWritten, and Parameters. Also, added debug functions: _mesa_print_instruction(), _mesa_print_program_parameters() and revamp _mesa_print_program().
2005-11-05consolidate vertex/fragment program printing into _mesa_print_program()Brian Paul
2005-11-05don't need MAKE_SWIZZLE() macroBrian Paul
2005-11-05Replace parameter_type enum in program.[ch], use register_file enums instead.Brian Paul
2005-11-03added a const, clean-upBrian Paul
2005-05-10reduce the use of malloc and strdup for parameter listsKeith Whitwell
2005-04-21Reduce the size of mesa's internal fragment and vertex programKeith Whitwell
representations by switching to packed structures for registers and instructions.
2005-01-11prototype _mesa_init_ati_fragment_shader()Brian Paul
2004-10-02fix LoadProgramNV regression when I had fixed the RefCount bugBrian Paul
2004-09-10More updates for Doxygen.Brian Paul
2004-08-14fix some memory leaks (bug #1002030)Brian Paul
2004-03-29Moved from src/mesa/mainMichal Krol