HomeSort by relevance Sort by last modified time
    Searched refs:mailboxInfo (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridge.cpp 103 Vector<MailboxInfo>::iterator mailboxInfo;
104 for (mailboxInfo = m_mailboxes.begin(); mailboxInfo < m_mailboxes.end(); mailboxInfo++) {
105 ASSERT(mailboxInfo->m_status != MailboxInUse);
106 if (mailboxInfo->m_status == MailboxReleased) {
107 if (mailboxInfo->m_mailbox.syncPoint) {
108 context()->waitSyncPoint(mailboxInfo->m_mailbox.syncPoint);
109 mailboxInfo->m_mailbox.syncPoint = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp 179 RefPtr<MailboxInfo> nextFrontColorBuffer = recycledMailbox();
225 RefPtr<MailboxInfo> mailboxInfo = m_textureMailboxes[i];
226 if (!memcmp(mailboxInfo->mailbox.name, mailbox.name, sizeof(mailbox.name))) {
227 mailboxInfo->mailbox.syncPoint = mailbox.syncPoint;
228 m_recycledMailboxes.append(mailboxInfo.release());
235 PassRefPtr<DrawingBuffer::MailboxInfo> DrawingBuffer::recycledMailbox()
238 return PassRefPtr<MailboxInfo>();
240 RefPtr<MailboxInfo> mailboxInfo = m_recycledMailboxes.last().release()
    [all...]

Completed in 41 milliseconds