summaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl/t_context.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell2004-07-011-39/+42
|
* Add infrastructure for t_vertex.c codegen. Add an example driverKeith Whitwell2004-06-301-1/+42
| | | | for this which spits out C code for the generated functions.
* Add EXT_vertex_cull support to mesaKeith Whitwell2004-05-101-0/+1
|
* Fix minor warnings found with g++.Brian Paul2004-05-041-1/+1
|
* dynfn --> _tnl_dynfnKeith Whitwell2004-03-311-10/+10
|
* First round of codegen for t_vtx_api.c -- ie the Begin/Vertex/End code.Keith Whitwell2004-03-291-2/+26
| | | | Enable with env var: MESA_CODEGEN=t.
* Streamline the error path in VertexAttrib functions. Makes thingsKeith Whitwell2004-03-151-1/+3
| | | | slightly easier for codegen.
* Added some comments. Minor const, int->GLint type changes, etc.Brian Paul2004-03-131-7/+13
|
* turns out we probably need a _tnl_allow_pixel_fog() function afterallBrian Paul2004-02-241-0/+1
|
* A bit of an overhaul of the fog code.Brian Paul2004-02-171-19/+18
| | | | | | glFogCoord didn't always work reliably. ARB fragment program fog options work now. Per-fragment fog computations are now perspective corrected.
* Beef up t_vertex.c:Keith Whitwell2004-01-051-9/+22
| | | | | | | | | | | - 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.
* Re-commit t_vertex.[ch] changes to fd.o server.Keith Whitwell2004-01-051-0/+47
|
* whitespace changes and new commentsBrian Paul2004-01-011-0/+5
|
* Call UpdateMaterials when they have changedKeith Whitwell2003-12-091-2/+5
|
* Merge vtx-0-2-branchKeith Whitwell2003-11-241-257/+293
|
* Store material attributes in an Attrib[] style array. This is aKeith Whitwell2003-08-051-2/+2
| | | | | first step to reviving/rescuing the 'vtx' rework from the old mesa tree.
* more docs (Klaus Niederkruger)Brian Paul2003-05-011-14/+30
|
* new comments (Klaus Niederkruger)Brian Paul2003-04-281-10/+37
|
* reduce memory needed for vertex attributes (allocate on demand)Brian Paul2003-03-311-14/+10
|
* minor clean-ups, comments, etcBrian Paul2003-03-281-4/+13
|
* First batch of code for GL_NV_fragment_program.Brian Paul2003-01-141-4/+4
| | | | | Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS.
* removed old VERT_* defines, use VERT_BIT_* insteadBrian Paul2002-10-091-35/+1
|
* Added new bitfields to tnl_eval_store for NV_vertex_program evaluatorsBrian Paul2002-06-231-1/+4
|
* pass context pointer to _tnl_free_immediate(), removed backref pointerBrian Paul2002-04-191-2/+34
|
* bring in changes from dri tcl branchKeith Whitwell2002-04-091-4/+9
|
* casts to silence compiler warningsKarl Schultz2002-04-041-3/+3
|
* More suport for t&l driversKeith Whitwell2002-02-131-1/+8
| | | | | Fix GLuint compare bugs Fix RESET_STIPPLE calls
* Clean-up/renaming of the per-vertex attribute bits, specifically, theBrian Paul2002-01-221-113/+99
| | | | | | VERT_BIT_* flags are new and used in many places (esp in T&L code). Updated some comments for doxygen. Various code clean-ups.
* Another vertex program checkpoint: clean-up of vertex attribute storageBrian Paul2002-01-061-3/+4
| | | | | | in vertex_buffer. Improved vertex program pipeline stage such that output registers can be processed in a loop. Getting closer to where we need to be in order to implement performance optimizations...
* Vertex program checkpoint commit: converted all vertex attributes (color,Brian Paul2002-01-051-34/+33
| | | | | | normal, texcoords, fogcoord, secondary color, etc) to GLfloat[4] datatype. Aliasing of glVertex, glNormal, glColor, glFogCoord, etc. to glVertexAttrib now complete.
* Replace old matrix stacks with new code based on struct matrix_stack.Brian Paul2001-12-181-3/+3
| | | | | | Moved vertex program hash table into shared context state. Implemented reference counting for vertex programs. Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates).
* vertex program check-inBrian Paul2001-12-141-75/+82
|
* more warning fixes (Karl Schultz)Brian Paul2001-09-141-3/+3
|
* Fix copying problem (light spots) on evaluated surfaces.Keith Whitwell2001-08-011-1/+2
|
* Rename some of the tnl->Driver.* functions to tnl->Driver.Render.*, to make itKeith Whitwell2001-07-121-80/+82
| | | | | | | | | | | | | | clear that these are owned by t_vb_render.c. Make swrast_setup opaque - it now hooks itself directly into tnl->Driver.Render.*. Add a _swsetup_Wakeup() call that does this. Update X11 (tested), osmesa and FX drivers for this change. FX compiles but is probably broken as the changes there are large. It was the only remaining driver that used the internal _swsetup_ functions for interp and copy_pv. This usage has been replaced with code from the DRI tdfx driver.
* restore normal length optimization in dlistsKeith Whitwell2001-06-281-1/+4
|
* Adaptor code that lets tnl convert compiled (display list) cassettes backKeith Whitwell2001-06-041-1/+2
| | | | | | | to glVertex() type calls. Allows driver-supplied tnl modules to avoid fallback on glCallList inside begin/end pairs. Still a little buggy...
* added minor commentsBrian Paul2001-06-011-2/+4
|
* swapped in/out arguments to interp_func. Improved commentsBrian Paul2001-05-311-5/+17
|
* fix for Jouk's glplanet bugKeith Whitwell2001-05-161-1/+2
|
* Clean up translation of array elements, copying of elts in pure-eltKeith Whitwell2001-05-111-1/+4
| | | | cassettes. Fixes problem with isosurf/compiled-array-elt/strips.
* Replace PipelineStart, PipelineFinish with RunPipeline. Clean upKeith Whitwell2001-05-101-6/+6
| | | | _tnl_run_pipeline() a little.
* Lots more eval fixesKeith Whitwell2001-04-301-2/+5
|
* Support for floating point color representation in tnl module.Keith Whitwell2001-04-281-7/+7
|
* first pass at eval fixesKeith Whitwell2001-04-261-10/+2
|
* Perform fixup on material valuesKeith Whitwell2001-04-091-1/+2
|
* Split driver struct into swrast/tnl/core components.Keith Whitwell2001-03-191-2/+104
|
* Consistent copyright info (version number, date) across all files.Gareth Hughes2001-03-121-31/+31
|
* fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵Brian Paul2001-03-071-2/+2
| | | | of potential problems
* Added GLvector4chan type, removed lots of CHAN_TYPE ifdefs.Keith Whitwell2001-02-201-22/+5
|