summaryrefslogtreecommitdiffstats
path: root/src/common/telemetry.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-15 00:48:28 +0200
committerLioncash <mathew1800@gmail.com>2018-08-15 00:57:46 +0200
commit60f476cd8f3aa4cf0c9c0091e53559d7e3d30116 (patch)
tree6581d46de9b751341990935cb604d9e29c1ff6a7 /src/common/telemetry.h
parentMerge pull request #1055 from lioncash/init (diff)
downloadyuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar.gz
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar.bz2
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar.lz
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar.xz
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.tar.zst
yuzu-60f476cd8f3aa4cf0c9c0091e53559d7e3d30116.zip
Diffstat (limited to '')
-rw-r--r--src/common/telemetry.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/telemetry.h b/src/common/telemetry.h
index 3bab75b59..8d6ab986b 100644
--- a/src/common/telemetry.h
+++ b/src/common/telemetry.h
@@ -180,4 +180,16 @@ struct NullVisitor : public VisitorInterface {
void Complete() override {}
};
+/// Appends build-specific information to the given FieldCollection,
+/// such as branch name, revision hash, etc.
+void AppendBuildInfo(FieldCollection& fc);
+
+/// Appends CPU-specific information to the given FieldCollection,
+/// such as instruction set extensions, etc.
+void AppendCPUInfo(FieldCollection& fc);
+
+/// Appends OS-specific information to the given FieldCollection,
+/// such as platform name, etc.
+void AppendOSInfo(FieldCollection& fc);
+
} // namespace Telemetry