| Index: sky/engine/core/html/canvas/WebGLRenderingContext.cpp
|
| diff --git a/sky/engine/core/html/canvas/WebGLRenderingContext.cpp b/sky/engine/core/html/canvas/WebGLRenderingContext.cpp
|
| deleted file mode 100644
|
| index 191a9a93ec7a2bec8b96cbf2cdfc3d36d6e0f0f9..0000000000000000000000000000000000000000
|
| --- a/sky/engine/core/html/canvas/WebGLRenderingContext.cpp
|
| +++ /dev/null
|
| @@ -1,141 +0,0 @@
|
| -/*
|
| - * Copyright (C) 2009 Apple Inc. All rights reserved.
|
| - *
|
| - * Redistribution and use in source and binary forms, with or without
|
| - * modification, are permitted provided that the following conditions
|
| - * are met:
|
| - * 1. Redistributions of source code must retain the above copyright
|
| - * notice, this list of conditions and the following disclaimer.
|
| - * 2. Redistributions in binary form must reproduce the above copyright
|
| - * notice, this list of conditions and the following disclaimer in the
|
| - * documentation and/or other materials provided with the distribution.
|
| - *
|
| - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
|
| - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
| - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
|
| - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
| - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
| - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
| - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
| - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| - */
|
| -
|
| -#include "sky/engine/config.h"
|
| -#include "sky/engine/core/html/canvas/WebGLRenderingContext.h"
|
| -
|
| -#include "sky/engine/core/frame/LocalFrame.h"
|
| -#include "sky/engine/core/frame/Settings.h"
|
| -#include "sky/engine/core/html/canvas/ANGLEInstancedArrays.h"
|
| -#include "sky/engine/core/html/canvas/EXTBlendMinMax.h"
|
| -#include "sky/engine/core/html/canvas/EXTFragDepth.h"
|
| -#include "sky/engine/core/html/canvas/EXTShaderTextureLOD.h"
|
| -#include "sky/engine/core/html/canvas/EXTTextureFilterAnisotropic.h"
|
| -#include "sky/engine/core/html/canvas/OESElementIndexUint.h"
|
| -#include "sky/engine/core/html/canvas/OESStandardDerivatives.h"
|
| -#include "sky/engine/core/html/canvas/OESTextureFloat.h"
|
| -#include "sky/engine/core/html/canvas/OESTextureFloatLinear.h"
|
| -#include "sky/engine/core/html/canvas/OESTextureHalfFloat.h"
|
| -#include "sky/engine/core/html/canvas/OESTextureHalfFloatLinear.h"
|
| -#include "sky/engine/core/html/canvas/OESVertexArrayObject.h"
|
| -#include "sky/engine/core/html/canvas/WebGLCompressedTextureATC.h"
|
| -#include "sky/engine/core/html/canvas/WebGLCompressedTextureETC1.h"
|
| -#include "sky/engine/core/html/canvas/WebGLCompressedTexturePVRTC.h"
|
| -#include "sky/engine/core/html/canvas/WebGLCompressedTextureS3TC.h"
|
| -#include "sky/engine/core/html/canvas/WebGLContextAttributes.h"
|
| -#include "sky/engine/core/html/canvas/WebGLContextEvent.h"
|
| -#include "sky/engine/core/html/canvas/WebGLDebugRendererInfo.h"
|
| -#include "sky/engine/core/html/canvas/WebGLDebugShaders.h"
|
| -#include "sky/engine/core/html/canvas/WebGLDepthTexture.h"
|
| -#include "sky/engine/core/html/canvas/WebGLDrawBuffers.h"
|
| -#include "sky/engine/core/html/canvas/WebGLLoseContext.h"
|
| -#include "sky/engine/core/loader/FrameLoaderClient.h"
|
| -#include "sky/engine/core/rendering/RenderBox.h"
|
| -#include "sky/engine/platform/CheckedInt.h"
|
| -#include "sky/engine/platform/NotImplemented.h"
|
| -#include "sky/engine/platform/graphics/gpu/DrawingBuffer.h"
|
| -#include "sky/engine/public/platform/Platform.h"
|
| -
|
| -namespace blink {
|
| -
|
| -PassOwnPtr<WebGLRenderingContext> WebGLRenderingContext::create(HTMLCanvasElement* canvas, WebGLContextAttributes* attrs)
|
| -{
|
| - Document& document = canvas->document();
|
| - LocalFrame* frame = document.frame();
|
| - if (!frame) {
|
| - canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Web page was not allowed to create a WebGL context."));
|
| - return nullptr;
|
| - }
|
| - Settings* settings = frame->settings();
|
| -
|
| - // TODO(esprehn): This should never be null.
|
| - RefPtr<WebGLContextAttributes> defaultAttrs = nullptr;
|
| - if (!attrs) {
|
| - defaultAttrs = WebGLContextAttributes::create();
|
| - attrs = defaultAttrs.get();
|
| - }
|
| - blink::WebGraphicsContext3D::Attributes attributes = attrs->attributes(document.topDocument().url().string(), settings, 1);
|
| - OwnPtr<blink::WebGraphicsContext3D> context = adoptPtr(blink::Platform::current()->createOffscreenGraphicsContext3D(attributes, 0));
|
| - if (!context) {
|
| - canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Could not create a WebGL context."));
|
| - return nullptr;
|
| - }
|
| -
|
| - OwnPtr<Extensions3DUtil> extensionsUtil = Extensions3DUtil::create(context.get());
|
| - if (!extensionsUtil)
|
| - return nullptr;
|
| - if (extensionsUtil->supportsExtension("GL_EXT_debug_marker"))
|
| - context->pushGroupMarkerEXT("WebGLRenderingContext");
|
| -
|
| - OwnPtr<WebGLRenderingContext> renderingContext = adoptPtr(new WebGLRenderingContext(canvas, context.release(), attrs));
|
| - renderingContext->registerContextExtensions();
|
| - renderingContext->suspendIfNeeded();
|
| -
|
| - if (!renderingContext->drawingBuffer()) {
|
| - canvas->dispatchEvent(WebGLContextEvent::create(EventTypeNames::webglcontextcreationerror, false, true, "Could not create a WebGL context."));
|
| - return nullptr;
|
| - }
|
| -
|
| - return renderingContext.release();
|
| -}
|
| -
|
| -WebGLRenderingContext::WebGLRenderingContext(HTMLCanvasElement* passedCanvas, PassOwnPtr<blink::WebGraphicsContext3D> context, WebGLContextAttributes* requestedAttributes)
|
| - : WebGLRenderingContextBase(passedCanvas, context, requestedAttributes)
|
| -{
|
| -}
|
| -
|
| -WebGLRenderingContext::~WebGLRenderingContext()
|
| -{
|
| -}
|
| -
|
| -void WebGLRenderingContext::registerContextExtensions()
|
| -{
|
| - // Register extensions.
|
| - static const char* const bothPrefixes[] = { "", "WEBKIT_", 0, };
|
| -
|
| - registerExtension<ANGLEInstancedArrays>(m_angleInstancedArrays);
|
| - registerExtension<EXTBlendMinMax>(m_extBlendMinMax);
|
| - registerExtension<EXTFragDepth>(m_extFragDepth);
|
| - registerExtension<EXTShaderTextureLOD>(m_extShaderTextureLOD);
|
| - registerExtension<EXTTextureFilterAnisotropic>(m_extTextureFilterAnisotropic, ApprovedExtension, bothPrefixes);
|
| - registerExtension<OESElementIndexUint>(m_oesElementIndexUint);
|
| - registerExtension<OESStandardDerivatives>(m_oesStandardDerivatives);
|
| - registerExtension<OESTextureFloat>(m_oesTextureFloat);
|
| - registerExtension<OESTextureFloatLinear>(m_oesTextureFloatLinear);
|
| - registerExtension<OESTextureHalfFloat>(m_oesTextureHalfFloat);
|
| - registerExtension<OESTextureHalfFloatLinear>(m_oesTextureHalfFloatLinear);
|
| - registerExtension<OESVertexArrayObject>(m_oesVertexArrayObject);
|
| - registerExtension<WebGLCompressedTextureATC>(m_webglCompressedTextureATC, ApprovedExtension, bothPrefixes);
|
| - registerExtension<WebGLCompressedTextureETC1>(m_webglCompressedTextureETC1);
|
| - registerExtension<WebGLCompressedTexturePVRTC>(m_webglCompressedTexturePVRTC, ApprovedExtension, bothPrefixes);
|
| - registerExtension<WebGLCompressedTextureS3TC>(m_webglCompressedTextureS3TC, ApprovedExtension, bothPrefixes);
|
| - registerExtension<WebGLDebugRendererInfo>(m_webglDebugRendererInfo);
|
| - registerExtension<WebGLDebugShaders>(m_webglDebugShaders);
|
| - registerExtension<WebGLDepthTexture>(m_webglDepthTexture, ApprovedExtension, bothPrefixes);
|
| - registerExtension<WebGLDrawBuffers>(m_webglDrawBuffers);
|
| - registerExtension<WebGLLoseContext>(m_webglLoseContext, ApprovedExtension, bothPrefixes);
|
| -}
|
| -
|
| -} // namespace blink
|
|
|