mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
testdiff now looks for "IMAGE_COLOR_TOLERANCE: Tol" statements in log to execute diffimage with -toleranceOfColor Tol parameter. Image difference is first performed with 0 tolerance and then optionally with non-zero tolerance, so that the log always includes information that some images are different, but with two different messages: - "IMAGE differs" for images failed comparison; - "IMAGE is similar" for images passed comparison only with non-zero tolerance. v3d/materials - disabled MSAA and removed duplicate. demo/samples/materials - compare screenshots with 0.8% color tolerance (2/255).
39 lines
1021 B
Plaintext
39 lines
1021 B
Plaintext
puts "========"
|
|
puts "0024855: Revision of parameters of standard materials"
|
|
puts "========"
|
|
|
|
# custom shapes
|
|
set aShape [locate_data_file occ/Top.brep]
|
|
|
|
# setup 3D viewer content
|
|
vinit View1 w=768 h=768
|
|
vglinfo
|
|
|
|
vsetgradientbg 180 200 255 180 180 180 2
|
|
|
|
# display shape
|
|
vlight -change 0 -dir 0.577 -0.577 -0.577
|
|
restore $aShape s
|
|
vdisplay -dispMode 1 s
|
|
vfit
|
|
|
|
proc testmat {dirname filename} {
|
|
foreach {aMatIter} {brass bronze copper gold jade neon_phc pewter obsidian plaster plastic satin silver steel stone chrome aluminium charcoal} {
|
|
vsetmaterial -noredraw s $aMatIter
|
|
vdump $dirname/${filename}_${aMatIter}.png
|
|
}
|
|
}
|
|
|
|
# material screenshots, Gouraud shading model (rasterization)
|
|
vrenderparams -shadingModel GOURAUD
|
|
testmat $imagedir $casename
|
|
|
|
# material screenshots, Phong shading model (rasterization)
|
|
vrenderparams -shadingModel PHONG
|
|
testmat $imagedir ${casename}_phong
|
|
|
|
# material screenshots, Ray-Tracing
|
|
vrenderparams -raytrace -reflections -fsaa
|
|
vtextureenv on 5
|
|
testmat $imagedir ${casename}_rt
|