// // 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. // // ProgramGL.h: Defines the class interface for ProgramGL. #ifndef LIBANGLE_RENDERER_GL_PROGRAMGL_H_ #define LIBANGLE_RENDERER_GL_PROGRAMGL_H_ #include <string> #include <vector> #include "libANGLE/renderer/ProgramImpl.h" #include "libANGLE/renderer/gl/ProgramExecutableGL.h" namespace angle { struct FeaturesGL; } // namespace angle namespace rx { class FunctionsGL; class RendererGL; class StateManagerGL; class ProgramGL : public ProgramImpl { … }; } // namespace rx #endif // LIBANGLE_RENDERER_GL_PROGRAMGL_H_