// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_OZONE_DEMO_GL_RENDERER_H_ #define UI_OZONE_DEMO_GL_RENDERER_H_ #include <memory> #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "ui/gfx/swap_result.h" #include "ui/ozone/demo/renderer_base.h" namespace gfx { struct PresentationFeedback; } // namespace gfx namespace gl { class GLContext; class GLSurface; } // namespace gl namespace ui { class PlatformWindowSurface; class GlRenderer : public RendererBase { … }; } // namespace ui #endif // UI_OZONE_DEMO_GL_RENDERER_H_