summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
AgeCommit message (Collapse)Author
2004-05-27Convert all calls using _glapi_Dispatch to use the new GL_CALL macro.Ian Romanick
2004-05-20doc update; minor changesDaniel Borca
2004-05-10Add EXT_vertex_cull support to mesaKeith Whitwell
2004-05-04Fix minor warnings found with g++.Brian Paul
2004-04-26bring over build fixes from stable branchAlan Hourihane
2004-04-23Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragmentBrian 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-22Fix order of EMIT_4UB_4F declarationsKeith Whitwell
2004-04-21Fix 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-20Simplify last fix slightly, apply to vtx paths as well.Keith Whitwell
2004-04-20When upgrading copied vertices, distinguish between an attributeKeith 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-16Make sure ctx->Driver.NeedFlush is set for Eval-generated attributes.Keith Whitwell
2004-04-13updated Glide driver documentationDaniel 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-12Missed one with the last commit.Ian Romanick
2004-04-12Conditionally compile code for x86 specific TNL codegen. This fixes problemIan Romanick
with x86-64 and PowerPC. Reported by: sublett on #dri-devel.
2004-04-07use # comments instead of //, etc (ajax@nwnk.net)Brian Paul
2004-04-07revived linux-glide build processDaniel 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-05protected all codegen behind AllowCodegenDaniel 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-02fix bad array indexing in _save_current_init() that caused context state to ↵Brian Paul
get clobbered
2004-04-02got rid of the notify routine as intermediate stepDaniel Borca
2004-04-02disabled naughty cheats and protected the choosers behind AllowCodeGenDaniel Borca
2004-04-02added codegen'ed choosersDaniel Borca
2004-04-01Rename _x86_ symbols to avoid conflict with r200 driverKeith Whitwell
2004-04-01Remove test for USE_X86_ASM & HAVE_NONSTANDARD_GLAPIENTRYKeith Whitwell
2004-04-01Define empty _tnl_x86_exec_vtxfmt_init if USE_X86_ASM is undefined. ThisFelix Kuehling
fixes a missing symbol in libGLcore.a.
2004-04-01codegen'ed versions of the 2nd level dispatchDaniel Borca
2004-03-31fine-tuning x86 gcc codegenDaniel Borca
2004-03-31dynfn --> _tnl_dynfnKeith Whitwell
2004-03-30Add #ifdef protection around the file to prevent DRI build breakage.Ian Romanick
2004-03-29new filesKeith Whitwell
2004-03-29First 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-15Sketch of codegen templates for t_vtx_api.c, not completeKeith Whitwell
2004-03-15Streamline the error path in VertexAttrib functions. Makes thingsKeith Whitwell
slightly easier for codegen.
2004-03-13Added some comments. Minor const, int->GLint type changes, etc.Brian Paul
2004-03-01Fix calling fallback_drawarrays() with the wrong argumentsRoland Scheidegger
2004-03-01Inline get_size as an interim measure to get rid of function call overhead.Michel Dänzer
2004-02-26check for invalid vertex/fragment program in glBeginBrian Paul
2004-02-26fix another glDrawArrays indexing bug, jump through _glapi_Dispatch functionsBrian Paul
2004-02-25use ABS(Z) when computing blend factorsBrian Paul
2004-02-24turns out we probably need a _tnl_allow_pixel_fog() function afterallBrian Paul
2004-02-24glDrawArrays loop was wrongBrian Paul
2004-02-17A few more tweaks to fog code.Brian Paul
Remove unneeded FABSF() macros. Added blend factor clamping in a few spots.
2004-02-17A bit of an overhaul of the fog code.Brian Paul
glFogCoord didn't always work reliably. ARB fragment program fog options work now. Per-fragment fog computations are now perspective corrected.
2004-02-16Add _tnl_set_attr() to complement existing get_attr() call.Keith Whitwell
2004-02-13new comments, rename some stuffBrian Paul
2004-01-31minor #ifdef fixBrian Paul
2004-01-31added _NEW_PROGRAM to check_state flags for pipeline stages (fixes vparray ↵Brian Paul
demo bug)
2004-01-31don't call gl functions directly, jump through _glapi_Dispatch tableBrian Paul
2004-01-30Fix extract_3f_xyw().Keith Whitwell