Decreased GL,GLFW presence out of Window module

This commit is contained in:
MihailRis
2023-11-09 01:19:44 +03:00
parent 086f04af39
commit 1d9fc44482
6 changed files with 28 additions and 16 deletions
+4 -1
View File
@@ -12,11 +12,14 @@ class Batch2D;
#define STYLE_OUTLINE 2
class Font {
int lineHeight_;
public:
std::vector<Texture*> pages;
Font(std::vector<Texture*> pages);
Font(std::vector<Texture*> pages, int lineHeight);
~Font();
int lineHeight() const;
int calcWidth(std::wstring text);
// int getGlyphWidth(char c);
bool isPrintableChar(int c);
void draw(Batch2D* batch, std::wstring text, int x, int y);