mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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.
57 lines
1.4 KiB
Plaintext
57 lines
1.4 KiB
Plaintext
puts "============="
|
|
puts "Drawing mesh as closed object."
|
|
puts "============="
|
|
puts ""
|
|
|
|
pload XDE
|
|
|
|
set aMeshFile [locate_data_file sh1.stl]
|
|
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
|
|
meshfromstl m0 "$aMeshFile"
|
|
vsetdispmode m0 2
|
|
|
|
vsetlocation -noupdate m0 -100 0 0
|
|
meshfromstl m1 "$aMeshFile"
|
|
meshcolors m1 elem1 0
|
|
vsetlocation -noupdate m1 0 0 0
|
|
|
|
meshfromstl m2 "$aMeshFile"
|
|
meshcolors m2 elem2 0
|
|
vsetlocation -noupdate m2 100 0 0
|
|
|
|
meshfromstl m3 "$aMeshFile"
|
|
meshcolors m3 nodal 1
|
|
vsetlocation -noupdate m3 0 0 100
|
|
|
|
meshfromstl m4 "$aMeshFile"
|
|
meshcolors m4 nodaltex 1
|
|
vsetlocation -noupdate m4 100 0 100
|
|
vfit
|
|
|
|
vclipplane create p
|
|
vclipplane change p equation 0 1 0 0
|
|
vclipplane change p capping on
|
|
vclipplane change p capping color 0.9 0.9 0.9
|
|
vclipplane set p view Driver1/Viewer1/View1
|
|
|
|
for {set i 0} {$i < 5} {incr i} { meshclosed m$i 0 }
|
|
vdump ${imagedir}/${casename}_open.png
|
|
|
|
for {set i 0} {$i < 5} {incr i} { meshclosed m$i 1 }
|
|
set aColor0 [vreadpixel 125 200 rgb name]
|
|
set aColor1 [vreadpixel 225 300 rgb name]
|
|
set aColor2 [vreadpixel 325 325 rgb name]
|
|
set aColor3 [vreadpixel 225 150 rgb name]
|
|
set aColor4 [vreadpixel 325 200 rgb name]
|
|
|
|
# note that aColor2 is not expected to be capped
|
|
if { "$aColor0" != "GRAY72" || "$aColor1" != "GRAY72" || "$aColor2" == "GRAY72" || "$aColor3" != "GRAY72" || "$aColor4" != "GRAY72" } {
|
|
puts "Error: capping color does not match"
|
|
}
|
|
|
|
vdump ${imagedir}/${casename}_closed.png
|