0032208: Tests - refactor visualization tests to cover several graphic drivers
[occt.git] / tests / bugs / vis / bug25679
diff --git a/tests/bugs/vis/bug25679 b/tests/bugs/vis/bug25679
deleted file mode 100644 (file)
index 285151e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-puts "========"
-puts "OCC25679"
-puts "========"
-puts ""
-############################################################################
-# Visualization, TKOpenGl - View frustum culling clips wrong objects
-############################################################################
-
-pload VISUALIZATION MODELING
-
-set LINES_IN_ROW 50
-
-set aNoCulling $imagedir/${casename}_without.png
-set aWithCulling $imagedir/${casename}_with.png
-set aDiff $imagedir/${casename}_diff.png
-
-vinit
-
-for {set i 0} {$i < $LINES_IN_ROW} {incr i} {
-  for {set j 0} {$j < $LINES_IN_ROW} {incr j} {
-    set aLineName "line"
-    append aLineName [expr $i * $LINES_IN_ROW + $j]
-    vline $aLineName 0 0 0 1 0 0
-    vsetlocation $aLineName [expr $i * 3] [expr $j * 3] 0
-  }
-}
-
-vfit
-
-vrenderparams -frustumculling on
-vdump $aWithCulling
-vrenderparams -frustumculling off
-vdump $aNoCulling
-
-set aDiffRes [diffimage $aWithCulling $aNoCulling 0.1 0 0 $aDiff]
-if {$aDiffRes != 0} {
-  puts "ERROR : Test failed: there is a difference between images rendered with and without frustum culling"
-}