mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
update occlusion query test
This commit is contained in:
parent
2ecf6008fa
commit
e087023876
@ -13996,7 +13996,7 @@ static int VChangeMouseGesture (Draw_Interpretor&,
|
|||||||
//function : VOccluded
|
//function : VOccluded
|
||||||
//purpose : Returns number of Occluded objects
|
//purpose : Returns number of Occluded objects
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
static Standard_Integer VNbOccluded(Draw_Interpretor & /*theDi*/,
|
static Standard_Integer VNbOccluded(Draw_Interpretor & theDi,
|
||||||
Standard_Integer theArgNb,
|
Standard_Integer theArgNb,
|
||||||
const char **theArgVec) {
|
const char **theArgVec) {
|
||||||
NCollection_List<TCollection_AsciiString> aViewList;
|
NCollection_List<TCollection_AsciiString> aViewList;
|
||||||
@ -14045,12 +14045,12 @@ static Standard_Integer VNbOccluded(Draw_Interpretor & /*theDi*/,
|
|||||||
Handle(V3d_View) aView = ViewerTest_myViews.Find1(anIter.Value());
|
Handle(V3d_View) aView = ViewerTest_myViews.Find1(anIter.Value());
|
||||||
aView->ChangeRenderingParams().OcculsionQueryState = Graphic3d_RenderingParams::OcculsionQuery_NoUpdate;
|
aView->ChangeRenderingParams().OcculsionQueryState = Graphic3d_RenderingParams::OcculsionQuery_NoUpdate;
|
||||||
aView->Redraw();
|
aView->Redraw();
|
||||||
|
aView->Redraw();
|
||||||
aView->View()->UpdateOcclusion();
|
aView->View()->UpdateOcclusion();
|
||||||
Graphic3d_MapOfStructure aOcculdedStructs;
|
Graphic3d_MapOfStructure aOcculdedStructs;
|
||||||
aView->View()->OccludedStructures(aOcculdedStructs);
|
aView->View()->OccludedStructures(aOcculdedStructs);
|
||||||
|
|
||||||
printf("Occluded objects in view: %d = %d\n",
|
theDi << aOcculdedStructs.Extent() << "\n";
|
||||||
aView->View()->Identification(), aOcculdedStructs.Extent());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -24,6 +24,11 @@ vdisplay c b
|
|||||||
vfront
|
vfront
|
||||||
vfit
|
vfit
|
||||||
|
|
||||||
#run occlusion query for each view
|
#run occlusion query test for each view
|
||||||
vnboccluded View1
|
if {[vnboccluded View1] != "1"} {
|
||||||
vnboccluded View2
|
puts "ERROR: occluded objects in view 1 expected to be 1"
|
||||||
|
}
|
||||||
|
|
||||||
|
if {[vnboccluded View2] != "0"} {
|
||||||
|
puts "ERROR: occluded objects in view 2 expected to be 0"
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user