summaryrefslogtreecommitdiffstats
path: root/gfx/skia/skia/include/ports/SkFontMgr_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/skia/skia/include/ports/SkFontMgr_data.h')
-rw-r--r--gfx/skia/skia/include/ports/SkFontMgr_data.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/gfx/skia/skia/include/ports/SkFontMgr_data.h b/gfx/skia/skia/include/ports/SkFontMgr_data.h
new file mode 100644
index 0000000000..6a22365af4
--- /dev/null
+++ b/gfx/skia/skia/include/ports/SkFontMgr_data.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright 2023 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#ifndef SkFontMgr_data_DEFINED
+#define SkFontMgr_data_DEFINED
+
+#include "include/core/SkData.h"
+#include "include/core/SkRefCnt.h"
+#include "include/core/SkSpan.h"
+#include "include/core/SkTypes.h"
+
+class SkFontMgr;
+
+/** Create a custom font manager which wraps a collection of SkData-stored fonts.
+ * This font manager uses FreeType for rendering.
+ */
+SK_API sk_sp<SkFontMgr> SkFontMgr_New_Custom_Data(SkSpan<sk_sp<SkData>>);
+
+#endif // SkFontMgr_data_DEFINED