// Created on: 2011-10-20 // Created by: Sergey ZERCHANINOV // Copyright (c) 2011-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _OpenGl_GraphicDriver_HeaderFile #define _OpenGl_GraphicDriver_HeaderFile #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class Aspect_Window; class Graphic3d_Vector; class Quantity_Color; class Graphic3d_Vertex; class TCollection_ExtendedString; class Image_PixMap; class OpenGl_Element; class OpenGl_Structure; class OpenGl_Text; class OpenGl_View; class OpenGl_Window; //! Tool class to implement consistent state counter //! for objects inside the same driver instance. class OpenGl_StateCounter { public: OpenGl_StateCounter() : myCounter (0) { } Standard_Size Increment() { return ++myCounter; } private: Standard_Size myCounter; }; class OpenGl_GraphicDriver; DEFINE_STANDARD_HANDLE(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) //! This class defines an OpenGl graphic driver class OpenGl_GraphicDriver : public Graphic3d_GraphicDriver { public: //! Constructor. //! @param theDisp connection to display, required on Linux but optional on other systems //! @param theToInitialize perform initialization of default OpenGL context on construction Standard_EXPORT OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp, const Standard_Boolean theToInitialize = Standard_True); //! Destructor. Standard_EXPORT virtual ~OpenGl_GraphicDriver(); //! Release default context. Standard_EXPORT void ReleaseContext(); //! Perform initialization of default OpenGL context. Standard_EXPORT Standard_Boolean InitContext(); #if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) //! Initialize default OpenGL context using existing one. //! @param theEglDisplay EGL connection to the Display //! @param theEglContext EGL rendering context //! @param theEglConfig EGL configuration Standard_EXPORT Standard_Boolean InitEglContext (Aspect_Display theEglDisplay, Aspect_RenderingContext theEglContext, void* theEglConfig); #endif //! Request limit of graphic resource of specific type. Standard_EXPORT virtual Standard_Integer InquireLimit (const Graphic3d_TypeOfLimit theType) const Standard_OVERRIDE; public: Standard_EXPORT virtual Handle(Graphic3d_CStructure) CreateStructure (const Handle(Graphic3d_StructureManager)& theManager) Standard_OVERRIDE; Standard_EXPORT virtual void RemoveStructure (Handle(Graphic3d_CStructure)& theCStructure) Standard_OVERRIDE; Standard_EXPORT virtual Handle(Graphic3d_CView) CreateView (const Handle(Graphic3d_StructureManager)& theMgr) Standard_OVERRIDE; Standard_EXPORT virtual void RemoveView (const Handle(Graphic3d_CView)& theView) Standard_OVERRIDE; Standard_EXPORT virtual Handle(OpenGl_Window) CreateRenderWindow (const Handle(Aspect_Window)& theWindow, const Aspect_RenderingContext theContext); public: Standard_EXPORT void TextSize (const Handle(Graphic3d_CView)& theView, const Standard_CString theText, const Standard_ShortReal theHeight, Standard_ShortReal& theWidth, Standard_ShortReal& theAscent, Standard_ShortReal& theDescent) const Standard_OVERRIDE; Standard_EXPORT Standard_ShortReal DefaultTextHeight() const Standard_OVERRIDE; Standard_EXPORT Standard_Boolean ViewExists (const Handle(Aspect_Window)& theWindow, Handle(Graphic3d_CView)& theView) Standard_OVERRIDE; public: //! Adds a new top-level z layer with ID theLayerId for all views. Z layers allow drawing structures in higher layers //! in foreground of structures in lower layers. To add a structure to desired layer on display it is necessary to //! set the layer index for the structure. The passed theLayerId should be not less than 0 (reserved for default layers). Standard_EXPORT void AddZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; //! Removes Z layer. All structures displayed at the moment in layer will be displayed in //! default layer (the bottom-level z layer). By default, there are always default //! bottom-level layer that can't be removed. The passed theLayerId should be not less than 0 //! (reserved for default layers that can not be removed). Standard_EXPORT void RemoveZLayer (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; //! Returns list of Z layers defined for the graphical driver. Standard_EXPORT void ZLayers (TColStd_SequenceOfInteger& theLayerSeq) const Standard_OVERRIDE; //! Sets the settings for a single Z layer. Standard_EXPORT void SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE; //! Returns the settings of a single Z layer. Standard_EXPORT virtual Graphic3d_ZLayerSettings ZLayerSettings (const Graphic3d_ZLayerId theLayerId) Standard_OVERRIDE; public: //! @return the visualization options inline const OpenGl_Caps& Options() const { return *myCaps.operator->(); } //! @return the visualization options inline OpenGl_Caps& ChangeOptions() { return *myCaps.operator->(); } //! Specify swap buffer behavior. Standard_EXPORT void SetBuffersNoSwap (const Standard_Boolean theIsNoSwap); //! VBO usage can be forbidden by this method even if it is supported by GL driver. //! Notice that disabling of VBO will cause rendering performance degradation. //! Warning! This method should be called only before any primitives are displayed in GL scene! Standard_EXPORT void EnableVBO (const Standard_Boolean theToTurnOn) Standard_OVERRIDE; //! Returns information about GPU memory usage. //! Please read OpenGl_Context::MemoryInfo() for more description. Standard_EXPORT Standard_Boolean MemoryInfo (Standard_Size& theFreeBytes, TCollection_AsciiString& theInfo) const Standard_OVERRIDE; public: //! Method to retrieve valid GL context. //! Could return NULL-handle if no window created by this driver. Standard_EXPORT const Handle(OpenGl_Context)& GetSharedContext() const; #if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) Aspect_Display getRawGlDisplay() const { return myEglDisplay; } Aspect_RenderingContext getRawGlContext() const { return myEglContext; } void* getRawGlConfig() const { return myEglConfig; } #endif //! Insert index layer at proper position. Standard_EXPORT void addZLayerIndex (const Graphic3d_ZLayerId theLayerId); public: DEFINE_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) protected: Standard_Boolean myIsOwnContext; //!< indicates that shared context has been created within OpenGl_GraphicDriver #if defined(HAVE_EGL) || defined(HAVE_GLES2) || defined(OCCT_UWP) || defined(__ANDROID__) || defined(__QNX__) Aspect_Display myEglDisplay; //!< EGL connection to the Display : EGLDisplay Aspect_RenderingContext myEglContext; //!< EGL rendering context : EGLContext void* myEglConfig; //!< EGL configuration : EGLConfig #endif Handle(OpenGl_Caps) myCaps; NCollection_Map myMapOfView; NCollection_DataMap myMapOfStructure; public: TColStd_MapOfInteger myLayerIds; TColStd_SequenceOfInteger myLayerSeq; OpenGl_MapOfZLayerSettings myMapOfZLayerSettings; public: //! State counter for OpenGl structures. OpenGl_StateCounter* GetStateCounter() const { return &myStateCounter; } //! Returns unique ID for primitive arrays. Standard_Size GetNextPrimitiveArrayUID() const { return myUIDGenerator.Increment(); } protected: mutable OpenGl_StateCounter myStateCounter; //!< State counter for OpenGl structures. mutable OpenGl_StateCounter myUIDGenerator; //!< Unique ID counter for primitive arrays. }; #endif //_OpenGl_GraphicDriver_HeaderFile