1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
tiv 293211aee0 0030592: Draw Harness, ViewerTest - provide vbackground command unifying vsetbg, vsetbgmode, vsetgradientbg, vsetgrbgmode, vsetcolorbg
A new command vbackground is created. Old background commands are made aliases for the newly created command (including vsetdefaultbg).
Tests are modified using newly added command vbackground.
2019-04-22 19:31:24 +03:00

43 lines
1.4 KiB
Plaintext

puts "========"
puts "Multisampling FBOs"
puts "========"
pload MODELING VISUALIZATION
box b 2 3 1
vclear
vclose ALL
vinit View1 w=512 h=512
vbackground -gradient 0.705882 0.784314 1 0.705882 0.705882 0.705882 -gradientMode VERTICAL
vsetdispmode 0
vdisplay b
vfit
vrotate 0.5 0 0
vzbufftrihedron
vrenderparams -msaa 0
vdump $::imagedir/${::casename}_512x512_msaa0.png
vrenderparams -msaa 2
vdump $::imagedir/${::casename}_512x512_msaa2.png
vrenderparams -msaa 4
vdump $::imagedir/${::casename}_512x512_msaa4.png
vrenderparams -msaa 8
vdump $::imagedir/${::casename}_512x512_msaa8.png
# check dump with resolutions not equal to window size
vdump $::imagedir/${::casename}_1920x1080_msaa8.png -width 1920 -height 1080
vdump $::imagedir/${::casename}_2560x1440_msaa8.png -width 2560 -height 1440
# check dump with stereo
vstereo anaglyph
vdump $::imagedir/${::casename}_512x512_msaa8stereo.png -stereo blend
vdump $::imagedir/${::casename}_1920x1080_msaa8stereo.png -width 1920 -height 1080 -stereo blend
vdump $::imagedir/${::casename}_2560x1440_msaa8stereo.png -width 2560 -height 1440 -stereo blend
vraytrace 1
vsetdispmode b 1
vdump $::imagedir/${::casename}_512x512_msaa8stereort.png -stereo blend
vdump $::imagedir/${::casename}_1920x1080_msaa8stereort.png -width 1920 -height 1080 -stereo blend
vdump $::imagedir/${::casename}_2560x1440_msaa8stereort.png -width 2560 -height 1440 -stereo blend
vsetdispmode b 0
vraytrace 0