Renderer: Replace unique_ptr by shared_ptr

This commit is contained in:
Jérôme Leclercq
2020-09-20 15:56:58 +02:00
parent 77b46e4811
commit f15709c8a3
13 changed files with 55 additions and 55 deletions

View File

@@ -51,7 +51,7 @@ namespace Nz
struct HardwareBuffer
{
std::unique_ptr<AbstractBuffer> buffer;
std::shared_ptr<AbstractBuffer> buffer;
bool synchronized = false;
};