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

Unified Diff: third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp

Issue 2776083002: enable fallback path (Closed)
Patch Set: use stream read Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp b/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp
index 44f7f727791e24a8370f258b160e704e842371dd..7fc33d9ce2cd8e55f8da70c95264160a12ba4315 100644
--- a/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp
+++ b/third_party/WebKit/Source/platform/graphics/AcceleratedStaticBitmapImage.cpp
@@ -66,10 +66,11 @@ void AcceleratedStaticBitmapImage::updateSyncToken(gpu::SyncToken syncToken) {
void AcceleratedStaticBitmapImage::copyToTexture(
WebGraphicsContext3DProvider* destProvider,
+ GLenum destTarget,
GLuint destTextureId,
- GLenum internalFormat,
- GLenum destType,
- bool flipY) {
+ bool flipY,
+ const IntPoint& destPoint,
+ const IntRect& sourceSubRectangle) {
checkThread();
if (!isValid())
return;
@@ -82,8 +83,11 @@ void AcceleratedStaticBitmapImage::copyToTexture(
destGL->WaitSyncTokenCHROMIUM(m_textureHolder->syncToken().GetData());
GLuint sourceTextureId = destGL->CreateAndConsumeTextureCHROMIUM(
GL_TEXTURE_2D, m_textureHolder->mailbox().name);
- destGL->CopyTextureCHROMIUM(sourceTextureId, 0, GL_TEXTURE_2D, destTextureId,
- 0, internalFormat, destType, flipY, false, false);
+ destGL->CopySubTextureCHROMIUM(
+ sourceTextureId, 0, destTarget, destTextureId, 0, destPoint.x(),
+ destPoint.y(), sourceSubRectangle.x(), sourceSubRectangle.y(),
+ sourceSubRectangle.width(), sourceSubRectangle.height(), flipY, false,
+ false);
// This drops the |destGL| context's reference on our |m_mailbox|, but it's
// still held alive by our SkImage.
destGL->DeleteTextures(1, &sourceTextureId);

Powered by Google App Engine
This is Rietveld 408576698