Update gfxGLCircularVolatileBuffer.h

This commit is contained in:
Anis 2016-01-18 05:49:05 +01:00
parent 6235f63deb
commit 58a604d363

View file

@ -143,6 +143,11 @@ public:
init();
}
~GLCircularVolatileBuffer()
{
glDeleteBuffers(1, &mBufferName);
}
void init()
{
glGenBuffers(1, &mBufferName);
@ -290,4 +295,4 @@ protected:
};
#endif
#endif