The-Simpsons-Hit-and-Run/game/code/render/Culling/CullData.cpp

13 lines
234 B
C++

#include <render/culling/CullData.h>
CullCache& theCullCache()
{
//
// This will eventually house the ScratchArray implementation.
// In the meantime, we'll use a placeholder
//
static CullCache tcc;
return tcc;
}