Flutter Engine Uber Docs
Docs for the entire Flutter Engine repo.
 
Loading...
Searching...
No Matches
gles.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_GLES_H_
6#define FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_GLES_H_
7
8// IWYU pragma: begin_exports
9#include "GLES3/gl3.h"
10
11// Defines for extension enums.
12#define IMPELLER_GL_CLAMP_TO_BORDER 0x812D
13#define IMPELLER_GL_TEXTURE_BORDER_COLOR 0x1004
14
15// GL_EXT_texture_filter_anisotropic
16#define IMPELLER_GL_TEXTURE_MAX_ANISOTROPY 0x84FE
17#define IMPELLER_GL_MAX_TEXTURE_MAX_ANISOTROPY 0x84FF
18
19#define GL_GLEXT_PROTOTYPES
20#include "GLES2/gl2ext.h"
21// IWYU pragma: end_exports
22
23#endif // FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_GLES_H_