1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025147: Visualization, TKOpenGl - support EGL as alternative to GLX

Aspect_Window - add interface methods NativeHandle() and NativeParentHandle().
OpenGl_Window - pass OpenGl_GraphicDriver instance to the constructor.
OpenGl_Caps - add option to disable buffers swap at the end of frame redraw.
This commit is contained in:
kgv 2014-10-02 13:43:33 +04:00 committed by bugmaster
parent 6b62b2da81
commit 25b97fac40
15 changed files with 297 additions and 39 deletions

View File

@ -20,6 +20,7 @@ inherits
uses uses
Background from Aspect, Background from Aspect,
Drawable from Aspect,
GradientBackground from Aspect, GradientBackground from Aspect,
TypeOfResize from Aspect, TypeOfResize from Aspect,
FillMethod from Aspect, FillMethod from Aspect,
@ -160,6 +161,12 @@ is
---Purpose: Returns The Window SIZE in PIXEL ---Purpose: Returns The Window SIZE in PIXEL
---Category: Inquire methods ---Category: Inquire methods
NativeHandle ( me ) returns Drawable from Aspect is deferred;
---Purpose: Returns native Window handle (HWND on Windows, Window with Xlib, and so on)
NativeParentHandle ( me ) returns Drawable from Aspect is deferred;
---Purpose: Returns parent of native Window handle (HWND on Windows, Window with Xlib, and so on)
fields fields
MyBackground : Background from Aspect is protected; MyBackground : Background from Aspect is protected;
MyGradientBackground : GradientBackground from Aspect is protected; MyGradientBackground : GradientBackground from Aspect is protected;

View File

@ -101,6 +101,18 @@ public:
//! Setup new NSView. //! Setup new NSView.
Standard_EXPORT void SetHView (NSView* theView); Standard_EXPORT void SetHView (NSView* theView);
//! @return native Window handle
virtual Aspect_Drawable NativeHandle() const
{
return (Aspect_Drawable )HView();
}
//! @return parent of native Window handle
virtual Aspect_Drawable NativeParentHandle() const
{
return 0;
}
protected: protected:
NSWindow* myHWindow; NSWindow* myHWindow;

View File

@ -26,6 +26,7 @@ OpenGl_Caps::OpenGl_Caps()
: vboDisable (Standard_False), : vboDisable (Standard_False),
pntSpritesDisable (Standard_False), pntSpritesDisable (Standard_False),
keepArrayData (Standard_False), keepArrayData (Standard_False),
buffersNoSwap (Standard_False),
contextStereo (Standard_False), contextStereo (Standard_False),
#ifdef DEB #ifdef DEB
contextDebug (Standard_True), contextDebug (Standard_True),
@ -47,6 +48,7 @@ OpenGl_Caps& OpenGl_Caps::operator= (const OpenGl_Caps& theCopy)
vboDisable = theCopy.vboDisable; vboDisable = theCopy.vboDisable;
pntSpritesDisable = theCopy.pntSpritesDisable; pntSpritesDisable = theCopy.pntSpritesDisable;
keepArrayData = theCopy.keepArrayData; keepArrayData = theCopy.keepArrayData;
buffersNoSwap = theCopy.buffersNoSwap;
contextStereo = theCopy.contextStereo; contextStereo = theCopy.contextStereo;
contextDebug = theCopy.contextDebug; contextDebug = theCopy.contextDebug;
contextNoAccel = theCopy.contextNoAccel; contextNoAccel = theCopy.contextNoAccel;

View File

@ -33,6 +33,15 @@ public: //! @name flags to disable particular functionality, should be used only
public: //! @name context creation parameters public: //! @name context creation parameters
/**
* Specify that driver should not swap back/front buffers at the end of frame.
* Useful when OCCT Viewer is integrated into existing OpenGL rendering pipeline as part,
* thus swapping part is performed outside.
*
* OFF by default.
*/
Standard_Boolean buffersNoSwap;
/** /**
* Request stereoscopic context (with Quad Buffer). This flag requires support in OpenGL driver. * Request stereoscopic context (with Quad Buffer). This flag requires support in OpenGL driver.
* *

146
src/OpenGl/OpenGl_GraphicDriver.cxx Executable file → Normal file
View File

@ -25,13 +25,19 @@
#include <OpenGl_Trihedron.hxx> #include <OpenGl_Trihedron.hxx>
#include <OpenGl_Workspace.hxx> #include <OpenGl_Workspace.hxx>
#include <Aspect_GraphicDeviceDefinitionError.hxx>
#include <Message_Messenger.hxx>
#include <OSD_Environment.hxx> #include <OSD_Environment.hxx>
#include <Standard_NotImplemented.hxx> #include <Standard_NotImplemented.hxx>
#if (!defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))) #if !defined(_WIN32) && !defined(__ANDROID__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))
#include <X11/Xlib.h> // XOpenDisplay() #include <X11/Xlib.h> // XOpenDisplay()
#endif #endif
#if defined(HAVE_EGL) || defined(__ANDROID__)
#include <EGL/egl.h>
#endif
IMPLEMENT_STANDARD_HANDLE(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) IMPLEMENT_STANDARD_HANDLE(OpenGl_GraphicDriver,Graphic3d_GraphicDriver)
IMPLEMENT_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) IMPLEMENT_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver)
@ -44,8 +50,14 @@ namespace
// function : OpenGl_GraphicDriver // function : OpenGl_GraphicDriver
// purpose : // purpose :
// ======================================================================= // =======================================================================
OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp) OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp,
const Standard_Boolean theToStealActiveContext)
: Graphic3d_GraphicDriver (theDisp), : Graphic3d_GraphicDriver (theDisp),
#if defined(HAVE_EGL) || defined(__ANDROID__)
myEglDisplay ((Aspect_Display )EGL_NO_DISPLAY),
myEglContext ((Aspect_RenderingContext )EGL_NO_CONTEXT),
myEglConfig (NULL),
#endif
myCaps (new OpenGl_Caps()), myCaps (new OpenGl_Caps()),
myMapOfView (1, NCollection_BaseAllocator::CommonBaseAllocator()), myMapOfView (1, NCollection_BaseAllocator::CommonBaseAllocator()),
myMapOfWS (1, NCollection_BaseAllocator::CommonBaseAllocator()), myMapOfWS (1, NCollection_BaseAllocator::CommonBaseAllocator()),
@ -53,7 +65,7 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio
myUserDrawCallback (NULL), myUserDrawCallback (NULL),
myTempText (new OpenGl_Text()) myTempText (new OpenGl_Text())
{ {
#if (!defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))) #if !defined(_WIN32) && !defined(__ANDROID__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))
if (myDisplayConnection.IsNull()) if (myDisplayConnection.IsNull())
{ {
//Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: cannot connect to X server!"); //Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: cannot connect to X server!");
@ -65,6 +77,7 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio
|| ::getenv ("CALL_SYNCHRO_X") != NULL; || ::getenv ("CALL_SYNCHRO_X") != NULL;
XSynchronize (aDisplay, toSync); XSynchronize (aDisplay, toSync);
#if !defined(HAVE_EGL)
// does the server know about OpenGL & GLX? // does the server know about OpenGL & GLX?
int aDummy; int aDummy;
if (!XQueryExtension (aDisplay, "GLX", &aDummy, &aDummy, &aDummy)) if (!XQueryExtension (aDisplay, "GLX", &aDummy, &aDummy, &aDummy))
@ -74,6 +87,133 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio
#endif #endif
} }
#endif #endif
#endif
#if defined(HAVE_EGL) || defined(__ANDROID__)
if (theToStealActiveContext)
{
myEglDisplay = (Aspect_Display )eglGetCurrentDisplay();
myEglContext = (Aspect_RenderingContext )eglGetCurrentContext();
EGLSurface aEglSurf = eglGetCurrentSurface(EGL_DRAW);
if ((EGLDisplay )myEglDisplay == EGL_NO_DISPLAY
|| (EGLContext )myEglContext == EGL_NO_CONTEXT)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: no active EGL context to steal!");
return;
}
TCollection_AsciiString anEglInfo = TCollection_AsciiString()
+ "EGL info"
+ "\n Version: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_VERSION)
+ "\n Vendor: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_VENDOR)
+ "\n Client APIs: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_CLIENT_APIS)
+ "\n Extensions: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_EXTENSIONS);
::Message::DefaultMessenger()->Send (anEglInfo, Message_Info);
EGLint aCfgId = 0;
eglQuerySurface((EGLDisplay )myEglDisplay, aEglSurf, EGL_CONFIG_ID, &aCfgId);
const EGLint aConfigAttribs[] =
{
EGL_CONFIG_ID, aCfgId,
EGL_NONE
};
EGLint aNbConfigs = 0;
if (eglChooseConfig ((EGLDisplay )myEglDisplay, aConfigAttribs, &myEglConfig, 1, &aNbConfigs) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL does not provide compatible configurations!");
}
return;
}
#if !defined(_WIN32) && !defined(__ANDROID__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))
myEglDisplay = (Aspect_Display )eglGetDisplay (aDisplay);
#else
myEglDisplay = (Aspect_Display )eglGetDisplay (EGL_DEFAULT_DISPLAY);
#endif
if ((EGLDisplay )myEglDisplay == EGL_NO_DISPLAY)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: no EGL display!");
return;
}
EGLint aVerMajor = 0; EGLint aVerMinor = 0;
if (eglInitialize ((EGLDisplay )myEglDisplay, &aVerMajor, &aVerMinor) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL display is unavailable!");
return;
}
TCollection_AsciiString anEglInfo = TCollection_AsciiString()
+ "EGL info"
+ "\n Version: " + aVerMajor + "." + aVerMinor + " (" + eglQueryString ((EGLDisplay )myEglDisplay, EGL_VERSION)
+ "\n Vendor: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_VENDOR)
+ "\n Client APIs: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_CLIENT_APIS)
+ "\n Extensions: " + eglQueryString ((EGLDisplay )myEglDisplay, EGL_EXTENSIONS);
::Message::DefaultMessenger()->Send (anEglInfo, Message_Info);
const EGLint aConfigAttribs[] =
{
EGL_RED_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_BLUE_SIZE, 8,
EGL_ALPHA_SIZE, 0,
EGL_DEPTH_SIZE, 24,
EGL_STENCIL_SIZE, 8,
#if defined(GL_ES_VERSION_2_0)
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
#else
EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
#endif
EGL_NONE
};
EGLint aNbConfigs = 0;
if (eglChooseConfig ((EGLDisplay )myEglDisplay, aConfigAttribs, &myEglConfig, 1, &aNbConfigs) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL does not provide compatible configurations!");
return;
}
#if defined(GL_ES_VERSION_2_0)
if (eglBindAPI (EGL_OPENGL_ES_API) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL does not provide OpenGL ES client!");
return;
}
#else
if (eglBindAPI (EGL_OPENGL_API) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL does not provide OpenGL client!");
return;
}
#endif
#if defined(GL_ES_VERSION_2_0)
EGLint anEglCtxAttribs[] =
{
EGL_CONTEXT_CLIENT_VERSION, 2,
EGL_NONE
};
#else
EGLint* anEglCtxAttribs = NULL;
#endif
myEglContext = (Aspect_RenderingContext )eglCreateContext ((EGLDisplay )myEglDisplay, myEglConfig, EGL_NO_CONTEXT, anEglCtxAttribs);
if ((EGLContext )myEglContext == EGL_NO_CONTEXT)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL is unable to create OpenGL context!");
return;
}
if (eglMakeCurrent ((EGLDisplay )myEglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, (EGLContext )myEglContext) != EGL_TRUE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: EGL is unable bind OpenGL context!");
return;
}
#else
// not yet implemented
(void )theToStealActiveContext;
#endif
} }
// ======================================================================= // =======================================================================

View File

@ -93,8 +93,11 @@ class OpenGl_GraphicDriver : public Graphic3d_GraphicDriver
{ {
public: public:
//! Constructor //! Constructor.
Standard_EXPORT OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp); //! @param theDisp connection to display, required on Linux but optional on other systems
//! @param theToStealActiveContext option to use OpenGL context currently bound to the thread rather than creating own one, currently implemented only for Android
Standard_EXPORT OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp,
const Standard_Boolean theToStealActiveContext = Standard_False);
Standard_EXPORT Standard_Integer InquireLightLimit (); Standard_EXPORT Standard_Integer InquireLightLimit ();
Standard_EXPORT Standard_Integer InquireViewLimit (); Standard_EXPORT Standard_Integer InquireViewLimit ();
@ -319,12 +322,24 @@ public:
//! marks primitive set for rebuild. //! marks primitive set for rebuild.
Standard_EXPORT void InvalidateBVHData (Graphic3d_CView& theCView, const Standard_Integer theLayerId); Standard_EXPORT void InvalidateBVHData (Graphic3d_CView& theCView, const Standard_Integer theLayerId);
#if defined(HAVE_EGL) || defined(__ANDROID__)
Aspect_Display getRawGlDisplay() const { return myEglDisplay; }
Aspect_RenderingContext getRawGlContext() const { return myEglContext; }
void* getRawGlConfig() const { return myEglConfig; }
#endif
public: public:
DEFINE_STANDARD_RTTI(OpenGl_GraphicDriver) DEFINE_STANDARD_RTTI(OpenGl_GraphicDriver)
private: private:
#if defined(HAVE_EGL) || defined(__ANDROID__)
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; Handle(OpenGl_Caps) myCaps;
NCollection_DataMap<Standard_Integer, Handle(OpenGl_View)> myMapOfView; NCollection_DataMap<Standard_Integer, Handle(OpenGl_View)> myMapOfView;
NCollection_DataMap<Standard_Integer, Handle(OpenGl_Workspace)> myMapOfWS; NCollection_DataMap<Standard_Integer, Handle(OpenGl_Workspace)> myMapOfWS;

View File

@ -499,7 +499,7 @@ Standard_Boolean OpenGl_GraphicDriver::View (Graphic3d_CView& theCView)
} }
Handle(OpenGl_Context) aShareCtx = GetSharedContext(); Handle(OpenGl_Context) aShareCtx = GetSharedContext();
Handle(OpenGl_Workspace) aWS = new OpenGl_Workspace (myDisplayConnection, theCView.DefWindow, theCView.GContext, myCaps, aShareCtx); Handle(OpenGl_Workspace) aWS = new OpenGl_Workspace (this, theCView.DefWindow, theCView.GContext, myCaps, aShareCtx);
Handle(OpenGl_View) aView = new OpenGl_View (theCView.Context, &myStateCounter); Handle(OpenGl_View) aView = new OpenGl_View (theCView.Context, &myStateCounter);
myMapOfWS .Bind (theCView.WsId, aWS); myMapOfWS .Bind (theCView.WsId, aWS);
myMapOfView.Bind (theCView.ViewId, aView); myMapOfView.Bind (theCView.ViewId, aView);

View File

@ -20,11 +20,16 @@
#include <OpenGl_Window.hxx> #include <OpenGl_Window.hxx>
#include <OpenGl_Context.hxx> #include <OpenGl_Context.hxx>
#include <OpenGl_GraphicDriver.hxx>
#include <Aspect_GraphicDeviceDefinitionError.hxx> #include <Aspect_GraphicDeviceDefinitionError.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>
#include <TCollection_ExtendedString.hxx> #include <TCollection_ExtendedString.hxx>
#if defined(HAVE_EGL) || defined(__ANDROID__)
#include <EGL/egl.h>
#endif
IMPLEMENT_STANDARD_HANDLE(OpenGl_Window,MMgt_TShared) IMPLEMENT_STANDARD_HANDLE(OpenGl_Window,MMgt_TShared)
IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Window,MMgt_TShared) IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Window,MMgt_TShared)
@ -34,7 +39,9 @@ namespace
{ {
static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } }; static const TEL_COLOUR THE_DEFAULT_BG_COLOR = { { 0.F, 0.F, 0.F, 1.F } };
#if defined(_WIN32) #if defined(HAVE_EGL) || defined(__ANDROID__)
//
#elif defined(_WIN32)
// WGL_ARB_pixel_format // WGL_ARB_pixel_format
#ifndef WGL_NUMBER_PIXEL_FORMATS_ARB #ifndef WGL_NUMBER_PIXEL_FORMATS_ARB
@ -126,7 +133,7 @@ namespace
// function : OpenGl_Window // function : OpenGl_Window
// purpose : // purpose :
// ======================================================================= // =======================================================================
OpenGl_Window::OpenGl_Window (const Handle(Aspect_DisplayConnection)& theDisplayConnection, OpenGl_Window::OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
const CALL_DEF_WINDOW& theCWindow, const CALL_DEF_WINDOW& theCWindow,
Aspect_RenderingContext theGContext, Aspect_RenderingContext theGContext,
const Handle(OpenGl_Caps)& theCaps, const Handle(OpenGl_Caps)& theCaps,
@ -141,8 +148,47 @@ OpenGl_Window::OpenGl_Window (const Handle(Aspect_DisplayConnection)& theDisplay
myBgColor.rgb[1] = theCWindow.Background.g; myBgColor.rgb[1] = theCWindow.Background.g;
myBgColor.rgb[2] = theCWindow.Background.b; myBgColor.rgb[2] = theCWindow.Background.b;
#if defined(_WIN32) #if defined(HAVE_EGL) || defined(__ANDROID__)
(void )theDisplayConnection; EGLDisplay anEglDisplay = (EGLDisplay )theDriver->getRawGlDisplay();
EGLContext anEglContext = (EGLContext )theDriver->getRawGlContext();
EGLConfig anEglConfig = (EGLConfig )theDriver->getRawGlConfig();
if (anEglDisplay == EGL_NO_DISPLAY
|| anEglContext == EGL_NO_CONTEXT
|| anEglConfig == NULL)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_Window, EGL does not provide compatible configurations!");
return;
}
EGLSurface anEglSurf = EGL_NO_SURFACE;
if (theGContext == (EGLContext )EGL_NO_CONTEXT)
{
// create new surface
anEglSurf = eglCreateWindowSurface (anEglDisplay, anEglConfig, (EGLNativeWindowType )theCWindow.XWindow, NULL);
if (anEglSurf == EGL_NO_SURFACE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_Window, EGL is unable to create surface for window!");
return;
}
}
else if (theGContext != anEglContext)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_Window, EGL is used in unsupported combination!");
return;
}
else
{
anEglSurf = eglGetCurrentSurface(EGL_DRAW);
if (anEglSurf == EGL_NO_SURFACE)
{
Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_Window, EGL is unable to retrieve current surface!");
return;
}
}
myGlContext->Init ((Aspect_Drawable )anEglSurf, (Aspect_Display )anEglDisplay, (Aspect_RenderingContext )anEglContext);
#elif defined(_WIN32)
(void )theDriver;
HWND aWindow = (HWND )theCWindow.XWindow; HWND aWindow = (HWND )theCWindow.XWindow;
HDC aWindowDC = GetDC (aWindow); HDC aWindowDC = GetDC (aWindow);
HGLRC aGContext = (HGLRC )theGContext; HGLRC aGContext = (HGLRC )theGContext;
@ -356,7 +402,7 @@ OpenGl_Window::OpenGl_Window (const Handle(Aspect_DisplayConnection)& theDisplay
Window aParent = (Window )theCWindow.XWindow; Window aParent = (Window )theCWindow.XWindow;
Window aWindow = 0; Window aWindow = 0;
Display* aDisp = theDisplayConnection->GetDisplay(); Display* aDisp = theDriver->GetDisplayConnection()->GetDisplay();
GLXContext aGContext = (GLXContext )theGContext; GLXContext aGContext = (GLXContext )theGContext;
XWindowAttributes wattr; XWindowAttributes wattr;
@ -538,7 +584,8 @@ OpenGl_Window::OpenGl_Window (const Handle(Aspect_DisplayConnection)& theDisplay
// ======================================================================= // =======================================================================
OpenGl_Window::~OpenGl_Window() OpenGl_Window::~OpenGl_Window()
{ {
if (!myOwnGContext) if (!myOwnGContext
|| myGlContext.IsNull())
{ {
myGlContext.Nullify(); myGlContext.Nullify();
return; return;
@ -547,7 +594,13 @@ OpenGl_Window::~OpenGl_Window()
// release "GL" context if it is owned by window // release "GL" context if it is owned by window
// Mesa implementation can fail to destroy GL context if it set for current thread. // Mesa implementation can fail to destroy GL context if it set for current thread.
// It should be safer to unset thread GL context before its destruction. // It should be safer to unset thread GL context before its destruction.
#if defined(_WIN32) #if defined(HAVE_EGL) || defined(__ANDROID__)
if ((EGLSurface )myGlContext->myWindow != EGL_NO_SURFACE)
{
eglDestroySurface ((EGLDisplay )myGlContext->myDisplay,
(EGLSurface )myGlContext->myWindow);
}
#elif defined(_WIN32)
HWND aWindow = (HWND )myGlContext->myWindow; HWND aWindow = (HWND )myGlContext->myWindow;
HDC aWindowDC = (HDC )myGlContext->myWindowDC; HDC aWindowDC = (HDC )myGlContext->myWindowDC;
HGLRC aWindowGContext = (HGLRC )myGlContext->myGContext; HGLRC aWindowGContext = (HGLRC )myGlContext->myGContext;
@ -603,7 +656,7 @@ Standard_Boolean OpenGl_Window::Activate()
// ======================================================================= // =======================================================================
void OpenGl_Window::Resize (const CALL_DEF_WINDOW& theCWindow) void OpenGl_Window::Resize (const CALL_DEF_WINDOW& theCWindow)
{ {
#if !defined(_WIN32) #if !defined(_WIN32) && !defined(HAVE_EGL) && !defined(__ANDROID__)
Display* aDisp = (Display* )myGlContext->myDisplay; Display* aDisp = (Display* )myGlContext->myDisplay;
if (aDisp == NULL) if (aDisp == NULL)
return; return;
@ -616,7 +669,7 @@ void OpenGl_Window::Resize (const CALL_DEF_WINDOW& theCWindow)
myWidth = (Standard_Integer )theCWindow.dx; myWidth = (Standard_Integer )theCWindow.dx;
myHeight = (Standard_Integer )theCWindow.dy; myHeight = (Standard_Integer )theCWindow.dy;
#if !defined(_WIN32) #if !defined(_WIN32) && !defined(HAVE_EGL) && !defined(__ANDROID__)
XResizeWindow (aDisp, myGlContext->myWindow, (unsigned int )myWidth, (unsigned int )myHeight); XResizeWindow (aDisp, myGlContext->myWindow, (unsigned int )myWidth, (unsigned int )myHeight);
XSync (aDisp, False); XSync (aDisp, False);
#endif #endif
@ -675,7 +728,10 @@ void OpenGl_Window::Init()
if (!Activate()) if (!Activate())
return; return;
#if defined(_WIN32) #if defined(HAVE_EGL) || defined(__ANDROID__)
eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_WIDTH, &myWidth);
eglQuerySurface ((EGLDisplay )myGlContext->myDisplay, (EGLSurface )myGlContext->myWindow, EGL_HEIGHT, &myHeight);
#elif defined(_WIN32)
RECT cr; RECT cr;
GetClientRect ((HWND )myGlContext->myWindow, &cr); GetClientRect ((HWND )myGlContext->myWindow, &cr);
myWidth = cr.right - cr.left; myWidth = cr.right - cr.left;

View File

@ -22,7 +22,7 @@
#include <Handle_OpenGl_Context.hxx> #include <Handle_OpenGl_Context.hxx>
#include <Handle_OpenGl_Window.hxx> #include <Handle_OpenGl_Window.hxx>
#include <Aspect_DisplayConnection.hxx> #include <Handle_OpenGl_GraphicDriver.hxx>
#include <MMgt_TShared.hxx> #include <MMgt_TShared.hxx>
@ -33,7 +33,7 @@ class OpenGl_Window : public MMgt_TShared
public: public:
//! Main constructor - prepare GL context for specified window. //! Main constructor - prepare GL context for specified window.
OpenGl_Window (const Handle(Aspect_DisplayConnection)& theDisplayConnection, OpenGl_Window (const Handle(OpenGl_GraphicDriver)& theDriver,
const CALL_DEF_WINDOW& theCWindow, const CALL_DEF_WINDOW& theCWindow,
Aspect_RenderingContext theGContext, Aspect_RenderingContext theGContext,
const Handle(OpenGl_Caps)& theCaps, const Handle(OpenGl_Caps)& theCaps,

View File

@ -133,12 +133,12 @@ void OpenGl_Material::Init (const OPENGL_SURF_PROP& theProp)
// function : OpenGl_Workspace // function : OpenGl_Workspace
// purpose : // purpose :
// ======================================================================= // =======================================================================
OpenGl_Workspace::OpenGl_Workspace (const Handle(Aspect_DisplayConnection)& theDisplayConnection, OpenGl_Workspace::OpenGl_Workspace (const Handle(OpenGl_GraphicDriver)& theDriver,
const CALL_DEF_WINDOW& theCWindow, const CALL_DEF_WINDOW& theCWindow,
Aspect_RenderingContext theGContext, Aspect_RenderingContext theGContext,
const Handle(OpenGl_Caps)& theCaps, const Handle(OpenGl_Caps)& theCaps,
const Handle(OpenGl_Context)& theShareCtx) const Handle(OpenGl_Context)& theShareCtx)
: OpenGl_Window (theDisplayConnection, theCWindow, theGContext, theCaps, theShareCtx), : OpenGl_Window (theDriver, theCWindow, theGContext, theCaps, theShareCtx),
NamedStatus (0), NamedStatus (0),
HighlightColor (&THE_WHITE_COLOR), HighlightColor (&THE_WHITE_COLOR),
// //
@ -589,7 +589,7 @@ void OpenGl_Workspace::Redraw (const Graphic3d_CView& theCView,
// fetch OpenGl context state // fetch OpenGl context state
aGlCtx->FetchState(); aGlCtx->FetchState();
Tint toSwap = (aGlCtx->IsRender()); // swap buffers Tint toSwap = (aGlCtx->IsRender() && !aGlCtx->caps->buffersNoSwap) ? 1 : 0; // swap buffers
GLint aViewPortBack[4]; GLint aViewPortBack[4];
OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theCView.ptrFBO; OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theCView.ptrFBO;
if (aFrameBuffer != NULL) if (aFrameBuffer != NULL)

2
src/OpenGl/OpenGl_Workspace.hxx Executable file → Normal file
View File

@ -131,7 +131,7 @@ class OpenGl_Workspace : public OpenGl_Window
public: public:
//! Main constructor - prepare GL context for specified window. //! Main constructor - prepare GL context for specified window.
OpenGl_Workspace (const Handle(Aspect_DisplayConnection)& theDisplayConnection, OpenGl_Workspace (const Handle(OpenGl_GraphicDriver)& theDriver,
const CALL_DEF_WINDOW& theCWindow, const CALL_DEF_WINDOW& theCWindow,
Aspect_RenderingContext theGContext, Aspect_RenderingContext theGContext,
const Handle(OpenGl_Caps)& theCaps, const Handle(OpenGl_Caps)& theCaps,

View File

@ -114,22 +114,8 @@ void Visual3d_View::SetWindow (const Handle(Aspect_Window)& theWindow)
MyWindow = theWindow; MyWindow = theWindow;
MyCView.WsId = MyCView.ViewId; MyCView.WsId = MyCView.ViewId;
MyCView.DefWindow.IsDefined = 1; MyCView.DefWindow.IsDefined = 1;
#if defined(_WIN32) MyCView.DefWindow.XWindow = theWindow->NativeHandle();
const Handle(WNT_Window) aWin = Handle(WNT_Window)::DownCast (theWindow); MyCView.DefWindow.XParentWindow = theWindow->NativeParentHandle();
MyCView.DefWindow.XWindow = (HWND )(aWin->HWindow());
MyCView.DefWindow.XParentWindow = (HWND )(aWin->HParentWindow());
#elif (defined(__APPLE__) && !defined(MACOSX_USE_GLX))
const Handle(Cocoa_Window) aWin = Handle(Cocoa_Window)::DownCast (theWindow);
MyCView.DefWindow.XWindow = (Aspect_Drawable )aWin->HView();
MyCView.DefWindow.XParentWindow = NULL;
//MyCView.DefWindow.XParentWindow = aWin->HParentWindow();
#elif defined(__ANDROID__)
//
#else
const Handle(Xw_Window) aWin = Handle(Xw_Window)::DownCast (theWindow);
MyCView.DefWindow.XWindow = aWin->XWindow();
//MyCView.DefWindow.XParentWindow = aWin->XParentWindow();
#endif
Standard_Integer Width, Height; Standard_Integer Width, Height;
theWindow->Size (Width, Height); theWindow->Size (Width, Height);

View File

@ -21,6 +21,7 @@ class Window from WNT inherits Window from Aspect
uses uses
Handle from Aspect, Handle from Aspect,
Drawable from Aspect,
TypeOfResize from Aspect, TypeOfResize from Aspect,
NameOfColor from Quantity, NameOfColor from Quantity,
Color from Quantity, Color from Quantity,
@ -166,6 +167,14 @@ class Window from WNT inherits Window from Aspect
---Purpose: Returns the Windows NT handle parent of the created window <me>. ---Purpose: Returns the Windows NT handle parent of the created window <me>.
---C++: inline ---C++: inline
NativeHandle ( me ) returns Drawable from Aspect is virtual;
---Purpose: Returns native Window handle (HWND)
---C++: inline
NativeParentHandle ( me ) returns Drawable from Aspect is virtual;
---Purpose: Returns parent of native Window handle (HWND on Windows, Window with Xlib, and so on)
---C++: inline
fields fields
aXLeft : Integer from Standard is protected; -- Window coordinates aXLeft : Integer from Standard is protected; -- Window coordinates

View File

@ -27,3 +27,13 @@ inline Aspect_Handle WNT_Window::HParentWindow() const
{ {
return myHParentWindow; return myHParentWindow;
} }
inline Aspect_Drawable WNT_Window::NativeHandle() const
{
return (Aspect_Drawable )myHWindow;
}
inline Aspect_Drawable WNT_Window::NativeParentHandle() const
{
return (Aspect_Drawable )myHParentWindow;
}

View File

@ -98,6 +98,18 @@ public:
//! @return connection to X Display //! @return connection to X Display
Standard_EXPORT const Handle(Aspect_DisplayConnection)& DisplayConnection() const; Standard_EXPORT const Handle(Aspect_DisplayConnection)& DisplayConnection() const;
//! @return native Window handle
virtual Aspect_Drawable NativeHandle() const
{
return (Aspect_Drawable )XWindow();
}
//! @return parent of native Window handle
virtual Aspect_Drawable NativeParentHandle() const
{
return 0;
}
protected: protected:
Handle(Aspect_DisplayConnection) myDisplay; //!< X Display connection Handle(Aspect_DisplayConnection) myDisplay; //!< X Display connection