Update RGFW (#4259)

* update RGFW

* fix bug with GetCurrentMonitor

* update RGFW

* update RGFW

* clean up merge

* update RGFW
This commit is contained in:
Colleague Riley 2024-08-17 08:00:54 -04:00 committed by GitHub
parent 308b77cd42
commit b432aa2b9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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)