mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Graphic3d_TypeOfShaderObject enumeration has been extended by Geometry shader object type. OpenGl_ShaderProgram::Initialize() processes new shader object types when supported by OpenGL version. Declarations.glsl has been fixed so that occFragColor is defined only for Fragment Shader object only (by handling new FRAGMENT_SHADER macros). Improved documentation of Graphic3d_ArrayOfPrimitives class. vshader Draw Harness command has been extended to support definition of Shader Object types other than Vertex and Fragment shader.
39 lines
824 B
Plaintext
39 lines
824 B
Plaintext
puts "========"
|
|
puts "Per-pixel lighting using GLSL program (Phong shading), check lighting of back faces"
|
|
puts "========"
|
|
|
|
# create box
|
|
box b 1 2 3
|
|
explode b F
|
|
|
|
# draw box
|
|
vclear
|
|
vclose ALL
|
|
vinit View1
|
|
vsetdispmode 1
|
|
vaxo
|
|
vdisplay b_1 b_2
|
|
vfit
|
|
vrotate 0.2 0.0 0.0
|
|
|
|
# take snapshot with fixed pipeline
|
|
vdump $::imagedir/${::casename}_OFF.png
|
|
set aColorB [vreadpixel 150 150 rgb name]
|
|
set aColorF [vreadpixel 250 250 rgb name]
|
|
if { "$aColorB" != "$aColorF"} {
|
|
puts "Error: front/back colors are different!"
|
|
}
|
|
set aColorFixed $aColorF
|
|
|
|
# activate phong shader
|
|
vshaderprog phong
|
|
set aColorB [vreadpixel 150 150 rgb name]
|
|
set aColorF [vreadpixel 250 250 rgb name]
|
|
if { "$aColorB" != "$aColorF"} {
|
|
puts "Error: front/back colors are different!"
|
|
}
|
|
|
|
if { "$aColorF" != "$aColorFixed"} {
|
|
puts "Error: colors are different!"
|
|
}
|