summaryrefslogtreecommitdiff
path: root/gui/retracer.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2012-08-09 08:21:42 -0700
committerJosé Fonseca <jfonseca@vmware.com>2013-04-12 10:19:20 +0100
commit7257dfcc57b3a1af576a8a2ca69992ae8d77dea4 (patch)
treecd09bf20303f611d797019df7abc200064936d59 /gui/retracer.h
parent96e736e9b7c3650f5549dbf62369b6e084fa74c7 (diff)
qapitrace: Support executing glretrace on a remote target host.
This is supported with a new command-line argument: qapitrace --remote-target <HOST> <trace-file> See README.markdown for documentation on usage and current limitations of this feature.
Diffstat (limited to 'gui/retracer.h')
-rw-r--r--gui/retracer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/retracer.h b/gui/retracer.h
index af1a3d9f..915b97fe 100644
--- a/gui/retracer.h
+++ b/gui/retracer.h
@@ -20,6 +20,9 @@ public:
QString fileName() const;
void setFileName(const QString &name);
+ QString remoteTarget() const;
+ void setRemoteTarget(const QString &host);
+
void setAPI(trace::API api);
bool isBenchmarking() const;
@@ -56,6 +59,7 @@ protected:
private:
QString m_fileName;
+ QString m_remoteTarget;
trace::API m_api;
bool m_benchmarking;
bool m_doubleBuffered;