godot/thirdparty/embree/kernels/bvh/bvh_rotate.h

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

#pragma once

#include "bvh.h"

namespace embree
{
  namespace isa 
  { 
    template<int N>
    class BVHNRotate
    {};

    /* BVH4 tree rotations */
    template<>
    class BVHNRotate<4>
    {};
  }
}