godot/thirdparty/embree/kernels/geometry/line_intersector.h

// Copyright 2009-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include "../common/ray.h"
#include "curve_intersector_precalculations.h"

namespace embree
{
  namespace isa
  {
    template<int M>
      struct LineIntersectorHitM
      {};
    
    template<int M>
      struct FlatLinearCurveIntersector1
      {};
    
    template<int M, int K>
      struct FlatLinearCurveIntersectorK
      {};
  }
}