Index: gpu/ipc/service/stream_texture_android.cc |
diff --git a/gpu/ipc/service/stream_texture_android.cc b/gpu/ipc/service/stream_texture_android.cc |
index ae9673e4e01e5ff9e7e7d6ac59101bb77ffc8845..5754ec8f6fc8580579272d4d660db177ad068a4b 100644 |
--- a/gpu/ipc/service/stream_texture_android.cc |
+++ b/gpu/ipc/service/stream_texture_android.cc |
@@ -51,7 +51,7 @@ bool StreamTexture::Create(GpuCommandBufferStub* owner_stub, |
GL_UNSIGNED_BYTE, gfx::Rect(size)); |
texture_manager->SetLevelStreamTextureImage( |
texture, GL_TEXTURE_EXTERNAL_OES, 0, gl_image.get(), |
- gles2::Texture::UNBOUND); |
+ gles2::Texture::UNBOUND, 0); |
return true; |
} |
@@ -198,7 +198,7 @@ bool StreamTexture::CopyTexImage(unsigned target) { |
// CopyTexImage() is called each time the surface texture is used for |
// drawing. |
texture->SetLevelStreamTextureImage(GL_TEXTURE_EXTERNAL_OES, 0, this, |
- gles2::Texture::UNBOUND); |
+ gles2::Texture::UNBOUND, 0); |
} |
return true; |