aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorRay <raysan5@gmail.com>2016-06-16 20:25:50 +0200
committerRay <raysan5@gmail.com>2016-06-16 20:25:50 +0200
commit4df7a0f2f8cf5c4dde236bd99d05d83c7b472db5 (patch)
treee6c561533268010b868e7fa2d1e367d8f2e94bcb /src/Makefile
parent3468af213f88cd367eac43826ad49f9e9fc730f4 (diff)
downloadraylib-4df7a0f2f8cf5c4dde236bd99d05d83c7b472db5.tar.gz
raylib-4df7a0f2f8cf5c4dde236bd99d05d83c7b472db5.zip
Added support for OpenGL 2.1
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index ce703c3a..33b666b4 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -51,6 +51,7 @@ ifeq ($(PLATFORM),PLATFORM_RPI)
else
# define raylib graphics api to use (OpenGL 1.1 by default)
GRAPHICS ?= GRAPHICS_API_OPENGL_11
+ #GRAPHICS = GRAPHICS_API_OPENGL_21 # Uncomment to use OpenGL 2.1
#GRAPHICS = GRAPHICS_API_OPENGL_33 # Uncomment to use OpenGL 3.3
endif
ifeq ($(PLATFORM),PLATFORM_WEB)