Blender  V3.3
sort.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: Apache-2.0
2  * Adapted from code copyright 2009-2010 NVIDIA Corporation
3  * Modifications Copyright 2011-2022 Blender Foundation. */
4 
5 #ifndef __BVH_SORT_H__
6 #define __BVH_SORT_H__
7 
8 #include <cstddef>
9 
11 
12 class BVHReference;
13 class BVHUnaligned;
14 struct Transform;
15 
16 void bvh_reference_sort(int start,
17  int end,
19  int dim,
20  const BVHUnaligned *unaligned_heuristic = NULL,
21  const Transform *aligned_space = NULL);
22 
24 
25 #endif /* __BVH_SORT_H__ */
#define CCL_NAMESPACE_END
Definition: cuda/compat.h:9
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:151