// // Copyright 2002 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // Config.h: Defines the egl::Config class, describing the format, type // and size for an egl::Surface. Implements EGLConfig and related functionality. // [EGL 1.5] section 3.4 page 19. #ifndef INCLUDE_CONFIG_H_ #define INCLUDE_CONFIG_H_ #include "libANGLE/AttributeMap.h" #include "common/angleutils.h" #include <EGL/egl.h> #include <GLES2/gl2.h> #include <map> #include <vector> namespace egl { struct Config { … }; class ConfigSet { … }; } // namespace egl #endif // INCLUDE_CONFIG_H_