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

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

#pragma once

#include "primitive.h"

namespace embree
{
  /* Stores the vertices of M quads in struct of array layout */
  template <int M>
  struct QuadMv
  {};

  template<int M>
  typename QuadMv<M>::Type QuadMv<M>::type;

  Quad4v;
}