From 20aeeb7be3405ac30842efdaaaacd25f981186f6 Mon Sep 17 00:00:00 2001 From: isk Date: Tue, 15 Dec 2015 10:58:58 +0300 Subject: [PATCH] 0026908: Visualization, TKOpenGl - eliminate -Wunused-parameter compiler warnings for Android target Support TBO on OpenGL ES 3.2+ --- src/OpenGl/OpenGl_ArbTBO.hxx | 4 +--- src/OpenGl/OpenGl_Clipping.cxx | 2 ++ src/OpenGl/OpenGl_Context.cxx | 8 ++++++++ src/OpenGl/OpenGl_GlFunctions.hxx | 16 +++++++++++++--- src/OpenGl/OpenGl_GraphicDriver.cxx | 1 + src/OpenGl/OpenGl_LineAttributes.cxx | 4 ++++ src/OpenGl/OpenGl_Sampler.cxx | 10 ++++++++++ src/OpenGl/OpenGl_ShaderProgram.cxx | 13 +++++++++---- src/OpenGl/OpenGl_Structure.cxx | 2 ++ src/OpenGl/OpenGl_TextBuilder.cxx | 2 +- src/OpenGl/OpenGl_Texture.cxx | 3 +++ src/OpenGl/OpenGl_TextureBufferArb.cxx | 26 +++++++++++++------------- src/OpenGl/OpenGl_Workspace.cxx | 2 ++ 13 files changed, 69 insertions(+), 24 deletions(-) diff --git a/src/OpenGl/OpenGl_ArbTBO.hxx b/src/OpenGl/OpenGl_ArbTBO.hxx index 4790d5e2b2..12b3deb1d9 100644 --- a/src/OpenGl/OpenGl_ArbTBO.hxx +++ b/src/OpenGl/OpenGl_ArbTBO.hxx @@ -18,12 +18,10 @@ #include -//! TBO is available on OpenGL 3.0+ hardware +//! TBO is available on OpenGL 3.0+ and OpenGL ES 3.2+ hardware struct OpenGl_ArbTBO : protected OpenGl_GlFunctions { -#if !defined(GL_ES_VERSION_2_0) using OpenGl_GlFunctions::glTexBuffer; -#endif }; #endif // _OpenGl_ArbTBO_H__ diff --git a/src/OpenGl/OpenGl_Clipping.cxx b/src/OpenGl/OpenGl_Clipping.cxx index 37c7422837..be8ebffc9c 100755 --- a/src/OpenGl/OpenGl_Clipping.cxx +++ b/src/OpenGl/OpenGl_Clipping.cxx @@ -228,6 +228,8 @@ void OpenGl_Clipping::SetEnabled (const Handle(OpenGl_Context)& theGlCtx, GLenum anID = (GLenum)aProps.ContextID; const bool toUseFfp = theGlCtx->core11 != NULL && theGlCtx->caps->ffpEnable; +#else + (void )theGlCtx; #endif if (theIsEnabled) { diff --git a/src/OpenGl/OpenGl_Context.cxx b/src/OpenGl/OpenGl_Context.cxx index 203de458d1..2259b8100e 100644 --- a/src/OpenGl/OpenGl_Context.cxx +++ b/src/OpenGl/OpenGl_Context.cxx @@ -1142,6 +1142,14 @@ void OpenGl_Context::init (const Standard_Boolean theIsCoreProfile) arbTexFloat = IsGlGreaterEqual (3, 0) && FindProc ("glTexImage3D", myFuncs->glTexImage3D); + + const Standard_Boolean hasTexBuffer32 = IsGlGreaterEqual (3, 2) && FindProc ("glTexBuffer", myFuncs->glTexBuffer); + const Standard_Boolean hasExtTexBuffer = CheckExtension ("GL_EXT_texture_buffer") && FindProc ("glTexBufferEXT", myFuncs->glTexBuffer); + + if (hasTexBuffer32 || hasExtTexBuffer) + { + arbTBO = reinterpret_cast (myFuncs.get()); + } #else myTexClamp = IsGlGreaterEqual (1, 2) ? GL_CLAMP_TO_EDGE : GL_CLAMP; diff --git a/src/OpenGl/OpenGl_GlFunctions.hxx b/src/OpenGl/OpenGl_GlFunctions.hxx index 0ffef344c9..0dee006154 100644 --- a/src/OpenGl/OpenGl_GlFunctions.hxx +++ b/src/OpenGl/OpenGl_GlFunctions.hxx @@ -66,6 +66,9 @@ #define GL_TEXTURE_2D_MULTISAMPLE 0x9100 #define GL_MAX_SAMPLES 0x8D57 + // OpenGL ES 3.2+ or GL_EXT_texture_buffer for OpenGL ES 3.1+ + #define GL_TEXTURE_BUFFER 0x8C2A + // in core since OpenGL ES 3.0, extension GL_EXT_texture_rg #define GL_RED 0x1903 #define GL_R8 0x8229 @@ -103,6 +106,11 @@ #define GL_RG16F 0x822F #define GL_RG32F 0x8230 + #define GL_R32I 0x8235 + #define GL_RG32I 0x823B + #define GL_RGB32I 0x8D83 + #define GL_RGBA32I 0x8D82 + // GL_OES_packed_depth_stencil #define GL_DEPTH_STENCIL 0x84F9 #define GL_UNSIGNED_INT_24_8 0x84FA @@ -147,9 +155,6 @@ #define GL_DEBUG_SEVERITY_HIGH 0x9146 #define GL_DEBUG_SEVERITY_MEDIUM 0x9147 #define GL_DEBUG_SEVERITY_LOW 0x9148 - - // GL_EXT_texture_buffer for OpenGL ES 3.1+ - #define GL_TEXTURE_BUFFER_ARB 0x8C2A #endif #if defined(__ANDROID__) || defined(__QNX__) @@ -723,6 +728,11 @@ public: //! @name OpenGL ES 3.1 typedef void (*glTexStorage2DMultisample_t)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations); glTexStorage2DMultisample_t glTexStorage2DMultisample; +public: //! @name OpenGL ES 3.2 + + typedef void (*glTexBuffer_t)(GLenum target, GLenum internalFormat, GLuint buffer); + glTexBuffer_t glTexBuffer; + #else // OpenGL ES vs. desktop public: //! @name OpenGL 1.2 diff --git a/src/OpenGl/OpenGl_GraphicDriver.cxx b/src/OpenGl/OpenGl_GraphicDriver.cxx index cb4dc52165..f195173112 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.cxx +++ b/src/OpenGl/OpenGl_GraphicDriver.cxx @@ -755,6 +755,7 @@ Standard_Boolean OpenGl_GraphicDriver::ViewExists (const Handle(Aspect_Window)& NSView* TheSpecifiedWindowId = THEWindow->HView(); #endif #elif defined(__ANDROID__) || defined(__QNX__) + (void )AWindow; int TheSpecifiedWindowId = -1; #else const Handle(Xw_Window) THEWindow = Handle(Xw_Window)::DownCast (AWindow); diff --git a/src/OpenGl/OpenGl_LineAttributes.cxx b/src/OpenGl/OpenGl_LineAttributes.cxx index 335a4aed75..d06ca3b522 100644 --- a/src/OpenGl/OpenGl_LineAttributes.cxx +++ b/src/OpenGl/OpenGl_LineAttributes.cxx @@ -545,6 +545,8 @@ void OpenGl_LineAttributes::Init (const Handle(OpenGl_Context)& theGlCtx) glPolygonStipple ((const GLubyte* )myInteriors[i < nbi ? i : 0]); glEndList(); } +#else + (void )theGlCtx; #endif } @@ -567,5 +569,7 @@ void OpenGl_LineAttributes::SetTypeOfHatch (const int theType) const } else glDisable (GL_POLYGON_STIPPLE); +#else + (void )theType; #endif } diff --git a/src/OpenGl/OpenGl_Sampler.cxx b/src/OpenGl/OpenGl_Sampler.cxx index ea2423bbc1..0dc8f9bb79 100644 --- a/src/OpenGl/OpenGl_Sampler.cxx +++ b/src/OpenGl/OpenGl_Sampler.cxx @@ -97,6 +97,9 @@ void OpenGl_Sampler::Bind (OpenGl_Context& theContext, { #if !defined(GL_ES_VERSION_2_0) || defined(GL_ES_VERSION_3_0) theContext.core33->glBindSampler (theUnit, mySamplerID); + #else + (void )theContext; + (void )theUnit; #endif } } @@ -112,6 +115,9 @@ void OpenGl_Sampler::Unbind (OpenGl_Context& theContext, { #if !defined(GL_ES_VERSION_2_0) || defined(GL_ES_VERSION_3_0) theContext.core33->glBindSampler (theUnit, NO_SAMPLER); + #else + (void )theContext; + (void )theUnit; #endif } } @@ -128,6 +134,10 @@ void OpenGl_Sampler::SetParameter (OpenGl_Context& theContext, { #if !defined(GL_ES_VERSION_2_0) || defined(GL_ES_VERSION_3_0) theContext.core33->glSamplerParameteri (mySamplerID, theParam, theValue); + #else + (void )theContext; + (void )theParam; + (void )theValue; #endif } } diff --git a/src/OpenGl/OpenGl_ShaderProgram.cxx b/src/OpenGl/OpenGl_ShaderProgram.cxx index edf9ad20e8..4f8ad9b3ec 100755 --- a/src/OpenGl/OpenGl_ShaderProgram.cxx +++ b/src/OpenGl/OpenGl_ShaderProgram.cxx @@ -821,9 +821,11 @@ Standard_Boolean OpenGl_ShaderProgram::SetUniform (const Handle(OpenGl_Context)& #if !defined(GL_ES_VERSION_2_0) theCtx->core32->glUniform2uiv (theLocation, 1, theValue.GetData()); -#endif - return Standard_True; +#else + (void )theValue; + return Standard_False; +#endif } // ======================================================================= @@ -854,9 +856,12 @@ Standard_Boolean OpenGl_ShaderProgram::SetUniform (const Handle(OpenGl_Context)& #if !defined(GL_ES_VERSION_2_0) theCtx->core32->glUniform2uiv (theLocation, theCount, theValue->GetData()); -#endif - return Standard_True; +#else + (void )theCount; + (void )theValue; + return Standard_False; +#endif } // ======================================================================= diff --git a/src/OpenGl/OpenGl_Structure.cxx b/src/OpenGl/OpenGl_Structure.cxx index 31d7a4de41..d5e22fc2b9 100644 --- a/src/OpenGl/OpenGl_Structure.cxx +++ b/src/OpenGl/OpenGl_Structure.cxx @@ -87,6 +87,8 @@ public: { theWorkspace->EnableTexture (aPrevTexture); } + #else + (void )theWorkspace; #endif } diff --git a/src/OpenGl/OpenGl_TextBuilder.cxx b/src/OpenGl/OpenGl_TextBuilder.cxx index ea1bbdda0f..9505f7443d 100644 --- a/src/OpenGl/OpenGl_TextBuilder.cxx +++ b/src/OpenGl/OpenGl_TextBuilder.cxx @@ -57,7 +57,7 @@ void OpenGl_TextBuilder::createGlyphs (const Font_TextFormatter& theVertsPerTexture.Clear(); theTCrdsPerTexture.Clear(); - OpenGl_Font::Tile aTile = {}; + OpenGl_Font::Tile aTile = {Font_Rect(), Font_Rect(), 0u}; OpenGl_Vec2 aPen (0.0f, 0.0f); Standard_Integer aRectsNb = 0; Standard_Integer aSymbolsCounter = 0; diff --git a/src/OpenGl/OpenGl_Texture.cxx b/src/OpenGl/OpenGl_Texture.cxx index 3a83bd02c3..a35e65384f 100644 --- a/src/OpenGl/OpenGl_Texture.cxx +++ b/src/OpenGl/OpenGl_Texture.cxx @@ -793,6 +793,9 @@ bool OpenGl_Texture::InitRectangle (const Handle(OpenGl_Context)& theCtx, Unbind (theCtx); return true; #else + (void )theSizeX; + (void )theSizeY; + (void )theFormat; return false; #endif } diff --git a/src/OpenGl/OpenGl_TextureBufferArb.cxx b/src/OpenGl/OpenGl_TextureBufferArb.cxx index 5a8ca34b63..964a66bee4 100644 --- a/src/OpenGl/OpenGl_TextureBufferArb.cxx +++ b/src/OpenGl/OpenGl_TextureBufferArb.cxx @@ -47,7 +47,7 @@ OpenGl_TextureBufferArb::~OpenGl_TextureBufferArb() // ======================================================================= GLenum OpenGl_TextureBufferArb::GetTarget() const { - return GL_TEXTURE_BUFFER_ARB; // GL_TEXTURE_BUFFER for OpenGL 3.1+ + return GL_TEXTURE_BUFFER; // GL_TEXTURE_BUFFER for OpenGL 3.1+, OpenGL ES 3.2 } // ======================================================================= @@ -98,9 +98,12 @@ bool OpenGl_TextureBufferArb::Init (const Handle(OpenGl_Context)& theGlCtx, const GLsizei theElemsNb, const GLfloat* theData) { -#if !defined(GL_ES_VERSION_2_0) - if (theComponentsNb < 1 - || theComponentsNb > 4) + if (theGlCtx->arbTBO == NULL) + { + return false; + } + else if (theComponentsNb < 1 + || theComponentsNb > 4) { // unsupported format return false; @@ -130,9 +133,6 @@ bool OpenGl_TextureBufferArb::Init (const Handle(OpenGl_Context)& theGlCtx, UnbindTexture (theGlCtx); Unbind (theGlCtx); return true; -#else - return false; -#endif } // ======================================================================= @@ -144,9 +144,12 @@ bool OpenGl_TextureBufferArb::Init (const Handle(OpenGl_Context)& theGlCtx, const GLsizei theElemsNb, const GLuint* theData) { -#if !defined(GL_ES_VERSION_2_0) - if (theComponentsNb < 1 - || theComponentsNb > 4) + if (theGlCtx->arbTBO == NULL) + { + return false; + } + else if (theComponentsNb < 1 + || theComponentsNb > 4) { // unsupported format return false; @@ -176,9 +179,6 @@ bool OpenGl_TextureBufferArb::Init (const Handle(OpenGl_Context)& theGlCtx, UnbindTexture (theGlCtx); Unbind (theGlCtx); return true; -#else - return false; -#endif } // ======================================================================= diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/OpenGl/OpenGl_Workspace.cxx index 53571c15e4..be86c98207 100644 --- a/src/OpenGl/OpenGl_Workspace.cxx +++ b/src/OpenGl/OpenGl_Workspace.cxx @@ -1224,6 +1224,8 @@ Standard_Boolean OpenGl_Workspace::BufferDump (const Handle(OpenGl_FrameBuffer)& { return Standard_False; } +#else + (void )theBufferType; #endif // bind FBO if used