blob: d2ec0a360793404cdccc565ab7d73545368f5658 [file] [log] [blame]
Jamie Madillf51639a2014-06-25 16:04:57 -04001//
2// Copyright (c) 2014 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// angle_gl.h:
7// Includes all necessary GL headers and definitions for ANGLE.
8//
9
Geoff Lang0a73dd82014-11-19 16:18:08 -050010#ifndef ANGLEGL_H_
11#define ANGLEGL_H_
Jamie Madillf51639a2014-06-25 16:04:57 -040012
Geoff Lang2aaa7b42018-01-12 17:17:27 -050013#include "GLES/gl.h"
14#include "GLES/glext.h"
Jamie Madillf51639a2014-06-25 16:04:57 -040015#include "GLES2/gl2.h"
16#include "GLES2/gl2ext.h"
17#include "GLES3/gl3.h"
Geoff Langee483762015-09-15 13:12:07 -040018#include "GLES3/gl31.h"
19#include "GLES3/gl32.h"
Jamie Madillf51639a2014-06-25 16:04:57 -040020
Yizhou Jiang7818a852018-09-06 15:02:04 +080021#endif // ANGLEGL_H_