// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_CLIENT_GL_HELPER_SCALING_H_ #define GPU_COMMAND_BUFFER_CLIENT_GL_HELPER_SCALING_H_ #include <map> #include <vector> #include "base/containers/circular_deque.h" #include "base/memory/raw_ptr.h" #include "gpu/command_buffer/client/gl_helper.h" #include "gpu/gpu_export.h" #include "ui/gfx/geometry/vector2d.h" namespace gpu { class GLHelperTest; class ScalerImpl; class ShaderProgram; // Implements GPU texture scaling methods. // Note that you should probably not use this class directly. // See gl_helper.cc::CreateScaler instead. class GPU_EXPORT GLHelperScaling { … }; } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_GL_HELPER_SCALING_H_