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

Unified Diff: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_trace_marker.txt

Issue 780653007: Added GL_CHROMIUM_trace_marker feature as well as gpu_toplevel markers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed endtrace calls Created 6 years 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
Index: gpu/GLES2/extensions/CHROMIUM/CHROMIUM_trace_marker.txt
diff --git a/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_trace_marker.txt b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_trace_marker.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c2c3cab74afe8795cb209924c2ce198afd38b900
--- /dev/null
+++ b/gpu/GLES2/extensions/CHROMIUM/CHROMIUM_trace_marker.txt
@@ -0,0 +1,64 @@
+Name
+
+ CHROMIUM_trace_marker
+
+Name Strings
+
+ GL_CHROMIUM_trace_marker
+
+Version
+
+ Last Modifed Date: December 17, 2014
+
+Dependencies
+
+ OpenGL ES 2.0 is required.
+
+Overview
+
+ This extension lets you mark chromium style GPU traces. Each trace can
+ specify both a category name and a trace name which will be associated
+ with the trace.
+
+ Each trace's beginning is marked by TraceBeginCHROMIUM and the end can
+ optionally be marked by TraceEndCHROMIUM. If the trace's end is not marked,
+ the trace will automatically end with the commands of the traced graphics
vmiura 2014/12/18 21:49:39 nit: "the trace will automatically end when the co
David Yen 2014/12/18 21:54:27 Done.
+ context is finished.
+
+ Multiple traces can happen simultaneously, however traces act as a stack
+ and must be fully contained within one another. Therefore, you cannot
+ have overlapping traces.
+
+ Once a trace has been recorded, it is up to the application to decide
+ how the traces should be displayed.
+
+New Tokens
+
+ None
+
+New Procedures and Functions
+
+ void TraceBeginCHROMIUM(const char* category_name, const char* trace_name)
+
+ Marks the beginning of when a GPU trace should begin. Once the trace begins
+ it lasts until the current graphics context is finished or when
+ TraceEndCHROMIUM is called.
+
+
+ void TraceEndCHROMIUM()
+
+ Marks the last trace to end, this will signal the application to stop
+ tracing the previous trace.
+
+Errors
+
+ None.
+
+New State
+
+ None.
+
+Revision History
+
+ 12/17/2014 Documented the extension
+

Powered by Google App Engine
This is Rietveld 408576698