gpuCache/gpuCacheUnitBoundingBox.h
#ifndef _gpuCacheUnitBoundingBox_h_
#define _gpuCacheUnitBoundingBox_h_
#include "gpuCacheSample.h"
namespace GPUCache {
class UnitBoundingBox
{
public:
static boost::shared_ptr<const IndexBuffer>& indices();
static boost::shared_ptr<const VertexBuffer>& positions();
static void clear();
private:
static boost::shared_ptr<const IndexBuffer> fBoundingBoxIndices;
static boost::shared_ptr<const VertexBuffer> fBoundingBoxPositions;
};
}
#endif