mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
V3d_Viewer::AddZLayer() has been replaced by V3d_Viewer::InsertLayerBefore() and V3d_Viewer::InsertLayerAfter() methods allowing to specify Layer settings and index of existing layer to insert new one before/after. The behavior of V3d_Viewer::AddZLayer() has been adjusted to append new Layer before Graphic3d_ZLayerId_Top (between Graphic3d_ZLayerId_Default and Graphic3d_ZLayerId_Top). Graphic3d_Layer now provides LayerId() property. Graphic3d_ZLayerSettings has been extended with IsRaytracable() property; Ray-Tracing now processes multiple layers instead of Graphic3d_ZLayerId_Default. Moved some methods from OpenGl_View to the base class Graphic3d_CView.
61 lines
2.2 KiB
C++
61 lines
2.2 KiB
C++
// Created on: 2015-06-10
|
|
// Created by: Kirill Gavrilov
|
|
// Copyright (c) 2015 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 <d3d9.h>
|
|
|
|
#include <D3DHost_GraphicDriver.hxx>
|
|
#include <D3DHost_View.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(D3DHost_GraphicDriver,OpenGl_GraphicDriver)
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma comment (lib, "D3D9.lib")
|
|
#endif
|
|
|
|
// =======================================================================
|
|
// function : D3DHost_GraphicDriver
|
|
// purpose :
|
|
// =======================================================================
|
|
D3DHost_GraphicDriver::D3DHost_GraphicDriver()
|
|
: OpenGl_GraphicDriver (Handle(Aspect_DisplayConnection)(), Standard_True)
|
|
{
|
|
//
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : ~D3DHost_GraphicDriver
|
|
// purpose :
|
|
// =======================================================================
|
|
D3DHost_GraphicDriver::~D3DHost_GraphicDriver()
|
|
{
|
|
//
|
|
}
|
|
|
|
// =======================================================================
|
|
// function : CreateView
|
|
// purpose :
|
|
// =======================================================================
|
|
Handle(Graphic3d_CView) D3DHost_GraphicDriver::CreateView (const Handle(Graphic3d_StructureManager)& theMgr)
|
|
{
|
|
Handle(D3DHost_View) aView = new D3DHost_View (theMgr, this, myCaps, &myStateCounter);
|
|
myMapOfView.Add (aView);
|
|
for (NCollection_List<Handle(Graphic3d_Layer)>::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next())
|
|
{
|
|
const Handle(Graphic3d_Layer)& aLayer = aLayerIter.Value();
|
|
aView->InsertLayerAfter (aLayer->LayerId(), aLayer->LayerSettings(), Graphic3d_ZLayerId_UNKNOWN);
|
|
}
|
|
return aView;
|
|
}
|