diff src/libmlk-core/core/font.h @ 320:8f9937403749

misc: improve loading of data
author David Demelier <markand@malikania.fr>
date Fri, 01 Oct 2021 20:30:00 +0200
parents libmlk-core/core/font.h@d01e83210ca2
children 979960e65f76
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/libmlk-core/core/font.h	Fri Oct 01 20:30:00 2021 +0200
@@ -0,0 +1,63 @@
+/*
+ * font.h -- basic font management
+ *
+ * Copyright (c) 2020-2021 David Demelier <markand@malikania.fr>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifndef MOLKO_CORE_FONT_H
+#define MOLKO_CORE_FONT_H
+
+#include <stddef.h>
+
+#include "core.h"
+
+struct texture;
+
+enum font_style {
+	FONT_STYLE_ANTIALIASED,
+	FONT_STYLE_NONE
+};
+
+struct font {
+	enum font_style style;
+	void *handle;
+};
+
+CORE_BEGIN_DECLS
+
+int
+font_open(struct font *, const char *, unsigned int);
+
+int
+font_openmem(struct font *, const void *, size_t, unsigned int);
+
+int
+font_ok(const struct font *);
+
+int
+font_render(struct font *, struct texture *, const char *, unsigned int);
+
+unsigned int
+font_height(const struct font *);
+
+int
+font_query(const struct font *, const char *, unsigned int *, unsigned int *);
+
+void
+font_finish(struct font *);
+
+CORE_END_DECLS
+
+#endif /* !MOLKO_CORE_FONT_H */