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

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

Issue 2196963002: Add a new class AcceleratedStaticBitmap : StaticBitmapImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase + minor clean up Created 4 years, 4 months 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 AcceleratedStaticBitmapImage_h
6 #define AcceleratedStaticBitmapImage_h
7
8 #include "platform/graphics/StaticBitmapImage.h"
9 #include "public/platform/WebExternalTextureMailbox.h"
10
11 namespace blink {
12
13 class PLATFORM_EXPORT AcceleratedStaticBitmapImage final : public StaticBitmapIm age {
14 public:
15 ~AcceleratedStaticBitmapImage() override { };
16
17 IntSize size() const override;
18 PassRefPtr<SkImage> imageForCurrentFrame() override;
19 static PassRefPtr<AcceleratedStaticBitmapImage> create(PassRefPtr<SkImage>);
20 static PassRefPtr<AcceleratedStaticBitmapImage> create(WebExternalTextureMai lbox&);
21 void copyToTexture(WebGraphicsContext3DProvider*, GLuint, GLenum, GLenum, bo ol) override;
22 bool hasMailbox() override { return m_mailbox.textureSize.width != 0 && m_ma ilbox.textureSize.height != 0; }
23
24 private:
25 AcceleratedStaticBitmapImage(PassRefPtr<SkImage>);
26 AcceleratedStaticBitmapImage(WebExternalTextureMailbox&);
27 bool switchStorageToMailbox(WebGraphicsContext3DProvider*);
28 GLuint switchStorageToSkImageForWebGL(WebGraphicsContext3DProvider*);
29 GLuint switchStorageToSkImage(WebGraphicsContext3DProvider*);
30
31 WebExternalTextureMailbox m_mailbox;
32 };
33
34 } // namespace blink
35
36 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698