1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/Aspect/Aspect_NeutralWindow.cxx
kgv 1ce0716bb1 0027811: Configuration - allow building TKOpenGl with OpenGL ES on Windows
OpenGl_ShaderManager::prepareStdProgramFboBlit() now tries using extension
GL_EXT_frag_depth within OpenGL ES 2.0 when OpenGL ES 3.0 is not available.
OpenGl_View::blitBuffers() now disables Depth test
when copying depth values is not supported by OpenGL ES 2.0 hardware.

Fixed building for UWP with SDK 10.0.10240.0
Fixed building TKService, TKV3d and TKOpenGl for UWP.

OSD_Environment now defines global environment map
for emulating desktop behavior on UWP.
2016-09-08 10:46:58 +03:00

112 lines
3.5 KiB
C++

// Copyright (c) 2016 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.
#include <Aspect_NeutralWindow.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Aspect_NeutralWindow, Aspect_Window)
// =======================================================================
// function : Aspect_NeutralWindow
// purpose :
// =======================================================================
Aspect_NeutralWindow::Aspect_NeutralWindow()
: myHandle (0),
myParentHandle (0),
myFBConfig (0),
myPosX (0),
myPosY (0),
myWidth (0),
myHeight (0),
myIsMapped (Standard_True) {}
// =======================================================================
// function : SetNativeHandles
// purpose :
// =======================================================================
Standard_Boolean Aspect_NeutralWindow::SetNativeHandles (Aspect_Drawable theWindow,
Aspect_Drawable theParentWindow,
Aspect_FBConfig theFbConfig)
{
if (myHandle == theWindow
&& myParentHandle == theParentWindow
&& myFBConfig == theFbConfig)
{
return Standard_False;
}
myHandle = theWindow;
myParentHandle = theParentWindow;
myFBConfig = theFbConfig;
return Standard_True;
}
// =======================================================================
// function : SetPosition
// purpose :
// =======================================================================
Standard_Boolean Aspect_NeutralWindow::SetPosition (Standard_Integer theX1,
Standard_Integer theY1)
{
if (myPosX == theX1
&& myPosY == theY1)
{
return Standard_False;
}
myPosX = theX1;
myPosY = theY1;
return Standard_True;
}
// =======================================================================
// function : SetPosition
// purpose :
// =======================================================================
Standard_Boolean Aspect_NeutralWindow::SetPosition (Standard_Integer theX1, Standard_Integer theY1,
Standard_Integer theX2, Standard_Integer theY2)
{
Standard_Integer aWidthNew = theX2 - theX1;
Standard_Integer aHeightNew = theY2 - theY1;
if (myPosX == theX1
&& myPosY == theY1
&& myWidth == aWidthNew
&& myHeight == aHeightNew)
{
return Standard_False;
}
myPosX = theX1;
myWidth = aWidthNew;
myPosY = theY1;
myHeight = aHeightNew;
return Standard_True;
}
// =======================================================================
// function : SetSize
// purpose :
// =======================================================================
Standard_Boolean Aspect_NeutralWindow::SetSize (const Standard_Integer theWidth,
const Standard_Integer theHeight)
{
if (myWidth == theWidth
&& myHeight == theHeight)
{
return Standard_False;
}
myWidth = theWidth;
myHeight = theHeight;
return Standard_True;
}