| Index: gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h b/gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h
|
| index dd705323badecb1833e85a8da0353fb8b1dbd7f3..a3cb89e54e27897a5296cc00acc27b5957b82451 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h
|
| @@ -44,6 +44,15 @@ class GPU_EXPORT CopyTextureCHROMIUMResourceManager {
|
| bool premultiply_alpha,
|
| bool unpremultiply_alpha);
|
|
|
| + void DoCopyTexImage2D(const gpu::gles2::GLES2Decoder* decoder,
|
| + GLenum source_target,
|
| + GLuint source_id,
|
| + GLenum dest_target,
|
| + GLuint dest_id,
|
| + GLenum dest_internal_format,
|
| + GLsizei width,
|
| + GLsizei height);
|
| +
|
| void DoCopySubTexture(const gles2::GLES2Decoder* decoder,
|
| GLenum source_target,
|
| GLuint source_id,
|
| @@ -65,6 +74,18 @@ class GPU_EXPORT CopyTextureCHROMIUMResourceManager {
|
| bool premultiply_alpha,
|
| bool unpremultiply_alpha);
|
|
|
| + void DoCopyTexSubImage2D(const gpu::gles2::GLES2Decoder* decoder,
|
| + GLenum source_target,
|
| + GLuint source_id,
|
| + GLenum dest_target,
|
| + GLuint dest_id,
|
| + GLint xoffset,
|
| + GLint yoffset,
|
| + GLint x,
|
| + GLint y,
|
| + GLsizei width,
|
| + GLsizei height);
|
| +
|
| void DoCopySubTextureWithTransform(const gles2::GLES2Decoder* decoder,
|
| GLenum source_target,
|
| GLuint source_id,
|
|
|