diff --git a/samples/CSharp/OCCTProxy/OCCTProxy.cpp b/samples/CSharp/OCCTProxy/OCCTProxy.cpp index fd7d5426c8..3dd453842a 100644 --- a/samples/CSharp/OCCTProxy/OCCTProxy.cpp +++ b/samples/CSharp/OCCTProxy/OCCTProxy.cpp @@ -4,8 +4,6 @@ //for OCC graphic #include #include -#include -#include #include //for object display #include @@ -703,8 +701,7 @@ public: myView() = myAISContext()->CurrentViewer()->CreateView(); if (myGraphicDriver().IsNull()) { - Handle(Aspect_DisplayConnection) aDisplayConnection; - myGraphicDriver() = Graphic3d::InitGraphicDriver (aDisplayConnection); + myGraphicDriver() = new OpenGl_GraphicDriver (Handle(Aspect_DisplayConnection)()); } Handle(WNT_Window) aWNTWindow = new WNT_Window (reinterpret_cast (theWnd.ToPointer())); myView()->SetWindow(aWNTWindow); @@ -1097,5 +1094,5 @@ private: NCollection_Haft myViewer; NCollection_Haft myView; NCollection_Haft myAISContext; - NCollection_Haft myGraphicDriver; + NCollection_Haft myGraphicDriver; }; diff --git a/samples/mfc/standard/10_Convert/src/WNT/StdAfx.h b/samples/mfc/standard/10_Convert/src/WNT/StdAfx.h index d23f7f864a..07ccc1809b 100755 --- a/samples/mfc/standard/10_Convert/src/WNT/StdAfx.h +++ b/samples/mfc/standard/10_Convert/src/WNT/StdAfx.h @@ -33,7 +33,6 @@ #include #include #include -#include #include #include #include diff --git a/samples/mfc/standard/Common/StdAfx.h b/samples/mfc/standard/Common/StdAfx.h index 155de32b21..175a1116e5 100755 --- a/samples/mfc/standard/Common/StdAfx.h +++ b/samples/mfc/standard/Common/StdAfx.h @@ -64,7 +64,6 @@ #include #include #include -#include #include #include #include diff --git a/samples/qt/Common/src/DocumentCommon.cxx b/samples/qt/Common/src/DocumentCommon.cxx index 134846e6c0..343c21db99 100755 --- a/samples/qt/Common/src/DocumentCommon.cxx +++ b/samples/qt/Common/src/DocumentCommon.cxx @@ -11,7 +11,6 @@ #include #include -#include #include #include #include diff --git a/samples/qt/VoxelDemo/src/Viewer.cpp b/samples/qt/VoxelDemo/src/Viewer.cpp index f4615df138..43bbae4b30 100644 --- a/samples/qt/VoxelDemo/src/Viewer.cpp +++ b/samples/qt/VoxelDemo/src/Viewer.cpp @@ -13,7 +13,6 @@ #include #include #include -#include #include #include #include diff --git a/src/Graphic3d/Graphic3d.cdl b/src/Graphic3d/Graphic3d.cdl index ab803157c5..aaf3e03ad9 100644 --- a/src/Graphic3d/Graphic3d.cdl +++ b/src/Graphic3d/Graphic3d.cdl @@ -576,15 +576,4 @@ is end SortType; - ---------------------------- - -- Category: Package methods - ---------------------------- - - InitGraphicDriver (theDisplayConnection: DisplayConnection_Handle from Aspect) - returns GraphicDriver from Graphic3d - raises DriverDefinitionError from Aspect; - ---Purpose: Initialize graphic driver and returns Handle to it. - - - end Graphic3d; diff --git a/src/Graphic3d/Graphic3d.cxx b/src/Graphic3d/Graphic3d.cxx deleted file mode 100755 index 3b29ad997c..0000000000 --- a/src/Graphic3d/Graphic3d.cxx +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright (c) 2013-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. - -#include - -#include -#include -#include - -//======================================================================= -//function : InitGraphicDriver -//purpose : -//======================================================================= -Handle(Graphic3d_GraphicDriver) Graphic3d::InitGraphicDriver (const Handle(Aspect_DisplayConnection)& theDisplayConnection) -{ -#if !defined(_WIN32) && !defined(__WIN32__) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) - if (theDisplayConnection.IsNull()) - { - Aspect_DriverDefinitionError::Raise ("Null display connection."); - } -#endif - - TCollection_AsciiString aGraphicLibName; - - // Setting the library name. Depends on the platform. -#if defined(_WIN32) || defined(__WIN32__) - aGraphicLibName = "TKOpenGl.dll"; -#elif defined(__hpux) || defined(HPUX) - aGraphicLibName = "libTKOpenGl.sl"; -#elif defined(__APPLE__) - aGraphicLibName = "libTKOpenGl.dylib"; -#else - aGraphicLibName = "libTKOpenGl.so"; -#endif - - // Loading the library. - OSD_SharedLibrary aSharedLibrary (aGraphicLibName.ToCString()); - if (!aSharedLibrary.DlOpen (OSD_RTLD_LAZY)) - { - Aspect_DriverDefinitionError::Raise (aSharedLibrary.DlError()); - } - - // Retrieving factory function pointer. - typedef Handle(Graphic3d_GraphicDriver) (*GraphicDriverFactoryPointer) (Standard_CString); - GraphicDriverFactoryPointer aGraphicDriverConstructor = (GraphicDriverFactoryPointer )aSharedLibrary.DlSymb ("MetaGraphicDriverFactory"); - if (aGraphicDriverConstructor == NULL) - { - Aspect_DriverDefinitionError::Raise (aSharedLibrary.DlError()); - } - - // Creating driver instance. - Handle(Graphic3d_GraphicDriver) aGraphicDriver = aGraphicDriverConstructor (aSharedLibrary.Name()); - - // Management of traces. - OSD_Environment aTraceEnv ("CSF_GraphicTrace"); - TCollection_AsciiString aTrace = aTraceEnv.Value(); - if (aTrace.IsIntegerValue()) - { - aGraphicDriver->SetTrace (aTrace.IntegerValue()); - } - - // Starting graphic driver. - if (!aGraphicDriver->Begin (theDisplayConnection)) - { - Aspect_DriverDefinitionError::Raise ("Cannot connect to graphic library."); - } - - return aGraphicDriver; -} diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.cdl b/src/Graphic3d/Graphic3d_GraphicDriver.cdl index c656e50cf4..ef0273030d 100644 --- a/src/Graphic3d/Graphic3d_GraphicDriver.cdl +++ b/src/Graphic3d/Graphic3d_GraphicDriver.cdl @@ -28,8 +28,6 @@ deferred class GraphicDriver from Graphic3d inherits TShared uses - SharedLibrary from OSD, - Array1OfInteger from TColStd, Array1OfReal from TColStd, Array2OfReal from TColStd, @@ -98,24 +96,10 @@ raises TransformError from Graphic3d is - Initialize ( AShrName : CString from Standard ) - returns GraphicDriver from Graphic3d; - ---Level: Public - ---Purpose: Initialises the Driver - - ------------------------- - -- Category: Init methods - ------------------------- - - Begin (me: mutable; - theDisplayConnection: DisplayConnection_Handle from Aspect) - returns Boolean from Standard - is deferred; - ---Purpose: Starts graphic driver with given connection - - End ( me : mutable ) - is deferred; - ---Purpose: call_togl_end + Initialize (theDisp : DisplayConnection_Handle from Aspect) + returns GraphicDriver from Graphic3d; + ---Level: Public + ---Purpose: Initialises the Driver ---------------------------- -- Category: Inquire methods @@ -767,14 +751,6 @@ is returns Integer from Standard is static; - --ListOfAvalableFontNames( me; - -- lst: out NListOfHAsciiString from Graphic3d ) - -- returns Boolean from Standard - -- is deferred; - -- Purpose: Initialize list of names of avalable system fonts - -- returns Standard_False if fails - -- ABD Integration support of system fonts (using FTGL and FreeType) - GetDisplayConnection (me) returns DisplayConnection_Handle from Aspect; ---C++: return const & @@ -791,7 +767,6 @@ is fields MyTraceLevel : Integer from Standard is protected; - MySharedLibrary : SharedLibrary from OSD is protected; myDisplayConnection: DisplayConnection_Handle from Aspect is protected; myDeviceLostFlag : Boolean from Standard is protected; diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.cxx b/src/Graphic3d/Graphic3d_GraphicDriver.cxx index 6a32783704..5e418e5a0b 100644 --- a/src/Graphic3d/Graphic3d_GraphicDriver.cxx +++ b/src/Graphic3d/Graphic3d_GraphicDriver.cxx @@ -14,41 +14,14 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -// 11/97 ; CAL : retrait de la dependance avec math - - -//-Version - -//-Design Declaration des variables specifiques aux Drivers - -//-Warning Un driver encapsule les Pex, Phigs et OpenGl drivers - -//-References - -//-Language C++ 2.0 - -//-Declarations - -// for the class #include -#include - -//-Aliases - -//-Global data definitions - -//-Constructors - -Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Standard_CString AShrName) { - - SetTrace (0); - MySharedLibrary.SetName (AShrName); - myDeviceLostFlag = Standard_False; - - //if (! MySharedLibrary.DlOpen (OSD_RTLD_LAZY)) - //Aspect_DriverDefinitionError::Raise (MySharedLibrary.DlError ()); - +Graphic3d_GraphicDriver::Graphic3d_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp) +: MyTraceLevel (0), + myDisplayConnection (theDisp), + myDeviceLostFlag (Standard_False) +{ + // } //-Internal methods, in order diff --git a/src/OpenGl/OpenGl_GraphicDriver.cxx b/src/OpenGl/OpenGl_GraphicDriver.cxx index 699065636e..e7f868960a 100755 --- a/src/OpenGl/OpenGl_GraphicDriver.cxx +++ b/src/OpenGl/OpenGl_GraphicDriver.cxx @@ -42,34 +42,14 @@ IMPLEMENT_STANDARD_RTTIEXT(OpenGl_GraphicDriver,Graphic3d_GraphicDriver) namespace { static const Handle(OpenGl_Context) TheNullGlCtx; -}; - -// Pour eviter de "mangler" MetaGraphicDriverFactory, le nom de la -// fonction qui cree un Graphic3d_GraphicDriver. -// En effet, ce nom est recherche par la methode DlSymb de la -// classe OSD_SharedLibrary dans la methode SetGraphicDriver de la -// classe Graphic3d_GraphicDevice -extern "C" { -#if defined(_MSC_VER) // disable MS VC++ warning on C-style function returning C++ object - #pragma warning(push) - #pragma warning(disable:4190) -#endif - Standard_EXPORT Handle(Graphic3d_GraphicDriver) MetaGraphicDriverFactory (const Standard_CString theShrName) - { - Handle(OpenGl_GraphicDriver) aDriver = new OpenGl_GraphicDriver (theShrName); - return aDriver; - } -#if defined(_MSC_VER) - #pragma warning(pop) -#endif } // ======================================================================= // function : OpenGl_GraphicDriver // purpose : // ======================================================================= -OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisplayConnection) -: Graphic3d_GraphicDriver ("TKOpenGl"), +OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp) +: Graphic3d_GraphicDriver (theDisp), myCaps (new OpenGl_Caps()), myMapOfView (1, NCollection_BaseAllocator::CommonBaseAllocator()), myMapOfWS (1, NCollection_BaseAllocator::CommonBaseAllocator()), @@ -77,43 +57,13 @@ OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnectio myUserDrawCallback (NULL), myTempText (new OpenGl_Text()) { - Begin (theDisplayConnection); -} - -// ======================================================================= -// function : OpenGl_GraphicDriver -// purpose : -// ======================================================================= -OpenGl_GraphicDriver::OpenGl_GraphicDriver (const Standard_CString theShrName) -: Graphic3d_GraphicDriver (theShrName), - myCaps (new OpenGl_Caps()), - myMapOfView (1, NCollection_BaseAllocator::CommonBaseAllocator()), - myMapOfWS (1, NCollection_BaseAllocator::CommonBaseAllocator()), - myMapOfStructure (1, NCollection_BaseAllocator::CommonBaseAllocator()), - myUserDrawCallback (NULL), - myTempText (new OpenGl_Text()) -{ - // -} - -// ======================================================================= -// function : Begin -// purpose : -// ======================================================================= -Standard_Boolean OpenGl_GraphicDriver::Begin (const Handle(Aspect_DisplayConnection)& theDisplayConnection) -{ - myDisplayConnection = theDisplayConnection; +#if (!defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))) if (myDisplayConnection.IsNull()) { - #if (!defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))) //Aspect_GraphicDeviceDefinitionError::Raise ("OpenGl_GraphicDriver: cannot connect to X server!"); - return Standard_False; - #else - return Standard_True; - #endif + return; } -#if (!defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX))) Display* aDisplay = myDisplayConnection->GetDisplay(); Bool toSync = ::getenv ("CSF_GraphicSync") != NULL || ::getenv ("CALL_SYNCHRO_X") != NULL; @@ -128,17 +78,6 @@ Standard_Boolean OpenGl_GraphicDriver::Begin (const Handle(Aspect_DisplayConnect #endif } #endif - return Standard_True; -} - -// ======================================================================= -// function : End -// purpose : -// ======================================================================= -void OpenGl_GraphicDriver::End() -{ - // deprecated method - ///myDisplayConnection.Nullify(); } // ======================================================================= diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/OpenGl/OpenGl_GraphicDriver.hxx index d1828ec630..32ac3acb79 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.hxx +++ b/src/OpenGl/OpenGl_GraphicDriver.hxx @@ -94,12 +94,7 @@ class OpenGl_GraphicDriver : public Graphic3d_GraphicDriver public: //! Constructor - Standard_EXPORT OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisplayConnection); - - //! Constructor - Standard_EXPORT OpenGl_GraphicDriver (const Standard_CString theShrName = "TKOpenGl"); - Standard_EXPORT Standard_Boolean Begin (const Handle(Aspect_DisplayConnection)& theDisplayConnection); - Standard_EXPORT void End (); + Standard_EXPORT OpenGl_GraphicDriver (const Handle(Aspect_DisplayConnection)& theDisp); Standard_EXPORT Standard_Integer InquireLightLimit (); Standard_EXPORT Standard_Integer InquireViewLimit (); diff --git a/src/QADraw/QADraw.cxx b/src/QADraw/QADraw.cxx index 3dd5def744..9e6c04ad92 100644 --- a/src/QADraw/QADraw.cxx +++ b/src/QADraw/QADraw.cxx @@ -29,7 +29,6 @@ #include #include #include -#include #include #include #include diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index f1d0263c2f..63e4264b87 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -67,7 +67,6 @@ #include #include #include -#include #include #include #include