add comments and adjust formatting

This commit is contained in:
Peter Tissen
2015-06-25 00:21:15 +02:00
parent 1993452669
commit 600e34d1fe
4 changed files with 22 additions and 11 deletions

View File

@@ -122,11 +122,14 @@ public class FrameBufferCache {
return buffer;
}
/**
* Clear the cache pool of Framebuffers.
* If there were any previous Framebuffers in the cache delete them
* this is necessary for cases when the game gets re-started with a
* different resolution without closing the process
*/
public static void shutdown()
{
//if there were any previous Framebuffers in the cache delete them
//this is necessary for cases when the game gets re-started with a
//different resolution without closing the process
FrameBufferCache fbcInstance = FrameBufferCache.getInstance();
for(Rendertarget target: fbcInstance.cache)
{