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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/MailboxTextureHolder.h

Issue 2455983005: Refactor AcceleratedStaticBitmapImage (Closed)
Patch Set: fix crash Created 4 years, 1 month 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MailboxTextureHolder_h
6 #define MailboxTextureHolder_h
7
8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/TextureHolder.h"
10 #include "third_party/khronos/GLES2/gl2.h"
11 #include "wtf/WeakPtr.h"
12
13 namespace blink {
14
15 class DrawingBuffer;
16
17 class PLATFORM_EXPORT MailboxTextureHolder final : public TextureHolder {
18 public:
19 ~MailboxTextureHolder() override;
20
21 bool isSkiaTextureHolder() final { return false; }
22 bool isMailboxTextureHolder() final { return true; }
23 unsigned sharedContextId() final;
24 IntSize size() const final { return m_size; }
25 bool currentFrameKnownToBeOpaque(Image::MetadataMode) final { return false; }
26 WebTaskRunner* imageThreadTaskRunner() final;
27
28 gpu::Mailbox mailbox() final { return m_mailbox; }
29 gpu::SyncToken syncToken() final { return m_syncToken; }
30 void updateSyncToken(gpu::SyncToken syncToken) final {
31 m_syncToken = syncToken;
32 }
33
34 // In WebGL's commit or transferToImageBitmap calls, it will call the
35 // DrawingBuffer::transferToStaticBitmapImage function, which produces the
36 // input parameters for this method.
37 MailboxTextureHolder(const gpu::Mailbox&,
38 const gpu::SyncToken&,
39 unsigned textureIdToDeleteAfterMailboxConsumed,
40 WeakPtr<DrawingBuffer>,
41 IntSize mailboxSize);
42 // This function turns a texture-backed SkImage into a mailbox and a
43 // syncToken.
44 MailboxTextureHolder(std::unique_ptr<TextureHolder>);
45
46 private:
47 gpu::Mailbox m_mailbox;
48 gpu::SyncToken m_syncToken;
49 unsigned m_textureId;
50 WeakPtr<DrawingBuffer> m_drawingBuffer;
51 IntSize m_size;
52 bool m_isConvertedFromSkiaTexture;
53 };
54
55 } // namespace blink
56
57 #endif // MailboxTextureHolder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698