Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-16 | reindent, clean-up | Brian Paul | |
2006-11-15 | Add a size parameter to _mesa_add_unnamed_constant() and | Brian Paul | |
_mesa_add_named_constant() to indicate vector size (1, 2, 3 or 4). Always 4 for now... | |||
2006-11-15 | Add new _mesa_lookup_parameter_constant() to search for a GLfloat4 constant | Brian Paul | |
in a parameter list. Use it in _mesa_add_named_constant() and _mesa_add_unnamed_constant() to avoid duplication of identical constants. | |||
2006-11-15 | reindent, add some comments | Brian Paul | |
2006-11-15 | reindent | Brian Paul | |
2006-11-15 | indent, comments | Brian Paul | |
2006-11-15 | s/int/GLboolean/ | Brian Paul | |
2006-11-15 | improved error mesages | Brian Paul | |
2006-11-15 | fix casts to silence warnings | Brian Paul | |
2006-11-15 | #define LONGSTRING __extension__ in imports.h and use it to silence gcc | Brian Paul | |
warnings about long string literals. | |||
2006-11-15 | Comments for operations. | Brian Paul | |
2006-11-05 | reindent | Brian Paul | |
2006-11-04 | Fix for glGetVertexAttribfvNV, bug 8883 | Brian Paul | |
2006-11-04 | fix error msg | Brian Paul | |
2006-11-04 | fix for glGetVertexAttribfvARB, bug 8883 | Brian Paul | |
2006-11-03 | Fix _mesa_IsProgram() and _mesa_IsShader() | Brian Paul | |
2006-11-03 | implement _mesa_GetShaderiv() | Brian Paul | |
2006-11-03 | implement _mesa_GetProgramiv() | Brian Paul | |
2006-11-03 | Simplify GET_CURRENT_LINKED_PROGRAM() macro and calling code. | Brian Paul | |
2006-11-03 | Use inlined uniform() helper function in all the glUniform*() function to | Brian Paul | |
reduce duplicated code. Finish up _program_ReadUniform() for non-float types. Implement _mesa_GetUniformivARB(). Simplify the _program_WriteUniform() function a bit. | |||
2006-11-03 | Added OpenGL 2.1 glUniformMatrix* functions. | Brian Paul | |
Refactor the _mesa_UniformMatrix() functions to use a helper function. Implement GetUniformfv function (might need more work someday). | |||
2006-11-03 | reformat comments in Doxygen style | Brian Paul | |
2006-11-03 | reindent | Brian Paul | |
2006-11-02 | s/_mesa_IsProgram2/_mesa_IsProgram/ | Brian Paul | |
2006-11-02 | Rename _mesa_IsProgram() to _mesa_IsProgramARB() to avoid collision with the | Brian Paul | |
OpenGL 2.0 function of the same name. | |||
2006-11-02 | OpenGL 2.0 entrypoints | Brian Paul | |
2006-11-02 | run indent on the code | Brian Paul | |
2006-10-31 | minor clean-ups, simplifications and new comments | Brian Paul | |
2006-10-30 | code tweaks, remove old comments | Brian Paul | |
2006-10-30 | Move gl_vertex_program_machine struct out of mtypes.h and put into nvvertexec.h. | Brian Paul | |
Massage nvvertexec.c code to work more like s_nvfragprog.c - another step toward unifying vertex/fragment program execution. | |||
2006-10-29 | New _mesa_exec_vertex_state_program() function. Start of some re-org. | Brian Paul | |
2006-10-29 | fix wrong inequality | Brian Paul | |
2006-10-29 | Change _mesa_init_instruction() to initialize an array of instructions. | Brian Paul | |
2006-10-29 | Program instructions are initialized before parsing so no need to set | Brian Paul | |
Abs, NegateAbs, CondMask and CondSwizzle fields to defaults here. CondMask was getting mis-set. Removing the incorrect assignment improves fragment program speed by 15%. | |||
2006-10-28 | special case END in _mesa_print_instruction() | Brian Paul | |
2006-10-28 | Implement _mesa_append_fog_code() for fragment program fog options. | Brian Paul | |
2006-10-19 | Fix nonportable pointer+unsigned arithmetic. Use pointer+int. | Michal Krol | |
2006-10-17 | new assertions - one of which is currently failing with arbfslight.c | Brian Paul | |
2006-10-13 | Indent and cosmetic changes. | Michal Krol | |
2006-10-11 | added shaderobjects_3dlabs.c | Brian Paul | |
2006-10-11 | remove 3dlabs.c | Brian Paul | |
2006-10-11 | List of source (.c) files in each directory. | Brian Paul | |
To be included by X.org Makefile.am files so that lists of files don't need to be hardcoded and frequently updated there. | |||
2006-10-10 | a step toward moving run-time vertex program state out of GLcontext | Brian Paul | |
2006-10-10 | Move the fp_machine struct into s_nvfragmprog.c since (except for program | Brian Paul | |
debug) it's only used there. | |||
2006-10-10 | s/GLuint/GLbitfield/ | Brian Paul | |
2006-10-10 | If program is position invariant, set VERT_BIT_POS in InputsRead field. | Brian Paul | |
Fixes broken "OPTION NV_position_invariant". | |||
2006-09-26 | Add GLSL preprocessor. | Michal Krol | |
2006-09-26 | Fix Windows newlines. | Michal Krol | |
2006-09-26 | Add syntax files for expression and directive preprocessor. | Michal Krol | |
Fix syntax errors in builtin library 1.2 sources. All derivative files (*_gc.h and *_syn.h) are generated by Makefile. | |||
2006-09-21 | new comments, indentation fixes | Brian Paul | |