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

Unified Diff: modules/webgl/EXTDisjointTimerQuery.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (Closed)
Patch Set: Created 3 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 | « modules/webgl/EXTColorBufferFloat.idl ('k') | modules/webgl/EXTFragDepth.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/webgl/EXTDisjointTimerQuery.idl
diff --git a/modules/webgl/EXTDisjointTimerQuery.idl b/modules/webgl/EXTDisjointTimerQuery.idl
new file mode 100644
index 0000000000000000000000000000000000000000..6da8e5bb44b95cda50a5d9b7d84708fd661f054e
--- /dev/null
+++ b/modules/webgl/EXTDisjointTimerQuery.idl
@@ -0,0 +1,29 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+typedef unsigned long long GLuint64EXT;
+
+[
+ DoNotCheckConstants,
+ NoInterfaceObject,
+ GarbageCollected,
+ SetWrapperReferenceFrom=canvas,
+] interface EXTDisjointTimerQuery {
+ const GLenum QUERY_COUNTER_BITS_EXT = 0x8864;
+ const GLenum CURRENT_QUERY_EXT = 0x8865;
+ const GLenum QUERY_RESULT_EXT = 0x8866;
+ const GLenum QUERY_RESULT_AVAILABLE_EXT = 0x8867;
+ const GLenum TIME_ELAPSED_EXT = 0x88BF;
+ const GLenum TIMESTAMP_EXT = 0x8E28;
+ const GLenum GPU_DISJOINT_EXT = 0x8FBB;
+
+ WebGLTimerQueryEXT createQueryEXT();
+ void deleteQueryEXT([Default=Undefined] WebGLTimerQueryEXT? query);
+ boolean isQueryEXT([Default=Undefined] WebGLTimerQueryEXT? query);
+ void beginQueryEXT(GLenum target, [Default=Undefined] WebGLTimerQueryEXT? query);
+ void endQueryEXT(GLenum target);
+ void queryCounterEXT([Default=Undefined] WebGLTimerQueryEXT? query, GLenum target);
+ [CallWith=ScriptState] any getQueryEXT(GLenum target, GLenum pname);
+ [CallWith=ScriptState] any getQueryObjectEXT([Default=Undefined] WebGLTimerQueryEXT? query, GLenum pname);
+};
« no previous file with comments | « modules/webgl/EXTColorBufferFloat.idl ('k') | modules/webgl/EXTFragDepth.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698