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

Unified Diff: Source/WebCore/platform/graphics/chromium/DrawingBufferChromium.cpp

Issue 7631029: Merge 91736 - Source/WebCore: Removed support for the GL_latch_CHROMIUM extension which Chromium ... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/835/
Patch Set: Created 9 years, 4 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: Source/WebCore/platform/graphics/chromium/DrawingBufferChromium.cpp
===================================================================
--- Source/WebCore/platform/graphics/chromium/DrawingBufferChromium.cpp (revision 93242)
+++ Source/WebCore/platform/graphics/chromium/DrawingBufferChromium.cpp (working copy)
@@ -114,7 +114,7 @@
{
if (!m_context)
return;
-
+
if (m_callback)
m_callback->willPublish();
if (multisample())
@@ -122,8 +122,7 @@
unsigned parentTexture = m_platformLayer->textureId();
// We do the copy in the canvas' (child) context so that it executes in the correct order relative to
// other commands in the child context. This ensures that the parent texture always contains a complete
- // frame and not some intermediate result. LayerRendererChromium uses glSetLatch to make sure the child
- // context completes before the parent context consumes the texture.
+ // frame and not some intermediate result.
m_context->makeContextCurrent();
#if USE(SKIA)
if (m_grContext)

Powered by Google App Engine
This is Rietveld 408576698