Skip to content

Commit

Permalink
Reviewed input params #3974
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed May 12, 2024
1 parent f622021 commit 7a1cad3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rlgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -591,8 +591,8 @@ RLAPI void rlFrustum(double left, double right, double bottom, double top, doubl
RLAPI void rlOrtho(double left, double right, double bottom, double top, double znear, double zfar);
RLAPI void rlViewport(int x, int y, int width, int height); // Set the viewport area
RLAPI void rlSetClipPlanes(double near, double far); // Set clip planes distances
RLAPI double rlGetCullDistanceNear(); // Get cull plane distance near
RLAPI double rlGetCullDistanceFar(); // Get cull plane distance far
RLAPI double rlGetCullDistanceNear(void); // Get cull plane distance near
RLAPI double rlGetCullDistanceFar(void); // Get cull plane distance far

//------------------------------------------------------------------------------------
// Functions Declaration - Vertex level operations
Expand Down Expand Up @@ -2038,7 +2038,7 @@ void rlClearScreenBuffers(void)
}

// Check and log OpenGL error codes
void rlCheckErrors()
void rlCheckErrors(void)
{
#if defined(GRAPHICS_API_OPENGL_33) || defined(GRAPHICS_API_OPENGL_ES2)
int check = 1;
Expand Down

0 comments on commit 7a1cad3

Please sign in to comment.