Added/Fixed support for Mac OS X.

Added/Fixed support for 64 bits platforms.
This commit is contained in:
spartanj@gmail.com
2011-07-11 02:39:21 -03:00
parent 5c80592528
commit 7b6a6ee817
66 changed files with 178 additions and 182 deletions

View File

@@ -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),