mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
This commit provides useful functionality for path tracing rendering core. 1) Graphic3d_RenderingParams class was extended with additional AdaptiveScreenSampling option (disabled by default). If this option is enabled, path tracing tries to adjust the number of samples for different screen areas. In this way, the more complex areas (from the point of light conditions) are sampled more intensively, while the simple areas are sampled very rarely. For example, caustics and glossy reflections are typical candidates for more precise sampling. In general, this allows to equalize image convergence and not to waste resources for already converged areas. It is also possible to visualize sampling densities by enabling ShowSamplingTiles option (activating and deactivating this option does not affect on the accumulated image). 2) Mixing OpenGL and ray-tracing output has been changed. Now blending is performed using OpenGL functionality, while ray-tracing shaders only output correct Z-value. Test case bugs vis bug27083 has been updated, since the alpha value is now correctly set by Ray-Tracing to 1, opaque.
28 lines
605 B
Plaintext
28 lines
605 B
Plaintext
puts "========"
|
|
puts "OCC27083"
|
|
puts "Visualization, Ray Tracing - shape with visible face boundaries disappears after turning the ray-tracing on"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload VISUALIZATION MODELING
|
|
|
|
box b 1 1 1
|
|
|
|
vclear
|
|
vinit View1
|
|
|
|
vdisplay -noupdate -dispMode 1 b
|
|
vfit
|
|
vshowfaceboundary b 1 255 0 0 3
|
|
vraytrace 1
|
|
|
|
if {[vreadpixel 295 255 name] != "GOLDENROD4 0"} {
|
|
puts "ERROR: the box with boundary aspect set is not shown in ray-tracing mode!"
|
|
}
|
|
|
|
if {[vreadpixel 105 58 name] != "RED 1"} {
|
|
puts "ERROR: the box's boundaries are not shown in ray-tracing mode!"
|
|
}
|
|
|
|
vdump $imagedir/${casename}.png
|