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

Unified Diff: Source/testing/runner/TestPlugin.cpp

Issue 25450002: Remove unused calls on WebGraphicsContext3D (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « Source/core/platform/testing/FakeWebGraphicsContext3D.h ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/testing/runner/TestPlugin.cpp
diff --git a/Source/testing/runner/TestPlugin.cpp b/Source/testing/runner/TestPlugin.cpp
index 13abee1078c7c7415b8a7d8b70e547c245735ba3..c1dbc3c39ac376e22c225a979dc20f557fa51937 100644
--- a/Source/testing/runner/TestPlugin.cpp
+++ b/Source/testing/runner/TestPlugin.cpp
@@ -254,7 +254,7 @@ void TestPlugin::updateGeometry(const WebRect& frameRect, const WebRect& clipRec
if (m_rect.isEmpty())
return;
- m_context->reshape(m_rect.width, m_rect.height);
+ m_context->reshapeWithScaleFactor(m_rect.width, m_rect.height, 1.f);
m_context->viewport(0, 0, m_rect.width, m_rect.height);
m_context->bindTexture(GL_TEXTURE_2D, m_colorTexture);
« no previous file with comments | « Source/core/platform/testing/FakeWebGraphicsContext3D.h ('k') | public/platform/WebGraphicsContext3D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698