summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
AgeCommit message (Collapse)Author
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
2004-01-27Catch and shortcircuit no-primitive and no-vertex cases in _tnl_wrap_buffers()Keith Whitwell
2004-01-26Fix for recursion in generic_copy_pv_extras.Keith Whitwell
Add a comment.
2004-01-26replace MALLOC w/ CALLOC to silence valgrind warningsBrian Paul
2004-01-21Another mechanism to create vertices with holes - a new EMIT_PAD styleKeith Whitwell
2004-01-19some more count vs. end confusionKeith Whitwell
2004-01-15add casts to quiet compiler warningsKarl Schultz
2004-01-15Cosmetic changes.Brian Paul
Added a bunch of const qualifiers. Use _mesa_memcpy() instead of memcpy(), etc.
2004-01-14added blurb about NVIDIA extensionsBrian Paul
2004-01-14Fix up more confusions with count vs end in array functionsKeith Whitwell
2004-01-13silence compiler warningsKarl Schultz
2004-01-13remove unused variableKarl Schultz
2004-01-13add t_vertex.c to projectKarl Schultz
2004-01-12Don't call _tnl_draw_range_elements() unless start == 0.Keith Whitwell
2004-01-09Change < to <= when testing counts against ctx->Const.MaxArrayLockSize,Brian Paul
per Daniel Borca. Also, added XXX comments to mark where there may be a problem with the calls to _tnl_vb_bind_arrays(). Is the last parameter a count or index?
2004-01-08 Committing in .Jouk Jansen
Update OpenVMS makefiles Modified Files: Mesa/src/mesa/swrast_setup/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2004-01-08Perform check for dstclip[3] == 0.Keith Whitwell
2004-01-08keeping things safe: sanity check backDaniel Borca
2004-01-08removed unnecessary (now) sanity checkDaniel Borca
2004-01-07sanity check for vertex counterDaniel Borca
2004-01-06TestingKeith Whitwell
2004-01-06Apply attribute offset when calling extract().Keith Whitwell
Simplify stride calcs.
2004-01-05Slight cleanupKeith Whitwell
2004-01-05Remove debugKeith Whitwell
2004-01-05Beef up t_vertex.c:Keith Whitwell
- cope with input vectors with size less than that of the emitted attribute. - cope with vertices with 'holes' inside and between vertices. Fix calculation of tnl->render_inputs to work with fp programs. Mirror VB->PointSizePtr in VB->AttribPtr so that it can work with t_vertex.c. Transition swrast_setup/ to use t_vertex.c to build swrast vertices.