diff options
Diffstat (limited to 'Source/WebCore/html/canvas/WebGLSharedObject.h')
-rw-r--r-- | Source/WebCore/html/canvas/WebGLSharedObject.h | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/Source/WebCore/html/canvas/WebGLSharedObject.h b/Source/WebCore/html/canvas/WebGLSharedObject.h index a55f64871..972e580ee 100644 --- a/Source/WebCore/html/canvas/WebGLSharedObject.h +++ b/Source/WebCore/html/canvas/WebGLSharedObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 Apple Inc. All rights reserved. + * Copyright (C) 2011-2017 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -10,10 +10,10 @@ * 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 + * THIS SOFTWARE IS PROVIDED BY APPLE 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 + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE 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 @@ -23,8 +23,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef WebGLSharedObject_h -#define WebGLSharedObject_h +#pragma once #include "WebGLObject.h" @@ -32,24 +31,19 @@ namespace WebCore { class GraphicsContext3D; class WebGLContextGroup; -class WebGLRenderingContext; +class WebGLRenderingContextBase; -// WebGLSharedObject the base class for objects that can be shared by multiple -// WebGLRenderingContexts. +// WebGLSharedObject the base class for objects that can be shared by multiple WebGLRenderingContexts. class WebGLSharedObject : public WebGLObject { public: virtual ~WebGLSharedObject(); WebGLContextGroup* contextGroup() const { return m_contextGroup; } - virtual bool isBuffer() const { return false; } - virtual bool isFramebuffer() const { return false; } - virtual bool isProgram() const { return false; } virtual bool isRenderbuffer() const { return false; } - virtual bool isShader() const { return false; } virtual bool isTexture() const { return false; } - virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContext*) const override + bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContextBase&) const override { return contextGroup == m_contextGroup; } @@ -57,19 +51,17 @@ public: void detachContextGroup(); protected: - WebGLSharedObject(WebGLRenderingContext*); + WebGLSharedObject(WebGLRenderingContextBase&); - virtual bool hasGroupOrContext() const override + bool hasGroupOrContext() const override { return m_contextGroup; } - virtual GraphicsContext3D* getAGraphicsContext3D() const override; + GraphicsContext3D* getAGraphicsContext3D() const override; private: WebGLContextGroup* m_contextGroup; }; } // namespace WebCore - -#endif // WebGLSharedObject_h |