Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-22 | don't use __FUNCTION__ - not portable | Brian Paul | |
2004-08-19 | Committing in . | Jouk Jansen | |
Missing .'s Modified Files: Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/tnl/descrip.mms ---------------------------------------------------------------------- | |||
2004-08-18 | updates from Jouk | Brian Paul | |
2004-08-14 | Update Visual Studio Project file for src tree updates. | Karl Schultz | |
2004-08-14 | Minor tweaks to deal with vsnprintf and __FUNCTION__ on WIN32 | Karl Schultz | |
2004-08-10 | added some handy debug code (disabled) | Brian Paul | |
2004-07-23 | minor comments | Brian Paul | |
2004-07-02 | disable some debug printfs | Brian Paul | |
2004-07-01 | Rename the various function types in t_context.h to include a tnl_ prefix. | Keith Whitwell | |
2004-07-01 | Add t_context.h include for drivers. | Keith Whitwell | |
2004-06-30 | Add infrastructure for t_vertex.c codegen. Add an example driver | Keith Whitwell | |
for this which spits out C code for the generated functions. | |||
2004-05-27 | Convert all calls using _glapi_Dispatch to use the new GL_CALL macro. | Ian Romanick | |
2004-05-20 | doc update; minor changes | Daniel Borca | |
2004-05-10 | Add EXT_vertex_cull support to mesa | Keith Whitwell | |
2004-05-04 | Fix minor warnings found with g++. | Brian Paul | |
2004-04-26 | bring over build fixes from stable branch | Alan Hourihane | |
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-22 | Fix order of EMIT_4UB_4F declarations | Keith Whitwell | |
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-20 | Simplify last fix slightly, apply to vtx paths as well. | Keith Whitwell | |
2004-04-20 | When upgrading copied vertices, distinguish between an attribute | Keith Whitwell | |
entering a vertex for the first time and one which was already present but increasing its size. Fixes Brian's normal.c bug. | |||
2004-04-16 | Make sure ctx->Driver.NeedFlush is set for Eval-generated attributes. | Keith Whitwell | |
2004-04-13 | updated Glide driver documentation | Daniel Borca | |
fixed SAL/SAR in assyntax.h (NASM) fixed a bug wrt NULL pointer assignment in t_vtx_api.c cosmetics to t_vtx_x86.c & t_vtx_x86_gcc.S enabled STDCALL with codegen (MinGW) | |||
2004-04-12 | Missed one with the last commit. | Ian Romanick | |
2004-04-12 | Conditionally compile code for x86 specific TNL codegen. This fixes problem | Ian Romanick | |
with x86-64 and PowerPC. Reported by: sublett on #dri-devel. | |||
2004-04-07 | use # comments instead of //, etc (ajax@nwnk.net) | Brian Paul | |
2004-04-07 | revived linux-glide build process | Daniel Borca | |
some small Makefile changes for MinGW & DJGPP | |||
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 | protected all codegen behind AllowCodegen | Daniel Borca | |
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 | fix bad array indexing in _save_current_init() that caused context state to ↵ | Brian Paul | |
get clobbered | |||
2004-04-02 | got rid of the notify routine as intermediate step | Daniel Borca | |
2004-04-02 | disabled naughty cheats and protected the choosers behind AllowCodeGen | Daniel Borca | |
2004-04-02 | added codegen'ed choosers | Daniel Borca | |
2004-04-01 | Rename _x86_ symbols to avoid conflict with r200 driver | Keith Whitwell | |
2004-04-01 | Remove test for USE_X86_ASM & HAVE_NONSTANDARD_GLAPIENTRY | Keith Whitwell | |
2004-04-01 | Define empty _tnl_x86_exec_vtxfmt_init if USE_X86_ASM is undefined. This | Felix Kuehling | |
fixes a missing symbol in libGLcore.a. | |||
2004-04-01 | codegen'ed versions of the 2nd level dispatch | Daniel Borca | |
2004-03-31 | fine-tuning x86 gcc codegen | Daniel Borca | |
2004-03-31 | dynfn --> _tnl_dynfn | Keith Whitwell | |
2004-03-30 | Add #ifdef protection around the file to prevent DRI build breakage. | Ian Romanick | |
2004-03-29 | new files | Keith Whitwell | |
2004-03-29 | First round of codegen for t_vtx_api.c -- ie the Begin/Vertex/End code. | Keith Whitwell | |
Enable with env var: MESA_CODEGEN=t. | |||
2004-03-15 | Sketch of codegen templates for t_vtx_api.c, not complete | Keith Whitwell | |
2004-03-15 | Streamline the error path in VertexAttrib functions. Makes things | Keith Whitwell | |
slightly easier for codegen. | |||
2004-03-13 | Added some comments. Minor const, int->GLint type changes, etc. | Brian Paul | |
2004-03-01 | Fix calling fallback_drawarrays() with the wrong arguments | Roland Scheidegger | |
2004-03-01 | Inline get_size as an interim measure to get rid of function call overhead. | Michel Dänzer | |
2004-02-26 | check for invalid vertex/fragment program in glBegin | Brian Paul | |
2004-02-26 | fix another glDrawArrays indexing bug, jump through _glapi_Dispatch functions | Brian Paul | |