Initial Commit

This commit is contained in:
2024-01-18 23:28:11 -05:00
commit 742dfd65e8
6 changed files with 199 additions and 0 deletions

26
include/JGL/JGL.h Normal file
View File

@@ -0,0 +1,26 @@
//
// Created by dawsh on 1/17/24.
//
#pragma once
// OpenGL Wrapper for rendering 2D graphics primitives in both a 2D and 3D context
namespace JGL
{
void DrawPixel();
void DrawLine();
void OutlineCircle();
void FillCircle();
void OutlineTriangle();
void FillTriangle();
void FillTexturedTriangle();
void FillTexturedPolygon();
void DrawSprite();
void DrawPartialSprite();
void DrawString();
void FillRect();
void OutlineRect();
void OutlinePolygon();
void FillPolygon();
void GradientFillRect();
}