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

Side by Side Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp

Issue 1914233006: Implement offscreenCanvas.getContext('webgl') on a worker thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "modules/webgl/OESTextureHalfFloatLinear.h" 59 #include "modules/webgl/OESTextureHalfFloatLinear.h"
60 #include "modules/webgl/OESVertexArrayObject.h" 60 #include "modules/webgl/OESVertexArrayObject.h"
61 #include "modules/webgl/WebGLActiveInfo.h" 61 #include "modules/webgl/WebGLActiveInfo.h"
62 #include "modules/webgl/WebGLBuffer.h" 62 #include "modules/webgl/WebGLBuffer.h"
63 #include "modules/webgl/WebGLCompressedTextureASTC.h" 63 #include "modules/webgl/WebGLCompressedTextureASTC.h"
64 #include "modules/webgl/WebGLCompressedTextureATC.h" 64 #include "modules/webgl/WebGLCompressedTextureATC.h"
65 #include "modules/webgl/WebGLCompressedTextureETC1.h" 65 #include "modules/webgl/WebGLCompressedTextureETC1.h"
66 #include "modules/webgl/WebGLCompressedTexturePVRTC.h" 66 #include "modules/webgl/WebGLCompressedTexturePVRTC.h"
67 #include "modules/webgl/WebGLCompressedTextureS3TC.h" 67 #include "modules/webgl/WebGLCompressedTextureS3TC.h"
68 #include "modules/webgl/WebGLContextAttributeHelpers.h" 68 #include "modules/webgl/WebGLContextAttributeHelpers.h"
69 #include "modules/webgl/WebGLContextAttributes.h"
70 #include "modules/webgl/WebGLContextEvent.h" 69 #include "modules/webgl/WebGLContextEvent.h"
71 #include "modules/webgl/WebGLContextGroup.h" 70 #include "modules/webgl/WebGLContextGroup.h"
72 #include "modules/webgl/WebGLDebugRendererInfo.h" 71 #include "modules/webgl/WebGLDebugRendererInfo.h"
73 #include "modules/webgl/WebGLDebugShaders.h" 72 #include "modules/webgl/WebGLDebugShaders.h"
74 #include "modules/webgl/WebGLDepthTexture.h" 73 #include "modules/webgl/WebGLDepthTexture.h"
75 #include "modules/webgl/WebGLDrawBuffers.h" 74 #include "modules/webgl/WebGLDrawBuffers.h"
76 #include "modules/webgl/WebGLFramebuffer.h" 75 #include "modules/webgl/WebGLFramebuffer.h"
77 #include "modules/webgl/WebGLLoseContext.h" 76 #include "modules/webgl/WebGLLoseContext.h"
78 #include "modules/webgl/WebGLProgram.h" 77 #include "modules/webgl/WebGLProgram.h"
79 #include "modules/webgl/WebGLRenderbuffer.h" 78 #include "modules/webgl/WebGLRenderbuffer.h"
80 #include "modules/webgl/WebGLShader.h" 79 #include "modules/webgl/WebGLShader.h"
81 #include "modules/webgl/WebGLShaderPrecisionFormat.h" 80 #include "modules/webgl/WebGLShaderPrecisionFormat.h"
82 #include "modules/webgl/WebGLTexture.h"
83 #include "modules/webgl/WebGLUniformLocation.h" 81 #include "modules/webgl/WebGLUniformLocation.h"
84 #include "modules/webgl/WebGLVertexArrayObject.h" 82 #include "modules/webgl/WebGLVertexArrayObject.h"
85 #include "modules/webgl/WebGLVertexArrayObjectOES.h" 83 #include "modules/webgl/WebGLVertexArrayObjectOES.h"
86 #include "platform/CheckedInt.h" 84 #include "platform/CheckedInt.h"
87 #include "platform/RuntimeEnabledFeatures.h" 85 #include "platform/RuntimeEnabledFeatures.h"
86 #include "platform/ThreadSafeFunctional.h"
87 #include "platform/WaitableEvent.h"
88 #include "platform/geometry/IntSize.h" 88 #include "platform/geometry/IntSize.h"
89 #include "platform/graphics/GraphicsContext.h" 89 #include "platform/graphics/GraphicsContext.h"
90 #include "platform/graphics/UnacceleratedImageBufferSurface.h" 90 #include "platform/graphics/UnacceleratedImageBufferSurface.h"
91 #include "platform/graphics/gpu/AcceleratedImageBufferSurface.h" 91 #include "platform/graphics/gpu/AcceleratedImageBufferSurface.h"
92 #include "platform/graphics/gpu/DrawingBuffer.h"
93 #include "public/platform/Platform.h" 92 #include "public/platform/Platform.h"
94 #include "public/platform/WebGraphicsContext3D.h" 93 #include "public/platform/WebGraphicsContext3D.h"
95 #include "public/platform/WebGraphicsContext3DProvider.h"
96 #include "public/platform/functional/WebFunction.h" 94 #include "public/platform/functional/WebFunction.h"
97 #include "wtf/Functional.h" 95 #include "wtf/Functional.h"
98 #include "wtf/PassOwnPtr.h" 96 #include "wtf/PassOwnPtr.h"
99 #include "wtf/text/StringBuilder.h" 97 #include "wtf/text/StringBuilder.h"
100 #include "wtf/text/StringUTF8Adaptor.h" 98 #include "wtf/text/StringUTF8Adaptor.h"
101 #include "wtf/typed_arrays/ArrayBufferContents.h" 99 #include "wtf/typed_arrays/ArrayBufferContents.h"
102 100
103 namespace blink { 101 namespace blink {
104 102
105 namespace { 103 namespace {
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 formatWebGLStatusString("Sandboxed", info.sandboxed ? "yes" : "no", statusMe ssage); 494 formatWebGLStatusString("Sandboxed", info.sandboxed ? "yes" : "no", statusMe ssage);
497 formatWebGLStatusString("Optimus", info.optimus ? "yes" : "no", statusMessag e); 495 formatWebGLStatusString("Optimus", info.optimus ? "yes" : "no", statusMessag e);
498 formatWebGLStatusString("AMD switchable", info.amdSwitchable ? "yes" : "no", statusMessage); 496 formatWebGLStatusString("AMD switchable", info.amdSwitchable ? "yes" : "no", statusMessage);
499 formatWebGLStatusString("Reset notification strategy", String::format("0x%04 x", info.resetNotificationStrategy).utf8().data(), statusMessage); 497 formatWebGLStatusString("Reset notification strategy", String::format("0x%04 x", info.resetNotificationStrategy).utf8().data(), statusMessage);
500 formatWebGLStatusString("GPU process crash count", String::number(info.proce ssCrashCount).utf8().data(), statusMessage); 498 formatWebGLStatusString("GPU process crash count", String::number(info.proce ssCrashCount).utf8().data(), statusMessage);
501 formatWebGLStatusString("ErrorMessage", info.errorMessage.utf8().data(), sta tusMessage); 499 formatWebGLStatusString("ErrorMessage", info.errorMessage.utf8().data(), sta tusMessage);
502 statusMessage.append("."); 500 statusMessage.append(".");
503 return statusMessage; 501 return statusMessage;
504 } 502 }
505 503
506 static PassOwnPtr<WebGraphicsContext3DProvider> createWebGraphicsContext3DProvid erInternal(HTMLCanvasElement* canvas, ScriptState* scriptState, WebGLContextAttr ibutes attributes, unsigned webGLVersion) 504 // A helper function, the reason it exist is because this has to be called in cr eateWebGraphicsContext3DProviderMainThread()
505 // because contextProvider->contextGL() checks whether the current thread is the same as the thread that creates contextProvider.
506 static bool checkCreatedContext3DProvider(HTMLCanvasElement* canvas, WebGraphics Context3DProvider* contextProvider, Platform::GraphicsInfo& glInfo)
507 {
508 ASSERT(isMainThread());
509 if (!contextProvider || shouldFailContextCreationForTesting) {
510 shouldFailContextCreationForTesting = false;
511 if (canvas)
512 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, extractWebGLContextCreationError(glInfo)));
513 return false;
514 }
515 gpu::gles2::GLES2Interface* gl = contextProvider->contextGL();
xidachen 2016/04/29 15:58:21 The program works fine on a Release build, but cra
bajones 2016/04/29 19:38:25 Many of our bots run with DCHECKs enabled, so if t
xidachen 2016/04/29 19:41:11 Yes, the current code crashes. I am quite surpris
Justin Novosad 2016/04/29 19:43:43 You just have to call ContextProviderCommandBuffer
xidachen 2016/04/30 01:02:33 Here is what I propose: We change the WebGraphics
516 if (!String(gl->GetString(GL_EXTENSIONS)).contains("GL_OES_packed_depth_sten cil")) {
517 if (canvas)
518 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, "OES_packed_depth_stencil support is require d."));
519 return false;
520 }
521 return true;
522 }
523
524 void WebGLRenderingContextBase::createWebGraphicsContext3DProviderMainThread(Web GLRenderingContextBase::createWebGraphicsContext3DProviderUtils* createUtils, Wa itableEvent* waitableEvent)
525 {
526 ASSERT(isMainThread());
527 Platform::GraphicsInfo glInfo = createUtils->glInfo();
528 OwnPtr<WebGraphicsContext3DProvider> provider = adoptPtr(Platform::current() ->createOffscreenGraphicsContext3DProvider(
529 createUtils->contextAttributes(), createUtils->scriptState()->getExecuti onContext()->url(), 0, &glInfo));
530 if (checkCreatedContext3DProvider(nullptr, provider.get(), glInfo))
531 createUtils->setContextProvider(provider.release());
532 else
533 createUtils->setContextProvider(nullptr);
534 waitableEvent->signal();
535 }
536
537 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProviderInternal(HTMLCanvasElement* canvas, ScriptState* scriptSta te, WebGLContextAttributes attributes, unsigned webGLVersion)
507 { 538 {
508 Platform::ContextAttributes contextAttributes = toPlatformContextAttributes( attributes, webGLVersion); 539 Platform::ContextAttributes contextAttributes = toPlatformContextAttributes( attributes, webGLVersion);
509 Platform::GraphicsInfo glInfo; 540 Platform::GraphicsInfo glInfo;
510 OwnPtr<WebGraphicsContext3DProvider> contextProvider; 541 OwnPtr<WebGraphicsContext3DProvider> contextProvider;
511 if (canvas) { 542 if (canvas) {
512 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider( 543 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider(
513 contextAttributes, canvas->document().topDocument().url(), 0, &glInf o)); 544 contextAttributes, canvas->document().topDocument().url(), 0, &glInf o));
545 if (!checkCreatedContext3DProvider(canvas, contextProvider.get(), glInfo ))
546 return nullptr;
514 } else { 547 } else {
515 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider( 548 if (isMainThread()) {
516 contextAttributes, scriptState->getExecutionContext()->url(), 0, &gl Info)); 549 contextProvider = adoptPtr(Platform::current()->createOffscreenGraph icsContext3DProvider(
517 } 550 contextAttributes, scriptState->getExecutionContext()->url(), 0, &glInfo));
518 if (!contextProvider || shouldFailContextCreationForTesting) { 551 if (!checkCreatedContext3DProvider(canvas, contextProvider.get(), gl Info))
519 shouldFailContextCreationForTesting = false; 552 return nullptr;
520 if (canvas) 553 } else {
521 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, extractWebGLContextCreationError(glInfo))); 554 WaitableEvent waitableEvent;
522 return nullptr; 555 WebTaskRunner* taskRunner = Platform::current()->mainThread()->getWe bTaskRunner();
523 } 556 OwnPtr<WebGLRenderingContextBase::createWebGraphicsContext3DProvider Utils> createUtils = adoptPtr(new WebGLRenderingContextBase::createWebGraphicsCo ntext3DProviderUtils(contextAttributes, glInfo, scriptState));
524 gpu::gles2::GLES2Interface* gl = contextProvider->contextGL(); 557 taskRunner->postTask(BLINK_FROM_HERE, threadSafeBind(&createWebGraph icsContext3DProviderMainThread, AllowCrossThreadAccess(createUtils.get()), Allow CrossThreadAccess(&waitableEvent)));
525 if (!String(gl->GetString(GL_EXTENSIONS)).contains("GL_OES_packed_depth_sten cil")) { 558 waitableEvent.wait();
526 if (canvas) 559 contextProvider = createUtils->releaseContextProvider();
527 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, "OES_packed_depth_stencil support is require d.")); 560 }
528 return nullptr;
529 } 561 }
530 562
531 return contextProvider.release(); 563 return contextProvider.release();
532 } 564 }
533 565
534 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(HTMLCanvasElement* canvas, WebGLContextAttributes attribu tes, unsigned webGLVersion) 566 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(HTMLCanvasElement* canvas, WebGLContextAttributes attribu tes, unsigned webGLVersion)
535 { 567 {
536 Document& document = canvas->document(); 568 Document& document = canvas->document();
537 LocalFrame* frame = document.frame(); 569 LocalFrame* frame = document.frame();
538 if (!frame) { 570 if (!frame) {
(...skipping 5732 matching lines...) Expand 10 before | Expand all | Expand 10 after
6271 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, 1); 6303 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, 1);
6272 } 6304 }
6273 6305
6274 void WebGLRenderingContextBase::restoreUnpackParameters() 6306 void WebGLRenderingContextBase::restoreUnpackParameters()
6275 { 6307 {
6276 if (m_unpackAlignment != 1) 6308 if (m_unpackAlignment != 1)
6277 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, m_unpackAlignment); 6309 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, m_unpackAlignment);
6278 } 6310 }
6279 6311
6280 } // namespace blink 6312 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698