fix memory leak

This commit is contained in:
hyzboy 2020-10-22 19:37:28 +08:00
parent cb4669d37c
commit 71407aecad

View File

@ -86,6 +86,13 @@ private:
Texture2DPointer normal=nullptr;
}texture;
public:
~TestApp()
{
delete gbuffer_rt;
}
private:
bool InitGBuffer()