TINYGL: Free draw call lists in glClose.

This commit is contained in:
Vincent Pelletier 2016-07-25 01:18:11 +02:00
parent 3221146de9
commit 47a1e826e7
3 changed files with 17 additions and 0 deletions

View file

@ -97,6 +97,18 @@ void tglDisposeResources(TinyGL::GLContext *c) {
Graphics::Internal::tglCleanupImages();
}
void tglDisposeDrawCallLists(TinyGL::GLContext *c) {
typedef Common::List<Graphics::DrawCall *>::const_iterator DrawCallIterator;
for (DrawCallIterator it = c->_previousFrameDrawCallsQueue.begin(); it != c->_previousFrameDrawCallsQueue.end(); ++it) {
delete *it;
}
c->_previousFrameDrawCallsQueue.clear();
for (DrawCallIterator it = c->_drawCallsQueue.begin(); it != c->_drawCallsQueue.end(); ++it) {
delete *it;
}
c->_drawCallsQueue.clear();
}
void tglPresentBufferDirtyRects(TinyGL::GLContext *c) {
typedef Common::List<Graphics::DrawCall *>::const_iterator DrawCallIterator;
typedef Common::List<TinyGL::DirtyRectangle>::iterator RectangleIterator;