// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "../common/ray.h" #include "../common/scene_points.h" #include "curve_intersector_precalculations.h" namespace embree { namespace isa { template<int M> struct DiscIntersectorHitM { … }; template<> struct DiscIntersectorHitM<1> { … }; template<int M> struct DiscIntersector1 { … }; template<int M, int K> struct DiscIntersectorK { … }; } // namespace isa } // namespace embree