mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-13 02:39:37 +00:00
Changed: #1275 Create an OpenGL ES driver
This commit is contained in:
parent
07dd298ed2
commit
26dd470afc
4 changed files with 3 additions and 7 deletions
|
@ -1313,7 +1313,7 @@ void CDriverGL::copyFrameBufferToTexture(ITexture *tex,
|
||||||
// setup texture mode, after activeTextureARB()
|
// setup texture mode, after activeTextureARB()
|
||||||
CDriverGLStates::TTextureMode textureMode= CDriverGLStates::Texture2D;
|
CDriverGLStates::TTextureMode textureMode= CDriverGLStates::Texture2D;
|
||||||
|
|
||||||
#ifdef GL_TEXTURE_RECTANGLE_NV
|
#ifndef USE_OPENGLES
|
||||||
if(gltext->TextureMode == GL_TEXTURE_RECTANGLE_NV)
|
if(gltext->TextureMode == GL_TEXTURE_RECTANGLE_NV)
|
||||||
textureMode = CDriverGLStates::TextureRect;
|
textureMode = CDriverGLStates::TextureRect;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -765,6 +765,7 @@ private:
|
||||||
// Off-screen rendering in Dib section
|
// Off-screen rendering in Dib section
|
||||||
HPBUFFERARB _PBuffer;
|
HPBUFFERARB _PBuffer;
|
||||||
#elif defined(NL_OS_MAC)
|
#elif defined(NL_OS_MAC)
|
||||||
|
NSOpenGLContext* _ctx;
|
||||||
#elif defined(NL_OS_UNIX)
|
#elif defined(NL_OS_UNIX)
|
||||||
GLXContext _ctx;
|
GLXContext _ctx;
|
||||||
#endif
|
#endif
|
||||||
|
@ -787,7 +788,6 @@ private:
|
||||||
friend NSApplicationTerminateReply applicationShouldTerminate(CDriverGL*);
|
friend NSApplicationTerminateReply applicationShouldTerminate(CDriverGL*);
|
||||||
|
|
||||||
NLMISC::CCocoaEventEmitter _EventEmitter;
|
NLMISC::CCocoaEventEmitter _EventEmitter;
|
||||||
NSOpenGLContext* _ctx;
|
|
||||||
CocoaOpenGLView* _glView;
|
CocoaOpenGLView* _glView;
|
||||||
NSAutoreleasePool* _autoreleasePool;
|
NSAutoreleasePool* _autoreleasePool;
|
||||||
uint16 _backBufferHeight;
|
uint16 _backBufferHeight;
|
||||||
|
|
|
@ -152,11 +152,7 @@ public:
|
||||||
EXTTextureFilterAnisotropic = false;
|
EXTTextureFilterAnisotropic = false;
|
||||||
EXTTextureFilterAnisotropicMaximum = 1.f;
|
EXTTextureFilterAnisotropicMaximum = 1.f;
|
||||||
ARBTextureRectangle = false;
|
ARBTextureRectangle = false;
|
||||||
#ifdef USE_OPENGLES
|
|
||||||
ARBTextureNonPowerOfTwo = true;
|
|
||||||
#else
|
|
||||||
ARBTextureNonPowerOfTwo = false;
|
ARBTextureNonPowerOfTwo = false;
|
||||||
#endif
|
|
||||||
ARBMultisample = false;
|
ARBMultisample = false;
|
||||||
NVOcclusionQuery = false;
|
NVOcclusionQuery = false;
|
||||||
FrameBufferObject = false;
|
FrameBufferObject = false;
|
||||||
|
|
|
@ -1335,7 +1335,7 @@ bool CDriverGL::uploadTexture (ITexture& tex, CRect& rect, uint8 nNumMipMap)
|
||||||
_DriverGLStates.activeTextureARB (0);
|
_DriverGLStates.activeTextureARB (0);
|
||||||
CDriverGLStates::TTextureMode textureMode= CDriverGLStates::Texture2D;
|
CDriverGLStates::TTextureMode textureMode= CDriverGLStates::Texture2D;
|
||||||
|
|
||||||
#ifdef GL_TEXTURE_RECTANGLE_NV
|
#ifndef USE_OPENGLES
|
||||||
if(gltext->TextureMode == GL_TEXTURE_RECTANGLE_NV)
|
if(gltext->TextureMode == GL_TEXTURE_RECTANGLE_NV)
|
||||||
textureMode = CDriverGLStates::TextureRect;
|
textureMode = CDriverGLStates::TextureRect;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue