summaryrefslogtreecommitdiffhomepage
path: root/src/rlgl.h
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-31 15:54:52 +0100
committerRay <[email protected]>2023-10-31 15:54:52 +0100
commitde7beef05d56a23c4ab06202013965e3da014ef3 (patch)
treec28ba654bd992085d912c180aa1c252051d3b387 /src/rlgl.h
parentf88604e6d5e0b17280b05081450a0e9b31d8621d (diff)
downloadraylib-de7beef05d56a23c4ab06202013965e3da014ef3.tar.gz
raylib-de7beef05d56a23c4ab06202013965e3da014ef3.zip
Remove trailing spaces
Diffstat (limited to 'src/rlgl.h')
-rw-r--r--src/rlgl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlgl.h b/src/rlgl.h
index 707555dd..fcb8feeb 100644
--- a/src/rlgl.h
+++ b/src/rlgl.h
@@ -633,7 +633,7 @@ RLAPI void rlDisableScissorTest(void); // Disable scissor test
RLAPI void rlScissor(int x, int y, int width, int height); // Scissor test
RLAPI void rlEnableWireMode(void); // Enable wire mode
RLAPI void rlEnablePointMode(void); // Enable point mode
-RLAPI void rlDisableWireMode(void); // Disable wire mode ( and point ) maybe rename
+RLAPI void rlDisableWireMode(void); // Disable wire mode ( and point ) maybe rename
RLAPI void rlSetLineWidth(float width); // Set the line drawing width
RLAPI float rlGetLineWidth(void); // Get the line drawing width
RLAPI void rlEnableSmoothLines(void); // Enable line aliasing
@@ -1823,7 +1823,7 @@ void rlEnablePointMode(void)
#if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
// NOTE: glPolygonMode() not available on OpenGL ES
glPolygonMode(GL_FRONT_AND_BACK, GL_POINT);
- glEnable(GL_PROGRAM_POINT_SIZE);
+ glEnable(GL_PROGRAM_POINT_SIZE);
#endif
}
// Disable wire mode