mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add handle on environment texture in OpenGl_Workspace. Add a new parameter UseEnvironmentTexture to the Graphic3d_ZLayerSettings. OSD layers don't use environment texture by default. zbuffertrihedron doesn't use environment texture. vzlayer can enable/disable environment texture mappping. Delete unnecessary files Graphic3d_TypeOfSurfaceDetail.hxx and V3d_TypeOfSurface.hxx. Delete functions SurfaceDetailType and SetSurfaceDetailType functions from Graphic3d_CView. Delete functions SurfaceDetailState and UpdateSurfaceDetailStateTo from OpenGl_ShaderManager. Delete class OpenGl_SurfaceDetailState. Delete functions SurfaceDetailType and SetSurfaceDetailType from OpenGl_View. Delete functions SetSurfaceDetail and SurfaceDetail() from V3d_View. Delete functions SetDefaultSurfaceDetail and DefaultSurfaceDetail from V3d_Viewer. Delete draw command VSetTextureMode. Add description in dox.
43 lines
781 B
Plaintext
43 lines
781 B
Plaintext
puts "============"
|
|
puts "CR26434"
|
|
puts "============"
|
|
puts ""
|
|
|
|
##########################################################################################
|
|
puts "Visualization - Textured objects should have priority over the environment mapping"
|
|
##########################################################################################
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
vclear
|
|
vclose all
|
|
|
|
vinit View1
|
|
|
|
vsetdispmode 1
|
|
|
|
box b0 -1 -1 -1 1 2 3
|
|
box b1 1 1 1 1 2 3
|
|
|
|
vdisplay b0 b1
|
|
vzbufftrihedron
|
|
|
|
vfit
|
|
|
|
vdump $imagedir/${casename}_0.png
|
|
|
|
vtexture b1 0
|
|
|
|
vdump $imagedir/${casename}_1.png
|
|
|
|
puts "Checking that texture have priority over the environment mapping"
|
|
vtextureenv on 0
|
|
|
|
vdump $imagedir/${casename}_2.png
|
|
|
|
vcaps -ffp 0
|
|
vmoveto 100 300
|
|
vmoveto 0 0
|
|
|
|
vdump $imagedir/${casename}_3.png
|