update RGFW

This commit is contained in:
ColleagueRiley 2024-08-16 21:32:15 -04:00
parent 65c4003546
commit 9c26d54c02
2 changed files with 2222 additions and 858 deletions

3074
src/external/RGFW.h vendored

File diff suppressed because it is too large Load Diff

View File

@ -1239,15 +1239,15 @@ int InitPlatform(void)
// Check selection OpenGL version
if (rlGetVersion() == RL_OPENGL_21)
{
RGFW_setGLVersion(2, 1);
RGFW_setGLVersion(RGFW_GL_CORE, 2, 1);
}
else if (rlGetVersion() == RL_OPENGL_33)
{
RGFW_setGLVersion(3, 3);
RGFW_setGLVersion(RGFW_GL_CORE, 3, 3);
}
else if (rlGetVersion() == RL_OPENGL_43)
{
RGFW_setGLVersion(4, 1);
RGFW_setGLVersion(RGFW_GL_CORE, 4, 1);
}
if (CORE.Window.flags & FLAG_MSAA_4X_HINT)