diff options
Diffstat (limited to 'gpu/command_buffer')
-rw-r--r-- | gpu/command_buffer/client/gles2_implementation.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc index c482d39..7aae38e 100644 --- a/gpu/command_buffer/client/gles2_implementation.cc +++ b/gpu/command_buffer/client/gles2_implementation.cc @@ -995,7 +995,8 @@ void GLES2Implementation::TexSubImage2D( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void* pixels) { TexSubImage2DImpl( - target, level, 0, 0, width, height, format, type, pixels, GL_FALSE); + target, level, xoffset, yoffset, width, height, format, type, pixels, + GL_FALSE); } void GLES2Implementation::TexSubImage2DImpl( |