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

Unified Diff: sky/engine/core/html/canvas/WebGLGetInfo.h

Issue 1001913003: Remove <canvas> (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « sky/engine/core/html/canvas/WebGLFramebuffer.idl ('k') | sky/engine/core/html/canvas/WebGLGetInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/html/canvas/WebGLGetInfo.h
diff --git a/sky/engine/core/html/canvas/WebGLGetInfo.h b/sky/engine/core/html/canvas/WebGLGetInfo.h
deleted file mode 100644
index 4d2e1d140104be4cd863598ca54dd60dd6f47897..0000000000000000000000000000000000000000
--- a/sky/engine/core/html/canvas/WebGLGetInfo.h
+++ /dev/null
@@ -1,141 +0,0 @@
-/*
- * Copyright (C) 2009 Apple Inc. All Rights Reserved.
- * Copyright (C) 2009 Google 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 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 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.
- */
-
-#ifndef SKY_ENGINE_CORE_HTML_CANVAS_WEBGLGETINFO_H_
-#define SKY_ENGINE_CORE_HTML_CANVAS_WEBGLGETINFO_H_
-
-#include "sky/engine/core/html/canvas/WebGLBuffer.h"
-#include "sky/engine/core/html/canvas/WebGLFramebuffer.h"
-#include "sky/engine/core/html/canvas/WebGLProgram.h"
-#include "sky/engine/core/html/canvas/WebGLRenderbuffer.h"
-#include "sky/engine/core/html/canvas/WebGLTexture.h"
-#include "sky/engine/core/html/canvas/WebGLVertexArrayObjectOES.h"
-#include "sky/engine/wtf/Float32Array.h"
-#include "sky/engine/wtf/Int32Array.h"
-#include "sky/engine/wtf/PassRefPtr.h"
-#include "sky/engine/wtf/RefPtr.h"
-#include "sky/engine/wtf/Uint32Array.h"
-#include "sky/engine/wtf/Uint8Array.h"
-#include "sky/engine/wtf/text/WTFString.h"
-
-namespace blink {
-
-// A tagged union representing the result of get queries like
-// getParameter (encompassing getBooleanv, getIntegerv, getFloatv) and
-// similar variants. For reference counted types, increments and
-// decrements the reference count of the target object.
-
-class WebGLGetInfo final {
- STACK_ALLOCATED();
-public:
- enum Type {
- kTypeBool,
- kTypeBoolArray,
- kTypeFloat,
- kTypeInt,
- kTypeNull,
- kTypeString,
- kTypeUnsignedInt,
- kTypeWebGLBuffer,
- kTypeWebGLFloatArray,
- kTypeWebGLFramebuffer,
- kTypeWebGLIntArray,
- kTypeWebGLObjectArray,
- kTypeWebGLProgram,
- kTypeWebGLRenderbuffer,
- kTypeWebGLTexture,
- kTypeWebGLUnsignedByteArray,
- kTypeWebGLUnsignedIntArray,
- kTypeWebGLVertexArrayObjectOES,
- };
-
- explicit WebGLGetInfo(bool value);
- WebGLGetInfo(const bool* value, int size);
- explicit WebGLGetInfo(float value);
- explicit WebGLGetInfo(int value);
- // Represents the null value and type.
- WebGLGetInfo();
- explicit WebGLGetInfo(const String& value);
- explicit WebGLGetInfo(unsigned value);
- explicit WebGLGetInfo(PassRefPtr<WebGLBuffer> value);
- explicit WebGLGetInfo(PassRefPtr<Float32Array> value);
- explicit WebGLGetInfo(PassRefPtr<WebGLFramebuffer> value);
- explicit WebGLGetInfo(PassRefPtr<Int32Array> value);
- // FIXME: implement WebGLObjectArray
- // WebGLGetInfo(PassRefPtr<WebGLObjectArray> value);
- explicit WebGLGetInfo(PassRefPtr<WebGLProgram> value);
- explicit WebGLGetInfo(PassRefPtr<WebGLRenderbuffer> value);
- explicit WebGLGetInfo(PassRefPtr<WebGLTexture> value);
- explicit WebGLGetInfo(PassRefPtr<Uint8Array> value);
- explicit WebGLGetInfo(PassRefPtr<Uint32Array> value);
- explicit WebGLGetInfo(PassRefPtr<WebGLVertexArrayObjectOES> value);
-
- Type getType() const;
-
- bool getBool() const;
- const Vector<bool>& getBoolArray() const;
- float getFloat() const;
- int getInt() const;
- const String& getString() const;
- unsigned getUnsignedInt() const;
- PassRefPtr<WebGLBuffer> getWebGLBuffer() const;
- PassRefPtr<Float32Array> getWebGLFloatArray() const;
- PassRefPtr<WebGLFramebuffer> getWebGLFramebuffer() const;
- PassRefPtr<Int32Array> getWebGLIntArray() const;
- // FIXME: implement WebGLObjectArray
- // PassRefPtr<WebGLObjectArray> getWebGLObjectArray() const;
- PassRefPtr<WebGLProgram> getWebGLProgram() const;
- PassRefPtr<WebGLRenderbuffer> getWebGLRenderbuffer() const;
- PassRefPtr<WebGLTexture> getWebGLTexture() const;
- PassRefPtr<Uint8Array> getWebGLUnsignedByteArray() const;
- PassRefPtr<Uint32Array> getWebGLUnsignedIntArray() const;
- PassRefPtr<WebGLVertexArrayObjectOES> getWebGLVertexArrayObjectOES() const;
-
-private:
- Type m_type;
- bool m_bool;
- Vector<bool> m_boolArray;
- float m_float;
- int m_int;
- String m_string;
- unsigned m_unsignedInt;
- RefPtr<WebGLBuffer> m_webglBuffer;
- RefPtr<Float32Array> m_webglFloatArray;
- RefPtr<WebGLFramebuffer> m_webglFramebuffer;
- RefPtr<Int32Array> m_webglIntArray;
- // FIXME: implement WebGLObjectArray
- // RefPtr<WebGLObjectArray> m_webglObjectArray;
- RefPtr<WebGLProgram> m_webglProgram;
- RefPtr<WebGLRenderbuffer> m_webglRenderbuffer;
- RefPtr<WebGLTexture> m_webglTexture;
- RefPtr<Uint8Array> m_webglUnsignedByteArray;
- RefPtr<Uint32Array> m_webglUnsignedIntArray;
- RefPtr<WebGLVertexArrayObjectOES> m_webglVertexArrayObject;
-};
-
-} // namespace blink
-
-#endif // SKY_ENGINE_CORE_HTML_CANVAS_WEBGLGETINFO_H_
« no previous file with comments | « sky/engine/core/html/canvas/WebGLFramebuffer.idl ('k') | sky/engine/core/html/canvas/WebGLGetInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698