| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 #include "modules/imagebitmap/ImageBitmapRenderingContext.h" | 5 #include "modules/imagebitmap/ImageBitmapRenderingContext.h" |
| 6 | 6 |
| 7 #include "bindings/modules/v8/UnionTypesModules.h" | 7 #include "bindings/modules/v8/UnionTypesModules.h" |
| 8 #include "core/frame/ImageBitmap.h" | 8 #include "core/frame/ImageBitmap.h" |
| 9 #include "platform/graphics/GraphicsContext.h" | 9 #include "platform/graphics/GraphicsContext.h" |
| 10 #include "platform/graphics/StaticBitmapImage.h" | 10 #include "platform/graphics/StaticBitmapImage.h" |
| 11 #include "third_party/skia/include/core/SkImage.h" | 11 #include "third_party/skia/include/core/SkImage.h" |
| 12 #include "third_party/skia/include/core/SkSurface.h" | 12 #include "third_party/skia/include/core/SkSurface.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 ImageBitmapRenderingContext::ImageBitmapRenderingContext(HTMLCanvasElement* canv
as, CanvasContextCreationAttributes attrs, Document& document) | 16 ImageBitmapRenderingContext::ImageBitmapRenderingContext(HTMLCanvasElement* canv
as, CanvasContextCreationAttributes attrs, Document& document) |
| 17 : CanvasRenderingContext(canvas) | 17 : CanvasRenderingContext(canvas) |
| 18 , m_hasAlpha(attrs.alpha()) | 18 , m_hasAlpha(attrs.alpha()) |
| 19 { } | 19 { } |
| 20 | 20 |
| 21 ImageBitmapRenderingContext::~ImageBitmapRenderingContext() { } | 21 ImageBitmapRenderingContext::~ImageBitmapRenderingContext() { } |
| 22 | 22 |
| 23 void ImageBitmapRenderingContext::setCanvasGetContextResult(RenderingContext& re
sult) | 23 void ImageBitmapRenderingContext::setCanvasGetContextResult(RenderingContext& re
sult) |
| 24 { | 24 { |
| 25 result.setImageBitmapRenderingContext(PassRefPtrWillBeRawPtr<ImageBitmapRend
eringContext>(this)); | 25 result.setImageBitmapRenderingContext(RawPtr<ImageBitmapRenderingContext>(th
is)); |
| 26 } | 26 } |
| 27 | 27 |
| 28 void ImageBitmapRenderingContext::transferImageBitmap(ImageBitmap* imageBitmap) | 28 void ImageBitmapRenderingContext::transferImageBitmap(ImageBitmap* imageBitmap) |
| 29 { | 29 { |
| 30 m_image = imageBitmap->bitmapImage(); | 30 m_image = imageBitmap->bitmapImage(); |
| 31 if (!m_image) | 31 if (!m_image) |
| 32 return; | 32 return; |
| 33 | 33 |
| 34 RefPtr<SkImage> skImage = m_image->imageForCurrentFrame(); | 34 RefPtr<SkImage> skImage = m_image->imageForCurrentFrame(); |
| 35 if (skImage->isTextureBacked()) { | 35 if (skImage->isTextureBacked()) { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 if (!m_image) | 51 if (!m_image) |
| 52 return true; | 52 return true; |
| 53 | 53 |
| 54 // With impl-side painting, it is unsafe to use a gpu-backed SkImage | 54 // With impl-side painting, it is unsafe to use a gpu-backed SkImage |
| 55 ASSERT(!m_image->imageForCurrentFrame()->isTextureBacked()); | 55 ASSERT(!m_image->imageForCurrentFrame()->isTextureBacked()); |
| 56 gc.drawImage(m_image.get(), r, m_hasAlpha ? SkXfermode::kSrcOver_Mode : SkXf
ermode::kSrc_Mode); | 56 gc.drawImage(m_image.get(), r, m_hasAlpha ? SkXfermode::kSrcOver_Mode : SkXf
ermode::kSrc_Mode); |
| 57 | 57 |
| 58 return true; | 58 return true; |
| 59 } | 59 } |
| 60 | 60 |
| 61 PassOwnPtrWillBeRawPtr<CanvasRenderingContext> ImageBitmapRenderingContext::Fact
ory::create(HTMLCanvasElement* canvas, const CanvasContextCreationAttributes& at
trs, Document& document) | 61 RawPtr<CanvasRenderingContext> ImageBitmapRenderingContext::Factory::create(HTML
CanvasElement* canvas, const CanvasContextCreationAttributes& attrs, Document& d
ocument) |
| 62 { | 62 { |
| 63 if (!RuntimeEnabledFeatures::experimentalCanvasFeaturesEnabled()) | 63 if (!RuntimeEnabledFeatures::experimentalCanvasFeaturesEnabled()) |
| 64 return nullptr; | 64 return nullptr; |
| 65 return adoptPtrWillBeNoop(new ImageBitmapRenderingContext(canvas, attrs, doc
ument)); | 65 return new ImageBitmapRenderingContext(canvas, attrs, document); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void ImageBitmapRenderingContext::stop() | 68 void ImageBitmapRenderingContext::stop() |
| 69 { | 69 { |
| 70 m_image.clear(); | 70 m_image.clear(); |
| 71 } | 71 } |
| 72 | 72 |
| 73 } // blink | 73 } // blink |
| OLD | NEW |