mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-29 23:36:02 +03:00
13 lines
351 B
C++
13 lines
351 B
C++
#ifndef GX_FONT_INTERNAL_HPP
|
|
#define GX_FONT_INTERNAL_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class CGxFont;
|
|
|
|
uint32_t InternalGetMaxCharsWithinWidth(CGxFont*, const char*, float, float, uint32_t, float*, uint32_t, float, float, uint32_t*, float*, float*);
|
|
|
|
void InternalGetTextExtent(CGxFont*, const char*, uint32_t, float, float*, uint32_t, float, float);
|
|
|
|
#endif
|