mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Image_PixMap::ImgFormat - extend enumeration by ImgAlpha and ImgAlphaF. OpenGl_Workspace::setTextureParams() - specify GL_REPLACE for 1-component textures with disabled modulation. OpenGl_Texture::GetDataFormat() - return GL_LUMINANCE format for ImgGray format and GL_ALPHA for ImgAlpha. vmarkerstest - override pixel format for grayscale images to ImgAlpha. Add test case bugs/vis/bug25544_graytexture.
29 lines
577 B
Plaintext
29 lines
577 B
Plaintext
puts "============"
|
|
puts "0025544: Visualization, TKOpenGl - support grayscale textures"
|
|
puts "============"
|
|
puts ""
|
|
|
|
vinit View1
|
|
vclear
|
|
|
|
box b 1 2 3
|
|
vaxo
|
|
vsetdispmode 1
|
|
vdisplay b
|
|
vtexture b 1 -modulate on
|
|
vfit
|
|
|
|
set aColorMod [vreadpixel 290 180 rgb name]
|
|
vdump $imagedir/${casename}_modulated.png
|
|
|
|
vtexture b 1 -modulate off
|
|
set aColorDec [vreadpixel 290 180 rgb name]
|
|
vdump $imagedir/${casename}_decal.png
|
|
|
|
if {"$aColorMod" != "GOLDENROD4"} {
|
|
puts "Error: wrong color with modulation ON"
|
|
}
|
|
if {"$aColorDec" != "GRAY80"} {
|
|
puts "Error: wrong color with modulation OFF"
|
|
}
|