mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-03 03:56:30 +03:00
Added/Fixed support for Mac OS X.
Added/Fixed support for 64 bits platforms.
This commit is contained in:
@@ -9,7 +9,7 @@ using namespace EE::Graphics::Private;
|
||||
|
||||
namespace EE { namespace Graphics {
|
||||
|
||||
cFrameBuffer * cFrameBuffer::CreateNew( const Uint32& Width, const Uint32& Height, bool DepthBuffer, cWindow * window ) {
|
||||
cFrameBuffer * cFrameBuffer::CreateNew( const Uint32& Width, const Uint32& Height, bool DepthBuffer, Window::cWindow * window ) {
|
||||
if ( cFrameBufferFBO::IsSupported() )
|
||||
return eeNew( cFrameBufferFBO, ( Width, Height, DepthBuffer, window ) );
|
||||
|
||||
@@ -19,7 +19,7 @@ cFrameBuffer * cFrameBuffer::CreateNew( const Uint32& Width, const Uint32& Heigh
|
||||
return NULL;
|
||||
}
|
||||
|
||||
cFrameBuffer::cFrameBuffer( cWindow * window ) :
|
||||
cFrameBuffer::cFrameBuffer( Window::cWindow * window ) :
|
||||
mWindow( window ),
|
||||
mWidth(0),
|
||||
mHeight(0),
|
||||
|
||||
Reference in New Issue
Block a user