summaryrefslogtreecommitdiffstats
path: root/src/mesa/shader
Commit message (Collapse)AuthorAgeFilesLines
* added shaderobjects.cBrian Paul2004-11-101-2/+5
|
* slang syntax conforming spec rev. 1.10.59Michal Krol2004-10-292-0/+2253
|
* remove unused entriesMichal Krol2004-10-271-7/+0
|
* by karoshi - ARB_shader_objects implementationMichal Krol2004-10-271-0/+258
| | | | empty routines by now
* by karoshi - header file for ARB_shader_objects implementationMichal Krol2004-10-271-0/+178
|
* Bug #1682: Mesa core code that gets linked into DRI drivers should never callAdam Jackson2004-10-241-1/+1
| | | | through the GL API directly, but should instead use the GL_CALL macro.
* - add decimal literal integer supportMichal Krol2004-10-222-588/+609
| | | | | - fix bug with c-style comment closing - sequences like /***/ were not correctly parsed
* forgot about revision incrementMichal Krol2004-10-212-2/+2
|
* - use new program option values from arbprogram.synMichal Krol2004-10-211-32/+18
| | | | | | - remove redundant check of parsed program target - remove redundant check of relative addressing range - use faster grammar interface
* remove redundant check of parsed program targetMichal Krol2004-10-212-30/+2
|
* change program options numbering to accommodate futureMichal Krol2004-10-212-28/+50
| | | | options (up to 256)
* add new grammar_check_fast entry for faster parsingMichal Krol2004-10-201-1/+12
|
* - speed up syntax parsing - the parser is now 4 times fasterMichal Krol2004-10-201-178/+531
| | | | | | | | | | 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
* conform to shader spec 1.10.59Michal Krol2004-10-183-1916/+2037
|
* conform to language version 1.10 rev 59Michal Krol2004-10-181-1654/+1751
| | | | resolve TODOs
* fix if/else bug in _mesa_ProgramEnvParameter4fARB (fdo bug 1645)Brian Paul2004-10-161-2/+2
|
* add newline to end of fileDaniel Borca2004-10-121-1/+1
|
* Fix strange white space that gcc didn't like.Felix Kuehling2004-10-111-1/+1
|
* Prefix operator and constructor keywords with two consequtive underscoresMichal Krol2004-10-111-327/+327
| | | | ( __ ). This will be more compatible with glslang spec.
* Enable draw_buffers only if GL_ARB_draw_buffers string isMichal Krol2004-10-111-1/+12
| | | | | present in GL_EXTENSIONS string. Parse OPTION ARB_draw_buffers.
* more GL_ARB_draw_buffers updates from Michale KrolBrian Paul2004-10-062-63/+54
|
* fix GetVertexAttrib problemBrian Paul2004-10-061-1/+4
|
* ARB_fp support for GL_ARB_draw_buffers (Karl Rasche)Brian Paul2004-10-044-9/+69
|
* fix indentationBrian Paul2004-10-021-12/+6
|
* fix LoadProgramNV regression when I had fixed the RefCount bugBrian Paul2004-10-023-9/+12
|
* also fix possible delete bugs with buffer objects and vertex/fragment programsBrian Paul2004-09-141-50/+75
|
* reset error state before parsing (David Reveman)Brian Paul2004-09-101-0/+3
|
* More updates for Doxygen.Brian Paul2004-09-101-2/+10
|
* Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul2004-08-258-41/+55
| | | | 1015696)
* cast to fix a warning (in disabled code anyway)Brian Paul2004-08-221-1/+1
|
* enabled GL_ARB_texture_rectangleBrian Paul2004-08-201-0/+2
|
* New Visual Studio project file for this directory.Karl Schultz2004-08-141-0/+197
|
* fix some memory leaks (bug #1002030)Brian Paul2004-08-142-3/+33
|
* error message fixups and some debug codeBrian Paul2004-07-201-2/+13
|
* fix compare w/ zero warnings (bug #988766)Brian Paul2004-07-202-9/+13
|
* fix another bug in get_register_pointer()Brian Paul2004-06-291-1/+3
|
* the get_register_pointer() function was pretty well broken in a few waysBrian Paul2004-06-291-16/+9
|
* disable some debug codeBrian Paul2004-06-292-4/+4
|
* remove trailing whitespace and misc clean-upsBrian Paul2004-06-291-20/+16
|
* remove program from hash table when deleted (bug 979514)Brian Paul2004-06-251-8/+7
|
* call ctx->Driver.NewProgram() instead of CALLOC/etc in _mesa_LoadProgramNV. ↵Brian Paul2004-06-201-7/+5
| | | | Fixes problems found with Cg demos.
* remove redundant program field initializers in BindProgram(); ↵Brian Paul2004-06-201-4/+0
| | | | ctx->Driver.NewProgram() does the inits
* fix parse error in sign of exponents (bug 968323)Brian Paul2004-06-081-30/+13
|
* remove unneeded lineBrian Paul2004-05-041-1/+0
|
* Fix minor warnings found with g++.Brian Paul2004-05-042-17/+17
|
* Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragmentBrian Paul2004-04-231-4/+4
| | | | | | | 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.
* Fix up some assorted issues with initialization of vertex program registers.Brian Paul2004-04-214-89/+98
| | | | | 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.
* Audit/fixes for NV/ARB TEX, TXP, TXB, TXD instructions.Brian Paul2004-04-182-2/+3
| | | | | | 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.
* Committing in .Jouk Jansen2004-04-052-4022/+4022
| | | | | | | | | | | | | 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 ----------------------------------------------------------------------
* Committing in .Jouk Jansen2004-04-052-4012/+4012
| | | | | | | | | | | | | | 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 ----------------------------------------------------------------------