Searched refs:texture_id (Results 1 - 25 of 103) sorted by relevance

12345

/external/chromium_org/media/video/
H A Dpicture.cc9 PictureBuffer::PictureBuffer(int32 id, gfx::Size size, uint32 texture_id) argument
12 texture_id_(texture_id) {
17 uint32 texture_id,
21 texture_id_(texture_id),
15 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id, const gpu::Mailbox& texture_mailbox) argument
H A Dpicture.h20 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id);
23 uint32 texture_id,
39 uint32 texture_id() const { function in class:media::PictureBuffer
/external/chromium_org/ui/gl/
H A Dgl_image_surface_texture.cc48 GLint texture_id; local
49 glGetIntegerv(GL_TEXTURE_BINDING_EXTERNAL_OES, &texture_id);
50 DCHECK(texture_id);
52 if (texture_id_ && texture_id_ != texture_id) {
58 if (texture_id != texture_id_) {
73 texture_id_ = texture_id;
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.h53 TransferableFrame() : texture_id(0), sync_point(0) {}
55 TransferableFrame(uint32 texture_id, argument
58 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {}
60 uint32 texture_id; member in struct:content::MailboxOutputSurface::TransferableFrame
H A Dmailbox_output_surface.cc49 if (pending_textures_.front().texture_id) {
51 1, &pending_textures_.front().texture_id);
62 if (!current_backing_.texture_id) {
74 gl->DeleteTextures(1, &texture.texture_id);
78 if (!current_backing_.texture_id) {
79 gl->GenTextures(1, &current_backing_.texture_id);
81 gl->BindTexture(GL_TEXTURE_2D, current_backing_.texture_id);
106 if (current_backing_.texture_id) {
107 gl->DeleteTextures(1, &current_backing_.texture_id);
113 gl->DeleteTextures(1, &frame.texture_id);
187 uint32 texture_id = pending_textures_.front().texture_id; local
[all...]
/external/chromium_org/cc/resources/
H A Dtexture_mailbox_deleter_unittest.cc24 GLuint texture_id = 0u; local
25 context_provider->ContextGL()->GenTextures(1, &texture_id);
31 deleter->GetReleaseCallback(context_provider, texture_id).Pass();
H A Dtexture_mailbox_deleter.cc19 unsigned texture_id,
24 context_provider->ContextGL()->DeleteTextures(1, &texture_id);
48 unsigned texture_id) {
55 texture_id));
17 DeleteTextureOnImplThread( const scoped_refptr<ContextProvider>& context_provider, unsigned texture_id, uint32 sync_point, bool is_lost) argument
46 GetReleaseCallback( const scoped_refptr<ContextProvider>& context_provider, unsigned texture_id) argument
H A Dtexture_mailbox_deleter.h27 // TextureMailbox attached to the |texture_id|. The ReleaseCallback can
35 unsigned texture_id);
/external/chromium_org/content/common/gpu/media/
H A Drendering_helper.h31 uint32 texture_id() const { return texture_id_; } function in class:content::VideoFrameTexture
35 uint32 texture_id,
92 uint32* texture_id,
96 // Render thumbnail in the |texture_id| to the FBO buffer using target
98 void RenderThumbnail(uint32 texture_target, uint32 texture_id);
108 // Delete |texture_id|.
109 void DeleteTexture(uint32 texture_id);
154 // Render |texture_id| to the current view port of the screen using target
156 void RenderTexture(uint32 texture_target, uint32 texture_id);
/external/chromium_org/ppapi/api/
H A Dpp_codecs.idl47 * in the GL texture corresponding to |texture_id|. The plugin can determine
61 uint32_t texture_id;
/external/chromium_org/ui/gl/android/
H A Dsurface_texture.cc29 scoped_refptr<SurfaceTexture> SurfaceTexture::Create(int texture_id) { argument
32 Java_SurfaceTexturePlatformWrapper_create(env, texture_id));
36 int texture_id) {
40 Java_SurfaceTexturePlatformWrapper_createSingleBuffered(env, texture_id));
106 int texture_id; local
107 glGetIntegerv(GL_TEXTURE_BINDING_EXTERNAL_OES, &texture_id);
108 DCHECK(texture_id);
111 env, j_surface_texture_.obj(), texture_id);
35 CreateSingleBuffered( int texture_id) argument
H A Dsurface_texture.h24 static scoped_refptr<SurfaceTexture> Create(int texture_id);
26 static scoped_refptr<SurfaceTexture> CreateSingleBuffered(int texture_id);
/external/chromium_org/ppapi/c/
H A Dpp_codecs.h67 * in the GL texture corresponding to |texture_id|. The plugin can determine
80 uint32_t texture_id; member in struct:PP_VideoPicture
/external/chromium_org/content/browser/compositor/
H A Dreflector_impl.cc49 texture_id(0) {}
101 DCHECK(impl.texture_id);
102 impl.gl_helper->DeleteTexture(impl.texture_id);
103 impl.texture_id = 0;
142 if (impl.texture_id) {
143 impl.gl_helper->CopyTextureFullImage(impl.texture_id, size);
154 if (impl.texture_id) {
155 impl.gl_helper->CopyTextureSubImage(impl.texture_id, rect);
190 impl.texture_id = impl.gl_helper->ConsumeMailboxToTexture(
192 impl.gl_helper->ResizeTexture(impl.texture_id, output_surfac
[all...]
H A Downed_mailbox.h27 uint32 texture_id() const { return texture_id_; } function in class:content::OwnedMailbox
/external/chromium_org/cc/output/
H A Drender_surface_filters.h28 unsigned texture_id,
/external/chromium_org/ppapi/c/dev/
H A Dpp_video_dev.h97 uint32_t texture_id; member in struct:PP_PictureBuffer_Dev
/external/chromium_org/content/renderer/media/android/
H A Dstream_texture_factory.h65 // Creates a StreamTexture and returns its id. Sets |*texture_id| to the
69 unsigned* texture_id,
73 virtual void SetStreamTextureSize(int32 texture_id,
H A Dstream_texture_factory_impl.h35 unsigned* texture_id,
37 virtual void SetStreamTextureSize(int32 texture_id,
/external/chromium_org/media/filters/
H A Dgpu_video_accelerator_factories.h59 virtual void DeleteTexture(uint32 texture_id) = 0;
65 virtual void ReadPixels(uint32 texture_id,
H A Dmock_gpu_video_accelerator_factories.h40 MOCK_METHOD1(DeleteTexture, void(uint32 texture_id));
43 void(uint32 texture_id,
/external/chromium_org/ppapi/api/dev/
H A Dpp_video_dev.idl80 uint32_t texture_id;
/external/chromium_org/ppapi/proxy/
H A Dvideo_decoder_resource.h99 Picture(int32_t decode_id, uint32_t texture_id);
103 uint32_t texture_id; member in struct:ppapi::proxy::VideoDecoderResource::Picture
120 uint32_t texture_id);
122 uint32_t texture_id);
134 void DeleteGLTexture(uint32_t texture_id);
H A Dvideo_decoder_resource.cc52 VideoDecoderResource::Picture::Picture(int32_t decode_id, uint32_t texture_id) argument
53 : decode_id(decode_id), texture_id(texture_id) {
277 Post(RENDERER, PpapiHostMsg_VideoDecoder_RecyclePicture(picture->texture_id));
402 uint32_t texture_id) {
403 received_pictures_.push(Picture(decode_id, texture_id));
418 uint32_t texture_id) {
419 DeleteGLTexture(texture_id);
420 textures_.erase(texture_id);
488 received_pictures_.front().texture_id));
399 OnPluginMsgPictureReady( const ResourceMessageReplyParams& params, int32_t decode_id, uint32_t texture_id) argument
416 OnPluginMsgDismissPicture( const ResourceMessageReplyParams& params, uint32_t texture_id) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dvideo_decoder_shim.cc402 uint32_t plugin_texture_id = buffers[i].texture_id();
412 uint32_t texture_id = static_cast<uint32_t>(picture_buffer_id); local
413 if (textures_to_dismiss_.find(texture_id) != textures_to_dismiss_.end()) {
414 DismissTexture(texture_id);
415 } else if (texture_id_map_.find(texture_id) != texture_id_map_.end()) {
416 available_textures_.insert(texture_id);
520 uint32_t texture_id = *it; local
523 uint32_t local_texture_id = texture_id_map_[texture_id];
538 media::Picture(texture_id, frame->decode_id, frame->visible_rect));
579 void VideoDecoderShim::DismissTexture(uint32_t texture_id) { argument
588 DeleteTexture(uint32_t texture_id) argument
[all...]

Completed in 300 milliseconds

12345