tvPostDrawCallback tvSetPostDrawCallback ( tvBase *threeD, tvPostDrawCallback callback, void *closure ) Registers a callback function that is called during the redraw process, after all of the tiles and models have been drawn
Registers a callback function that is called during the redraw
process, after all of the tiles and models have been drawn. This
lets users plug in there own rendering overlays to the TerraVision
display. Your callback function will look something like:
void
myDrawCallback( tvBase *threeD, void *closure )
{
... do your work here ...
}