mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0031060: Configuration - Support building with CLang compiler under VS 2019
Build tools are updated to support building with Visual Studion 2019 toolset ClangCL (LLVM clang-cl): - In CMake builds, use of unsupported option "-std=c++0x" is avoided - Tool genconf recognizes availability of ClangCL toolset and proposes it in the list - Tool genproj recognizes new compiler specification VCVER=vclang and generates VS 2019 projects for it Note that vclang configuration puts binaries to folder "vc14" as it is compatible with vc14 CRT. Code is updated to build with Clang for Windows without errors and warnings: - In BVH classes, pure virtual destructors are replaced by empty ones, to avoid bogus compiler warning - In .lex files, pragmas are added to disable warnings in parser code - In OSD, signature of function _osd_wnt_set_error() is corrected to avoid warning on incorrect use of va_args (undefined behavior) - In OSD_Host, OSD_Parallel_TBB, warnings on usage of deprecated function are disabled - In Quantity_ColorRGBA and ViewerTest_CmdParser, incorrect use of predefined macro __FUNCTION__ assuming it was a string literal is avoided - In Standard_Macro.hxx, code is reordered to handle Clang for Windows appropriately - In AdvApp2Var_SysBase.hxx, inclusion of obsolete (MSVC-specific) header file is replaced by Standard_TypeDef.hxx - In Standard_ErrorHandler.hxx, empty statements added to avoid warning on unused class fields - In IVtkDraw and ViewerTest, interface is corrected to use actual type avoiding unnecessary type casts Off-topic: corrections of some errors (uninitialized class fields) reported by VS Code Analysis in TKernel
This commit is contained in:
parent
6466cc9eb1
commit
1bd04b5a02
@ -130,7 +130,9 @@ elseif ("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xClang")
|
|||||||
if (APPLE)
|
if (APPLE)
|
||||||
# CLang can be used with both libstdc++ and libc++, however on OS X libstdc++ is outdated.
|
# CLang can be used with both libstdc++ and libc++, however on OS X libstdc++ is outdated.
|
||||||
set (CMAKE_CXX_FLAGS "-std=c++0x -stdlib=libc++ ${CMAKE_CXX_FLAGS}")
|
set (CMAKE_CXX_FLAGS "-std=c++0x -stdlib=libc++ ${CMAKE_CXX_FLAGS}")
|
||||||
else()
|
elseif(NOT WIN32)
|
||||||
|
# CLang for Windows (at least CLang 8.0 distributed with VS 2019)
|
||||||
|
# does not support option "-std=c++0x"
|
||||||
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
|
set (CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
|
||||||
endif()
|
endif()
|
||||||
elseif (DEFINED CMAKE_COMPILER_IS_GNUCXX)
|
elseif (DEFINED CMAKE_COMPILER_IS_GNUCXX)
|
||||||
|
@ -82,6 +82,11 @@ if { ! [catch {exec vswhere.exe -version "\[16.0,16.99\]" -latest -requires Micr
|
|||||||
lappend ::SYS_VC_LIST "vc142-uwp"
|
lappend ::SYS_VC_LIST "vc142-uwp"
|
||||||
lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat"
|
lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat"
|
||||||
}
|
}
|
||||||
|
if { ! [catch {exec vswhere.exe -version "\[16.0,16.99\]" -latest -requires Microsoft.VisualStudio.Component.VC.ClangCL -property installationPath} res] } {
|
||||||
|
lappend ::SYS_VS_LIST "Visual Studio 2019 (16, toolset ClangCL)"
|
||||||
|
lappend ::SYS_VC_LIST "vclang"
|
||||||
|
lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat"
|
||||||
|
}
|
||||||
|
|
||||||
# detect installed Visual Studio instances from global environment
|
# detect installed Visual Studio instances from global environment
|
||||||
if { [info exists ::env(VS140COMNTOOLS)] } {
|
if { [info exists ::env(VS140COMNTOOLS)] } {
|
||||||
|
@ -241,7 +241,11 @@ proc wokdep:Preferred {theList theCmpl theArch} {
|
|||||||
|
|
||||||
# keep only two first digits in "vc141"
|
# keep only two first digits in "vc141"
|
||||||
if { ! [regexp {^vc[0-9][0-9]} $theCmpl aCmpl] } {
|
if { ! [regexp {^vc[0-9][0-9]} $theCmpl aCmpl] } {
|
||||||
set aCmpl $theCmpl
|
if { [regexp {^vclang} $theCmpl] } {
|
||||||
|
set aCmpl vc14
|
||||||
|
} else {
|
||||||
|
set aCmpl $theCmpl
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
set aShortList {}
|
set aShortList {}
|
||||||
@ -631,7 +635,11 @@ proc wokdep:SearchTBB {theErrInc theErrLib32 theErrLib64 theErrBin32 theErrBin64
|
|||||||
|
|
||||||
# keep only two first digits in "vc141"
|
# keep only two first digits in "vc141"
|
||||||
if { ! [regexp {^vc[0-9][0-9]} ${::VCVER} aVcLib] } {
|
if { ! [regexp {^vc[0-9][0-9]} ${::VCVER} aVcLib] } {
|
||||||
set aVcLib ${::VCVER}
|
if { [regexp {^vclang} ${::VCVER}] } {
|
||||||
|
set aVcLib vc14
|
||||||
|
} else {
|
||||||
|
set aVcLib ${::VCVER}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
set isFound "true"
|
set isFound "true"
|
||||||
|
@ -256,7 +256,7 @@ proc genAllResources {} {
|
|||||||
|
|
||||||
# Wrapper-function to generate VS project files
|
# Wrapper-function to generate VS project files
|
||||||
proc genproj {theFormat args} {
|
proc genproj {theFormat args} {
|
||||||
set aSupportedFormats { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "vc141" "vc142" "cbp" "xcd" "pro"}
|
set aSupportedFormats { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "vc141" "vc142" "vclang" "cbp" "xcd" "pro"}
|
||||||
set aSupportedPlatforms { "wnt" "uwp" "lin" "mac" "ios" "qnx" }
|
set aSupportedPlatforms { "wnt" "uwp" "lin" "mac" "ios" "qnx" }
|
||||||
set isHelpRequire false
|
set isHelpRequire false
|
||||||
|
|
||||||
@ -320,6 +320,7 @@ proc genproj {theFormat args} {
|
|||||||
vc14 - Visual Studio 2015
|
vc14 - Visual Studio 2015
|
||||||
vc141 - Visual Studio 2017
|
vc141 - Visual Studio 2017
|
||||||
vc142 - Visual Studio 2019
|
vc142 - Visual Studio 2019
|
||||||
|
vclang - Visual Studio with ClangCL toolset
|
||||||
cbp - CodeBlocks
|
cbp - CodeBlocks
|
||||||
xcd - XCode
|
xcd - XCode
|
||||||
pro - Qt Creator
|
pro - Qt Creator
|
||||||
@ -529,7 +530,8 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl theSolution }
|
|||||||
"vc12" -
|
"vc12" -
|
||||||
"vc14" -
|
"vc14" -
|
||||||
"vc141" -
|
"vc141" -
|
||||||
"vc142" { OS:MKVC $anOutDir $aModules $theSolution $theFormat $isUWP}
|
"vc142" -
|
||||||
|
"vclang" { OS:MKVC $anOutDir $aModules $theSolution $theFormat $isUWP}
|
||||||
"cbp" { OS:MKCBP $anOutDir $aModules $theSolution $thePlatform $theCmpl }
|
"cbp" { OS:MKCBP $anOutDir $aModules $theSolution $thePlatform $theCmpl }
|
||||||
"xcd" {
|
"xcd" {
|
||||||
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000"
|
||||||
@ -984,7 +986,8 @@ proc osutils:vcsolution:header { vcversion } {
|
|||||||
append var \
|
append var \
|
||||||
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
||||||
"# Visual Studio 2013\n"
|
"# Visual Studio 2013\n"
|
||||||
} elseif { "$vcversion" == "vc14" || "$vcversion" == "vc141" || "$vcversion" == "vc142" } {
|
} elseif { "$vcversion" == "vc14" || "$vcversion" == "vc141" ||
|
||||||
|
"$vcversion" == "vc142" || "$vcversion" == "vclang" } {
|
||||||
append var \
|
append var \
|
||||||
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
"Microsoft Visual Studio Solution File, Format Version 12.00\n" \
|
||||||
"# Visual Studio 14\n"
|
"# Visual Studio 14\n"
|
||||||
@ -1225,6 +1228,9 @@ proc osutils:vcproj:readtemplate {theVcVer isUWP isExec} {
|
|||||||
} elseif { $theVcVer == "vc142" } {
|
} elseif { $theVcVer == "vc142" } {
|
||||||
set aVCRTVer "vc14"
|
set aVCRTVer "vc14"
|
||||||
set aToolset "v142"
|
set aToolset "v142"
|
||||||
|
} elseif { $theVcVer == "vclang" } {
|
||||||
|
set aVCRTVer "vc14"
|
||||||
|
set aToolset "ClangCL"
|
||||||
}
|
}
|
||||||
|
|
||||||
set what "$theVcVer"
|
set what "$theVcVer"
|
||||||
|
@ -77,6 +77,9 @@ if "%VCVER:~-4%" == "-uwp" (
|
|||||||
set VCLIB=%VCLIB%-uwp
|
set VCLIB=%VCLIB%-uwp
|
||||||
set VCPROP=Universal
|
set VCPROP=Universal
|
||||||
)
|
)
|
||||||
|
if "%VCFMT%" == "vclang" (
|
||||||
|
set VCLIB=vc14
|
||||||
|
)
|
||||||
rem echo VCVER=%VCVER% VCFMT=%VCFMT% VCLIB=%VCLIB% VCPROP=%VCPROP%
|
rem echo VCVER=%VCVER% VCFMT=%VCFMT% VCLIB=%VCLIB% VCPROP=%VCPROP%
|
||||||
|
|
||||||
rem ----- Parsing of Visual Studio platform -----
|
rem ----- Parsing of Visual Studio platform -----
|
||||||
@ -106,6 +109,10 @@ if not "%DevEnvDir%" == "" (
|
|||||||
for /f "usebackq delims=" %%i in (`vswhere.exe -version "[16.0,16.99]" -latest -requires Microsoft.VisualStudio.Workload.%VCPROP% -property installationPath`) do (
|
for /f "usebackq delims=" %%i in (`vswhere.exe -version "[16.0,16.99]" -latest -requires Microsoft.VisualStudio.Workload.%VCPROP% -property installationPath`) do (
|
||||||
set "DevEnvDir=%%i\Common7\IDE\"
|
set "DevEnvDir=%%i\Common7\IDE\"
|
||||||
)
|
)
|
||||||
|
) else if /I "%VCFMT%" == "vclang" (
|
||||||
|
for /f "usebackq delims=" %%i in (`vswhere.exe -version "[16.0,16.99]" -latest -requires Microsoft.VisualStudio.Workload.%VCPROP% -property installationPath`) do (
|
||||||
|
set "DevEnvDir=%%i\Common7\IDE\"
|
||||||
|
)
|
||||||
) else if /I "%VCFMT%" == "gcc" (
|
) else if /I "%VCFMT%" == "gcc" (
|
||||||
rem MinGW
|
rem MinGW
|
||||||
) else (
|
) else (
|
||||||
@ -118,6 +125,7 @@ if not "%DevEnvDir%" == "" (
|
|||||||
echo vc14 = VS 2015
|
echo vc14 = VS 2015
|
||||||
echo vc141 = VS 2017
|
echo vc141 = VS 2017
|
||||||
echo vc142 = VS 2019
|
echo vc142 = VS 2019
|
||||||
|
echo vclang = VS 2019 with ClangCL toolset
|
||||||
exit /B
|
exit /B
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -147,6 +155,11 @@ if /I "%VCFMT%" == "vc9" (
|
|||||||
set "VCVARS=%%i\VC\Auxiliary\Build\vcvarsall.bat"
|
set "VCVARS=%%i\VC\Auxiliary\Build\vcvarsall.bat"
|
||||||
)
|
)
|
||||||
set "VCPlatformToolSet=v142"
|
set "VCPlatformToolSet=v142"
|
||||||
|
) else if /I "%VCFMT%" == "vclang" (
|
||||||
|
for /f "usebackq delims=" %%i in (`vswhere.exe -version "[16.0,16.99]" -latest -requires Microsoft.VisualStudio.Workload.%VCPROP% -property installationPath`) do (
|
||||||
|
set "VCVARS=%%i\VC\Auxiliary\Build\vcvarsall.bat"
|
||||||
|
)
|
||||||
|
set "VCPlatformToolSet=ClangCL"
|
||||||
) else if /I "%VCFMT%" == "gcc" (
|
) else if /I "%VCFMT%" == "gcc" (
|
||||||
rem MinGW
|
rem MinGW
|
||||||
) else (
|
) else (
|
||||||
|
@ -210,7 +210,7 @@ for which OCCT is certified to work.
|
|||||||
|
|
||||||
| OS | Compiler |
|
| OS | Compiler |
|
||||||
| --------- | ----------- |
|
| --------- | ----------- |
|
||||||
| Windows | Microsoft Visual Studio: 2008 SP1, 2010 SP1, 2012 Update 4, 2013 Update 5, 2015 Update 3, 2017 <sup>1</sup>, 2019 <br> GCC 4.3+ (Mingw-w64)|
|
| Windows | Microsoft Visual Studio: 2008 SP1, 2010 SP1, 2012 Update 4, 2013 Update 5, 2015 Update 3, 2017 <sup>1</sup>, 2019 <br>, LLVM (ClangCL), GCC 4.3+ (Mingw-w64)|
|
||||||
| Linux | GNU gcc 4.3+ <br> LLVM CLang 3.6+ |
|
| Linux | GNU gcc 4.3+ <br> LLVM CLang 3.6+ |
|
||||||
| OS X / macOS | XCode 6 or newer |
|
| OS X / macOS | XCode 6 or newer |
|
||||||
| Android | NDK r10, GNU gcc 4.8 or newer |
|
| Android | NDK r10, GNU gcc 4.8 or newer |
|
||||||
|
@ -16,12 +16,8 @@
|
|||||||
#define AdvApp2Var_SysBase_HeaderFile
|
#define AdvApp2Var_SysBase_HeaderFile
|
||||||
|
|
||||||
#include <Standard_Macro.hxx>
|
#include <Standard_Macro.hxx>
|
||||||
|
#include <Standard_TypeDef.hxx>
|
||||||
#include <AdvApp2Var_Data_f2c.hxx>
|
#include <AdvApp2Var_Data_f2c.hxx>
|
||||||
#if _MSC_VER
|
|
||||||
#include <stddef.h>
|
|
||||||
#else
|
|
||||||
#include <stdint.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
class AdvApp2Var_SysBase {
|
class AdvApp2Var_SysBase {
|
||||||
public:
|
public:
|
||||||
|
@ -62,7 +62,7 @@ public:
|
|||||||
BVH_Object() {}
|
BVH_Object() {}
|
||||||
|
|
||||||
//! Releases resources of geometric object.
|
//! Releases resources of geometric object.
|
||||||
virtual ~BVH_Object() = 0;
|
virtual ~BVH_Object() {}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -71,14 +71,4 @@ public:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ~BVH_Object
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
template<class T, int N>
|
|
||||||
BVH_Object<T, N>::~BVH_Object()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // _BVH_Object_Header
|
#endif // _BVH_Object_Header
|
||||||
|
@ -44,7 +44,7 @@ public:
|
|||||||
myNumOfThreads (theNumOfThreads) {}
|
myNumOfThreads (theNumOfThreads) {}
|
||||||
|
|
||||||
//! Releases resources of BVH queue based builder.
|
//! Releases resources of BVH queue based builder.
|
||||||
virtual ~BVH_QueueBuilder() = 0;
|
virtual ~BVH_QueueBuilder() {}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -288,14 +288,4 @@ void BVH_QueueBuilder<T, N>::Build (BVH_Set<T, N>* theSet,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ~BVH_QueueBuilder
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
template<class T, int N>
|
|
||||||
BVH_QueueBuilder<T, N>::~BVH_QueueBuilder()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // _BVH_QueueBuilder_Header
|
#endif // _BVH_QueueBuilder_Header
|
||||||
|
@ -35,7 +35,7 @@ public:
|
|||||||
BVH_Set() {}
|
BVH_Set() {}
|
||||||
|
|
||||||
//! Releases resources of set of objects.
|
//! Releases resources of set of objects.
|
||||||
virtual ~BVH_Set() = 0;
|
virtual ~BVH_Set() {}
|
||||||
|
|
||||||
//! Returns AABB of the entire set of objects.
|
//! Returns AABB of the entire set of objects.
|
||||||
virtual BVH_Box<T, N> Box() const
|
virtual BVH_Box<T, N> Box() const
|
||||||
@ -67,14 +67,4 @@ public:
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// =======================================================================
|
|
||||||
// function : ~BVH_Set
|
|
||||||
// purpose :
|
|
||||||
// =======================================================================
|
|
||||||
template<class T, int N>
|
|
||||||
BVH_Set<T, N>::~BVH_Set()
|
|
||||||
{
|
|
||||||
//
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // _BVH_Set_Header
|
#endif // _BVH_Set_Header
|
||||||
|
@ -223,7 +223,7 @@ void BinLDrivers_DocumentStorageDriver::WriteSubTree
|
|||||||
// Write attributes
|
// Write attributes
|
||||||
TDF_AttributeIterator itAtt (theLabel);
|
TDF_AttributeIterator itAtt (theLabel);
|
||||||
for ( ; itAtt.More() && theOS; itAtt.Next()) {
|
for ( ; itAtt.More() && theOS; itAtt.Next()) {
|
||||||
const Handle(TDF_Attribute)& tAtt = itAtt.Value();
|
const Handle(TDF_Attribute) tAtt = itAtt.Value();
|
||||||
const Handle(Standard_Type)& aType = tAtt->DynamicType();
|
const Handle(Standard_Type)& aType = tAtt->DynamicType();
|
||||||
// Get type ID and driver
|
// Get type ID and driver
|
||||||
Handle(BinMDF_ADriver) aDriver;
|
Handle(BinMDF_ADriver) aDriver;
|
||||||
|
@ -57,6 +57,10 @@ static int yywrap()
|
|||||||
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
||||||
#if defined(__INTEL_COMPILER)
|
#if defined(__INTEL_COMPILER)
|
||||||
#pragma warning(disable:177 1786 1736)
|
#pragma warning(disable:177 1786 1736)
|
||||||
|
#elif defined(__clang__)
|
||||||
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||||
|
#pragma GCC diagnostic ignored "-Winconsistent-dllimport"
|
||||||
|
#pragma GCC diagnostic ignored "-Wunneeded-internal-declaration"
|
||||||
#else
|
#else
|
||||||
#pragma warning(disable:4131 4244 4273 4127 4267)
|
#pragma warning(disable:4131 4244 4273 4127 4267)
|
||||||
#endif
|
#endif
|
||||||
|
@ -2106,6 +2106,10 @@ static int yywrap()
|
|||||||
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
||||||
#if defined(__INTEL_COMPILER)
|
#if defined(__INTEL_COMPILER)
|
||||||
#pragma warning(disable:177 1786 1736)
|
#pragma warning(disable:177 1786 1736)
|
||||||
|
#elif defined(__clang__)
|
||||||
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||||
|
#pragma GCC diagnostic ignored "-Winconsistent-dllimport"
|
||||||
|
#pragma GCC diagnostic ignored "-Wunneeded-internal-declaration"
|
||||||
#else
|
#else
|
||||||
#pragma warning(disable:4131 4244 4273 4127 4267)
|
#pragma warning(disable:4131 4244 4273 4127 4267)
|
||||||
#endif
|
#endif
|
||||||
|
@ -252,13 +252,13 @@ Standard_Integer GenerateId()
|
|||||||
// Function : WClass
|
// Function : WClass
|
||||||
// Purpose :
|
// Purpose :
|
||||||
//=========================================================
|
//=========================================================
|
||||||
const Handle(Standard_Transient)& IVtkDraw::WClass()
|
const Handle(WNT_WClass)& IVtkDraw::WClass()
|
||||||
{
|
{
|
||||||
static Handle(Standard_Transient) aWindowClass;
|
static Handle(WNT_WClass) aWindowClass;
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (aWindowClass.IsNull())
|
if (aWindowClass.IsNull())
|
||||||
{
|
{
|
||||||
aWindowClass = new WNT_WClass ("GWVTK_Class", DefWindowProc,
|
aWindowClass = new WNT_WClass ("GWVTK_Class", NULL,
|
||||||
CS_VREDRAW | CS_HREDRAW, 0, 0,
|
CS_VREDRAW | CS_HREDRAW, 0, 0,
|
||||||
::LoadCursorW (NULL, IDC_ARROW));
|
::LoadCursorW (NULL, IDC_ARROW));
|
||||||
}
|
}
|
||||||
@ -305,8 +305,7 @@ void IVtkDraw::ViewerInit (Standard_Integer thePxLeft,
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (GetWindow().IsNull())
|
if (GetWindow().IsNull())
|
||||||
{
|
{
|
||||||
GetWindow() = new WNT_Window ("IVtkTest",
|
GetWindow() = new WNT_Window ("IVtkTest", WClass(),
|
||||||
Handle(WNT_WClass)::DownCast (WClass()),
|
|
||||||
WS_OVERLAPPEDWINDOW,
|
WS_OVERLAPPEDWINDOW,
|
||||||
aPxLeft, aPxTop,
|
aPxLeft, aPxTop,
|
||||||
aPxWidth, aPxHeight,
|
aPxWidth, aPxHeight,
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include <Standard_Macro.hxx>
|
#include <Standard_Macro.hxx>
|
||||||
|
|
||||||
class Draw_Interpretor;
|
class Draw_Interpretor;
|
||||||
|
class WNT_WClass;
|
||||||
|
|
||||||
class IVtkDraw
|
class IVtkDraw
|
||||||
{
|
{
|
||||||
@ -37,7 +38,7 @@ public:
|
|||||||
Standard_EXPORT static void Commands (Draw_Interpretor& theCommands);
|
Standard_EXPORT static void Commands (Draw_Interpretor& theCommands);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Standard_EXPORT static const Handle(Standard_Transient)& WClass();
|
Standard_EXPORT static const Handle(WNT_WClass)& WClass();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -187,6 +187,10 @@ void IVtkDraw_Interactor::Initialize()
|
|||||||
this->Size[1] = aSize[1];
|
this->Size[1] = aSize[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
LRESULT CALLBACK WndProc(HWND theHWnd, UINT theUMsg, WPARAM theWParam, LPARAM theLParam);
|
||||||
|
#endif
|
||||||
|
|
||||||
//===========================================================
|
//===========================================================
|
||||||
// Function : Enable
|
// Function : Enable
|
||||||
// Purpose :
|
// Purpose :
|
||||||
|
@ -181,7 +181,7 @@ Handle(Image_PixMap) Image_Texture::loadImageOffset (const TCollection_AsciiStri
|
|||||||
// ================================================================
|
// ================================================================
|
||||||
TCollection_AsciiString Image_Texture::ProbeImageFileFormat() const
|
TCollection_AsciiString Image_Texture::ProbeImageFileFormat() const
|
||||||
{
|
{
|
||||||
static const int THE_PROBE_SIZE = 20;
|
static const Standard_Size THE_PROBE_SIZE = 20;
|
||||||
char aBuffer[THE_PROBE_SIZE];
|
char aBuffer[THE_PROBE_SIZE];
|
||||||
if (!myBuffer.IsNull())
|
if (!myBuffer.IsNull())
|
||||||
{
|
{
|
||||||
|
@ -75,7 +75,7 @@ protected:
|
|||||||
{
|
{
|
||||||
Standard_Size myValue;
|
Standard_Size myValue;
|
||||||
public:
|
public:
|
||||||
AlignedSize(){}
|
AlignedSize() : myValue(0) {}
|
||||||
AlignedSize(const Standard_Size theValue)
|
AlignedSize(const Standard_Size theValue)
|
||||||
: myValue((theValue + Align - 1) & ~(Align - 1)) {}
|
: myValue((theValue + Align - 1) & ~(Align - 1)) {}
|
||||||
operator Standard_Size() const {return myValue;}
|
operator Standard_Size() const {return myValue;}
|
||||||
@ -86,7 +86,7 @@ protected:
|
|||||||
{
|
{
|
||||||
Standard_Byte* myValue;
|
Standard_Byte* myValue;
|
||||||
public:
|
public:
|
||||||
AlignedPtr(){}
|
AlignedPtr() : myValue(0) {}
|
||||||
AlignedPtr(const Standard_Address theValue)
|
AlignedPtr(const Standard_Address theValue)
|
||||||
: myValue((Standard_Byte*)((Standard_Size)theValue & ~(Align - 1))) {}
|
: myValue((Standard_Byte*)((Standard_Size)theValue & ~(Align - 1))) {}
|
||||||
operator Standard_Address () const {return myValue;}
|
operator Standard_Address () const {return myValue;}
|
||||||
|
@ -190,8 +190,8 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// Copy constructor and assignment operator are private thus not accessible
|
// Copy constructor and assignment operator are private thus not accessible
|
||||||
NCollection_SparseArrayBase (const NCollection_SparseArrayBase&) {}
|
NCollection_SparseArrayBase(const NCollection_SparseArrayBase&);
|
||||||
void operator = (const NCollection_SparseArrayBase&) {}
|
void operator = (const NCollection_SparseArrayBase&);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Object life
|
// Object life
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void _osd_wnt_set_error (OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error (OSD_Error&, Standard_Integer, ... );
|
||||||
#else
|
#else
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -193,7 +193,7 @@ Standard_Integer OSD_DirectoryIterator::Error()const{
|
|||||||
|
|
||||||
#define _FD ( ( PWIN32_FIND_DATAW )myData )
|
#define _FD ( ( PWIN32_FIND_DATAW )myData )
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error ( OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
OSD_DirectoryIterator :: OSD_DirectoryIterator (
|
OSD_DirectoryIterator :: OSD_DirectoryIterator (
|
||||||
const OSD_Path& where,
|
const OSD_Path& where,
|
||||||
@ -318,7 +318,12 @@ Standard_Integer OSD_DirectoryIterator :: Error () const {
|
|||||||
} // end OSD_DirectoryIterator :: Error
|
} // end OSD_DirectoryIterator :: Error
|
||||||
|
|
||||||
// For compatibility with UNIX version
|
// For compatibility with UNIX version
|
||||||
OSD_DirectoryIterator::OSD_DirectoryIterator() {}
|
OSD_DirectoryIterator::OSD_DirectoryIterator()
|
||||||
|
: myFlag(false),
|
||||||
|
myHandle(0),
|
||||||
|
myData(0),
|
||||||
|
myFirstCall(Standard_False)
|
||||||
|
{}
|
||||||
|
|
||||||
void OSD_DirectoryIterator::Initialize(
|
void OSD_DirectoryIterator::Initialize(
|
||||||
const OSD_Path&,
|
const OSD_Path&,
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
void _osd_wnt_set_error (OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error (OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
static TCollection_AsciiString _osd_wnt_set_disk_name (const OSD_Path& thePath)
|
static TCollection_AsciiString _osd_wnt_set_disk_name (const OSD_Path& thePath)
|
||||||
{
|
{
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
#define OPEN_OLD 1
|
#define OPEN_OLD 1
|
||||||
#define OPEN_APPEND 2
|
#define OPEN_APPEND 2
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error (OSD_Error&, Standard_Integer, ...);
|
||||||
|
|
||||||
#ifndef OCCT_UWP
|
#ifndef OCCT_UWP
|
||||||
PSECURITY_DESCRIPTOR __fastcall _osd_wnt_protection_to_sd ( const OSD_Protection&, BOOL, const wchar_t* );
|
PSECURITY_DESCRIPTOR __fastcall _osd_wnt_protection_to_sd ( const OSD_Protection&, BOOL, const wchar_t* );
|
||||||
|
@ -267,7 +267,7 @@ Standard_Integer OSD_FileIterator::Error()const{
|
|||||||
|
|
||||||
#define _FD ( ( PWIN32_FIND_DATAW )myData )
|
#define _FD ( ( PWIN32_FIND_DATAW )myData )
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error ( OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
OSD_FileIterator :: OSD_FileIterator (
|
OSD_FileIterator :: OSD_FileIterator (
|
||||||
const OSD_Path& where,
|
const OSD_Path& where,
|
||||||
@ -392,7 +392,12 @@ Standard_Integer OSD_FileIterator :: Error () const {
|
|||||||
} // end OSD_FileIterator :: Error
|
} // end OSD_FileIterator :: Error
|
||||||
|
|
||||||
// For compatibility with UNIX version
|
// For compatibility with UNIX version
|
||||||
OSD_FileIterator::OSD_FileIterator() {}
|
OSD_FileIterator::OSD_FileIterator()
|
||||||
|
: myFlag(Standard_False),
|
||||||
|
myHandle(0),
|
||||||
|
myData(0),
|
||||||
|
myFirstCall(Standard_False)
|
||||||
|
{}
|
||||||
|
|
||||||
void OSD_FileIterator::Initialize(
|
void OSD_FileIterator::Initialize(
|
||||||
const OSD_Path&,
|
const OSD_Path&,
|
||||||
|
@ -393,7 +393,7 @@ BOOL __fastcall _osd_wnt_sd_to_protection (
|
|||||||
#endif
|
#endif
|
||||||
Standard_Integer __fastcall _get_file_type ( Standard_CString, HANDLE );
|
Standard_Integer __fastcall _get_file_type ( Standard_CString, HANDLE );
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error ( OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
static BOOL __fastcall _get_file_time (const wchar_t*, LPSYSTEMTIME, BOOL );
|
static BOOL __fastcall _get_file_time (const wchar_t*, LPSYSTEMTIME, BOOL );
|
||||||
static void __fastcall _test_raise ( TCollection_AsciiString, Standard_CString );
|
static void __fastcall _test_raise ( TCollection_AsciiString, Standard_CString );
|
||||||
@ -825,7 +825,7 @@ Standard_Integer OSD_FileNode::Error () const {
|
|||||||
|
|
||||||
} // end OSD_FileNode :: Error
|
} // end OSD_FileNode :: Error
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error& err, OSD_WhoAmI who, ... ) {
|
void _osd_wnt_set_error ( OSD_Error& err, Standard_Integer who, ... ) {
|
||||||
|
|
||||||
DWORD errCode;
|
DWORD errCode;
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@ Standard_Integer OSD_Host::Error()const{
|
|||||||
#pragma comment( lib, "WSOCK32.LIB" )
|
#pragma comment( lib, "WSOCK32.LIB" )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error ( OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
static BOOL fInit = FALSE;
|
static BOOL fInit = FALSE;
|
||||||
static TCollection_AsciiString hostName;
|
static TCollection_AsciiString hostName;
|
||||||
@ -218,11 +218,7 @@ OSD_Host :: OSD_Host () {
|
|||||||
ZeroMemory (szHostName, sizeof(char) * (MAX_COMPUTERNAME_LENGTH + 1));
|
ZeroMemory (szHostName, sizeof(char) * (MAX_COMPUTERNAME_LENGTH + 1));
|
||||||
|
|
||||||
// suppress GetVersionEx() deprecation warning
|
// suppress GetVersionEx() deprecation warning
|
||||||
#if defined(__INTEL_COMPILER)
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
||||||
#pragma warning(disable : 1478)
|
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
#pragma warning(disable : 4996)
|
|
||||||
#endif
|
|
||||||
if (!GetVersionExW (&osVerInfo))
|
if (!GetVersionExW (&osVerInfo))
|
||||||
{
|
{
|
||||||
_osd_wnt_set_error (myError, OSD_WHost);
|
_osd_wnt_set_error (myError, OSD_WHost);
|
||||||
@ -236,9 +232,7 @@ OSD_Host :: OSD_Host () {
|
|||||||
ms.dwLength = sizeof(MEMORYSTATUS);
|
ms.dwLength = sizeof(MEMORYSTATUS);
|
||||||
GlobalMemoryStatus (&ms);
|
GlobalMemoryStatus (&ms);
|
||||||
} // end else
|
} // end else
|
||||||
#ifdef _MSC_VER
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
||||||
#pragma warning(default : 4996)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if ( !Failed () ) {
|
if ( !Failed () ) {
|
||||||
|
|
||||||
|
@ -21,10 +21,12 @@
|
|||||||
#include <OSD_ThreadPool.hxx>
|
#include <OSD_ThreadPool.hxx>
|
||||||
#include <Standard_ProgramError.hxx>
|
#include <Standard_ProgramError.hxx>
|
||||||
|
|
||||||
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
||||||
#include <tbb/parallel_for.h>
|
#include <tbb/parallel_for.h>
|
||||||
#include <tbb/parallel_for_each.h>
|
#include <tbb/parallel_for_each.h>
|
||||||
#include <tbb/blocked_range.h>
|
#include <tbb/blocked_range.h>
|
||||||
#include <tbb/task_scheduler_init.h>
|
#include <tbb/task_scheduler_init.h>
|
||||||
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : forEachExternal
|
//function : forEachExternal
|
||||||
|
@ -882,8 +882,9 @@ void OSD_Path::SetExtension(const TCollection_AsciiString& aName){
|
|||||||
static void __fastcall _test_raise ( OSD_SysType, Standard_CString );
|
static void __fastcall _test_raise ( OSD_SysType, Standard_CString );
|
||||||
static void __fastcall _remove_dup ( TCollection_AsciiString& );
|
static void __fastcall _remove_dup ( TCollection_AsciiString& );
|
||||||
|
|
||||||
OSD_Path :: OSD_Path () {
|
OSD_Path :: OSD_Path ()
|
||||||
|
: myUNCFlag(Standard_False), mySysDep(OSD_WindowsNT)
|
||||||
|
{
|
||||||
} // end constructor ( 1 )
|
} // end constructor ( 1 )
|
||||||
|
|
||||||
OSD_Path :: OSD_Path (
|
OSD_Path :: OSD_Path (
|
||||||
|
@ -187,7 +187,7 @@ Standard_Integer OSD_Process::Error()const{
|
|||||||
//------------------- WNT Sources of OSD_Path ---------------------------
|
//------------------- WNT Sources of OSD_Path ---------------------------
|
||||||
//------------------------------------------------------------------------
|
//------------------------------------------------------------------------
|
||||||
|
|
||||||
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
|
void _osd_wnt_set_error ( OSD_Error&, Standard_Integer, ... );
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : OSD_Process
|
// function : OSD_Process
|
||||||
|
@ -52,10 +52,10 @@ static inline Standard_Real GetWallClockTime ()
|
|||||||
LARGE_INTEGER time;
|
LARGE_INTEGER time;
|
||||||
return isOk && QueryPerformanceCounter (&time) ?
|
return isOk && QueryPerformanceCounter (&time) ?
|
||||||
(Standard_Real)time.QuadPart / (Standard_Real)freq.QuadPart :
|
(Standard_Real)time.QuadPart / (Standard_Real)freq.QuadPart :
|
||||||
#ifndef OCCT_UWP
|
#if defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600)
|
||||||
0.001 * GetTickCount();
|
|
||||||
#else
|
|
||||||
0.001 * GetTickCount64();
|
0.001 * GetTickCount64();
|
||||||
|
#else
|
||||||
|
0.001 * GetTickCount();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2174,7 +2174,7 @@ static int StackOverflow (int i = -1)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
// this code does not work with optimize mode on Windows
|
// this code does not work with optimize mode on Windows
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) && !defined(__clang__)
|
||||||
#pragma optimize( "", off )
|
#pragma optimize( "", off )
|
||||||
#endif
|
#endif
|
||||||
static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
|
static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
|
||||||
@ -2488,7 +2488,7 @@ static Standard_Integer OCC30775 (Draw_Interpretor& theDI, Standard_Integer theN
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) && !defined(__clang__)
|
||||||
#pragma optimize( "", on )
|
#pragma optimize( "", on )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -57,9 +57,11 @@
|
|||||||
#include <Standard_Atomic.hxx>
|
#include <Standard_Atomic.hxx>
|
||||||
|
|
||||||
#ifdef HAVE_TBB
|
#ifdef HAVE_TBB
|
||||||
|
Standard_DISABLE_DEPRECATION_WARNINGS
|
||||||
#include <tbb/parallel_for.h>
|
#include <tbb/parallel_for.h>
|
||||||
#include <tbb/parallel_for_each.h>
|
#include <tbb/parallel_for_each.h>
|
||||||
#include <tbb/blocked_range.h>
|
#include <tbb/blocked_range.h>
|
||||||
|
Standard_ENABLE_DEPRECATION_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
@ -44,7 +44,7 @@ namespace
|
|||||||
const ColorInteger theColorComponentBase)
|
const ColorInteger theColorComponentBase)
|
||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (theColorComponentBase >= 2,
|
Standard_ASSERT_RETURN (theColorComponentBase >= 2,
|
||||||
__FUNCTION__ ": 'theColorComponentBase' must be greater than 1.",
|
"'theColorComponentBase' must be greater than 1.",
|
||||||
0.0f);
|
0.0f);
|
||||||
const ColorInteger aColorComponentMaxValue = theColorComponentBase - 1;
|
const ColorInteger aColorComponentMaxValue = theColorComponentBase - 1;
|
||||||
const ColorInteger aColorComponentAsInteger = theColorInteger % theColorComponentBase;
|
const ColorInteger aColorComponentAsInteger = theColorInteger % theColorComponentBase;
|
||||||
@ -67,7 +67,7 @@ namespace
|
|||||||
Quantity_ColorRGBA& theColor)
|
Quantity_ColorRGBA& theColor)
|
||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (theColorComponentBase >= 2,
|
Standard_ASSERT_RETURN (theColorComponentBase >= 2,
|
||||||
__FUNCTION__ ": 'theColorComponentBase' must be greater than 1.",
|
"'theColorComponentBase' must be greater than 1.",
|
||||||
0.0f);
|
0.0f);
|
||||||
NCollection_Vec4<float> aColor (1.0f);
|
NCollection_Vec4<float> aColor (1.0f);
|
||||||
if (hasAlphaComponent)
|
if (hasAlphaComponent)
|
||||||
|
@ -202,6 +202,8 @@ inline Standard_ErrorHandler::Callback::Callback ()
|
|||||||
}
|
}
|
||||||
inline Standard_ErrorHandler::Callback::~Callback ()
|
inline Standard_ErrorHandler::Callback::~Callback ()
|
||||||
{
|
{
|
||||||
|
(void)myHandler;
|
||||||
|
(void)myPrev;
|
||||||
}
|
}
|
||||||
inline void Standard_ErrorHandler::Callback::RegisterCallback ()
|
inline void Standard_ErrorHandler::Callback::RegisterCallback ()
|
||||||
{
|
{
|
||||||
|
@ -147,14 +147,14 @@
|
|||||||
#if defined(__ICL) || defined (__INTEL_COMPILER)
|
#if defined(__ICL) || defined (__INTEL_COMPILER)
|
||||||
#define Standard_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
|
#define Standard_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:1478))
|
||||||
#define Standard_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
|
#define Standard_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
|
||||||
#elif defined(_MSC_VER)
|
|
||||||
#define Standard_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
|
|
||||||
#define Standard_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
|
|
||||||
#elif (defined(__GNUC__) && __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) || defined(__clang__)
|
#elif (defined(__GNUC__) && __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) || defined(__clang__)
|
||||||
// available since at least gcc 4.2 (maybe earlier), however only gcc 4.6+ supports this pragma inside the function body
|
// available since at least gcc 4.2 (maybe earlier), however only gcc 4.6+ supports this pragma inside the function body
|
||||||
// CLang also supports this gcc syntax (in addition to "clang diagnostic ignored")
|
// CLang also supports this gcc syntax (in addition to "clang diagnostic ignored")
|
||||||
#define Standard_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
|
#define Standard_DISABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
|
||||||
#define Standard_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
|
#define Standard_ENABLE_DEPRECATION_WARNINGS _Pragma("GCC diagnostic warning \"-Wdeprecated-declarations\"")
|
||||||
|
#elif defined(_MSC_VER)
|
||||||
|
#define Standard_DISABLE_DEPRECATION_WARNINGS __pragma(warning(push)) __pragma(warning(disable:4996))
|
||||||
|
#define Standard_ENABLE_DEPRECATION_WARNINGS __pragma(warning(pop))
|
||||||
#else
|
#else
|
||||||
#define Standard_DISABLE_DEPRECATION_WARNINGS
|
#define Standard_DISABLE_DEPRECATION_WARNINGS
|
||||||
#define Standard_ENABLE_DEPRECATION_WARNINGS
|
#define Standard_ENABLE_DEPRECATION_WARNINGS
|
||||||
|
@ -552,6 +552,10 @@ void rec_typarg(int argtype);
|
|||||||
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
||||||
#if defined(__INTEL_COMPILER)
|
#if defined(__INTEL_COMPILER)
|
||||||
#pragma warning(disable:177 1786 1736)
|
#pragma warning(disable:177 1786 1736)
|
||||||
|
#elif defined(__clang__)
|
||||||
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||||
|
#pragma GCC diagnostic ignored "-Winconsistent-dllimport"
|
||||||
|
#pragma GCC diagnostic ignored "-Wunneeded-internal-declaration"
|
||||||
#else
|
#else
|
||||||
#pragma warning(disable:4131 4244 4273 4267 4127)
|
#pragma warning(disable:4131 4244 4273 4267 4127)
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,6 +47,11 @@ void rec_typarg(int argtype);
|
|||||||
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
// Note that Intel compiler also defines _MSC_VER but has different warning ids
|
||||||
#if defined(__INTEL_COMPILER)
|
#if defined(__INTEL_COMPILER)
|
||||||
#pragma warning(disable:177 1786 1736)
|
#pragma warning(disable:177 1786 1736)
|
||||||
|
#elif defined(__clang__)
|
||||||
|
#pragma GCC diagnostic ignored "-Wunused-function"
|
||||||
|
#pragma GCC diagnostic ignored "-Winconsistent-dllimport"
|
||||||
|
#pragma GCC diagnostic ignored "-Wunneeded-internal-declaration"
|
||||||
|
#else
|
||||||
#else
|
#else
|
||||||
#pragma warning(disable:4131 4244 4273 4267 4127)
|
#pragma warning(disable:4131 4244 4273 4267 4127)
|
||||||
#endif
|
#endif
|
||||||
|
@ -205,6 +205,9 @@ void Storage_BucketOfPersistent::Append(const Handle(Standard_Persistent)& sp)
|
|||||||
|
|
||||||
Storage_BucketIterator::Storage_BucketIterator
|
Storage_BucketIterator::Storage_BucketIterator
|
||||||
(Storage_BucketOfPersistent* aBucketManager)
|
(Storage_BucketOfPersistent* aBucketManager)
|
||||||
|
: myBucket(0), myCurrentBucket(0),
|
||||||
|
myCurrentBucketIndex(0), myCurrentIndex(0),
|
||||||
|
myBucketNumber(0), myMoreObject(Standard_False)
|
||||||
{
|
{
|
||||||
if (aBucketManager) {
|
if (aBucketManager) {
|
||||||
myBucket = aBucketManager;
|
myBucket = aBucketManager;
|
||||||
@ -214,7 +217,6 @@ Storage_BucketIterator::Storage_BucketIterator
|
|||||||
myCurrentIndex = 0;
|
myCurrentIndex = 0;
|
||||||
myMoreObject = Standard_True;
|
myMoreObject = Standard_True;
|
||||||
}
|
}
|
||||||
else myMoreObject = Standard_False;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
@ -34,6 +34,7 @@ class V3d_View;
|
|||||||
class V3d_Viewer;
|
class V3d_Viewer;
|
||||||
class ViewerTest_EventManager;
|
class ViewerTest_EventManager;
|
||||||
class TopoDS_Shape;
|
class TopoDS_Shape;
|
||||||
|
class WNT_WClass;
|
||||||
|
|
||||||
class ViewerTest
|
class ViewerTest
|
||||||
{
|
{
|
||||||
@ -257,7 +258,7 @@ private:
|
|||||||
//! Ctrl+MB2 for pan, etc) and keyboard shortcuts.
|
//! Ctrl+MB2 for pan, etc) and keyboard shortcuts.
|
||||||
//! This method is relevant for MS Windows only and respectively
|
//! This method is relevant for MS Windows only and respectively
|
||||||
//! returns WNT_WClass handle.
|
//! returns WNT_WClass handle.
|
||||||
static const Handle(Standard_Transient)& WClass();
|
static const Handle(WNT_WClass)& WClass();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _ViewerTest_HeaderFile
|
#endif // _ViewerTest_HeaderFile
|
||||||
|
@ -305,7 +305,7 @@ bool ViewerTest_CmdParser::Arg (const std::string& theOptionName,
|
|||||||
std::string& theOptionArgument) const
|
std::string& theOptionArgument) const
|
||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
||||||
__FUNCTION__ ": 'theArgumentIndex' must be greater than or equal to zero.",
|
"'theArgumentIndex' must be greater than or equal to zero.",
|
||||||
false);
|
false);
|
||||||
ViewerTest_CommandOptionKey anOptionKey = THE_UNNAMED_COMMAND_OPTION_KEY;
|
ViewerTest_CommandOptionKey anOptionKey = THE_UNNAMED_COMMAND_OPTION_KEY;
|
||||||
if (!theOptionName.empty() && !findOptionKey (theOptionName, anOptionKey))
|
if (!theOptionName.empty() && !findOptionKey (theOptionName, anOptionKey))
|
||||||
@ -324,7 +324,7 @@ bool ViewerTest_CmdParser::Arg (const ViewerTest_CommandOptionKey theOptionKey,
|
|||||||
std::string& theOptionArgument) const
|
std::string& theOptionArgument) const
|
||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
||||||
__FUNCTION__ ": 'theArgumentIndex' must be greater than or equal to zero.",
|
"'theArgumentIndex' must be greater than or equal to zero.",
|
||||||
false);
|
false);
|
||||||
std::size_t aUsedOptionIndex = 0;
|
std::size_t aUsedOptionIndex = 0;
|
||||||
if (!findUsedOptionIndex (theOptionKey, aUsedOptionIndex))
|
if (!findUsedOptionIndex (theOptionKey, aUsedOptionIndex))
|
||||||
@ -347,7 +347,7 @@ bool ViewerTest_CmdParser::Arg (const ViewerTest_CommandOptionKey theOptionKey,
|
|||||||
std::string ViewerTest_CmdParser::Arg (const std::string& theOptionName, const Standard_Integer theArgumentIndex) const
|
std::string ViewerTest_CmdParser::Arg (const std::string& theOptionName, const Standard_Integer theArgumentIndex) const
|
||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
Standard_ASSERT_RETURN (theArgumentIndex >= 0,
|
||||||
__FUNCTION__ ": 'theArgumentIndex' must be greater than or equal to zero.",
|
"'theArgumentIndex' must be greater than or equal to zero.",
|
||||||
std::string());
|
std::string());
|
||||||
std::string anOptionArgument;
|
std::string anOptionArgument;
|
||||||
if (!Arg (theOptionName, theArgumentIndex, anOptionArgument))
|
if (!Arg (theOptionName, theArgumentIndex, anOptionArgument))
|
||||||
@ -501,8 +501,8 @@ bool ViewerTest_CmdParser::ArgColor (const ViewerTest_CommandOptionKey theOption
|
|||||||
const RawStringArguments aRawStringArguments = getRawStringArguments (aUsedOptionIndex);
|
const RawStringArguments aRawStringArguments = getRawStringArguments (aUsedOptionIndex);
|
||||||
const Standard_Integer aNumberOfArguments = static_cast<Standard_Integer> (aRawStringArguments.size());
|
const Standard_Integer aNumberOfArguments = static_cast<Standard_Integer> (aRawStringArguments.size());
|
||||||
Standard_ASSERT_RETURN (theArgumentIndex < aNumberOfArguments,
|
Standard_ASSERT_RETURN (theArgumentIndex < aNumberOfArguments,
|
||||||
__FUNCTION__ ": 'theArgumentIndex' must be less than the number of command-line arguments "
|
"'theArgumentIndex' must be less than the number of command-line arguments "
|
||||||
"passed with the option which access key is 'theOptionKey'.",
|
"passed with the option which access key is 'theOptionKey'.",
|
||||||
false);
|
false);
|
||||||
const Standard_Integer aNumberOfAvailableArguments = aNumberOfArguments - theArgumentIndex;
|
const Standard_Integer aNumberOfAvailableArguments = aNumberOfArguments - theArgumentIndex;
|
||||||
TheColor aColor;
|
TheColor aColor;
|
||||||
@ -601,7 +601,7 @@ ViewerTest_CmdParser::RawStringArguments ViewerTest_CmdParser::getRawStringArgum
|
|||||||
{
|
{
|
||||||
Standard_ASSERT_RETURN (
|
Standard_ASSERT_RETURN (
|
||||||
theUsedOptionIndex < myOptionArgumentStorage.size(),
|
theUsedOptionIndex < myOptionArgumentStorage.size(),
|
||||||
__FUNCTION__ ": 'theUsedOptionIndex' must be less than the size of 'myOptionArgumentStorage'.",
|
"'theUsedOptionIndex' must be less than the size of 'myOptionArgumentStorage'.",
|
||||||
RawStringArguments());
|
RawStringArguments());
|
||||||
const OptionArguments& anOptionArguments = myOptionArgumentStorage[theUsedOptionIndex];
|
const OptionArguments& anOptionArguments = myOptionArgumentStorage[theUsedOptionIndex];
|
||||||
return convertToRawStringList (anOptionArguments);
|
return convertToRawStringList (anOptionArguments);
|
||||||
|
@ -1397,9 +1397,9 @@ static LRESULT WINAPI AdvViewerWindowProc(
|
|||||||
//purpose :
|
//purpose :
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
|
|
||||||
const Handle(Standard_Transient)& ViewerTest::WClass()
|
const Handle(WNT_WClass)& ViewerTest::WClass()
|
||||||
{
|
{
|
||||||
static Handle(Standard_Transient) theWClass;
|
static Handle(WNT_WClass) theWClass;
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
if (theWClass.IsNull())
|
if (theWClass.IsNull())
|
||||||
{
|
{
|
||||||
@ -1939,8 +1939,7 @@ TCollection_AsciiString ViewerTest::ViewerInit (const Standard_Integer thePxLeft
|
|||||||
|
|
||||||
// Create window
|
// Create window
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
VT_GetWindow() = new WNT_Window (aTitle.ToCString(),
|
VT_GetWindow() = new WNT_Window (aTitle.ToCString(), WClass(),
|
||||||
Handle(WNT_WClass)::DownCast (WClass()),
|
|
||||||
Draw_VirtualWindows ? WS_POPUP : WS_OVERLAPPEDWINDOW,
|
Draw_VirtualWindows ? WS_POPUP : WS_OVERLAPPEDWINDOW,
|
||||||
aPxLeft, aPxTop,
|
aPxLeft, aPxTop,
|
||||||
aPxWidth, aPxHeight,
|
aPxWidth, aPxHeight,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user