| 185 | static HFont LoadTTFInternal(const char* path, const void* buffer, uint32_t buffer_size, bool allocate); |
| 186 | |
| 187 | HFont FontLoadFromMemoryTTF(const char* path, const void* buffer, uint32_t buffer_size, bool allocate) |
| 188 | { |
| 189 | return LoadTTFInternal(path, buffer, buffer_size, allocate); |
| 190 | } |
| 191 | |
| 192 | #if defined(FONT_USE_HARFBUZZ) |
| 193 | static int LoadHBFont(TTFFont* font, void* buffer, uint32_t buffer_size) |
no test coverage detected