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

Unified Diff: Source/platform/graphics/gpu/DrawingBuffer.cpp

Issue 481433002: gpu: Remove WebGraphicsContext3D::makeContextCurrent() in Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix gpu bot failure Created 6 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/platform/graphics/gpu/DrawingBuffer.cpp
diff --git a/Source/platform/graphics/gpu/DrawingBuffer.cpp b/Source/platform/graphics/gpu/DrawingBuffer.cpp
index 1d5491dec1bf25c16661d2e573b02e10374bd000..9f855af2aca5155815caa34c8af2f772e61f751d 100644
--- a/Source/platform/graphics/gpu/DrawingBuffer.cpp
+++ b/Source/platform/graphics/gpu/DrawingBuffer.cpp
@@ -204,8 +204,6 @@ bool DrawingBuffer::prepareMailbox(WebExternalTextureMailbox* outMailbox, WebExt
return false;
}
- m_context->makeContextCurrent();
-
// Resolve the multisampled buffer into m_colorBuffer texture.
if (m_multisampleMode != None)
commit();
@@ -298,7 +296,6 @@ void DrawingBuffer::mailboxReleased(const WebExternalTextureMailbox& mailbox, bo
void DrawingBuffer::mailboxReleasedWhileDestructionInProgress(const WebExternalTextureMailbox& mailbox)
{
ASSERT(m_textureMailboxes.size());
- m_context->makeContextCurrent();
// Ensure not to call the destructor until deleteMailbox() is completed.
RefPtr<DrawingBuffer> self = this;
deleteMailbox(mailbox);
@@ -369,12 +366,6 @@ void DrawingBuffer::deleteMailbox(const WebExternalTextureMailbox& mailbox)
bool DrawingBuffer::initialize(const IntSize& size)
{
- if (!m_context->makeContextCurrent()) {
- // Most likely the GPU process exited and the attempt to reconnect to it failed.
- // Need to try to restore the context again later.
- return false;
- }
-
if (m_context->isContextLost()) {
// Need to try to restore the context again later.
return false;
@@ -437,9 +428,6 @@ bool DrawingBuffer::initialize(const IntSize& size)
bool DrawingBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platform3DObject texture, GLenum internalFormat, GLenum destType, GLint level, bool premultiplyAlpha, bool flipY, bool fromFrontBuffer)
{
- if (!m_context->makeContextCurrent())
- return false;
-
GLint textureId = m_colorBuffer.textureId;
if (fromFrontBuffer && m_frontColorBuffer.textureId)
textureId = m_frontColorBuffer.textureId;
@@ -466,9 +454,6 @@ bool DrawingBuffer::copyToPlatformTexture(WebGraphicsContext3D* context, Platfor
bufferMailbox->mailbox.syncPoint = m_context->insertSyncPoint();
- if (!context->makeContextCurrent())
- return false;
-
context->waitSyncPoint(bufferMailbox->mailbox.syncPoint);
Platform3DObject sourceTexture = context->createAndConsumeTextureCHROMIUM(GL_TEXTURE_2D, bufferMailbox->mailbox.name);
@@ -516,7 +501,7 @@ WebLayer* DrawingBuffer::platformLayer()
void DrawingBuffer::paintCompositedResultsToCanvas(ImageBuffer* imageBuffer)
{
- if (!m_context->makeContextCurrent() || m_context->getGraphicsResetStatusARB() != GL_NO_ERROR)
+ if (m_context->getGraphicsResetStatusARB() != GL_NO_ERROR)
return;
if (!imageBuffer)
@@ -534,7 +519,7 @@ void DrawingBuffer::paintCompositedResultsToCanvas(ImageBuffer* imageBuffer)
if (!provider)
return;
WebGraphicsContext3D* context = provider->context3d();
- if (!context || !context->makeContextCurrent())
+ if (!context)
return;
context->waitSyncPoint(bufferMailbox->mailbox.syncPoint);
@@ -571,8 +556,6 @@ void DrawingBuffer::beginDestruction()
ASSERT(!m_destructionInProgress);
m_destructionInProgress = true;
- m_context->makeContextCurrent();
-
clearPlatformLayer();
while (!m_recycledMailboxQueue.isEmpty())
@@ -867,8 +850,6 @@ void DrawingBuffer::commit(long x, long y, long width, long height)
if (height < 0)
height = m_size.height();
- m_context->makeContextCurrent();
-
if (m_multisampleFBO && !m_contentsChangeCommitted) {
m_context->bindFramebuffer(GL_READ_FRAMEBUFFER_ANGLE, m_multisampleFBO);
m_context->bindFramebuffer(GL_DRAW_FRAMEBUFFER_ANGLE, m_fbo);

Powered by Google App Engine
This is Rietveld 408576698