Minor refactor

This commit is contained in:
MihailRis
2024-01-03 20:42:26 +03:00
parent 0d36f52bdd
commit 2ad115a2a8
9 changed files with 19 additions and 20 deletions
+1 -2
View File
@@ -18,11 +18,10 @@ BlocksPreview::BlocksPreview(Shader* shader,
Atlas* atlas,
const ContentGfxCache* cache)
: shader(shader), atlas(atlas), cache(cache) {
batch = new Batch3D(1024);
batch = std::make_unique<Batch3D>(1024);
}
BlocksPreview::~BlocksPreview() {
delete batch;
}
void BlocksPreview::begin(const Viewport* viewport) {