angle_gl.h 586 B

12345678910111213141516171819202122232425
  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. #ifndef ANGLEGL_H_
  10. #define ANGLEGL_H_
  11. #include "GLES2/gl2.h"
  12. #include "GLES2/gl2ext.h"
  13. #include "GLES3/gl3.h"
  14. #include "GLES3/gl31.h"
  15. #include "GLES3/gl32.h"
  16. // The following enum is used in ANGLE, but is from desktop GL
  17. #ifndef GL_SAMPLER_2D_RECT_ARB
  18. #define GL_SAMPLER_2D_RECT_ARB 0x8B63
  19. #endif
  20. #endif // ANGLEGL_H_