22 lines
640 B
C
22 lines
640 B
C
|
#ifndef VOXEL_MESHING_DEPENDENCY_H
|
||
|
#define VOXEL_MESHING_DEPENDENCY_H
|
||
|
|
||
|
#include "../generators/voxel_generator.h"
|
||
|
#include "../meshers/voxel_mesher.h"
|
||
|
|
||
|
namespace zylann::voxel {
|
||
|
|
||
|
// Shared dependency needed by some asynchronous tasks.
|
||
|
// It may be passed with a shared_ptr.
|
||
|
// Pointers inside should not change. If they do, a new instance will be made and old ones will be marked invalid,
|
||
|
// rather than risking a bad pointer read or having to use (many) mutexes.
|
||
|
struct MeshingDependency {
|
||
|
Ref<VoxelMesher> mesher;
|
||
|
Ref<VoxelGenerator> generator;
|
||
|
bool valid = true;
|
||
|
};
|
||
|
|
||
|
} // namespace zylann::voxel
|
||
|
|
||
|
#endif // VOXEL_MESHING_DEPENDENCY_H
|