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.
44 lines
1008 B
Plaintext
44 lines
1008 B
Plaintext
puts "========"
|
|
puts "Texture 2D transformation (UV coordinates generation)"
|
|
puts "========"
|
|
|
|
vclear
|
|
vclose ALL
|
|
vinit View1
|
|
|
|
set aTexture [locate_data_file bug26122_texture_trsf_ref.png]
|
|
pload MODELING VISUALIZATION
|
|
box b 1 1 1
|
|
explode b F
|
|
vclear
|
|
vclose ALL
|
|
vinit View1 w=512 h=512
|
|
vtop
|
|
vsetdispmode 1
|
|
vdisplay b_6
|
|
vfit
|
|
|
|
vcaps -ffp 1
|
|
vtexture b_6 $aTexture -modulate off
|
|
vdump $::imagedir/${::casename}_identity_ffp.png
|
|
vcaps -ffp 0
|
|
vdump $::imagedir/${::casename}_identity_glsl.png
|
|
|
|
vcaps -ffp 1
|
|
vtexture b_6 $aTexture -origin 0.0 0.0 -scale 1.25 0.5
|
|
vdump $::imagedir/${::casename}_scale_ffp.png
|
|
vcaps -ffp 0
|
|
vdump $::imagedir/${::casename}_scale_glsl.png
|
|
|
|
vcaps -ffp 1
|
|
vtexture b_6 $aTexture -origin 0.25 -0.25 -scale 1.0 1.0
|
|
vdump $::imagedir/${::casename}_translate_ffp.png
|
|
vcaps -ffp 0
|
|
vdump $::imagedir/${::casename}_translate_glsl.png
|
|
|
|
vcaps -ffp 1
|
|
vtexture b_6 $aTexture -origin 0.25 -0.25 -scale 1.1 0.8
|
|
vdump $::imagedir/${::casename}_ffp.png
|
|
vcaps -ffp 0
|
|
vdump $::imagedir/${::casename}_glsl.png
|