// // Copyright 2016 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. // // ContextImpl: // Implementation-specific functionality associated with a GL Context. // #ifndef LIBANGLE_RENDERER_CONTEXTIMPL_H_ #define LIBANGLE_RENDERER_CONTEXTIMPL_H_ #include <vector> #include "common/angleutils.h" #include "libANGLE/State.h" #include "libANGLE/renderer/GLImplFactory.h" namespace gl { class ErrorSet; class MemoryProgramCache; class Path; class PixelLocalStoragePlane; class Semaphore; struct Workarounds; } // namespace gl namespace angle { struct ImageLoadContext; } namespace rx { class ContextImpl : public GLImplFactory { … }; } // namespace rx #endif // LIBANGLE_RENDERER_CONTEXTIMPL_H_