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.
86 lines
1.7 KiB
Plaintext
86 lines
1.7 KiB
Plaintext
puts "========"
|
|
puts "0028641: Data Exchange - Support alpha-channel of color"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload OCAF
|
|
|
|
# Create document with View
|
|
NewDocument D_First BinXCAF
|
|
box b 1 1 1
|
|
explode b e
|
|
explode b f
|
|
XAddShape D_First b
|
|
XSetColor D_First b_1 RED s
|
|
XSetColor D_First b_2 YELLOW 0.3 s
|
|
XSetColor D_First b_11 WHITE 0.2 c
|
|
XSetColor D_First b_10 CYAN c
|
|
XAddColor D_First 0.5 0.5 1 0.1
|
|
|
|
XShow D_First
|
|
vfit
|
|
vsetdispmode 1
|
|
vdump $::imagedir/${::casename}_first.png
|
|
if { [vreadpixel 300 200 rgb name] != "GRAY63" } { puts "Error: wrong color in 3D Viewer" }
|
|
|
|
# Write file
|
|
SaveAs D_First ${imagedir}/bug28521.xbf
|
|
Close D_First
|
|
# Read document
|
|
XOpen ${imagedir}/bug28521.xbf D_Second
|
|
|
|
# Results validation
|
|
set isOK 1
|
|
set color ""
|
|
set alpha ""
|
|
set prec 1e-7
|
|
#0:1:2:1
|
|
set res [XGetColor D_Second 0:1:2:1]
|
|
if {$res != "RED"} {
|
|
set isOK 0
|
|
}
|
|
#0:1:2:2
|
|
set res [XGetColor D_Second 0:1:2:2]
|
|
regexp {([A-Z0-9]+) \(([0-9.+eE]+)\)} $res full color alpha
|
|
if {$color != "YELLOW"} {
|
|
set isOK 0
|
|
}
|
|
if {[expr abs(0.3 - $alpha)] > $prec} {
|
|
set isOK 0
|
|
}
|
|
#0:1:2:3
|
|
set res [XGetColor D_Second 0:1:2:3]
|
|
regexp {([A-Z0-9]+) \(([0-9.+eE]+)\)} $res full color alpha
|
|
if {$color != "WHITE"} {
|
|
set isOK 0
|
|
}
|
|
if {[expr abs(0.2 - $alpha)] > $prec} {
|
|
set isOK 0
|
|
}
|
|
#0:1:2:4
|
|
set res [XGetColor D_Second 0:1:2:4]
|
|
if {$res != "CYAN"} {
|
|
set isOK 0
|
|
}
|
|
#0:1:2:5
|
|
set res [XGetColor D_Second 0:1:2:5]
|
|
regexp {([A-Z0-9]+) \(([0-9.+eE]+)\)} $res full color alpha
|
|
if {$color != "LIGHTSTEELBLUE2"} {
|
|
set isOK 0
|
|
}
|
|
if {[expr abs(0.1 - $alpha)] > $prec} {
|
|
set isOK 0
|
|
}
|
|
|
|
if {$isOK == 0} {
|
|
puts "Error: wrong color."
|
|
}
|
|
|
|
XShow D_Second
|
|
vfit
|
|
vsetdispmode 1
|
|
vdump $::imagedir/${::casename}.png
|
|
if { [vreadpixel 300 200 rgb name] != "GRAY63" } { puts "Error: wrong color in 3D Viewer" }
|
|
|
|
Close D_Second
|