summaryrefslogtreecommitdiff
path: root/include/mbgl/util/font_stack.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/font_stack.hpp')
-rw-r--r--include/mbgl/util/font_stack.hpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/mbgl/util/font_stack.hpp b/include/mbgl/util/font_stack.hpp
index d0b431e9ea..ace60a4ba6 100644
--- a/include/mbgl/util/font_stack.hpp
+++ b/include/mbgl/util/font_stack.hpp
@@ -1,7 +1,11 @@
#pragma once
+#include <mbgl/util/immutable.hpp>
+#include <mbgl/style/layer.hpp>
+
#include <string>
#include <vector>
+#include <set>
namespace mbgl {
@@ -14,4 +18,7 @@ struct FontStackHash {
std::size_t operator()(const FontStack&) const;
};
+// Statically evaluate layer properties to determine what font stacks are used.
+std::set<FontStack> fontStacks(const std::vector<Immutable<style::Layer::Impl>>&);
+
} // namespace mbgl