mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0026454: Visualization, TKOpenGl - do not require deprecated function of GL_ARB_vertex_type_2_10_10_10_rev in core profile
This commit is contained in:
parent
3ceb4c3c7e
commit
0e628baf3e
@ -1639,7 +1639,21 @@ void OpenGl_Context::init (const Standard_Boolean theIsCoreProfile)
|
||||
|
||||
// load GL_ARB_vertex_type_2_10_10_10_rev (added to OpenGL 3.3 core)
|
||||
const bool hasVertType21010101rev = (IsGlGreaterEqual (3, 3) || CheckExtension ("GL_ARB_vertex_type_2_10_10_10_rev"))
|
||||
&& FindProcShort (glVertexP2ui)
|
||||
&& FindProcShort (glVertexAttribP1ui)
|
||||
&& FindProcShort (glVertexAttribP1uiv)
|
||||
&& FindProcShort (glVertexAttribP2ui)
|
||||
&& FindProcShort (glVertexAttribP2uiv)
|
||||
&& FindProcShort (glVertexAttribP3ui)
|
||||
&& FindProcShort (glVertexAttribP3uiv)
|
||||
&& FindProcShort (glVertexAttribP4ui)
|
||||
&& FindProcShort (glVertexAttribP4uiv);
|
||||
|
||||
if ( hasVertType21010101rev
|
||||
&& !isCoreProfile)
|
||||
{
|
||||
// load deprecated functions
|
||||
const bool hasVertType21010101revExt =
|
||||
FindProcShort (glVertexP2ui)
|
||||
&& FindProcShort (glVertexP2uiv)
|
||||
&& FindProcShort (glVertexP3ui)
|
||||
&& FindProcShort (glVertexP3uiv)
|
||||
@ -1668,15 +1682,9 @@ void OpenGl_Context::init (const Standard_Boolean theIsCoreProfile)
|
||||
&& FindProcShort (glColorP4ui)
|
||||
&& FindProcShort (glColorP4uiv)
|
||||
&& FindProcShort (glSecondaryColorP3ui)
|
||||
&& FindProcShort (glSecondaryColorP3uiv)
|
||||
&& FindProcShort (glVertexAttribP1ui)
|
||||
&& FindProcShort (glVertexAttribP1uiv)
|
||||
&& FindProcShort (glVertexAttribP2ui)
|
||||
&& FindProcShort (glVertexAttribP2uiv)
|
||||
&& FindProcShort (glVertexAttribP3ui)
|
||||
&& FindProcShort (glVertexAttribP3uiv)
|
||||
&& FindProcShort (glVertexAttribP4ui)
|
||||
&& FindProcShort (glVertexAttribP4uiv);
|
||||
&& FindProcShort (glSecondaryColorP3uiv);
|
||||
(void )hasVertType21010101revExt;
|
||||
}
|
||||
|
||||
// load OpenGL 3.3 extra functions
|
||||
has33 = IsGlGreaterEqual (3, 3)
|
||||
|
@ -55,36 +55,6 @@ public: //! @name GL_ARB_timer_query (added to OpenGL 3.3 core)
|
||||
|
||||
public: //! @name GL_ARB_vertex_type_2_10_10_10_rev (added to OpenGL 3.3 core)
|
||||
|
||||
using theBaseClass_t::glVertexP2ui;
|
||||
using theBaseClass_t::glVertexP2uiv;
|
||||
using theBaseClass_t::glVertexP3ui;
|
||||
using theBaseClass_t::glVertexP3uiv;
|
||||
using theBaseClass_t::glVertexP4ui;
|
||||
using theBaseClass_t::glVertexP4uiv;
|
||||
using theBaseClass_t::glTexCoordP1ui;
|
||||
using theBaseClass_t::glTexCoordP1uiv;
|
||||
using theBaseClass_t::glTexCoordP2ui;
|
||||
using theBaseClass_t::glTexCoordP2uiv;
|
||||
using theBaseClass_t::glTexCoordP3ui;
|
||||
using theBaseClass_t::glTexCoordP3uiv;
|
||||
using theBaseClass_t::glTexCoordP4ui;
|
||||
using theBaseClass_t::glTexCoordP4uiv;
|
||||
using theBaseClass_t::glMultiTexCoordP1ui;
|
||||
using theBaseClass_t::glMultiTexCoordP1uiv;
|
||||
using theBaseClass_t::glMultiTexCoordP2ui;
|
||||
using theBaseClass_t::glMultiTexCoordP2uiv;
|
||||
using theBaseClass_t::glMultiTexCoordP3ui;
|
||||
using theBaseClass_t::glMultiTexCoordP3uiv;
|
||||
using theBaseClass_t::glMultiTexCoordP4ui;
|
||||
using theBaseClass_t::glMultiTexCoordP4uiv;
|
||||
using theBaseClass_t::glNormalP3ui;
|
||||
using theBaseClass_t::glNormalP3uiv;
|
||||
using theBaseClass_t::glColorP3ui;
|
||||
using theBaseClass_t::glColorP3uiv;
|
||||
using theBaseClass_t::glColorP4ui;
|
||||
using theBaseClass_t::glColorP4uiv;
|
||||
using theBaseClass_t::glSecondaryColorP3ui;
|
||||
using theBaseClass_t::glSecondaryColorP3uiv;
|
||||
using theBaseClass_t::glVertexAttribP1ui;
|
||||
using theBaseClass_t::glVertexAttribP1uiv;
|
||||
using theBaseClass_t::glVertexAttribP2ui;
|
||||
|
Loading…
x
Reference in New Issue
Block a user