X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=gui%2Fretracer.h;h=bb534698661bd08adeceecaeef5ec5e51e61b6ed;hb=cad5d619dcb5e1c6349bfff69176660668402622;hp=e889d8887cf3753ce609d86daefa6233d7134ddf;hpb=fc4f55a3193269f86c142219f5593dd8b8e9b3c8;p=apitrace diff --git a/gui/retracer.h b/gui/retracer.h index e889d88..bb53469 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; @@ -28,6 +31,9 @@ public: bool isDoubleBuffered() const; void setDoubleBuffered(bool db); + bool isSinglethread() const; + void setSinglethread(bool singlethread); + bool isProfilingGpu() const; bool isProfilingCpu() const; bool isProfilingPixels() const; @@ -56,17 +62,17 @@ protected: private: QString m_fileName; + QString m_remoteTarget; trace::API m_api; bool m_benchmarking; bool m_doubleBuffered; + bool m_singlethread; bool m_captureState; bool m_captureThumbnails; qlonglong m_captureCall; bool m_profileGpu; bool m_profileCpu; bool m_profilePixels; - - QProcessEnvironment m_processEnvironment; }; #endif