// // 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. // // DisplayGL.h: Defines the class interface for DisplayGL. #ifndef LIBANGLE_RENDERER_GL_DISPLAYGL_H_ #define LIBANGLE_RENDERER_GL_DISPLAYGL_H_ #include "libANGLE/renderer/DisplayImpl.h" #include "libANGLE/renderer/ShareGroupImpl.h" #include "libANGLE/renderer/gl/FunctionsGL.h" namespace egl { class Surface; } namespace rx { class ShareGroupGL : public ShareGroupImpl { … }; class RendererGL; class DisplayGL : public DisplayImpl { … }; } // namespace rx #endif // LIBANGLE_RENDERER_GL_DISPLAYGL_H_