summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/vtxfmt_tmp.h
Commit message (Collapse)AuthorAgeFilesLines
* Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett2003-10-211-61/+61
| | | | | points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
* Fix typoKeith Whitwell2003-10-061-1/+1
|
* Updates to fix problems building with the Open Watcom compiler.Kendall Bennett2003-09-121-2/+2
|
* Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick2003-06-051-1/+0
|
* updated email addressesBrian Paul2002-10-291-2/+2
|
* fix a typoBrian Paul2002-10-081-3/+3
|
* s/glVertexAttrib4fNV/_glapi->Dispatch->VertexAttrib4fNV/Brian Paul2002-10-081-3/+3
|
* vertex program check-inBrian Paul2001-12-141-2/+16
|
* dispatch changes to minimize hassle with XFree86 libGLBrian Paul2001-12-041-107/+107
|
* don't directly call glSecondaryColor*EXT() or glFogCoord*EXT()Brian Paul2001-11-271-8/+8
|
* API dispath updatesBrian Paul2001-11-181-33/+33
|
* Consistent copyright info (version number, date) across all files.Gareth Hughes2001-03-121-2/+2
|
* Support for swappable tnl modules.Gareth Hughes2001-03-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* Add a couple of missing functions.Gareth Hughes2001-03-101-69/+106
|
* More generic vtxfmt template, useful for creating neutral tnl module asGareth Hughes2001-03-091-0/+421
well as fallback functions for driver tnl modules.