| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef StaticBitmapImage_h | 5 #ifndef StaticBitmapImage_h |
| 6 #define StaticBitmapImage_h | 6 #define StaticBitmapImage_h |
| 7 | 7 |
| 8 #include "gpu/command_buffer/common/mailbox.h" | 8 #include "gpu/command_buffer/common/mailbox.h" |
| 9 #include "gpu/command_buffer/common/sync_token.h" | 9 #include "gpu/command_buffer/common/sync_token.h" |
| 10 #include "platform/graphics/Image.h" | 10 #include "platform/graphics/Image.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 // Methods overrided by all sub-classes | 22 // Methods overrided by all sub-classes |
| 23 virtual ~StaticBitmapImage() {} | 23 virtual ~StaticBitmapImage() {} |
| 24 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) = 0; | 24 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) = 0; |
| 25 sk_sp<SkImage> imageForCurrentFrame(const ColorBehavior&) = 0; | 25 sk_sp<SkImage> imageForCurrentFrame(const ColorBehavior&) = 0; |
| 26 void draw(PaintCanvas*, | 26 void draw(PaintCanvas*, |
| 27 const PaintFlags&, | 27 const PaintFlags&, |
| 28 const FloatRect& dstRect, | 28 const FloatRect& dstRect, |
| 29 const FloatRect& srcRect, | 29 const FloatRect& srcRect, |
| 30 RespectImageOrientationEnum, | 30 RespectImageOrientationEnum, |
| 31 ImageClampingMode, | 31 ImageClampingMode) = 0; |
| 32 const ColorBehavior&) = 0; | |
| 33 | 32 |
| 34 // Methods have common implementation for all sub-classes | 33 // Methods have common implementation for all sub-classes |
| 35 bool currentFrameIsComplete() override { return true; } | 34 bool currentFrameIsComplete() override { return true; } |
| 36 void destroyDecodedData() {} | 35 void destroyDecodedData() {} |
| 37 | 36 |
| 38 // Methods that have a default implementation, and overrided by only one | 37 // Methods that have a default implementation, and overrided by only one |
| 39 // sub-class | 38 // sub-class |
| 40 virtual bool hasMailbox() { return false; } | 39 virtual bool hasMailbox() { return false; } |
| 41 | 40 |
| 42 virtual void transfer() {} | 41 virtual void transfer() {} |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 // info. They applied to both UnacceleratedStaticBitmapImage and | 78 // info. They applied to both UnacceleratedStaticBitmapImage and |
| 80 // AcceleratedStaticBitmapImage. To change these two properties, the call | 79 // AcceleratedStaticBitmapImage. To change these two properties, the call |
| 81 // site would have to call the API setOriginClean() and setPremultiplied(). | 80 // site would have to call the API setOriginClean() and setPremultiplied(). |
| 82 bool m_isOriginClean = true; | 81 bool m_isOriginClean = true; |
| 83 bool m_isPremultiplied = true; | 82 bool m_isPremultiplied = true; |
| 84 }; | 83 }; |
| 85 | 84 |
| 86 } // namespace blink | 85 } // namespace blink |
| 87 | 86 |
| 88 #endif | 87 #endif |
| OLD | NEW |