summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/include/bx/radixsort.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bx/include/bx/radixsort.h')
-rw-r--r--3rdparty/bx/include/bx/radixsort.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/3rdparty/bx/include/bx/radixsort.h b/3rdparty/bx/include/bx/radixsort.h
deleted file mode 100644
index 87bd3e310b0..00000000000
--- a/3rdparty/bx/include/bx/radixsort.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2010-2017 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bx#license-bsd-2-clause
- */
-
-#ifndef BX_RADIXSORT_H_HEADER_GUARD
-#define BX_RADIXSORT_H_HEADER_GUARD
-
-#include "bx.h"
-
-namespace bx
-{
- ///
- void radixSort(
- uint32_t* __restrict _keys
- , uint32_t* __restrict _tempKeys
- , uint32_t _size
- );
-
- ///
- template <typename Ty>
- void radixSort(
- uint32_t* __restrict _keys
- , uint32_t* __restrict _tempKeys
- , Ty* __restrict _values
- , Ty* __restrict _tempValues
- , uint32_t _size
- );
-
- ///
- void radixSort(
- uint64_t* __restrict _keys
- , uint64_t* __restrict _tempKeys
- , uint32_t _size
- );
-
- ///
- template <typename Ty>
- void radixSort(
- uint64_t* __restrict _keys
- , uint64_t* __restrict _tempKeys
- , Ty* __restrict _values
- , Ty* __restrict _tempValues
- , uint32_t _size
- );
-
-} // namespace bx
-
-#include "radixsort.inl"
-
-#endif // BX_RADIXSORT_H_HEADER_GUARD