Jamie Madill | f51639a | 2014-06-25 16:04:57 -0400 | [diff] [blame] | 1 | // |
| 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 Lang | 0a73dd8 | 2014-11-19 16:18:08 -0500 | [diff] [blame] | 10 | #ifndef ANGLEGL_H_ |
| 11 | #define ANGLEGL_H_ |
Jamie Madill | f51639a | 2014-06-25 16:04:57 -0400 | [diff] [blame] | 12 | |
Geoff Lang | 2aaa7b4 | 2018-01-12 17:17:27 -0500 | [diff] [blame] | 13 | #include "GLES/gl.h" |
| 14 | #include "GLES/glext.h" |
Jamie Madill | f51639a | 2014-06-25 16:04:57 -0400 | [diff] [blame] | 15 | #include "GLES2/gl2.h" |
| 16 | #include "GLES2/gl2ext.h" |
| 17 | #include "GLES3/gl3.h" |
Geoff Lang | ee48376 | 2015-09-15 13:12:07 -0400 | [diff] [blame] | 18 | #include "GLES3/gl31.h" |
| 19 | #include "GLES3/gl32.h" |
Jamie Madill | f51639a | 2014-06-25 16:04:57 -0400 | [diff] [blame] | 20 | |
Yizhou Jiang | 7818a85 | 2018-09-06 15:02:04 +0800 | [diff] [blame^] | 21 | #endif // ANGLEGL_H_ |