Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-10-29 | slang syntax conforming spec rev. 1.10.59 | Michal Krol | |
2004-10-27 | remove unused entries | Michal Krol | |
2004-10-27 | by karoshi - ARB_shader_objects implementation | Michal Krol | |
empty routines by now | |||
2004-10-27 | by karoshi - header file for ARB_shader_objects implementation | Michal Krol | |
2004-10-24 | Bug #1682: Mesa core code that gets linked into DRI drivers should never call | Adam Jackson | |
through the GL API directly, but should instead use the GL_CALL macro. | |||
2004-10-22 | - add decimal literal integer support | Michal Krol | |
- fix bug with c-style comment closing - sequences like /***/ were not correctly parsed | |||
2004-10-21 | forgot about revision increment | Michal Krol | |
2004-10-21 | - use new program option values from arbprogram.syn | Michal Krol | |
- remove redundant check of parsed program target - remove redundant check of relative addressing range - use faster grammar interface | |||
2004-10-21 | remove redundant check of parsed program target | Michal Krol | |
2004-10-21 | change program options numbering to accommodate future | Michal Krol | |
options (up to 256) | |||
2004-10-20 | add new grammar_check_fast entry for faster parsing | Michal Krol | |
2004-10-20 | - speed up syntax parsing - the parser is now 4 times faster | Michal 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-18 | conform to shader spec 1.10.59 | Michal Krol | |
2004-10-18 | conform to language version 1.10 rev 59 | Michal Krol | |
resolve TODOs | |||
2004-10-16 | fix if/else bug in _mesa_ProgramEnvParameter4fARB (fdo bug 1645) | Brian Paul | |
2004-10-12 | add newline to end of file | Daniel Borca | |
2004-10-11 | Fix strange white space that gcc didn't like. | Felix Kuehling | |
2004-10-11 | Prefix operator and constructor keywords with two consequtive underscores | Michal Krol | |
( __ ). This will be more compatible with glslang spec. | |||
2004-10-11 | Enable draw_buffers only if GL_ARB_draw_buffers string is | Michal Krol | |
present in GL_EXTENSIONS string. Parse OPTION ARB_draw_buffers. | |||
2004-10-06 | more GL_ARB_draw_buffers updates from Michale Krol | Brian Paul | |
2004-10-06 | fix GetVertexAttrib problem | Brian Paul | |
2004-10-04 | ARB_fp support for GL_ARB_draw_buffers (Karl Rasche) | Brian Paul | |
2004-10-02 | fix indentation | Brian Paul | |
2004-10-02 | fix LoadProgramNV regression when I had fixed the RefCount bug | Brian Paul | |
2004-09-14 | also fix possible delete bugs with buffer objects and vertex/fragment programs | Brian Paul | |
2004-09-10 | reset error state before parsing (David Reveman) | Brian Paul | |
2004-09-10 | More updates for Doxygen. | Brian Paul | |
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-08-22 | cast to fix a warning (in disabled code anyway) | Brian Paul | |
2004-08-20 | enabled GL_ARB_texture_rectangle | Brian Paul | |
2004-08-14 | New Visual Studio project file for this directory. | Karl Schultz | |
2004-08-14 | fix some memory leaks (bug #1002030) | Brian Paul | |
2004-07-20 | error message fixups and some debug code | Brian Paul | |
2004-07-20 | fix compare w/ zero warnings (bug #988766) | Brian Paul | |
2004-06-29 | fix another bug in get_register_pointer() | Brian Paul | |
2004-06-29 | the get_register_pointer() function was pretty well broken in a few ways | Brian Paul | |
2004-06-29 | disable some debug code | Brian Paul | |
2004-06-29 | remove trailing whitespace and misc clean-ups | Brian Paul | |
2004-06-25 | remove program from hash table when deleted (bug 979514) | Brian Paul | |
2004-06-20 | call ctx->Driver.NewProgram() instead of CALLOC/etc in _mesa_LoadProgramNV. ↵ | Brian Paul | |
Fixes problems found with Cg demos. | |||
2004-06-20 | remove redundant program field initializers in BindProgram(); ↵ | Brian Paul | |
ctx->Driver.NewProgram() does the inits | |||
2004-06-08 | fix parse error in sign of exponents (bug 968323) | Brian Paul | |
2004-05-04 | remove unneeded line | Brian Paul | |
2004-05-04 | Fix minor warnings found with g++. | Brian Paul | |
2004-04-23 | Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragment | Brian Paul | |
program is enabled AND the currently bound program is valid. Check _Enable instead of Enable to prevent things from blowing up when someone calls glEnable(GL_VERTEX_PROGRAM_ARB) without actually defining a program. | |||
2004-04-21 | Fix up some assorted issues with initialization of vertex program registers. | Brian Paul | |
Some need to be set per-vertex, other per-primitive. Cleared that up. Only need to init temp/result registers if executing an NV vertex program. | |||
2004-04-18 | Audit/fixes for NV/ARB TEX, TXP, TXB, TXD instructions. | Brian Paul | |
Some texture instructions were using wrong LOD. Fixed interpolate_texcoords() so it doesn't do texcoord projective division when using a fragment program. The TXP instruction does that. | |||
2004-04-05 | Committing in . | Jouk Jansen | |
Correction on last commit (My FTP-server on linux is playing games with <CR>'s) Modified Files: Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/shader/arbprogparse.c Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | |||
2004-04-05 | Committing in . | Jouk Jansen | |
Updated OpenVMS compile support due to shader directory. Removed <CR>'s in arbprogparse.c Modified Files: Mesa/src/mesa/descrip.mms Mesa/src/mesa/drivers/common/descrip.mms Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/shader/arbprogparse.c Mesa/src/mesa/shader/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | |||
2004-04-02 | Implement ARB_f_p KIL correctly. | Brian Paul | |