mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
D3DHost_GraphicDriver - new graphic driver providing D3D host for OpenGL workspace. WNT_Window - handle virtual dimensions within virtual window. OpenGl_FrameBuffer::Init() - add protection against 0 dimensions. V3d_View::IsInvalidated() - add method to check view cache validation state. ViewerTest::ViewerInit() - create virtual window without decorations on Windows.
20 lines
634 B
Batchfile
20 lines
634 B
Batchfile
@echo off
|
|
|
|
call "%~dp0..\..\env.bat" %1 %2 %3
|
|
|
|
if NOT DEFINED DXSDK_DIR (
|
|
if "%VCVER%" == "vc9" (
|
|
echo ERROR: DirectX SDK is required in order to build the sample but it is not found in your system. Please install DirectX SDK and retry.
|
|
exit /B
|
|
)
|
|
if "%VCVER%" == "vc10" (
|
|
echo ERROR: DirectX SDK is required in order to build the sample but it is not found in your system. Please install DirectX SDK and retry.
|
|
exit /B
|
|
)
|
|
)
|
|
|
|
if ["%CASDEB%"] == [""] (
|
|
call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Release %~dp0\CSharp_D3D.sln
|
|
) else (
|
|
call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Debug %~dp0\CSharp_D3D.sln
|
|
) |