1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
## Copyright 2009-2021 Intel Corporation
## SPDX-License-Identifier: Apache-2.0
IF (EMBREE_SYCL_AOT_DEVICES STREQUAL "none")
ADD_DEFINITIONS("-DUSE_SPECIALIZATION_CONSTANTS")
ENDIF()
INCLUDE(tutorial)
ADD_TUTORIAL(next_hit)
ADD_TUTORIAL_SYCL(next_hit)
MACRO (ALL_HITS_TEST name max_next_hits)
# uses the default cornell box
ADD_EMBREE_TEST_ECS(next_hit_${name}_${max_next_hits} embree_next_hit NO_REFERENCE NO_ISPC INTENSITY 2 ARGS --verify --max_next_hits ${max_next_hits} --max_total_hits 1024 -o test.tga ${ARGN})
ENDMACRO ()
ALL_HITS_TEST(triangle_robust_cornell_box 1)
ALL_HITS_TEST(triangle_robust_cornell_box 2)
ALL_HITS_TEST(triangle_robust_cornell_box 3)
ALL_HITS_TEST(triangle_robust_cornell_box 4)
ALL_HITS_TEST(quads_robust_cornell_box 1 --convert-triangles-to-quads)
ALL_HITS_TEST(grids_robust_cornell_box 1 --convert-triangles-to-grids)
|