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.
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
puts "# ==================================================================="
|
|
puts "# 0027618: Visualization - selection returns entity overlapped by another entity on border cases"
|
|
puts "# ==================================================================="
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
set s 0.001
|
|
box bb 0*$s 0*$s 0*$s 100*$s 100*$s 50*$s
|
|
box bt 50*$s 50*$s 25*$s 20*$s 20*$s 40*$s
|
|
vclear
|
|
vinit View1
|
|
vpoint p0 0*$s 0*$s 0*$s
|
|
vpoint p1 0*$s 100*$s 50*$s
|
|
vdisplay -dispMode 1 -highMode 1 bb bt
|
|
vsetcolor bt RED
|
|
vaxo
|
|
vfit
|
|
|
|
vpoint pp 245 -190 0
|
|
vdisplay -2d topLeft -topmost pp
|
|
vselmode pp 0 0
|
|
vmoveto 245 190
|
|
|
|
if { [vreadpixel 235 140 rgb name] == "CYAN2" } { puts "Error: top should NOT be highlighted" }
|
|
if { [vreadpixel 235 190 rgb name] != "CYAN2" } { puts "Error: bottom should be highlighted" }
|
|
vseldump $imagedir/${casename}_sel_depth.png -type depth
|
|
vseldump $imagedir/${casename}_sel_entity.png -type entity
|
|
|
|
vcamera -persp
|
|
|
|
vmoveto 0 0
|
|
vmoveto 245 190
|
|
if { [vreadpixel 235 140 rgb name] == "CYAN2" } { puts "Error: top should NOT be highlighted" }
|
|
if { [vreadpixel 235 190 rgb name] != "CYAN2" } { puts "Error: bottom should be highlighted" }
|
|
|
|
vseldump $imagedir/${casename}_perps_sel_depth.png -type depth
|
|
vseldump $imagedir/${casename}_persp_sel_entity.png -type entity
|