1
0
mirror of https://github.com/aap/librw.git synced 2025-04-26 03:23:20 +01:00

fix mem leak

This commit is contained in:
aap 2021-07-15 21:02:00 +02:00
parent b164e49dcf
commit 5ac21e0f2f

@ -340,6 +340,7 @@ Shader::destroy(void)
{
glDeleteProgram(this->program);
rwFree(this->uniformLocations);
rwFree(this->serialNums);
rwFree(this);
}