mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 10:14:13 +08:00
5b2d71ab88
Token from commit 91cdaf381d77b6e700654ecd78cb88a95c1fde1a of OpenGL-Registry. Signed-off-by: Simon Ser <contact@emersion.fr> Reviewed-by: Eric Engestrom <eric@engestrom.ch> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23144>
19 lines
399 B
C
19 lines
399 B
C
/*
|
|
** Copyright 2008-2020 The Khronos Group Inc.
|
|
** SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* Skeleton egl.h to provide compatibility for early GLES 1.0
|
|
* applications. Several early implementations included gl.h
|
|
* in egl.h leading applications to include only egl.h
|
|
*/
|
|
|
|
#ifndef __legacy_egl_h_
|
|
#define __legacy_egl_h_
|
|
|
|
#include <EGL/egl.h>
|
|
#include <GLES/gl.h>
|
|
|
|
#endif /* __legacy_egl_h_ */
|