// 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 SphereIntersectorHitM { … }; template<> struct SphereIntersectorHitM<1> { … }; template<int M> struct SphereIntersector1 { … }; template<int M, int K> struct SphereIntersectorK { … }; } // namespace isa } // namespace embree