1b8e80941Smrg/*
2b8e80941Smrg** Copyright (c) 2008-2017 The Khronos Group Inc.
3b8e80941Smrg**
4b8e80941Smrg** Licensed under the Apache License, Version 2.0 (the "License");
5b8e80941Smrg** you may not use this file except in compliance with the License.
6b8e80941Smrg** You may obtain a copy of the License at
7b8e80941Smrg**
8b8e80941Smrg**     http://www.apache.org/licenses/LICENSE-2.0
9b8e80941Smrg**
10b8e80941Smrg** Unless required by applicable law or agreed to in writing, software
11b8e80941Smrg** distributed under the License is distributed on an "AS IS" BASIS,
12b8e80941Smrg** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13b8e80941Smrg** See the License for the specific language governing permissions and
14b8e80941Smrg** limitations under the License.
15b8e80941Smrg*/
16b8e80941Smrg
17848b8605Smrg/*
18848b8605Smrg * Skeleton egl.h to provide compatibility for early GLES 1.0
19848b8605Smrg * applications. Several early implementations included gl.h
20848b8605Smrg * in egl.h leading applications to include only egl.h
21848b8605Smrg */
22848b8605Smrg
23848b8605Smrg#ifndef __legacy_egl_h_
24848b8605Smrg#define __legacy_egl_h_
25848b8605Smrg
26848b8605Smrg#include <EGL/egl.h>
27848b8605Smrg#include <GLES/gl.h>
28848b8605Smrg
29848b8605Smrg#endif /* __legacy_egl_h_ */
30