Currently Fucked

This commit is contained in:
2024-02-16 13:58:51 -05:00
parent 7a7e73a829
commit f676ef5332
4 changed files with 29 additions and 8 deletions

View File

@@ -80,8 +80,18 @@ public:
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
JGL::RenderText("WHATS BOPPIN muth ~~~ niger ~~~ aphuqqa____?", 0.f, -100.f, 3.f);
JGL::RenderText("CHINESE CHARCTERS DONT WORK", 0.f, -100.f, 1.f);
//JGL::RenderText("WHATS BOPPIN muth ~~~ niger ~~~ aphuqqa____?", 0.f, -100.f, 2.f);
JGL::RenderText("Chinese characters don't work", 0.f, -120.f, 1.f);
JGL::Triangle2D tri
{
{10, -200},
{105, 10},
{-105, 10}
};
JGL::J2D::FillTriangle2D(JGL::Colors::Yellow, tri);
JGL::J2D::FillRect2D(JGL::Colors::Yellow, {32, 32}, {100.5, 100.5});
//glFlush();
}
void OnRefresh(float elapsed) override