summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/vtxfmt.c
Commit message (Collapse)AuthorAgeFilesLines
* updated email addressesBrian Paul2002-10-291-3/+3
|
* Header file clean-up:Brian Paul2002-10-241-1/+2
| | | | | | | | 1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc.
* Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.Brian Paul2002-06-291-2/+2
| | | | Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
* bring in changes from dri tcl branchKeith Whitwell2002-04-091-9/+2
|
* vertex program fixesBrian Paul2001-12-151-2/+1
|
* vertex program check-inBrian Paul2001-12-141-5/+5
|
* dispatch changes to minimize hassle with XFree86 libGLBrian Paul2001-12-041-17/+14
|
* API dispath updatesBrian Paul2001-11-181-9/+9
|
* Add missing header file include.Gareth Hughes2001-03-121-1/+2
|
* Consistent copyright info (version number, date) across all files.Gareth Hughes2001-03-121-2/+4
|
* Minor cleanups.Gareth Hughes2001-03-111-4/+2
|
* Clean up install, restore for exec vtxfmts.Gareth Hughes2001-03-111-8/+13
|
* Support for swappable tnl modules.Gareth Hughes2001-03-111-3/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Core Mesa provides a neutral tnl module that verifies the currently module before installing the tnl function pointers in a lazy fashion. It also records which tnl functions have been swapped out, and only restores these when tnl modules themselves are swapped. Fallback strategies: Drivers set a bitmask of dangerous stage changes. When such a state change occurs, the driver should restore the neutral tnl module via _mesa_restore_exec_vtxfmt(). The neutral tnl module will call _mesa_update_state(), followed by ctx->Driver.ValidateTnlModule() if the validation bitmask matches the new state bitmask. The driver should call _tnl_wakeup_exec() if it can no longer handle the current state, which will revert to the default tnl module. In this case, previous vertices should be replayed as required (depending on the current primitive) after the new tnl module is installed. If the driver uses chooser functions for any part of the tnl module, these should generally be reinstalled as part of the fallback to the neutral tnl module. For example, if the lighting state changes, a driver might fall back to the neutral tnl module, verify that the current lighting state can be handled, and use the chooser function to pick the most efficient implementation of the current lighting state. It is up to the drivers to detect and handle fallback cases caused by tnl function calls themselves (such as glTexCoord4f* if the current tnl module can't handle projected textures, for example).
* New files...Keith Whitwell2000-11-241-0/+89