mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
OpenGL rendering is now done into sRGB framebuffer. OpenGl_ShaderManager::prepareStdProgramFboBlit() has been extended by programs resolving MSAA texture and applying gamma correction as fallbacks. Quantity_Color definition has been modified to store RGB components in linear color space within Quantity_TOC_RGB type. Standard colors defined by Quantity_NameOfColor enumeration has been updated accordingly. New Quantity_TOC_sRGB type has been introduced to handle RGB components in non-linear sRGB color space. OpenGl_TextureFormat class definition has been moved to dedicated files. New method OpenGl_TextureFormat::FindFormat() replaces OpenGl_Texture::GetDataFormat(). New method OpenGl_TextureFormat::FindSizedFormat() replaces OpenGl_FrameBuffer::getColorDataFormat() and OpenGl_FrameBuffer::getDepthDataFormat(). Graphic3d_TextureRoot::IsColorMap() - introduced new property defining if RGB(A)8 image formats should be loaded as sRGB(A) textures or as data RGB(A) textures. OpenGl_Texture initialization methods have been extended with new theIsColorMap argument. vreadpixel - added argument -sRGB printing color in sRGB color space. Test cases have been updated to new sRGB rendered results.
73 lines
2.1 KiB
Plaintext
73 lines
2.1 KiB
Plaintext
puts "============"
|
|
puts "0026344: Visualization - provide a support of zoom persistent selection"
|
|
puts "============"
|
|
puts ""
|
|
|
|
vclear
|
|
vclose ALL
|
|
vinit View1 w=409 h=409
|
|
vtrihedron tri
|
|
vpan 50 50
|
|
|
|
box bz1 25 25 25
|
|
box bz2 25 25 25
|
|
box br 100 100 100
|
|
box bzr 50 25 20
|
|
box bt 100 100 100
|
|
|
|
# 1) Zoom persistence
|
|
vpoint pz 200 200 200
|
|
|
|
vdisplay bz1 -dispMode 1 -highMode 1 -trsfPers zoom -trsfPersPos 200 200 200
|
|
vdisplay bz2 -dispMode 1 -highMode 1 -trsfPers zoom -trsfPersPos 200 200 200
|
|
vsetlocation bz2 -25 -25 -25
|
|
|
|
vselect 0 0
|
|
vselect 387 77
|
|
if { [vreadpixel 387 77 rgb name] != "GRAY73" } { puts "Error picking zoom persistence object(s)" }
|
|
|
|
vselect 0 0
|
|
vselect 330 120 410 50
|
|
if { [vreadpixel 387 77 rgb name] != "GRAY73" || [vreadpixel 352 96 rgb name] != "GRAY73" } { puts "Error selecting zoom persistence object(s)" }
|
|
|
|
# 2) Rotate persistence
|
|
|
|
vpoint pr -200 -200 -200
|
|
vdisplay br -dispMode 1 -highMode 1 -trsfPers rotate -trsfPersPos -200 -200 -200
|
|
vsetmaterial br PLASTIC
|
|
vselect 0 0
|
|
vselect 160 200
|
|
if { [vreadpixel 160 180 rgb name] != "GRAY89" } { puts "Error picking rotate persistence object" }
|
|
|
|
vselect 0 0
|
|
vselect 130 230 190 170
|
|
if { [vreadpixel 160 180 rgb name] != "GRAY89" } { puts "Error selecting rotate persistence object" }
|
|
|
|
# 3) Zoom + Rotate persistence
|
|
|
|
vpoint pzr -200 100 0
|
|
vdisplay bzr -dispMode 1 -highMode 1 -trsfPers zoomRotate -trsfPersPos -200 100 0
|
|
|
|
vsetmaterial bzr PLASTIC
|
|
vselect 0 0
|
|
vselect 250 90
|
|
if { [vreadpixel 250 90 rgb name] != "GRAY89" } { puts "Error picking zoom-rotate persistence object" }
|
|
vselect 0 0
|
|
vselect 200 70 286 110
|
|
if { [vreadpixel 250 90 rgb name] != "GRAY89" } { puts "Error selecting zoom-rotate persistence object" }
|
|
|
|
# 4) Trihedron persistence
|
|
|
|
vdisplay bt -dispMode 1 -highMode 1 -trsfPers trihedron -trsfPersPos -1 -1 62
|
|
vselect 0 0
|
|
vselect 132 300
|
|
if { [vreadpixel 132 300 rgb name] != "GRAY73" } { puts "Error picking trihedron persistence object" }
|
|
vselect 0 0
|
|
vselect 50 223 235 395
|
|
if { [vreadpixel 132 300 rgb name] != "GRAY73" } { puts "Error selecting trihedron persistence object" }
|
|
|
|
vselect 50 410 410 50
|
|
vstate -entities
|
|
|
|
checkview -screenshot -3d -path ${imagedir}/${test_image}.png
|