mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Added TKOpenGlTest and TKD3DHostTest Draw Harness plugins. TKOpenGlTest is automatically loaded by ViewerTest::ViewerInit(). Commands vgldebug, vvbo, vcaps and vuserdraw have been moved to TKOpenGlTest. New command vglshaders lists GLSL programs defined by OpenGl_GraphicDriver, previously implemented by "vshaderprog -list". Added new command vdriver for graphic driver selection. Removed erroneous code from command vstereo.
26 lines
473 B
Plaintext
Executable File
26 lines
473 B
Plaintext
Executable File
puts "========"
|
|
puts "OCC172"
|
|
puts "========"
|
|
|
|
pload XDE VISUALIZATION
|
|
|
|
# disable VBO to avoid false memory leaks reported on NVIDIA graphics, see issue #29996
|
|
pload OPENGL
|
|
vcaps -vbo 0
|
|
|
|
vinit View1
|
|
restore [locate_data_file OCC162.brep] s
|
|
vdisplay s
|
|
|
|
set listmem {}
|
|
set i_max 10
|
|
for {set i 1} {${i} <= ${i_max}} {incr i} {
|
|
# select shape
|
|
OCC172
|
|
# deselect shape
|
|
OCC172
|
|
|
|
lappend listmem [meminfo h]
|
|
checktrend $listmem 0 1 "Memory leak detected"
|
|
}
|