Home | History | Annotate | Download | only in media

Lines Matching defs:texture_id

153     uint32 texture_id = created_textures_[i];
154 gles2->BindTexture(texture_target, texture_id);
178 void RendererGpuVideoDecoderFactories::DeleteTexture(uint32 texture_id) {
180 AsyncDeleteTexture(texture_id);
184 &RendererGpuVideoDecoderFactories::AsyncDeleteTexture, this, texture_id));
187 void RendererGpuVideoDecoderFactories::AsyncDeleteTexture(uint32 texture_id) {
193 gles2->DeleteTextures(1, &texture_id);
226 uint32 texture_id, uint32 texture_target, const gfx::Size& size,
237 texture_id, texture_target, size));
243 AsyncReadPixels(texture_id, texture_target, size);
250 uint32 texture_id, uint32 texture_target, const gfx::Size& size) {
267 texture_target, texture_id, tmp_texture, 0, GL_RGBA, GL_UNSIGNED_BYTE);