Font loading progress

This commit is contained in:
2023-06-09 09:04:45 -07:00
parent d70ae88359
commit 8b3ecc88a6
18 changed files with 557 additions and 54 deletions

View File

@ -0,0 +1,13 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "util/flag.hpp"
#define NEW_TRUETYPE_CHAR_BEGIN 32
#define NEW_TRUETYPE_CHAR_END 192
#define NEW_TRUETYPE_VARIANT_BOLD FLAG_DEFINE(0)
#define NEW_TRUETYPE_VARIANT_ITALICS FLAG_DEFINE(1)

View File

@ -4,7 +4,7 @@
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
#include "dawnsharedlibs.hpp"
typedef uint_fast8_t flag8_t;
typedef uint_fast16_t flag16_t;