diff options
Diffstat (limited to 'third_party/WebKit/Source/platform/graphics')
5 files changed, 27 insertions, 3 deletions
diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DImageBufferSurface.h b/third_party/WebKit/Source/platform/graphics/Canvas2DImageBufferSurface.h index fb9f71a..8578976 100644 --- a/third_party/WebKit/Source/platform/graphics/Canvas2DImageBufferSurface.h +++ b/third_party/WebKit/Source/platform/graphics/Canvas2DImageBufferSurface.h @@ -61,6 +61,7 @@ public: virtual WebLayer* layer() const override { return m_layerBridge->layer(); } virtual Platform3DObject getBackingTexture() const override { return m_layerBridge->getBackingTexture(); } virtual bool isAccelerated() const override { return m_layerBridge->isAccelerated(); } + virtual void setFilterLevel(SkPaint::FilterLevel filterLevel) override { m_layerBridge->setFilterLevel(filterLevel); }; virtual void setIsHidden(bool hidden) override { m_layerBridge->setIsHidden(hidden); } virtual void setImageBuffer(ImageBuffer* imageBuffer) override { m_layerBridge->setImageBuffer(imageBuffer); } diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp index 8e0eb84..c350a11 100644 --- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp +++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.cpp @@ -91,10 +91,12 @@ Canvas2DLayerBridge::Canvas2DLayerBridge(PassOwnPtr<WebGraphicsContext3DProvider , m_framesPending(0) , m_destructionInProgress(false) , m_rateLimitingEnabled(false) + , m_filterLevel(SkPaint::kLow_FilterLevel) , m_isHidden(false) , m_next(0) , m_prev(0) , m_lastImageId(0) + , m_lastFilter(GL_LINEAR) , m_opacityMode(opacityMode) { ASSERT(m_canvas); @@ -107,6 +109,7 @@ Canvas2DLayerBridge::Canvas2DLayerBridge(PassOwnPtr<WebGraphicsContext3DProvider m_layer->setBlendBackgroundColor(opacityMode != Opaque); GraphicsLayer::registerContentsLayer(m_layer->layer()); m_layer->setRateLimitContext(m_rateLimitingEnabled); + m_layer->setNearestNeighbor(m_filterLevel == SkPaint::kNone_FilterLevel); m_canvas->setNotificationClient(this); #ifndef NDEBUG canvas2DLayerBridgeInstanceCounter.increment(); @@ -147,6 +150,13 @@ void Canvas2DLayerBridge::beginDestruction() ASSERT(!m_bytesAllocated); } +void Canvas2DLayerBridge::setFilterLevel(SkPaint::FilterLevel filterLevel) +{ + ASSERT(!m_destructionInProgress); + m_filterLevel = filterLevel; + m_layer->setNearestNeighbor(m_filterLevel == SkPaint::kNone_FilterLevel); +} + void Canvas2DLayerBridge::setIsHidden(bool hidden) { ASSERT(!m_destructionInProgress); @@ -361,9 +371,11 @@ bool Canvas2DLayerBridge::prepareMailbox(WebExternalTextureMailbox* outMailbox, RefPtr<SkImage> image = adoptRef(m_canvas->newImageSnapshot()); // Early exit if canvas was not drawn to since last prepareMailbox - if (image->uniqueID() == m_lastImageId) + GLenum filter = m_filterLevel == SkPaint::kNone_FilterLevel ? GL_NEAREST : GL_LINEAR; + if (image->uniqueID() == m_lastImageId && filter == m_lastFilter) return false; m_lastImageId = image->uniqueID(); + m_lastFilter = filter; { MailboxInfo tmp; @@ -373,6 +385,8 @@ bool Canvas2DLayerBridge::prepareMailbox(WebExternalTextureMailbox* outMailbox, } MailboxInfo& mailboxInfo = m_mailboxes.first(); + mailboxInfo.m_mailbox.nearestNeighbor = filter == GL_NEAREST; + GrContext* grContext = m_contextProvider->grContext(); if (!grContext) return true; // for testing: skip gl stuff when using a mock graphics context. @@ -385,8 +399,8 @@ bool Canvas2DLayerBridge::prepareMailbox(WebExternalTextureMailbox* outMailbox, mailboxInfo.m_image->getTexture()->textureParamsModified(); webContext->bindTexture(GL_TEXTURE_2D, mailboxInfo.m_image->getTexture()->getTextureHandle()); - webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); - webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); + webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filter); + webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filter); webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); diff --git a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h index 897d3aa..eabb7f1 100644 --- a/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h +++ b/third_party/WebKit/Source/platform/graphics/Canvas2DLayerBridge.h @@ -75,6 +75,7 @@ public: WebLayer* layer() const; Platform3DObject getBackingTexture(); bool isAccelerated() const { return true; } + void setFilterLevel(SkPaint::FilterLevel); void setIsHidden(bool); void setImageBuffer(ImageBuffer* imageBuffer) { m_imageBuffer = imageBuffer; } @@ -110,6 +111,7 @@ protected: int m_framesSinceMailboxRelease; bool m_destructionInProgress; bool m_rateLimitingEnabled; + SkPaint::FilterLevel m_filterLevel; bool m_isHidden; friend class WTF::DoublyLinkedListNode<Canvas2DLayerBridge>; @@ -135,6 +137,7 @@ protected: }; Deque<MailboxInfo, MaxActiveMailboxes> m_mailboxes; + GLenum m_lastFilter; OpacityMode m_opacityMode; }; diff --git a/third_party/WebKit/Source/platform/graphics/ImageBuffer.h b/third_party/WebKit/Source/platform/graphics/ImageBuffer.h index 7ba7651..61d9056 100644 --- a/third_party/WebKit/Source/platform/graphics/ImageBuffer.h +++ b/third_party/WebKit/Source/platform/graphics/ImageBuffer.h @@ -37,6 +37,7 @@ #include "platform/graphics/GraphicsTypes3D.h" #include "platform/graphics/ImageBufferSurface.h" #include "platform/transforms/AffineTransform.h" +#include "third_party/skia/include/core/SkPaint.h" #include "wtf/Forward.h" #include "wtf/OwnPtr.h" #include "wtf/PassOwnPtr.h" @@ -89,6 +90,7 @@ public: bool restoreSurface() const; bool needsClipTracking() const { return m_surface->needsClipTracking(); } + void setFilterLevel(SkPaint::FilterLevel filterLevel) { m_surface->setFilterLevel(filterLevel); } void setIsHidden(bool hidden) { m_surface->setIsHidden(hidden); } // Called by subclasses of ImageBufferSurface to install a new canvas object @@ -106,6 +108,8 @@ public: const SkBitmap& bitmap() const; + void willAccessPixels() { m_surface->willAccessPixels(); } + PassRefPtr<Image> copyImage(BackingStoreCopy = CopyBackingStore, ScaleBehavior = Scaled) const; // Give hints on the faster copyImage Mode, return DontCopyBackingStore if it supports the DontCopyBackingStore behavior // or return CopyBackingStore if it doesn't. diff --git a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h index ad55079..f431cfd 100644 --- a/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h +++ b/third_party/WebKit/Source/platform/graphics/ImageBufferSurface.h @@ -35,6 +35,7 @@ #include "platform/geometry/IntSize.h" #include "platform/graphics/GraphicsTypes.h" #include "platform/graphics/GraphicsTypes3D.h" +#include "third_party/skia/include/core/SkPaint.h" #include "wtf/FastAllocBase.h" #include "wtf/Noncopyable.h" #include "wtf/PassRefPtr.h" @@ -75,6 +76,7 @@ public: virtual const SkBitmap& cachedBitmap() const; virtual void invalidateCachedBitmap() { } virtual void updateCachedBitmapIfNeeded() { } + virtual void setFilterLevel(SkPaint::FilterLevel) { } virtual void setIsHidden(bool) { } virtual void setImageBuffer(ImageBuffer*) { } virtual PassRefPtr<SkPicture> getPicture(); |