Searched defs:mailbox (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/gpu/command_buffer/common/
H A Dmailbox_holder.cc11 MailboxHolder::MailboxHolder(const Mailbox& mailbox, argument
14 : mailbox(mailbox),
H A Dmailbox_holder.h11 #include "gpu/command_buffer/common/mailbox.h"
18 MailboxHolder(const gpu::Mailbox& mailbox,
21 gpu::Mailbox mailbox; member in struct:gpu::MailboxHolder
/external/chromium_org/cc/output/
H A Dgl_frame_data.h12 #include "gpu/command_buffer/common/mailbox.h"
23 gpu::Mailbox mailbox; member in class:cc::GLFrameData
/external/chromium_org/cc/layers/
H A Dtexture_layer_impl_unittest.cc26 gpu::Mailbox mailbox; local
28 mailbox.name);
29 TextureMailbox texture_mailbox(mailbox, GL_TEXTURE_2D, 0);
H A Dtexture_layer.h40 const TextureMailbox& mailbox() const { return mailbox_; } function in class:cc::TextureLayer::TextureMailboxHolder
52 const TextureMailbox& mailbox,
60 const TextureMailbox& mailbox,
87 // Used when mailbox names are specified instead of texture IDs.
127 // Code path for plugins which supply their own mailbox.
128 void SetTextureMailbox(const TextureMailbox& mailbox,
135 void SetTextureMailboxWithoutReleaseCallback(const TextureMailbox& mailbox);
152 const TextureMailbox& mailbox,
/external/chromium_org/cc/resources/
H A Dtexture_mailbox.cc20 TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox, argument
23 : mailbox_holder_(mailbox, target, sync_point),
41 return IsTexture() && !memcmp(mailbox_holder_.mailbox.name,
42 other.mailbox_holder_.mailbox.name,
43 sizeof(mailbox_holder_.mailbox.name));
H A Dtexture_mailbox.h19 // can hold a shared memory resource as well as a texture mailbox.
24 TextureMailbox(const gpu::Mailbox& mailbox, uint32 target, uint32 sync_point);
30 bool IsTexture() const { return !mailbox_holder_.mailbox.IsZero(); }
35 const gpu::Mailbox& mailbox() const { return mailbox_holder_.mailbox; } function in class:cc::TextureMailbox
36 const int8* name() const { return mailbox().name; }
H A Dvideo_resource_updater.h80 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::PlaneResource
85 gpu::Mailbox mailbox)
89 mailbox(mailbox) {}
103 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::RecycleResourceData
82 PlaneResource(unsigned resource_id, const gfx::Size& resource_size, ResourceFormat resource_format, gpu::Mailbox mailbox) argument
/external/chromium_org/content/browser/compositor/
H A Dimage_transport_factory_browsertest.cc44 scoped_refptr<OwnedMailbox> mailbox = local
46 EXPECT_FALSE(mailbox->mailbox().IsZero());
66 EXPECT_TRUE(mailbox->mailbox().IsZero());
77 EXPECT_TRUE(mailbox_->mailbox().IsZero());
106 EXPECT_FALSE(mailbox_->mailbox().IsZero());
H A Downed_mailbox.h26 const gpu::Mailbox& mailbox() const { return mailbox_holder_.mailbox; } function in class:content::OwnedMailbox
H A Dreflector_impl.h85 scoped_refptr<OwnedMailbox> mailbox; member in struct:content::ReflectorImpl::MainThreadData
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.h24 // are sent to the browser through the mailbox extension.
56 const gpu::Mailbox& mailbox,
58 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {}
61 gpu::Mailbox mailbox; member in struct:content::MailboxOutputSurface::TransferableFrame
55 TransferableFrame(uint32 texture_id, const gpu::Mailbox& mailbox, const gfx::Size size) argument
/external/chromium_org/content/renderer/pepper/
H A Dppb_graphics_3d_impl.h10 #include "gpu/command_buffer/common/mailbox.h"
56 void GetBackingMailbox(gpu::Mailbox* mailbox, uint32* sync_point) { argument
57 *mailbox = mailbox_;
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_manager.h14 #include "gpu/command_buffer/common/mailbox.h"
31 // Look up the texture definition from the named mailbox.
32 Texture* ConsumeTexture(unsigned target, const Mailbox& mailbox);
34 // Put the texture into the named mailbox.
36 const Mailbox& mailbox,
47 // Destroy any mailbox that reference the given texture.
57 TargetName(unsigned target, const Mailbox& mailbox);
59 Mailbox mailbox; member in struct:gpu::gles2::MailboxManager::TargetName
65 // This is a bidirectional map between mailbox and textures. We can have
66 // multiple mailboxes per texture, but one texture per mailbox
[all...]
H A Dmailbox_manager.cc27 const Mailbox& mailbox) {
28 TargetName target_name(target, mailbox);
35 // See if it's visible in another mailbox manager, and if so make it visible
37 Texture* texture = sync_->CreateTextureFromMailbox(target, mailbox);
49 const Mailbox& mailbox,
51 TargetName target_name(target, mailbox);
97 MailboxManager::TargetName::TargetName(unsigned target, const Mailbox& mailbox) argument
99 mailbox(mailbox) {
106 return lhs.mailbox < rh
26 ConsumeTexture(unsigned target, const Mailbox& mailbox) argument
48 ProduceTexture(unsigned target, const Mailbox& mailbox, Texture* texture) argument
[all...]
H A Dmailbox_synchronizer.h8 #include "gpu/command_buffer/common/mailbox.h"
39 // Create a texture from a globally visible mailbox.
40 Texture* CreateTextureFromMailbox(unsigned target, const Mailbox& mailbox);
51 TargetName(unsigned target, const Mailbox& mailbox);
62 Mailbox mailbox; member in struct:gpu::gles2::MailboxSynchronizer::TargetName
/external/smack/src/org/xbill/DNS/
H A DMBRecord.java6 * Mailbox Record - specifies a host containing a mailbox.
24 * @param mailbox The host containing the mailbox for the domain.
27 MBRecord(Name name, int dclass, long ttl, Name mailbox) { argument
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
31 /** Gets the mailbox for the domain */
H A DMGRecord.java6 * Mail Group Record - specifies a mailbox which is a member of a mail group.
24 * @param mailbox The mailbox that is a member of the group specified by the
28 MGRecord(Name name, int dclass, long ttl, Name mailbox) { argument
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
32 /** Gets the mailbox in the mail group specified by the domain */
H A DRPRecord.java19 private Name mailbox; field in class:RPRecord
31 * @param mailbox The responsible person
35 RPRecord(Name name, int dclass, long ttl, Name mailbox, Name textDomain) { argument
38 this.mailbox = checkName("mailbox", mailbox);
44 mailbox = new Name(in);
50 mailbox = st.getName(origin);
58 sb.append(mailbox);
64 /** Gets the mailbox addres
[all...]
/external/chromium_org/content/renderer/media/
H A Dvideo_capture_message_filter_unittest.cc114 gpu::Mailbox mailbox; local
115 const int8 mailbox_name[arraysize(mailbox.name)] = "TEST MAILBOX";
116 mailbox.SetName(mailbox_name);
122 gpu::MailboxHolder mailbox_holder(mailbox, 0, syncpoint);
133 EXPECT_EQ(memcmp(mailbox.name,
134 saved_mailbox_holder.mailbox.name,
135 sizeof(mailbox.name)),
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_texture_mailbox_unittest.cc10 #include "gpu/command_buffer/common/mailbox.h"
245 GLbyte mailbox[GL_MAILBOX_SIZE_CHROMIUM]; local
246 glGenMailboxCHROMIUM(mailbox);
248 glProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
257 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
307 // The mailbox should still exist too.
311 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
322 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox);
330 Mailbox mailbox; local
331 glGenMailboxCHROMIUM(mailbox
405 Mailbox mailbox[2]; local
[all...]
/external/chromium_org/cc/blink/
H A Dweb_external_texture_layer_impl.cc66 cc::TextureMailbox* mailbox,
82 *mailbox = cc::TextureMailbox(bitmap->shared_memory(), bitmap->size());
84 *mailbox =
87 mailbox->set_allow_overlay(client_mailbox.allowOverlay);
89 if (mailbox->IsValid()) {
112 const blink::WebExternalTextureMailbox& mailbox,
118 memcpy(available_mailbox.name, mailbox.name, sizeof(available_mailbox.name));
65 PrepareTextureMailbox( cc::TextureMailbox* mailbox, scoped_ptr<cc::SingleReleaseCallback>* release_callback, bool use_shared_memory) argument
110 DidReleaseMailbox( base::WeakPtr<WebExternalTextureLayerImpl> layer, const blink::WebExternalTextureMailbox& mailbox, WebExternalBitmapImpl* bitmap, unsigned sync_point, bool lost_resource) argument
/external/chromium_org/content/browser/renderer_host/
H A Dsoftware_frame_manager_unittest.cc238 cc::TextureMailbox mailbox; local
241 &mailbox, &callback);
/external/chromium_org/mojo/examples/surfaces_app/
H A Dchild_gl_impl.cc132 // Then, put the texture into a mailbox.
133 gpu::Mailbox mailbox = gpu::Mailbox::Generate(); local
134 glProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name);
136 gpu::MailboxHolder holder(mailbox, GL_TEXTURE_2D, sync_point);
138 // Then, put the mailbox into a TransferableResource
/external/chromium_org/mojo/services/public/cpp/surfaces/lib/
H A Dsurfaces_type_converters.cc417 MailboxPtr mailbox(Mailbox::New());
418 mailbox->name = name.Pass();
419 return mailbox.Pass();
425 gpu::Mailbox mailbox; local
427 mailbox.SetName(&input->name.storage()[0]);
428 return mailbox;
435 holder->mailbox = Mailbox::From<gpu::Mailbox>(input.mailbox);
445 holder.mailbox = input->mailbox
[all...]

Completed in 1287 milliseconds

123