1
0
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:
hossamali 2024-07-19 15:35:33 +03:00
parent 2ecf6008fa
commit e087023876
2 changed files with 11 additions and 6 deletions

View File

@ -13996,7 +13996,7 @@ static int VChangeMouseGesture (Draw_Interpretor&,
//function : VOccluded
//purpose : Returns number of Occluded objects
//==============================================================================
static Standard_Integer VNbOccluded(Draw_Interpretor & /*theDi*/,
static Standard_Integer VNbOccluded(Draw_Interpretor & theDi,
Standard_Integer theArgNb,
const char **theArgVec) {
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());
aView->ChangeRenderingParams().OcculsionQueryState = Graphic3d_RenderingParams::OcculsionQuery_NoUpdate;
aView->Redraw();
aView->Redraw();
aView->View()->UpdateOcclusion();
Graphic3d_MapOfStructure aOcculdedStructs;
aView->View()->OccludedStructures(aOcculdedStructs);
printf("Occluded objects in view: %d = %d\n",
aView->View()->Identification(), aOcculdedStructs.Extent());
theDi << aOcculdedStructs.Extent() << "\n";
}
return 0;

View File

@ -24,6 +24,11 @@ vdisplay c b
vfront
vfit
#run occlusion query for each view
vnboccluded View1
vnboccluded View2
#run occlusion query test for each view
if {[vnboccluded View1] != "1"} {
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"
}