summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-03-13 23:13:02 +0100
committerRay <[email protected]>2023-03-13 23:13:02 +0100
commit5a2c49b9541493b446291f2ff6a241522432b478 (patch)
tree6aa2612dd4a6605c310227f8bebdba72bb994d74 /src
parent90ec0d52e045b4b3be9e2a7cd8d18a742882e457 (diff)
downloadraylib-5a2c49b9541493b446291f2ff6a241522432b478.tar.gz
raylib-5a2c49b9541493b446291f2ff6a241522432b478.zip
Updated Makefiles to include all missing new examples
Diffstat (limited to 'src')
-rw-r--r--src/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile
index 4d9c8723..1667a974 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -45,8 +45,8 @@
PLATFORM ?= PLATFORM_DESKTOP
# Define required raylib variables
-RAYLIB_VERSION = 4.2.0
-RAYLIB_API_VERSION = 420
+RAYLIB_VERSION = 4.5.0
+RAYLIB_API_VERSION = 450
# Define raylib source code path
RAYLIB_SRC_PATH ?= ../src
@@ -231,8 +231,10 @@ endif
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# By default use OpenGL 3.3 on desktop platforms
GRAPHICS ?= GRAPHICS_API_OPENGL_33
- #GRAPHICS = GRAPHICS_API_OPENGL_11 # Uncomment to use OpenGL 1.1
- #GRAPHICS = GRAPHICS_API_OPENGL_21 # Uncomment to use OpenGL 2.1
+ #GRAPHICS = GRAPHICS_API_OPENGL_11 # Uncomment to use OpenGL 1.1
+ #GRAPHICS = GRAPHICS_API_OPENGL_21 # Uncomment to use OpenGL 2.1
+ #GRAPHICS = GRAPHICS_API_OPENGL_43 # Uncomment to use OpenGL 4.3
+ #GRAPHICS = GRAPHICS_API_OPENGL_ES2 # Uncomment to use OpenGL ES 2.0 (ANGLE)
endif
ifeq ($(PLATFORM),PLATFORM_RPI)
# On RPI OpenGL ES 2.0 must be used