| OLD | NEW |
| (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 |
| OLD | NEW |