diff options
| author | Ray <[email protected]> | 2024-03-18 09:09:26 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2024-03-18 09:09:26 +0100 |
| commit | d7ff0175c163febc14ac65730cd4b30a13ee1473 (patch) | |
| tree | 866851af634e4224f89f11fd5335e6786bcc1272 /src/rlgl.h | |
| parent | 8b0dd44316e2497bfc49790534db386454e596af (diff) | |
| download | raylib-d7ff0175c163febc14ac65730cd4b30a13ee1473.tar.gz raylib-d7ff0175c163febc14ac65730cd4b30a13ee1473.zip | |
Fix #3876 and also `rlgl` review on #3783
Diffstat (limited to 'src/rlgl.h')
| -rw-r--r-- | src/rlgl.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -903,10 +903,14 @@ RLAPI void rlLoadDrawQuad(void); // Load and draw a quad #define GL_TEXTURE_MAX_ANISOTROPY_EXT 0x84FE #endif -#if !defined(GL_PROGRAM_POINT_SIZE) +#ifndef GL_PROGRAM_POINT_SIZE #define GL_PROGRAM_POINT_SIZE 0x8642 #endif +#ifndef GL_LINE_WIDTH + #define GL_LINE_WIDTH 0x0B21 +#endif + #if defined(GRAPHICS_API_OPENGL_11) #define GL_UNSIGNED_SHORT_5_6_5 0x8363 #define GL_UNSIGNED_SHORT_5_5_5_1 0x8034 |
