#pragma once
#include "bvh.h"
#include "../common/ray.h"
#include "../common/stack_item.h"
#include "node_intersector_frustum.h"
namespace embree
{
namespace isa
{
template<int K, bool robust>
struct TravRayK;
template<int N, int K, int types, bool robust, typename PrimitiveIntersectorK, bool single = true>
class BVHNIntersectorKHybrid
{ … };
template<int N, int K, int types, bool robust, typename PrimitiveIntersectorK>
class BVHNIntersectorKChunk : public BVHNIntersectorKHybrid<N, K, types, robust, PrimitiveIntersectorK, false> { … };
}
}