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