Commit: 7ecc97154560c3be9082ab65c9308ec5f2004014
Parent: 5e1ccca056d2cb33f9416e99f72e00dbe6ed8079
Author: Randy Palamar
Date: Mon, 16 Jun 2025 22:39:06 -0600
core/raylib: drop GRAPHICS_API_OPENGL_43 define
we use our own OpenGL 4.3+ definitions, not raylib wrappers.
Diffstat:
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/beamformer.h b/beamformer.h
@@ -2,7 +2,6 @@
#ifndef _BEAMFORMER_H_
#define _BEAMFORMER_H_
-#define GRAPHICS_API_OPENGL_43
#include <raylib_extended.h>
#include <rlgl.h>
diff --git a/build.c b/build.c
@@ -596,7 +596,7 @@ check_build_raylib(Arena a, CommandList cc, b32 shared)
os_copy_file("external/raylib/src/rlgl.h", "external/include/rlgl.h");
if (is_unix) cmd_append(&a, &cc, "-D_GLFW_X11");
- cmd_append(&a, &cc, "-DPLATFORM_DESKTOP_GLFW", "-DGRAPHICS_API_OPENGL_43");
+ cmd_append(&a, &cc, "-DPLATFORM_DESKTOP_GLFW");
if (!is_msvc) cmd_append(&a, &cc, "-Wno-unused-but-set-variable");
cmd_append(&a, &cc, "-Iexternal/raylib/src", "-Iexternal/raylib/src/external/glfw/include");
#define RAYLIB_SOURCES \