diff --git a/src/AIS/AIS_ViewController.cxx b/src/AIS/AIS_ViewController.cxx index 3d9ac792c7..0c0399723b 100644 --- a/src/AIS/AIS_ViewController.cxx +++ b/src/AIS/AIS_ViewController.cxx @@ -27,6 +27,7 @@ #include #include #include +#include #include // ======================================================================= diff --git a/src/PrsMgr/PrsMgr_PresentationManager.cxx b/src/PrsMgr/PrsMgr_PresentationManager.cxx index 4aba5811be..b0be613603 100644 --- a/src/PrsMgr/PrsMgr_PresentationManager.cxx +++ b/src/PrsMgr/PrsMgr_PresentationManager.cxx @@ -15,17 +15,13 @@ #include #include -#include #include -#include #include #include #include #include -#include -#include -#include #include +#include IMPLEMENT_STANDARD_RTTIEXT(PrsMgr_PresentationManager, Standard_Transient) diff --git a/src/PrsMgr/PrsMgr_PresentationManager.hxx b/src/PrsMgr/PrsMgr_PresentationManager.hxx index 03c75a83bf..5160c520c6 100644 --- a/src/PrsMgr/PrsMgr_PresentationManager.hxx +++ b/src/PrsMgr/PrsMgr_PresentationManager.hxx @@ -17,17 +17,10 @@ #ifndef _PrsMgr_PresentationManager_HeaderFile #define _PrsMgr_PresentationManager_HeaderFile -#include #include #include -#include #include #include -#include -#include -#include -#include -#include class Graphic3d_Structure; typedef Graphic3d_Structure Prs3d_Presentation; @@ -36,7 +29,6 @@ class TopLoc_Datum3D; class Prs3d_Drawer; class PrsMgr_Presentation; class PrsMgr_PresentableObject; -class Standard_NoSuchObject; class V3d_Viewer; DEFINE_STANDARD_HANDLE(PrsMgr_PresentationManager, Standard_Transient) diff --git a/src/QABugs/QABugs_19.cxx b/src/QABugs/QABugs_19.cxx index 2d4e27858c..1c5cf01c06 100644 --- a/src/QABugs/QABugs_19.cxx +++ b/src/QABugs/QABugs_19.cxx @@ -54,6 +54,7 @@ #include #include #include +#include #include #include #include diff --git a/src/V3d/V3d_Plane.cxx b/src/V3d/V3d_Plane.cxx index 2fef4590cd..3a26015bd4 100755 --- a/src/V3d/V3d_Plane.cxx +++ b/src/V3d/V3d_Plane.cxx @@ -14,10 +14,12 @@ // commercial license or contractual agreement. #include + #include #include #include #include +#include IMPLEMENT_STANDARD_RTTIEXT(V3d_Plane,Standard_Transient) diff --git a/src/V3d/V3d_Trihedron.cxx b/src/V3d/V3d_Trihedron.cxx index bd6400725d..61159f0921 100644 --- a/src/V3d/V3d_Trihedron.cxx +++ b/src/V3d/V3d_Trihedron.cxx @@ -28,6 +28,7 @@ #include #include #include +#include IMPLEMENT_STANDARD_RTTIEXT (V3d_Trihedron, Standard_Transient) diff --git a/src/V3d/V3d_View.hxx b/src/V3d/V3d_View.hxx index 3c0ce8ecae..738a38e291 100644 --- a/src/V3d/V3d_View.hxx +++ b/src/V3d/V3d_View.hxx @@ -24,13 +24,10 @@ #include #include #include - #include - #include #include #include - #include #include #include @@ -40,46 +37,26 @@ #include #include #include - #include - -#include - #include - -#include -#include -#include -#include -#include -#include -#include - #include #include - #include +#include +#include #include #include - #include #include #include #include -#include -#include class Aspect_Grid; class Aspect_Window; class Graphic3d_Group; class Graphic3d_Structure; class Graphic3d_TextureEnv; -class Standard_MultiplyDefined; -class Standard_TypeMismatch; -class V3d_BadValue; -class V3d_UnMapped; -class V3d_View; DEFINE_STANDARD_HANDLE(V3d_View, Standard_Transient) //! Defines the application object VIEW for the @@ -259,9 +236,6 @@ public: Standard_EXPORT void SetAxis (const Standard_Real X, const Standard_Real Y, const Standard_Real Z, const Standard_Real Vx, const Standard_Real Vy, const Standard_Real Vz); - //! Defines the shading model for the visualization. Various models are available. - Standard_EXPORT void SetShadingModel (const Graphic3d_TypeOfShadingModel theShadingModel); - //! Sets the environment texture to use. No environment texture by default. Standard_EXPORT void SetTextureEnv (const Handle(Graphic3d_TextureEnv)& theTexture); @@ -714,9 +688,12 @@ public: //! the visual axis measured from the Y axis of the screen. Standard_EXPORT Standard_Real Twist() const; - //! Returns the current shading model. + //! Returns the current shading model; Graphic3d_TOSM_FRAGMENT by default. Standard_EXPORT Graphic3d_TypeOfShadingModel ShadingModel() const; + //! Defines the shading model for the visualization. + Standard_EXPORT void SetShadingModel (const Graphic3d_TypeOfShadingModel theShadingModel); + Standard_EXPORT Handle(Graphic3d_TextureEnv) TextureEnv() const; //! Returns the current visualisation mode. @@ -1038,7 +1015,7 @@ protected: private: - V3d_ViewerPointer MyViewer; + V3d_Viewer* MyViewer; V3d_ListOfLight myActiveLights; gp_Dir myDefaultViewAxis; gp_Pnt myDefaultViewPoint; diff --git a/src/V3d/V3d_Viewer.cxx b/src/V3d/V3d_Viewer.cxx index 4306c26a9a..439ed247e8 100644 --- a/src/V3d/V3d_Viewer.cxx +++ b/src/V3d/V3d_Viewer.cxx @@ -57,7 +57,7 @@ V3d_Viewer::V3d_Viewer (const Handle(Graphic3d_GraphicDriver)& theDriver) myGridEcho (Standard_True), myGridEchoLastVert (ShortRealLast(), ShortRealLast(), ShortRealLast()) { - myDefaultRenderingParams.ShadingModel = Graphic3d_TOSM_VERTEX; + // } // ======================================================================== diff --git a/src/V3d/V3d_Viewer.hxx b/src/V3d/V3d_Viewer.hxx index a51543ea06..898782d775 100644 --- a/src/V3d/V3d_Viewer.hxx +++ b/src/V3d/V3d_Viewer.hxx @@ -23,33 +23,20 @@ #include #include #include - #include #include -#include #include #include - -#include -#include -#include -#include -#include -#include -#include - #include #include #include #include #include - #include #include #include #include #include - #include class Aspect_Grid; @@ -166,7 +153,7 @@ public: //! Gives the default visualization mode. void SetDefaultVisualization (const V3d_TypeOfVisualization theType) { myVisualization = theType; } - //! Returns the default type of Shading + //! Returns the default type of Shading; Graphic3d_TOSM_FRAGMENT by default. Graphic3d_TypeOfShadingModel DefaultShadingModel() const { return myDefaultRenderingParams.ShadingModel; } //! Gives the default type of SHADING. diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 3a3ed1c91b..1b5d5397ed 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -18,6 +18,7 @@ #include #include +#include #include #include @@ -37,14 +38,13 @@ #include #include #include -#include -#include #include #include #include #include #include #include +#include #include #include #include @@ -58,6 +58,8 @@ #include #include #include +#include +#include #include #include #include @@ -65,8 +67,7 @@ #include #include #include -#include -#include +#include #include diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index 21ed5533a5..f17aae1350 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -91,6 +91,7 @@ #include #include #include +#include #include diff --git a/tests/bugs/vis/bug29791 b/tests/bugs/vis/bug29791 index fd3cb5bf27..6a9ba07d4d 100644 --- a/tests/bugs/vis/bug29791 +++ b/tests/bugs/vis/bug29791 @@ -18,8 +18,8 @@ vfit vmoveto 150 200 vstate -entities vselect 150 200 -if { [vreadpixel 150 200 rgb name] != "BLACK" } { puts "Error: object is not clipped" } -if { [vreadpixel 350 200 rgb name] != "PERU" } { puts "Error: object should NOT be selected" } +if { [vreadpixel 150 200 rgb name] != "BLACK" } { puts "Error: object is not clipped" } +if { [vreadpixel 350 200 rgb name] != "GOLDENROD" } { puts "Error: object should NOT be selected" } vdump $imagedir/${casename}_1.png # depth range starts behinds the picking ray diff --git a/tests/mesh/end b/tests/mesh/end index 9ee09492b4..5a69d8b266 100644 --- a/tests/mesh/end +++ b/tests/mesh/end @@ -23,6 +23,8 @@ tclean res if { [string compare $command "shading"] == 0 } { vinit View1 + # prefer vertex shading + vrenderparams -shadingModel VERT vdisplay -noupdate -redisplay res vsetdispmode res 1 vfit