aboutsummaryrefslogtreecommitdiff
path: root/src/deps/skia/include/sksl/SkSLDebugTrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/deps/skia/include/sksl/SkSLDebugTrace.h')
-rw-r--r--src/deps/skia/include/sksl/SkSLDebugTrace.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/deps/skia/include/sksl/SkSLDebugTrace.h b/src/deps/skia/include/sksl/SkSLDebugTrace.h
new file mode 100644
index 000000000..9c5eafbc9
--- /dev/null
+++ b/src/deps/skia/include/sksl/SkSLDebugTrace.h
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2021 Google LLC.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SKSL_DEBUG_TRACE
+#define SKSL_DEBUG_TRACE
+
+#include "include/core/SkRefCnt.h"
+
+class SkWStream;
+
+namespace SkSL {
+
+class DebugTrace : public SkRefCnt {
+public:
+ /** Serializes a debug trace to JSON which can be parsed by our debugger. */
+ virtual void writeTrace(SkWStream* w) const = 0;
+
+ /** Generates a human-readable dump of the debug trace. */
+ virtual void dump(SkWStream* o) const = 0;
+};
+
+} // namespace SkSL
+
+#endif