OPENGL order rewrite

This commit is contained in:
2022-06-26 13:36:38 +00:00
parent 8009c48547
commit bccb0a53fd
3 changed files with 32 additions and 15 deletions

View File

@@ -19,7 +19,10 @@ struct sFont {
struct Character Characters[127];
};
struct mSDLWindow;
void font_init();
void font_frame(struct mSDLWindow *w);
struct sFont *MakeFont(const char *fontfile, int height);
void sdrawCharacter(struct Character c, mfloat_t cursor[2], float scale,
struct mShader *shader, float color[3]);