// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "triangle.h" #include "triangle_intersector_moeller.h" namespace embree { namespace isa { /*! Intersects M triangles with 1 ray */ template<int M, bool filter> struct TriangleMIntersector1Moeller { … }; /*! Intersects M triangles with K rays. */ template<int M, int K, bool filter> struct TriangleMIntersectorKMoeller { … }; } }