OLD | NEW |
---|---|
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...) Loading... | |
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/WebGraphicsContext3DProvider.h" | |
95 #include "public/platform/functional/WebFunction.h" | 93 #include "public/platform/functional/WebFunction.h" |
96 #include "wtf/Functional.h" | 94 #include "wtf/Functional.h" |
97 #include "wtf/PassOwnPtr.h" | 95 #include "wtf/PassOwnPtr.h" |
98 #include "wtf/text/StringBuilder.h" | 96 #include "wtf/text/StringBuilder.h" |
99 #include "wtf/text/StringUTF8Adaptor.h" | 97 #include "wtf/text/StringUTF8Adaptor.h" |
100 #include "wtf/typed_arrays/ArrayBufferContents.h" | 98 #include "wtf/typed_arrays/ArrayBufferContents.h" |
101 | 99 |
102 #include <memory> | 100 #include <memory> |
103 | 101 |
104 namespace blink { | 102 namespace blink { |
105 | 103 |
106 namespace { | 104 namespace { |
107 | 105 |
108 const double secondsBetweenRestoreAttempts = 1.0; | 106 const double secondsBetweenRestoreAttempts = 1.0; |
109 const int maxGLErrorsAllowedToConsole = 256; | 107 const int maxGLErrorsAllowedToConsole = 256; |
110 const unsigned maxGLActiveContexts = 16; | 108 const unsigned maxGLActiveContexts = 16; |
109 const unsigned maxGLActiveContextsOnWorker = 4; | |
110 | |
111 unsigned currentMaxGLContexts() | |
112 { | |
113 return isMainThread() ? maxGLActiveContexts : maxGLActiveContextsOnWorker; | |
114 } | |
111 | 115 |
112 using WebGLRenderingContextBaseSet = PersistentHeapHashSet<WeakMember<WebGLRende ringContextBase>>; | 116 using WebGLRenderingContextBaseSet = PersistentHeapHashSet<WeakMember<WebGLRende ringContextBase>>; |
113 WebGLRenderingContextBaseSet& activeContexts() | 117 WebGLRenderingContextBaseSet& activeContexts() |
114 { | 118 { |
115 DEFINE_STATIC_LOCAL(WebGLRenderingContextBaseSet, activeContexts, ()); | 119 DEFINE_THREAD_SAFE_STATIC_LOCAL(ThreadSpecific<WebGLRenderingContextBaseSet> , activeContexts, new ThreadSpecific<WebGLRenderingContextBaseSet>()); |
116 return activeContexts; | 120 if (!activeContexts.isSet()) |
121 activeContexts->registerAsStaticReference(); | |
122 return *activeContexts; | |
117 } | 123 } |
118 | 124 |
119 using WebGLRenderingContextBaseMap = PersistentHeapHashMap<WeakMember<WebGLRende ringContextBase>, int>; | 125 using WebGLRenderingContextBaseMap = PersistentHeapHashMap<WeakMember<WebGLRende ringContextBase>, int>; |
120 WebGLRenderingContextBaseMap& forciblyEvictedContexts() | 126 WebGLRenderingContextBaseMap& forciblyEvictedContexts() |
121 { | 127 { |
122 DEFINE_STATIC_LOCAL(WebGLRenderingContextBaseMap, forciblyEvictedContexts, ( )); | 128 DEFINE_THREAD_SAFE_STATIC_LOCAL(ThreadSpecific<WebGLRenderingContextBaseMap> , forciblyEvictedContexts, new ThreadSpecific<WebGLRenderingContextBaseMap>()); |
123 return forciblyEvictedContexts; | 129 if (!forciblyEvictedContexts.isSet()) |
130 forciblyEvictedContexts->registerAsStaticReference(); | |
131 return *forciblyEvictedContexts; | |
124 } | 132 } |
125 | 133 |
126 } // namespace | 134 } // namespace |
127 | 135 |
128 ScopedRGBEmulationColorMask::ScopedRGBEmulationColorMask(gpu::gles2::GLES2Interf ace* contextGL, GLboolean* colorMask, DrawingBuffer* drawingBuffer) | 136 ScopedRGBEmulationColorMask::ScopedRGBEmulationColorMask(gpu::gles2::GLES2Interf ace* contextGL, GLboolean* colorMask, DrawingBuffer* drawingBuffer) |
129 : m_contextGL(contextGL) | 137 : m_contextGL(contextGL) |
130 , m_requiresEmulation(drawingBuffer->requiresAlphaChannelToBePreserved()) | 138 , m_requiresEmulation(drawingBuffer->requiresAlphaChannelToBePreserved()) |
131 { | 139 { |
132 if (m_requiresEmulation) { | 140 if (m_requiresEmulation) { |
133 memcpy(m_colorMask, colorMask, 4 * sizeof(GLboolean)); | 141 memcpy(m_colorMask, colorMask, 4 * sizeof(GLboolean)); |
(...skipping 49 matching lines...) Loading... | |
183 candidate = context; | 191 candidate = context; |
184 generation = forciblyEvictedContexts().get(context); | 192 generation = forciblyEvictedContexts().get(context); |
185 } | 193 } |
186 } | 194 } |
187 | 195 |
188 return candidate; | 196 return candidate; |
189 } | 197 } |
190 | 198 |
191 void WebGLRenderingContextBase::activateContext(WebGLRenderingContextBase* conte xt) | 199 void WebGLRenderingContextBase::activateContext(WebGLRenderingContextBase* conte xt) |
192 { | 200 { |
201 unsigned maxGLContexts = currentMaxGLContexts(); | |
193 unsigned removedContexts = 0; | 202 unsigned removedContexts = 0; |
194 while (activeContexts().size() >= maxGLActiveContexts && removedContexts < m axGLActiveContexts) { | 203 while (activeContexts().size() >= maxGLContexts && removedContexts < maxGLCo ntexts) { |
195 forciblyLoseOldestContext("WARNING: Too many active WebGL contexts. Olde st context will be lost."); | 204 forciblyLoseOldestContext("WARNING: Too many active WebGL contexts. Olde st context will be lost."); |
196 removedContexts++; | 205 removedContexts++; |
197 } | 206 } |
198 | 207 |
199 ASSERT(!context->isContextLost()); | 208 ASSERT(!context->isContextLost()); |
200 activeContexts().add(context); | 209 activeContexts().add(context); |
201 } | 210 } |
202 | 211 |
203 void WebGLRenderingContextBase::deactivateContext(WebGLRenderingContextBase* con text) | 212 void WebGLRenderingContextBase::deactivateContext(WebGLRenderingContextBase* con text) |
204 { | 213 { |
(...skipping 11 matching lines...) Loading... | |
216 forciblyEvictedContexts().remove(context); | 225 forciblyEvictedContexts().remove(context); |
217 } | 226 } |
218 | 227 |
219 void WebGLRenderingContextBase::willDestroyContext(WebGLRenderingContextBase* co ntext) | 228 void WebGLRenderingContextBase::willDestroyContext(WebGLRenderingContextBase* co ntext) |
220 { | 229 { |
221 // These two sets keep weak references to their contexts; | 230 // These two sets keep weak references to their contexts; |
222 // verify that the GC already removed the |context| entries. | 231 // verify that the GC already removed the |context| entries. |
223 ASSERT(!forciblyEvictedContexts().contains(context)); | 232 ASSERT(!forciblyEvictedContexts().contains(context)); |
224 ASSERT(!activeContexts().contains(context)); | 233 ASSERT(!activeContexts().contains(context)); |
225 | 234 |
235 unsigned maxGLContexts = currentMaxGLContexts(); | |
226 // Try to re-enable the oldest inactive contexts. | 236 // Try to re-enable the oldest inactive contexts. |
227 while (activeContexts().size() < maxGLActiveContexts && forciblyEvictedConte xts().size()) { | 237 while (activeContexts().size() < maxGLContexts && forciblyEvictedContexts(). size()) { |
228 WebGLRenderingContextBase* evictedContext = oldestEvictedContext(); | 238 WebGLRenderingContextBase* evictedContext = oldestEvictedContext(); |
229 if (!evictedContext->m_restoreAllowed) { | 239 if (!evictedContext->m_restoreAllowed) { |
230 forciblyEvictedContexts().remove(evictedContext); | 240 forciblyEvictedContexts().remove(evictedContext); |
231 continue; | 241 continue; |
232 } | 242 } |
233 | 243 |
234 IntSize desiredSize = DrawingBuffer::adjustSize(evictedContext->clampedC anvasSize(), IntSize(), evictedContext->m_maxTextureSize); | 244 IntSize desiredSize = DrawingBuffer::adjustSize(evictedContext->clampedC anvasSize(), IntSize(), evictedContext->m_maxTextureSize); |
235 | 245 |
236 // If there's room in the pixel budget for this context, restore it. | 246 // If there's room in the pixel budget for this context, restore it. |
237 if (!desiredSize.isEmpty()) { | 247 if (!desiredSize.isEmpty()) { |
(...skipping 275 matching lines...) Loading... | |
513 formatWebGLStatusString("Sandboxed", info.sandboxed ? "yes" : "no", statusMe ssage); | 523 formatWebGLStatusString("Sandboxed", info.sandboxed ? "yes" : "no", statusMe ssage); |
514 formatWebGLStatusString("Optimus", info.optimus ? "yes" : "no", statusMessag e); | 524 formatWebGLStatusString("Optimus", info.optimus ? "yes" : "no", statusMessag e); |
515 formatWebGLStatusString("AMD switchable", info.amdSwitchable ? "yes" : "no", statusMessage); | 525 formatWebGLStatusString("AMD switchable", info.amdSwitchable ? "yes" : "no", statusMessage); |
516 formatWebGLStatusString("Reset notification strategy", String::format("0x%04 x", info.resetNotificationStrategy).utf8().data(), statusMessage); | 526 formatWebGLStatusString("Reset notification strategy", String::format("0x%04 x", info.resetNotificationStrategy).utf8().data(), statusMessage); |
517 formatWebGLStatusString("GPU process crash count", String::number(info.proce ssCrashCount).utf8().data(), statusMessage); | 527 formatWebGLStatusString("GPU process crash count", String::number(info.proce ssCrashCount).utf8().data(), statusMessage); |
518 formatWebGLStatusString("ErrorMessage", info.errorMessage.utf8().data(), sta tusMessage); | 528 formatWebGLStatusString("ErrorMessage", info.errorMessage.utf8().data(), sta tusMessage); |
519 statusMessage.append("."); | 529 statusMessage.append("."); |
520 return statusMessage; | 530 return statusMessage; |
521 } | 531 } |
522 | 532 |
523 static PassOwnPtr<WebGraphicsContext3DProvider> createWebGraphicsContext3DProvid erInternal(HTMLCanvasElement* canvas, ScriptState* scriptState, WebGLContextAttr ibutes attributes, unsigned webGLVersion) | 533 class WebGLRenderingContextBase::ContextProviderCreationInfo { |
534 public: | |
535 ContextProviderCreationInfo(Platform::ContextAttributes contextAttributes, P latform::GraphicsInfo glInfo, ScriptState* scriptState) | |
536 { | |
537 m_contextAttributes = contextAttributes; | |
538 m_glInfo = glInfo; | |
539 m_scriptState = scriptState; | |
540 } | |
541 Platform::ContextAttributes contextAttributes() { return m_contextAttributes ; } | |
542 Platform::GraphicsInfo glInfo() { return m_glInfo; } | |
543 ScriptState* scriptState() { return m_scriptState; } | |
544 void setContextProvider(PassOwnPtr<WebGraphicsContext3DProvider> provider) { m_provider = std::move(provider); } | |
545 PassOwnPtr<WebGraphicsContext3DProvider> releaseContextProvider() { return m _provider.release(); } | |
546 private: | |
547 Platform::ContextAttributes m_contextAttributes; | |
548 Platform::GraphicsInfo m_glInfo; | |
549 ScriptState* m_scriptState; | |
550 OwnPtr<WebGraphicsContext3DProvider> m_provider; | |
551 }; | |
552 | |
553 void WebGLRenderingContextBase::createContextProviderOnMainThread(ContextProvide rCreationInfo* creationInfo, WaitableEvent* waitableEvent) | |
554 { | |
555 ASSERT(isMainThread()); | |
556 Platform::GraphicsInfo glInfo = creationInfo->glInfo(); | |
557 OwnPtr<WebGraphicsContext3DProvider> provider = adoptPtr(Platform::current() ->createOffscreenGraphicsContext3DProvider( | |
558 creationInfo->contextAttributes(), creationInfo->scriptState()->getExecu tionContext()->url(), 0, &glInfo, Platform::DoNotBindToCurrentThread)); | |
559 creationInfo->setContextProvider(provider.release()); | |
560 waitableEvent->signal(); | |
561 } | |
562 | |
563 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createContex tProviderOnWorkerThread(Platform::ContextAttributes contextAttributes, Platform: :GraphicsInfo glInfo, ScriptState* scriptState) | |
564 { | |
565 // TODO(xidachen): make this context creation asynchronous. | |
Ken Russell (switch to Gerrit)
2016/05/09 18:00:13
Making the context creation asynchronous would imp
xidachen
2016/05/09 18:18:20
Done.
| |
566 WaitableEvent waitableEvent; | |
567 OwnPtr<ContextProviderCreationInfo> creationInfo = adoptPtr(new ContextProvi derCreationInfo(contextAttributes, glInfo, scriptState)); | |
568 WebTaskRunner* taskRunner = Platform::current()->mainThread()->getWebTaskRun ner(); | |
569 taskRunner->postTask(BLINK_FROM_HERE, threadSafeBind(&createContextProviderO nMainThread, AllowCrossThreadAccess(creationInfo.get()), AllowCrossThreadAccess( &waitableEvent))); | |
570 waitableEvent.wait(); | |
571 return creationInfo->releaseContextProvider(); | |
572 } | |
573 | |
574 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createContex tProviderInternal(HTMLCanvasElement* canvas, ScriptState* scriptState, WebGLCont extAttributes attributes, unsigned webGLVersion) | |
524 { | 575 { |
525 Platform::ContextAttributes contextAttributes = toPlatformContextAttributes( attributes, webGLVersion); | 576 Platform::ContextAttributes contextAttributes = toPlatformContextAttributes( attributes, webGLVersion); |
526 Platform::GraphicsInfo glInfo; | 577 Platform::GraphicsInfo glInfo; |
527 OwnPtr<WebGraphicsContext3DProvider> contextProvider; | 578 OwnPtr<WebGraphicsContext3DProvider> contextProvider; |
528 if (canvas) { | 579 if (canvas) { |
529 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider( | 580 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider( |
530 contextAttributes, canvas->document().topDocument().url(), 0, &glInf o)); | 581 contextAttributes, canvas->document().topDocument().url(), 0, &glInf o, Platform::BindToCurrentThread)); |
531 } else { | 582 } else { |
532 contextProvider = adoptPtr(Platform::current()->createOffscreenGraphicsC ontext3DProvider( | 583 if (isMainThread()) { |
533 contextAttributes, scriptState->getExecutionContext()->url(), 0, &gl Info)); | 584 contextProvider = adoptPtr(Platform::current()->createOffscreenGraph icsContext3DProvider( |
585 contextAttributes, scriptState->getExecutionContext()->url(), 0, &glInfo, Platform::BindToCurrentThread)); | |
586 } else { | |
587 contextProvider = createContextProviderOnWorkerThread(contextAttribu tes, glInfo, scriptState); | |
588 if (!contextProvider->bindToCurrentThread()) | |
589 return nullptr; | |
590 } | |
534 } | 591 } |
535 if (!contextProvider || shouldFailContextCreationForTesting) { | 592 if (!contextProvider || shouldFailContextCreationForTesting) { |
536 shouldFailContextCreationForTesting = false; | 593 shouldFailContextCreationForTesting = false; |
537 if (canvas) | 594 if (canvas) |
538 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, extractWebGLContextCreationError(glInfo))); | 595 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, extractWebGLContextCreationError(glInfo))); |
539 return nullptr; | 596 return nullptr; |
540 } | 597 } |
541 gpu::gles2::GLES2Interface* gl = contextProvider->contextGL(); | 598 gpu::gles2::GLES2Interface* gl = contextProvider->contextGL(); |
542 if (!String(gl->GetString(GL_EXTENSIONS)).contains("GL_OES_packed_depth_sten cil")) { | 599 if (!String(gl->GetString(GL_EXTENSIONS)).contains("GL_OES_packed_depth_sten cil")) { |
543 if (canvas) | 600 if (canvas) |
544 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, "OES_packed_depth_stencil support is require d.")); | 601 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webg lcontextcreationerror, false, true, "OES_packed_depth_stencil support is require d.")); |
545 return nullptr; | 602 return nullptr; |
546 } | 603 } |
547 | |
548 return contextProvider.release(); | 604 return contextProvider.release(); |
549 } | 605 } |
550 | 606 |
551 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(HTMLCanvasElement* canvas, WebGLContextAttributes attribu tes, unsigned webGLVersion) | 607 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(HTMLCanvasElement* canvas, WebGLContextAttributes attribu tes, unsigned webGLVersion) |
552 { | 608 { |
553 Document& document = canvas->document(); | 609 Document& document = canvas->document(); |
554 LocalFrame* frame = document.frame(); | 610 LocalFrame* frame = document.frame(); |
555 if (!frame) { | 611 if (!frame) { |
556 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcon textcreationerror, false, true, "Web page was not allowed to create a WebGL cont ext.")); | 612 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcon textcreationerror, false, true, "Web page was not allowed to create a WebGL cont ext.")); |
557 return nullptr; | 613 return nullptr; |
558 } | 614 } |
559 Settings* settings = frame->settings(); | 615 Settings* settings = frame->settings(); |
560 | 616 |
561 // The FrameLoaderClient might block creation of a new WebGL context despite the page settings; in | 617 // The FrameLoaderClient might block creation of a new WebGL context despite the page settings; in |
562 // particular, if WebGL contexts were lost one or more times via the GL_ARB_ robustness extension. | 618 // particular, if WebGL contexts were lost one or more times via the GL_ARB_ robustness extension. |
563 if (!frame->loader().client()->allowWebGL(settings && settings->webGLEnabled ())) { | 619 if (!frame->loader().client()->allowWebGL(settings && settings->webGLEnabled ())) { |
564 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcon textcreationerror, false, true, "Web page was not allowed to create a WebGL cont ext.")); | 620 canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcon textcreationerror, false, true, "Web page was not allowed to create a WebGL cont ext.")); |
565 return nullptr; | 621 return nullptr; |
566 } | 622 } |
567 | 623 |
568 return createWebGraphicsContext3DProviderInternal(canvas, nullptr, attribute s, webGLVersion); | 624 return createContextProviderInternal(canvas, nullptr, attributes, webGLVersi on); |
569 } | 625 } |
570 | 626 |
571 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(ScriptState* scriptState, WebGLContextAttributes attribut es, unsigned webGLVersion) | 627 PassOwnPtr<WebGraphicsContext3DProvider> WebGLRenderingContextBase::createWebGra phicsContext3DProvider(ScriptState* scriptState, WebGLContextAttributes attribut es, unsigned webGLVersion) |
572 { | 628 { |
573 return createWebGraphicsContext3DProviderInternal(nullptr, scriptState, attr ibutes, webGLVersion); | 629 return createContextProviderInternal(nullptr, scriptState, attributes, webGL Version); |
574 } | 630 } |
575 | 631 |
576 void WebGLRenderingContextBase::forceNextWebGLContextCreationToFail() | 632 void WebGLRenderingContextBase::forceNextWebGLContextCreationToFail() |
577 { | 633 { |
578 shouldFailContextCreationForTesting = true; | 634 shouldFailContextCreationForTesting = true; |
579 } | 635 } |
580 | 636 |
581 namespace { | 637 namespace { |
582 | 638 |
583 // ES2 enums | 639 // ES2 enums |
(...skipping 5377 matching lines...) Loading... | |
5961 | 6017 |
5962 // If the context was lost due to RealLostContext, we need to destroy the ol d DrawingBuffer before creating new DrawingBuffer to ensure resource budget enou gh. | 6018 // If the context was lost due to RealLostContext, we need to destroy the ol d DrawingBuffer before creating new DrawingBuffer to ensure resource budget enou gh. |
5963 if (drawingBuffer()) { | 6019 if (drawingBuffer()) { |
5964 m_drawingBuffer->beginDestruction(); | 6020 m_drawingBuffer->beginDestruction(); |
5965 m_drawingBuffer.clear(); | 6021 m_drawingBuffer.clear(); |
5966 } | 6022 } |
5967 | 6023 |
5968 Platform::ContextAttributes attributes = toPlatformContextAttributes(m_reque stedAttributes, version()); | 6024 Platform::ContextAttributes attributes = toPlatformContextAttributes(m_reque stedAttributes, version()); |
5969 Platform::GraphicsInfo glInfo; | 6025 Platform::GraphicsInfo glInfo; |
5970 OwnPtr<WebGraphicsContext3DProvider> contextProvider = adoptPtr(Platform::cu rrent()->createOffscreenGraphicsContext3DProvider( | 6026 OwnPtr<WebGraphicsContext3DProvider> contextProvider = adoptPtr(Platform::cu rrent()->createOffscreenGraphicsContext3DProvider( |
5971 attributes, canvas()->document().topDocument().url(), 0, &glInfo)); | 6027 attributes, canvas()->document().topDocument().url(), 0, &glInfo, Platfo rm::BindToCurrentThread)); |
5972 RefPtr<DrawingBuffer> buffer; | 6028 RefPtr<DrawingBuffer> buffer; |
5973 if (contextProvider) { | 6029 if (contextProvider) { |
5974 // Construct a new drawing buffer with the new GL context. | 6030 // Construct a new drawing buffer with the new GL context. |
5975 buffer = createDrawingBuffer(contextProvider.release()); | 6031 buffer = createDrawingBuffer(contextProvider.release()); |
5976 // If DrawingBuffer::create() fails to allocate a fbo, |drawingBuffer| i s set to null. | 6032 // If DrawingBuffer::create() fails to allocate a fbo, |drawingBuffer| i s set to null. |
5977 } | 6033 } |
5978 if (!buffer) { | 6034 if (!buffer) { |
5979 if (m_contextLostMode == RealLostContext) { | 6035 if (m_contextLostMode == RealLostContext) { |
5980 m_restoreTimer.startOneShot(secondsBetweenRestoreAttempts, BLINK_FRO M_HERE); | 6036 m_restoreTimer.startOneShot(secondsBetweenRestoreAttempts, BLINK_FRO M_HERE); |
5981 } else { | 6037 } else { |
(...skipping 324 matching lines...) Loading... | |
6306 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, 1); | 6362 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, 1); |
6307 } | 6363 } |
6308 | 6364 |
6309 void WebGLRenderingContextBase::restoreUnpackParameters() | 6365 void WebGLRenderingContextBase::restoreUnpackParameters() |
6310 { | 6366 { |
6311 if (m_unpackAlignment != 1) | 6367 if (m_unpackAlignment != 1) |
6312 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, m_unpackAlignment); | 6368 contextGL()->PixelStorei(GL_UNPACK_ALIGNMENT, m_unpackAlignment); |
6313 } | 6369 } |
6314 | 6370 |
6315 } // namespace blink | 6371 } // namespace blink |
OLD | NEW |