mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Test bugs vis bug26357 is revised to check colors in more robust way. In tests bugs vis bug29091_*, size of produced file is checked to be within range of known valid sizes, rather than hard-coded (per-platform) exact sizes. FPE signals are disabled for test bugs vis bug29127 to prevent exceptions cause by software OpenGl driver. File data/occ/Box.brep is removed to avoid confusion with file box.brep in public data files used in tests. Two additional non-alphabetic-order combinations of complex types are handled in RWStepAP214_ReadWriteModule.cxx
24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
puts "============"
|
|
puts "0029127: Visualization - V3d_View::ToPixMap() crashes on tiled rendering without FBO"
|
|
puts "============"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b 1 2 3
|
|
|
|
# request software OpenGL implementation - which is OpenGL 1.1 in case of Windows
|
|
# (test case is useless for other systems)
|
|
vcaps -softMode 1
|
|
|
|
# disable FPE signals -- these often occur in software OpenGL drivers
|
|
dsetsignal 0
|
|
|
|
vclear
|
|
vinit View1
|
|
vsetdispmode 1
|
|
vdisplay b
|
|
vfit
|
|
vdump $::imagedir/${::casename}_409.png -buffer rgb -width 409 -height 409
|
|
vdump $::imagedir/${::casename}_412.png -buffer rgb -width 412 -height 412 -tileSize 409
|
|
vdump $::imagedir/${::casename}_500.png -buffer rgb -width 500 -height 500 -tileSize 300
|