Skip to content

Commit e3165e6

Browse files
Allow for all GRAPHICS version to be able to point size
1 parent 8301894 commit e3165e6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/rlgl.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2044,18 +2044,14 @@ float rlGetLineWidth(void)
20442044
// Set the point drawing size
20452045
void rlSetPointSize(float size)
20462046
{
2047-
#if defined(GRAPHICS_API_OPENGL_11)
20482047
glPointSize(size);
2049-
#endif
20502048
}
20512049

20522050
// Get the point drawing size
20532051
float rlGetPointSize(void)
20542052
{
20552053
float size = 1;
2056-
#if defined(GRAPHICS_API_OPENGL_11)
20572054
glGetFloatv(GL_POINT_SIZE, &size);
2058-
#endif
20592055
return size;
20602056

20612057
}

0 commit comments

Comments
 (0)