mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
15 lines
400 B
C++
15 lines
400 B
C++
// gles2_egl.h
|
|
/*
|
|
FRT - A Godot platform targeting single board computers
|
|
Copyright (c) 2017-2022 Emanuele Fornara
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "dl/gles2.gen.h"
|
|
|
|
// Hack to make the GLES2 driver happy and prevent it from including EGL.
|
|
// No dl/egl.gen.h because indirectly including X11 causes name clashes.
|
|
#define __egl_h_
|
|
#define __eglext_h_
|
|
#define eglGetProcAddress(x) (0)
|