Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-03-31 20:25:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-31 20:25:27 +0300
commit91d0825b5556150c017dad767f7971bb6a731aec (patch)
treef014e4855bdc65c877b674f88d15f49c057cd615 /source/blender/blenlib/BLI_sort_utils.h
parentae3a1da1e641c89aeb3ac0d681bdbe14ecdf0ee7 (diff)
BLI_sort_utils: add pointer sorting callback
Also rename Pointer -> Ptr
Diffstat (limited to 'source/blender/blenlib/BLI_sort_utils.h')
-rw-r--r--source/blender/blenlib/BLI_sort_utils.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_sort_utils.h b/source/blender/blenlib/BLI_sort_utils.h
index e08f4e5ac83..f6bd80b30d3 100644
--- a/source/blender/blenlib/BLI_sort_utils.h
+++ b/source/blender/blenlib/BLI_sort_utils.h
@@ -32,7 +32,7 @@
* \note keep \a sort_value first,
* so cmp functions can be reused.
*/
-struct SortPointerByFloat {
+struct SortPtrByFloat {
float sort_value;
void *data;
};
@@ -42,7 +42,7 @@ struct SortIntByFloat {
int data;
};
-struct SortPointerByInt {
+struct SortPtrByInt {
int sort_value;
void *data;
};
@@ -58,4 +58,7 @@ int BLI_sortutil_cmp_float_reverse(const void *a_, const void *b_);
int BLI_sortutil_cmp_int(const void *a_, const void *b_);
int BLI_sortutil_cmp_int_reverse(const void *a_, const void *b_);
+int BLI_sortutil_cmp_ptr(const void *a_, const void *b_);
+int BLI_sortutil_cmp_ptr_reverse(const void *a_, const void *b_);
+
#endif /* __BLI_SORT_UTILS_H__ */