Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-02-22 | add some #includes, fix some prototypes (bug 5992) | Brian Paul | |
2006-02-22 | add missing prototypes, use _slang_ prefix on non-static functions | Brian Paul | |
2006-02-22 | silence a variety of compiler warnings | Brian Paul | |
2006-02-21 | More GLSL code: | Michal Krol | |
- uniforms (only GetLocation, Uniform1f and Uniform4fv for now for demos); - fix bugs and optimize array size handling; - 2D texture sampling (needs Enable(TEXTURE_2D) to work); - decrease built-in library assembly size by 30%. | |||
2006-02-21 | Committing in . | Jouk Jansen | |
Update OpenVMS makefiles Modified Files: Mesa/src/mesa/shader/slang/descrip.mms Mesa/src/mesa/swrast/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | |||
2006-02-18 | More GLSL code. | Michal Krol | |
- general constructors allowed; - implement noise functions (from Stefan Gustavson - thanks!) - cosmetic stuff. | |||
2006-02-15 | Set NumInstructions (bug 5864) | Brian Paul | |
2006-02-15 | Fix a few warnings: | Brian Paul | |
- nested comments (use #if 0 / #endif instead) - missing default clause in switch statements - use of possibly undefined variables | |||
2006-02-15 | Add support for forward function declarations. | Michal Krol | |
2006-02-15 | Add fragment shader execute entry. | Michal Krol | |
2006-02-13 | Update OpenVMS compile support | Jouk Jansen | |
2006-02-13 | More glsl code. | Michal Krol | |
2006-02-13 | REVISION 3. | Michal Krol | |
Remove illegal operators for overloading. | |||
2006-02-13 | Cosmetic changes. | Michal Krol | |
2006-02-13 | Delete most of the comments. | Michal Krol | |
Minor tweaks with the functions. Add experimental print functions. | |||
2006-02-13 | Get it running for ARB_vertex_shader. | Michal Krol | |
Add experimental print functions to builtin library. Some functionality missing: - automatic arrays; - general constructors; - local variable initialization; - texture sampling and noise; - semantic error checking; - function prototypes. | |||
2006-02-13 | Rename current_program to CurrentProgram. | Michal Krol | |
Temporary vertex_shader execution code. | |||
2006-01-30 | Split slang_compile.c into several smaller files - it was just too big. | Michal Krol | |
Minor fixes and cosmetic changes. | |||
2006-01-16 | remove some test code; | Michal Krol | |
rewrite the intermediate code executor to address 64-bit platforms and global memory; store built-in library code in a precompiled form only; | |||
2006-01-16 | remove slang_*_gc.h files; | Michal Krol | |
rename slang_*_gc_bin.h files to slang_*_gc.h ones; store built-in library code in a precompiled form only; | |||
2005-12-06 | C++ fixes, mostly casts (Stephane Conversy) | Brian Paul | |
2005-11-22 | track state flags which might invalidate parameter lists | Keith Whitwell | |
2005-11-20 | move _mesa_init_instruction() to program.c | Brian Paul | |
2005-11-20 | Make Saturate a 2-bit field again, renamed to SaturateMode with three | Brian Paul | |
possible values: SATURATE_OFF, SATURATE_ZERO_ONE and SATURATE_PLUS_MINUS_ONE. | |||
2005-11-19 | remove incorrect cast | Brian Paul | |
2005-11-19 | Saturate is a 1-bit boolean field | Brian Paul | |
2005-11-19 | No longer derive 'ati_fragment_shader' from 'program' class. Only the | Brian 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-19 | Remove the _mesa_parse_arb_vertex/fragment_program() functions into | Brian Paul | |
arbprogparse.c and remove arbvertparse.[ch] and arbfragparse.[ch]. Clean up quite a bit of the arb parsing code. Rewrite parser extension code to avoid a mess of string operations every time the parser was used. | |||
2005-11-19 | update comments, remove ^M chars | Brian Paul | |
2005-11-19 | move a bunch of gl2/shading language structs from mtypes.h to shaderobjects.h | Brian Paul | |
2005-11-12 | Improve _mesa_print_program(). | Brian Paul | |
Added make_state_string() to produce a string from a GL state vector. | |||
2005-11-12 | fix comment for TexSrcTarget | Brian Paul | |
2005-11-12 | update some assertions | Brian Paul | |
2005-11-12 | Move 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-08 | This patch adds the missing NV_vertex_program2 and NV_vertex_program3 | Ian Romanick | |
instructions to the various internal tables. It does not add support for them to the parser nor does it add support for them to the program interpreter. It also corrects some errors in the comments in program_instruction.h. This patch breaks the instruction union in t_vb_arbprogram.h. The opcode field in that union was only 6 bits. When there were only 59+3 instructions that worked fine. However, this patch increases the base instruction count to 69. This requires 7 bits. The problem is that increasing the opcode width to 7 bits increases the size of instruction::rsw to 33 bits. I've increased the size of the union to 64-bit, but this is just a temporary hack (and probably breaks the build on some systems). | |||
2005-11-08 | remove _mesa_debug_fp_inst() | Brian Paul | |
2005-11-08 | minor work in _mesa_print_program() | Brian Paul | |
2005-11-08 | remove unneeded #includes | Brian Paul | |
2005-11-07 | remove unneeded #includes | Brian Paul | |
2005-11-05 | consolidate vertex/fragment program printing into _mesa_print_program() | Brian Paul | |
2005-11-05 | use _mesa_program_file_string() and _mesa_opcode_string() | Brian Paul | |
2005-11-05 | added _mesa_program_file_string() | Brian Paul | |
2005-11-05 | Use _mesa_opcode_string() | Brian Paul | |
2005-11-05 | added _mesa_num_inst_src_regs() and _mesa_opcode_string() | Brian Paul | |
2005-11-05 | Unify vertex/fragment program instuctions. | Brian Paul | |
Based on patch by Ian (#4967) but also unify instruction opcodes. | |||
2005-11-05 | don't need MAKE_SWIZZLE() macro | Brian Paul | |
2005-11-05 | Replace parameter_type enum in program.[ch], use register_file enums instead. | Brian Paul | |
2005-11-04 | use VERT_RESULT_HPOS, VERT_BIT_POS tokens | Brian Paul | |
2005-11-03 | Streamline code generation by using a fixed size instruction buffer in | Brian Paul | |
arb_program struct. | |||
2005-11-03 | use WRITEMASK_* tokens | Brian Paul | |