Initial Commit
This commit is contained in:
26
include/JGL/JGL.h
Normal file
26
include/JGL/JGL.h
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user