summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/region_sorters.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-06-16 00:51:45 +0200
committerRobin Gareus <robin@gareus.org>2014-06-16 00:51:45 +0200
commitc8fd1d26eb6a1a47f3a4507b4e32263623ac84cf (patch)
tree1dc5b255c818a8161564b398fc0669e153abbecf /libs/ardour/ardour/region_sorters.h
parentc7c3c1e924bc28e5c54e62ea3d9883ae2fe005fd (diff)
fix region un/combine, based on a patch by Tom Brand
Diffstat (limited to 'libs/ardour/ardour/region_sorters.h')
-rw-r--r--libs/ardour/ardour/region_sorters.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/ardour/ardour/region_sorters.h b/libs/ardour/ardour/region_sorters.h
index 9fd739a4da..3afd66bf3c 100644
--- a/libs/ardour/ardour/region_sorters.h
+++ b/libs/ardour/ardour/region_sorters.h
@@ -36,6 +36,19 @@ struct LIBARDOUR_API RegionSortByLayer {
}
};
+/* sort by RegionSortByLayerAndPosition()
+ * is equivalent to
+ * stable_sort by RegionSortByPosition();
+ * stable_sort by RegionSortByLayer();
+ */
+struct LIBARDOUR_API RegionSortByLayerAndPosition {
+ bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
+ return
+ (a->layer() < b->layer() && a->position() < b->position())
+ || (a->layer() == b->layer() && a->position() < b->position());
+ }
+};
+
} // namespace
#endif /* __libardour_region_sorters_h__ */