1//
2// Copyright (c) 2018 The ANGLE Project Authors. All rights reserved.
3// Use of this source code is governed by a BSD-style license that can be
4// found in the LICENSE file.
5//
6// glext_angle.h: ANGLE modifications to the glext.h header file.
7// Currently we don't include this file directly, we patch glext.h
8// to include it implicitly so it is visible throughout our code.
9
10#ifndef INCLUDE_GLES_GLEXT_ANGLE_H_
11#define INCLUDE_GLES_GLEXT_ANGLE_H_
12
13// clang-format off
14
15#ifndef GL_ANGLE_explicit_context_gles1
16#define GL_ANGLE_explicit_context_gles1
17typedef void *GLeglContext;
18#include "glext_explicit_context_autogen.inc"
19#endif /* GL_ANGLE_explicit_context_gles1 */
20
21// clang-format on
22
23#endif // INCLUDE_GLES_GLEXT_ANGLE_H_
24