26 lines
564 B
C++
26 lines
564 B
C++
//
|
|
// 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();
|
|
} |