//1// Copyright 2014 The ANGLE Project Authors. All rights reserved.2// Use of this source code is governed by a BSD-style license that can be3// found in the LICENSE file.4//5// angle_gl.h:6// Includes all necessary GL headers and definitions for ANGLE.7//89#ifndef ANGLEGL_H_10#define ANGLEGL_H_1112#include "GLES/gl.h"13#include "GLES/glext.h"14#include "GLES2/gl2.h"15#include "GLES2/gl2ext.h"16#include "GLES3/gl3.h"17#include "GLES3/gl31.h"18#include "GLES3/gl32.h"1920// TODO(http://anglebug.com/3730): Autogenerate these enums from gl.xml21// HACK: Defines for queries that are not in GLES22#define GL_CONTEXT_PROFILE_MASK 0x912623#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT 0x0000000224#define GL_CONTEXT_CORE_PROFILE_BIT 0x000000012526#endif // ANGLEGL_H_272829