blob: bd395e2cf310041e44114af1fe2b5df64caca704 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#pragma once
#include "trace_api.hpp"
#include "apitrace.h"
#include "apitracecall.h"
#include <QThread>
#include <QProcess>
class ApiTraceState;
namespace trace { struct Profile; }
class Retracer : public QThread
{
Q_OBJECT
public:
Retracer(QObject *parent=0);
QString fileName() const;
void setFileName(const QString &name);
QString remoteTarget() const;
void setRemoteTarget(const QString &host);
void setAPI(trace::API api);
bool isBenchmarking() const;
void setBenchmarking(bool bench);
bool isDoubleBuffered() const;
void setDoubleBuffered(bool db);
bool isSinglethread() const;
void setSinglethread(bool singlethread);
bool isCoreProfile() const;
void setCoreProfile(bool coreprofile);
bool isProfilingGpu() const;
bool isProfilingCpu() const;
bool isProfilingPixels() const;
bool isProfilingMemory() const;
bool isProfiling() const;
void setProfiling(bool gpu, bool cpu, bool pixels, bool memory);
void setCaptureAtCallNumber(qlonglong num);
qlonglong captureAtCallNumber() const;
bool captureState() const;
void setCaptureState(bool enable);
bool captureThumbnails() const;
void setCaptureThumbnails(bool enable);
void addThumbnailToCapture(qlonglong num);
void resetThumbnailsToCapture();
QString thumbnailCallSet() const;
QStringList retraceArguments() const;
signals:
void finished(const QString &output);
void foundState(ApiTraceState *state);
void foundProfile(trace::Profile *profile);
void foundThumbnails(const ImageHash &thumbnails);
void error(const QString &msg);
void retraceErrors(const QList<ApiTraceError> &errors);
protected:
virtual void run();
private:
QString m_fileName;
QString m_remoteTarget;
trace::API m_api;
bool m_benchmarking;
bool m_doubleBuffered;
bool m_singlethread;
bool m_useCoreProfile;
bool m_captureState;
bool m_captureThumbnails;
qlonglong m_captureCall;
bool m_profileGpu;
bool m_profileCpu;
bool m_profilePixels;
bool m_profileMemory;
QProcessEnvironment m_processEnvironment;
QList<qlonglong> m_thumbnailsToCapture;
};
|