mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Frustum culling is now managed by Graphic3d_RenderingParams::FrustumCullingState flag and can be switched into Graphic3d_RenderingParams::FrustumCulling_NoUpdate state useful for debugging the algorithm. Draw Harness command vrustumculling has been replaced by vrenderparams -frustumCulling.
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
puts "========"
|
|
puts "OCC25400"
|
|
puts "========"
|
|
puts ""
|
|
###################################################################################################
|
|
# Visualization, TKOpenGl - Structure disappears if assigned a non-default Z layer
|
|
###################################################################################################
|
|
|
|
box b 1 2 3
|
|
vinit
|
|
vdisplay b
|
|
vrenderparams -frustumculling on
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}_default_layer.png
|
|
|
|
# 1. Test a non-default Z layer:
|
|
# the object should not disappear from the screen
|
|
# due to wrong frustum culling operation
|
|
|
|
vzlayer add
|
|
vobjzlayer set b 1
|
|
# vfit is used to redraw the view, the box disappeared after this due to the issue 25400
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}_new_layer.png
|
|
|
|
vzlayer del 1
|
|
# vfit is used to redraw the view, the textured box appeared again after this
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}_after_delete_layer.png
|
|
|
|
# 2. Test a non-default display priority value:
|
|
# the object should not disappear from the screen
|
|
# due to wrong frustum culling operation
|
|
|
|
vpriority b
|
|
vpriority b 6
|
|
|
|
vdump $imagedir/${casename}_new_priority.png
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|