// // Copyright 2015 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. // // FunctionsGL.h: Defines the FuntionsGL class to contain loaded GL functions #ifndef LIBANGLE_RENDERER_GL_FUNCTIONSGL_H_ #define LIBANGLE_RENDERER_GL_FUNCTIONSGL_H_ #include "common/debug.h" #include "libANGLE/Version.h" #include "libANGLE/renderer/gl/DispatchTableGL_autogen.h" #include "libANGLE/renderer/gl/functionsgl_enums.h" #include "libANGLE/renderer/gl/functionsgl_typedefs.h" namespace egl { class AttributeMap; } // namespace egl namespace rx { enum StandardGL { … }; class FunctionsGL : public DispatchTableGL { … }; } // namespace rx #endif // LIBANGLE_RENDERER_GL_FUNCTIONSGL_H_