mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
29 lines
719 B
Plaintext
29 lines
719 B
Plaintext
puts "============"
|
|
puts "0031478: Visualization, TKOpenGl - allow uploading Cubemap in compressed DDS format when supported by GPU"
|
|
puts "============"
|
|
puts ""
|
|
|
|
# PBR doesn't work with Compatible Profile on macOS
|
|
if { $::tcl_platform(os) == "Darwin" } { vcaps -core }
|
|
|
|
set aCubeMapPNG [locate_data_file cubemap_labels.png]
|
|
set aCubeMapDDS [locate_data_file cubemap_labels.dds]
|
|
|
|
box b 1 2 3
|
|
psphere s 1
|
|
|
|
vclear
|
|
vinit View1 -w 512 -h 512
|
|
vcamera -fovy 100
|
|
vzbufftrihedron
|
|
#vdisplay -dispMode 1 b
|
|
vdisplay -dispMode 1 s
|
|
vfit
|
|
|
|
vrenderparams -shadingModel pbr
|
|
vbackground -cubemap $aCubeMapPNG -invertedz
|
|
vdump $imagedir/${casename}_png.png
|
|
|
|
vbackground -cubemap $aCubeMapDDS -invertedz
|
|
vdump $imagedir/${casename}_dds.png
|