mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
Restore on context lost vertex buffers and frame buffers.
Fixed some compiler warnings.
This commit is contained in:
20
src/graphics/cframebuffermanager.cpp
Normal file
20
src/graphics/cframebuffermanager.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#include "cframebuffermanager.hpp"
|
||||
|
||||
namespace EE { namespace Graphics { namespace Private {
|
||||
|
||||
cFrameBufferManager::cFrameBufferManager()
|
||||
{
|
||||
}
|
||||
|
||||
cFrameBufferManager::~cFrameBufferManager()
|
||||
{
|
||||
}
|
||||
|
||||
void cFrameBufferManager::Reload() {
|
||||
std::list<cFrameBuffer*>::iterator it;
|
||||
|
||||
for ( it = mResources.begin(); it != mResources.end(); it++ )
|
||||
(*it)->Reload();
|
||||
}
|
||||
|
||||
}}}
|
||||
Reference in New Issue
Block a user