summaryrefslogtreecommitdiff
path: root/src/mesa/shader
AgeCommit message (Collapse)Author
2004-12-19Implement software ATI_fragment_shaderDave Airlie
no error detection, slow, may not be 100% correct but a good start
2004-12-18Added PRINT instruction for GL_NV_fragment_program.Brian Paul
2004-12-16Experimental PRINT instruction for NV_vertex_program.Brian Paul
Basically, this lets you put a "PRINT 'mesage', register;" statement in a vertex program to aid in debugging.
2004-12-15tweaks to the LIT instructionsBrian Paul
2004-12-14uint*t -> u_int*t changesAlan Hourihane
2004-12-08silence warningsAlan Hourihane
2004-12-02Fix some warningsAlan Hourihane
2004-11-29update from JoukBrian Paul
2004-11-26update some type namesBrian Paul
2004-11-10added shaderobjects.cBrian Paul
2004-10-29slang syntax conforming spec rev. 1.10.59Michal Krol
2004-10-27remove unused entriesMichal Krol
2004-10-27by karoshi - ARB_shader_objects implementationMichal Krol
empty routines by now
2004-10-27by karoshi - header file for ARB_shader_objects implementationMichal Krol
2004-10-24Bug #1682: Mesa core code that gets linked into DRI drivers should never callAdam Jackson
through the GL API directly, but should instead use the GL_CALL macro.
2004-10-22- add decimal literal integer supportMichal Krol
- fix bug with c-style comment closing - sequences like /***/ were not correctly parsed
2004-10-21forgot about revision incrementMichal Krol
2004-10-21- use new program option values from arbprogram.synMichal Krol
- remove redundant check of parsed program target - remove redundant check of relative addressing range - use faster grammar interface
2004-10-21remove redundant check of parsed program targetMichal Krol
2004-10-21change program options numbering to accommodate futureMichal Krol
options (up to 256)
2004-10-20add new grammar_check_fast entry for faster parsingMichal Krol
2004-10-20- speed up syntax parsing - the parser is now 4 times fasterMichal Krol
note: to use it you must use grammar_check_fast entry - allow decimal format for literal integers in .syn files - raise am error if syntax has duplicate or unreferenced symbols - do some little clean-up with linked-list stuff - make macro APPEND_CHARACTER a function - fix minor typos and bugs
2004-10-18conform to shader spec 1.10.59Michal Krol
2004-10-18conform to language version 1.10 rev 59Michal Krol
resolve TODOs
2004-10-16fix if/else bug in _mesa_ProgramEnvParameter4fARB (fdo bug 1645)Brian Paul
2004-10-12add newline to end of fileDaniel Borca
2004-10-11Fix strange white space that gcc didn't like.Felix Kuehling
2004-10-11Prefix operator and constructor keywords with two consequtive underscoresMichal Krol
( __ ). This will be more compatible with glslang spec.
2004-10-11Enable draw_buffers only if GL_ARB_draw_buffers string isMichal Krol
present in GL_EXTENSIONS string. Parse OPTION ARB_draw_buffers.
2004-10-06more GL_ARB_draw_buffers updates from Michale KrolBrian Paul
2004-10-06fix GetVertexAttrib problemBrian Paul
2004-10-04ARB_fp support for GL_ARB_draw_buffers (Karl Rasche)Brian Paul
2004-10-02fix indentationBrian Paul
2004-10-02fix LoadProgramNV regression when I had fixed the RefCount bugBrian Paul
2004-09-14also fix possible delete bugs with buffer objects and vertex/fragment programsBrian Paul
2004-09-10reset error state before parsing (David Reveman)Brian Paul
2004-09-10More updates for Doxygen.Brian Paul
2004-08-25Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul
1015696)
2004-08-22cast to fix a warning (in disabled code anyway)Brian Paul
2004-08-20enabled GL_ARB_texture_rectangleBrian Paul
2004-08-14New Visual Studio project file for this directory.Karl Schultz
2004-08-14fix some memory leaks (bug #1002030)Brian Paul
2004-07-20error message fixups and some debug codeBrian Paul
2004-07-20fix compare w/ zero warnings (bug #988766)Brian Paul
2004-06-29fix another bug in get_register_pointer()Brian Paul
2004-06-29the get_register_pointer() function was pretty well broken in a few waysBrian Paul
2004-06-29disable some debug codeBrian Paul
2004-06-29remove trailing whitespace and misc clean-upsBrian Paul
2004-06-25remove program from hash table when deleted (bug 979514)Brian Paul
2004-06-20call ctx->Driver.NewProgram() instead of CALLOC/etc in _mesa_LoadProgramNV. ↵Brian Paul
Fixes problems found with Cg demos.