1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0032145: Coding Rules - move GL functions loading to OpenGl_GlFunctions.cxx

This commit is contained in:
kgv 2021-02-19 20:49:28 +03:00 committed by bugmaster
parent a13df0fee0
commit e44b849de9
5 changed files with 1787 additions and 1754 deletions

View File

@ -79,6 +79,7 @@ OpenGl_DepthPeeling.cxx
OpenGl_DepthPeeling.hxx
OpenGl_ExtGS.hxx
OpenGl_GLESExtensions.hxx
OpenGl_GlFunctions.cxx
OpenGl_GlFunctions.hxx
OpenGl_Flipper.cxx
OpenGl_Flipper.hxx

File diff suppressed because it is too large Load Diff

View File

@ -211,6 +211,7 @@ class OpenGl_Context : public Standard_Transient
{
DEFINE_STANDARD_RTTIEXT(OpenGl_Context, Standard_Transient)
friend class OpenGl_Window;
friend struct OpenGl_GlFunctions;
public:
typedef NCollection_Shared< NCollection_DataMap<TCollection_AsciiString, Handle(OpenGl_Resource)> > OpenGl_ResourcesMap;

File diff suppressed because it is too large Load Diff

View File

@ -96,6 +96,8 @@
#include <glext.h>
#endif
class OpenGl_Context;
//! Mega structure defines the complete list of OpenGL functions.
struct OpenGl_GlFunctions
{
@ -104,6 +106,10 @@ struct OpenGl_GlFunctions
//! @return TRUE on error
Standard_EXPORT bool debugPrintError (const char* theName) const;
//! Load functions.
Standard_EXPORT void load (OpenGl_Context& theCtx,
Standard_Boolean theIsCoreProfile);
// This debug macros can be enabled to help debugging OpenGL implementations
// without solid / working debugging capabilities.
//#define OpenGl_TRACE(theName) {OpenGl_GlFunctions::debugPrintError(#theName);}