Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Side by Side Diff: content/renderer/media/android/stream_texture_factory_impl.cc

Issue 371463009: Making use of bindless variants mailbox produce/consume on remainders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/media/android/stream_texture_factory_impl.h" 5 #include "content/renderer/media/android/stream_texture_factory_impl.h"
6 6
7 #include "cc/output/context_provider.h" 7 #include "cc/output/context_provider.h"
8 #include "content/common/gpu/client/gpu_channel_host.h" 8 #include "content/common/gpu/client/gpu_channel_host.h"
9 #include "content/common/gpu/gpu_messages.h" 9 #include "content/common/gpu/gpu_messages.h"
10 #include "content/renderer/gpu/stream_texture_host_android.h" 10 #include "content/renderer/gpu/stream_texture_host_android.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 unsigned texture_target, 113 unsigned texture_target,
114 unsigned* texture_id, 114 unsigned* texture_id,
115 gpu::Mailbox* texture_mailbox) { 115 gpu::Mailbox* texture_mailbox) {
116 GLuint stream_id = 0; 116 GLuint stream_id = 0;
117 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL(); 117 gpu::gles2::GLES2Interface* gl = context_provider_->ContextGL();
118 gl->GenTextures(1, texture_id); 118 gl->GenTextures(1, texture_id);
119 119
120 stream_id = gl->CreateStreamTextureCHROMIUM(*texture_id); 120 stream_id = gl->CreateStreamTextureCHROMIUM(*texture_id);
121 121
122 gl->GenMailboxCHROMIUM(texture_mailbox->name); 122 gl->GenMailboxCHROMIUM(texture_mailbox->name);
123 gl->BindTexture(texture_target, *texture_id); 123 gl->ProduceTextureDirectCHROMIUM(
124 gl->ProduceTextureCHROMIUM(texture_target, texture_mailbox->name); 124 *texture_id, texture_target, texture_mailbox->name);
125 return stream_id; 125 return stream_id;
126 } 126 }
127 127
128 void StreamTextureFactoryImpl::SetStreamTextureSize(int32 stream_id, 128 void StreamTextureFactoryImpl::SetStreamTextureSize(int32 stream_id,
129 const gfx::Size& size) { 129 const gfx::Size& size) {
130 channel_->Send(new GpuStreamTextureMsg_SetSize(stream_id, size)); 130 channel_->Send(new GpuStreamTextureMsg_SetSize(stream_id, size));
131 } 131 }
132 132
133 gpu::gles2::GLES2Interface* StreamTextureFactoryImpl::ContextGL() { 133 gpu::gles2::GLES2Interface* StreamTextureFactoryImpl::ContextGL() {
134 return context_provider_->ContextGL(); 134 return context_provider_->ContextGL();
135 } 135 }
136 136
137 } // namespace content 137 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698