| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_MUS_GLES2_GL_HELPER_H_ |
| 6 #define COMPONENTS_MUS_GLES2_GL_HELPER_H_ |
| 7 |
| 8 #include "gpu/command_buffer/client/gles2_interface.h" |
| 9 |
| 10 class SkRegion; |
| 11 |
| 12 namespace mus { |
| 13 |
| 14 void GLCopySubBufferDamage(gpu::gles2::GLES2Interface* gl, |
| 15 GLenum target, |
| 16 GLuint texture, |
| 17 GLuint previous_texture, |
| 18 const SkRegion& new_damage, |
| 19 const SkRegion& old_damage); |
| 20 |
| 21 } // namespace mus |
| 22 |
| 23 #endif // COMPONENTS_MUS_GLES2_GL_HELPER_H_ |
| OLD | NEW |