aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/trace/SkEventTracingPriv.h
diff options
context:
space:
mode:
authorGravatar Brian Osman <brianosman@google.com>2017-07-20 15:43:35 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-20 20:11:22 +0000
commit53136aa93f0d0e72facabb70a7d40ed265e4be0e (patch)
tree3ae630fda54ade043c357bf80222e06eda6bbef2 /tools/trace/SkEventTracingPriv.h
parent45c16fa82cd2fec010d4cb7763b654a413cabd0c (diff)
First stab at JSON event tracer
Not yet thread safe (so it forces threading off). Builds JSON on the fly, so overhead is certainly bad. Plan to fix all of that, but this at least "works". There is now one tracing flag: 'trace'. - 'debugf' installs the SkDebugf tracer. - 'atrace' installs the Android ATrace tracer. - Any other value is interpreted as a filename, and produces a JSON file for chrome://tracing. All three modes work in DM, nanobench, and Viewer. Bug: skia: Change-Id: I3fbc22382b99418a508c670be2770195c0a1c364 Reviewed-on: https://skia-review.googlesource.com/24781 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tools/trace/SkEventTracingPriv.h')
-rw-r--r--tools/trace/SkEventTracingPriv.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/trace/SkEventTracingPriv.h b/tools/trace/SkEventTracingPriv.h
new file mode 100644
index 0000000000..330f3f83ed
--- /dev/null
+++ b/tools/trace/SkEventTracingPriv.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright 2017 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkEventTracingPriv_DEFINED
+#define SkEventTracingPriv_DEFINED
+
+#include "SkTypes.h"
+
+/**
+ * Construct and install an SkEventTracer, based on the 'trace' command line argument.
+ *
+ * @param threadsFlag Pointer to the FLAGS_threads variable (or nullptr). This is used to disable
+ * threading when tracing to JSON. (Remove this param when JSON tracer is thread
+ * safe).
+ */
+void initializeEventTracingForTools(int32_t* threadsFlag);
+
+#endif