diff --git a/src/OpenGl/OpenGl_Context.hxx b/src/OpenGl/OpenGl_Context.hxx index 9808544835..4d89de5eda 100644 --- a/src/OpenGl/OpenGl_Context.hxx +++ b/src/OpenGl/OpenGl_Context.hxx @@ -495,6 +495,16 @@ public: //! Either GL_CLAMP_TO_EDGE (1.2+) or GL_CLAMP (1.1). Standard_Integer TextureWrapClamp() const { return myTexClamp; } + //! @return true if texture parameters GL_TEXTURE_BASE_LEVEL/GL_TEXTURE_MAX_LEVEL are supported. + Standard_Boolean HasTextureBaseLevel() const + { + #if !defined(GL_ES_VERSION_2_0) + return IsGlGreaterEqual (1, 2); + #else + return IsGlGreaterEqual (3, 0); + #endif + } + //! @return maximum degree of anisotropy texture filter Standard_Integer MaxDegreeOfAnisotropy() const { return myAnisoMax; } diff --git a/src/OpenGl/OpenGl_Sampler.cxx b/src/OpenGl/OpenGl_Sampler.cxx index 4fcfca4ed8..6e7bb10de6 100644 --- a/src/OpenGl/OpenGl_Sampler.cxx +++ b/src/OpenGl/OpenGl_Sampler.cxx @@ -263,8 +263,8 @@ void OpenGl_Sampler::applySamplerParams (const Handle(OpenGl_Context)& theCtx, setParameter (theCtx, theSampler, theTarget, GL_TEXTURE_MAX_ANISOTROPY_EXT, aDegree); } - if (theCtx->IsGlGreaterEqual(1, 2) && - (theSampler == NULL || !theSampler->isValidSampler())) + if (theCtx->HasTextureBaseLevel() + && (theSampler == NULL || !theSampler->isValidSampler())) { setParameter (theCtx, theSampler, theTarget, GL_TEXTURE_BASE_LEVEL, theParams->BaseLevel()); setParameter (theCtx, theSampler, theTarget, GL_TEXTURE_MAX_LEVEL, theParams->MaxLevel());