mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
Usage of QAGetPixelColor were checked and corrected. Using simple comparison instead of regexp. Improved usage of command vreadpixel for standard colors. Command QAGetPixelColor was dropped from TKQADraw. Procedures "checkcolor" and auxiliary "checkpoint" were moved to DrawResources/TestCommands.tcl Some test cases using "checkcolor" for picking line color were simplified. Procedures checkcolor and checkpoint were changed to handle situation when pixel is out of view. Removed unnecessary use of command "vaspects -setwidth" in tests. Revert -setwidth change in test bugs/vis/bug23525
28 lines
624 B
Plaintext
Executable File
28 lines
624 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC23363"
|
|
puts "============"
|
|
puts ""
|
|
####################################################################################
|
|
# [Regression] Lost gradient background when switching to the hollow interior style
|
|
####################################################################################
|
|
|
|
set BugNumber OCC23363
|
|
|
|
vinit
|
|
vsetgradientbg 250 0 0 0 255 0 2
|
|
pcylinder p 100 200
|
|
vdisplay p
|
|
vsetdispmode p 1
|
|
vsetinteriorstyle p 1
|
|
|
|
puts ""
|
|
set color1 [vreadpixel 10 0 rgb]
|
|
set rd1 [lindex $color1 0]
|
|
if { $rd1 == 0 } {
|
|
puts "Faulty ${BugNumber}"
|
|
} else {
|
|
puts "OK ${BugNumber}"
|
|
}
|
|
|
|
set only_screen 1
|