Index: content/common/gpu/media/gpu_video_decode_accelerator.cc |
diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc |
index 2539aba446b38d219904e21a1a12bcd2a1e7c8d9..f219ea9d76359852b007e6ee71168ee6f57e0836 100644 |
--- a/content/common/gpu/media/gpu_video_decode_accelerator.cc |
+++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc |
@@ -447,17 +447,14 @@ |
#if (defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY)) || defined(OS_MACOSX) |
void GpuVideoDecodeAccelerator::BindImage(uint32_t client_texture_id, |
uint32_t texture_target, |
- scoped_refptr<gl::GLImage> image, |
- bool can_bind_to_sampler) { |
+ scoped_refptr<gl::GLImage> image) { |
gpu::gles2::GLES2Decoder* command_decoder = stub_->decoder(); |
gpu::gles2::TextureManager* texture_manager = |
command_decoder->GetContextGroup()->texture_manager(); |
gpu::gles2::TextureRef* ref = texture_manager->GetTexture(client_texture_id); |
if (ref) { |
texture_manager->SetLevelImage(ref, texture_target, 0, image.get(), |
- can_bind_to_sampler |
- ? gpu::gles2::Texture::BOUND |
- : gpu::gles2::Texture::UNBOUND); |
+ gpu::gles2::Texture::BOUND); |
} |
} |
#endif |