// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_CLIENT_DISPLAY_GL_RENDER_LAYER_H_ #define REMOTING_CLIENT_DISPLAY_GL_RENDER_LAYER_H_ #include <array> #include <memory> #include "base/memory/weak_ptr.h" #include "base/threading/thread_checker.h" #include "remoting/client/display/sys_opengl.h" namespace remoting { class Canvas; // This class is for drawing a texture on the canvas. Must be deleted before the // canvas is deleted. class GlRenderLayer { … }; } // namespace remoting #endif // REMOTING_CLIENT_DISPLAY_GL_RENDER_LAYER_H_