aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <132351311+perogycook@users.noreply.github.com>2023-11-26 07:25:53 +0000
committerMichael <132351311+perogycook@users.noreply.github.com>2023-11-26 07:25:53 +0000
commitfb48131f3c247a8690d2a166dbc7768be3f53616 (patch)
treeee1e7238b8e183f4669bdad4142a2a98b41d73bb
parent9300c99d654448e4ee353caeac5825a6995ea28e (diff)
More minor fixes
-rw-r--r--vendor/raylib/raylib.odin3
-rw-r--r--vendor/raylib/rlgl.odin4
2 files changed, 6 insertions, 1 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin
index 65f4dc8c9..b4b7e1cd4 100644
--- a/vendor/raylib/raylib.odin
+++ b/vendor/raylib/raylib.odin
@@ -173,6 +173,9 @@ when ODIN_OS == .Windows {
foreign import lib "system:raylib"
}
+VERSION_MAJOR :: 5
+VERSION_MINOR :: 0
+VERSION_PATCH :: 0
VERSION :: "5.0"
PI :: 3.14159265358979323846
diff --git a/vendor/raylib/rlgl.odin b/vendor/raylib/rlgl.odin
index 140890b75..97ab0fd07 100644
--- a/vendor/raylib/rlgl.odin
+++ b/vendor/raylib/rlgl.odin
@@ -1,6 +1,6 @@
/**********************************************************************************************
*
-* rlgl v4.5 - A multi-OpenGL abstraction layer with an immediate-mode style API
+* rlgl v5.0 - A multi-OpenGL abstraction layer with an immediate-mode style API
*
* DESCRIPTION:
* An abstraction layer for multiple OpenGL versions (1.1, 2.1, 3.3 Core, 4.3 Core, ES 2.0)
@@ -109,6 +109,8 @@ package raylib
import "core:c"
+RLGL_VERSION :: "4.5"
+
when ODIN_OS == .Windows {
foreign import lib {
"windows/raylib.lib",