Fix previous commit crash

This commit is contained in:
Lynix
2018-07-07 14:35:11 +02:00
parent cb6885d6a9
commit 6390da95d3
3 changed files with 18 additions and 14 deletions

View File

@@ -41,9 +41,9 @@ namespace Nz
std::size_t Cull(const Frustumf& frustum, bool* forceInvalidation = nullptr);
void RegisterNoTest(const T* renderable, NoTestEntry* entry);
void RegisterSphereTest(const T* renderable, SphereEntry* entry);
void RegisterVolumeTest(const T* renderable, VolumeEntry* entry);
NoTestEntry RegisterNoTest(const T* renderable);
SphereEntry RegisterSphereTest(const T* renderable);
VolumeEntry RegisterVolumeTest(const T* renderable);
CullingList& operator=(const CullingList& renderable) = delete;
CullingList& operator=(CullingList&& renderable) = delete;