We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8301894 commit 37bab54Copy full SHA for 37bab54
src/rlgl.h
@@ -2044,7 +2044,7 @@ float rlGetLineWidth(void)
2044
// Set the point drawing size
2045
void rlSetPointSize(float size)
2046
{
2047
-#if defined(GRAPHICS_API_OPENGL_11)
+#if defined(GRAPHICS_API_OPENGL_11) || defined(GRAPHICS_API_OPENGL_33)
2048
glPointSize(size);
2049
#endif
2050
}
@@ -2053,7 +2053,7 @@ void rlSetPointSize(float size)
2053
float rlGetPointSize(void)
2054
2055
float size = 1;
2056
2057
glGetFloatv(GL_POINT_SIZE, &size);
2058
2059
return size;
0 commit comments