Blender V4.3
sort.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2009-2010 NVIDIA Corporation
2 * SPDX-FileCopyrightText: 2011-2022 Blender Foundation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Adapted code from NVIDIA Corporation. */
7
8#ifndef __BVH_SORT_H__
9#define __BVH_SORT_H__
10
11#include <cstddef>
12
14
15class BVHReference;
16class BVHUnaligned;
17struct Transform;
18
19void bvh_reference_sort(int start,
20 int end,
21 BVHReference *data,
22 int dim,
23 const BVHUnaligned *unaligned_heuristic = NULL,
24 const Transform *aligned_space = NULL);
25
27
28#endif /* __BVH_SORT_H__ */
#define CCL_NAMESPACE_END
#define NULL
void bvh_reference_sort(int start, int end, BVHReference *data, int dim, const BVHUnaligned *unaligned_heuristic=NULL, const Transform *aligned_space=NULL)
Definition sort.cpp:162