-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathOGLEPlugin.h
233 lines (193 loc) · 6.41 KB
/
OGLEPlugin.h
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
#ifndef __FUNCTION_STATS_PLUGIN_H_
#define __FUNCTION_STATS_PLUGIN_H_
#include "../../MainLib/InterceptPluginInterface.h"
#include <vector>
#include <string>
using namespace std;
#include "ogle.h"
#include "Ptr/Interface.h"
#include "Ptr/Ptr.h"
class ConfigParser;
//@
// Summary:
// This class implements a plugin that displays the total number
// of OpenGL calls made and the counts for each function.
//
class OGLEPlugin : public InterceptPluginInterface
{
public:
OGLEPlugin(InterceptPluginCallbacks *callBacks);
virtual ~OGLEPlugin();
//@
// Summary:
// Called when an OpenGL function that has been registered
// (via RegisterGLFunction) is about to be made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// args - The arguments of the function.
//
virtual void GLIAPI GLFunctionPre (uint updateID, const char *funcName, uint funcIndex, const FunctionArgs & args );
//@
// Summary:
// Called when an OpenGL function that has been registered
// (via RegisterGLFunction) has been made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// retVal - The return vlaue of the function (if any).
//
virtual void GLIAPI GLFunctionPost(uint updateID, const char *funcName, uint funcIndex, const FunctionRetValue & retVal);
//@
// Summary:
// Called when the OpenGL "frame end" call is about to be made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// args - The arguments of the function.
//
virtual void GLIAPI GLFrameEndPre(const char *funcName, uint funcIndex, const FunctionArgs & args );
//@
// Summary:
// Called after OpenGL "frame end" call has been made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// args - The arguments of the function.
//
virtual void GLIAPI GLFrameEndPost(const char *funcName, uint funcIndex, const FunctionRetValue & retVal);
//@
// Summary:
// Called when a OpenGL "render" call is about to be made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// args - The arguments of the function.
//
inline virtual void GLIAPI GLRenderPre (const char *funcName, uint funcIndex, const FunctionArgs & args );
//@
// Summary:
// Called when a OpenGL "render" call has been made.
//
// Parameters:
// funcData - The data of the function logged.
//
// index - A index to the function logged (In the function table).
//
// retVal - The return value of the function. (If any).
//
inline virtual void GLIAPI GLRenderPost(const char *funcName, uint funcIndex, const FunctionRetValue & retVal);
//@
// Summary:
// Called when a OpenGL error occurs.
//
// Parameters:
// funcData - The data of the function that cause the error.
//
// index - A index to the function (In the function table).
//
inline virtual void GLIAPI OnGLError(const char *funcName, uint funcIndex);
//@
// Summary:
// Called when a OpenGL context is created.
//
// Parameters:
// rcHandle - The new OpenGL context.
//
inline virtual void GLIAPI OnGLContextCreate(HGLRC rcHandle);
//@
// Summary:
// Called when a OpenGL context is deleted.
//
// Parameters:
// rcHandle - The OpenGL context that is deleted.
//
inline virtual void GLIAPI OnGLContextDelete(HGLRC rcHandle);
//@
// Summary:
// Called when a OpenGL context is assigned (set).
//
// Parameters:
// oldRCHandle - The old (previous) OpenGL context.
//
// newRCHandle - The new OpenGL context.
//
virtual void GLIAPI OnGLContextSet(HGLRC oldRCHandle, HGLRC newRCHandle);
//@
// Summary:
// Called when a OpenGL context share lists.
//
// Parameters:
// srcHandle - The context constaining the lists.
//
// dstHandle - The context to now share the lists.
//
inline virtual void GLIAPI OnGLContextShareLists(HGLRC srcHandle, HGLRC dstHandle);
//@
// Summary:
// Called when this plugin is to be destroyed. The plugin should delete
// itself. (Note: If a plugin needs to shutdown, always request deletion
// via InterceptPluginCallbacks::DestroyPlugin which will call this method
// on the next update. Do not destroy the plugin by other means.)
//
virtual void GLIAPI Destroy();
protected:
InterceptPluginCallbacks *gliCallBacks; // The callbacks to GLIntercept
const GLCoreDriver *GLV; //The core OpenGL driver
string objFileName;
bool filePerFrame;
bool fileInFrameDir;
bool isRecording;
OGLEPtr ogle;
//@
// Summary:
// To process the configuration data.
//
void ProcessConfigData(ConfigParser *parser);
};
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::GLRenderPre (const char *funcName, uint funcIndex, const FunctionArgs & args)
{
}
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::GLRenderPost(const char *funcName, uint funcIndex, const FunctionRetValue & retVal)
{
}
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::OnGLError(const char *funcName, uint funcIndex)
{
}
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::OnGLContextCreate(HGLRC rcHandle)
{
}
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::OnGLContextDelete(HGLRC rcHandle)
{
}
///////////////////////////////////////////////////////////////////////////////
//
inline void OGLEPlugin::OnGLContextShareLists(HGLRC srcHandle, HGLRC dstHandle)
{
}
#endif // __FUNCTION_STATS_PLUGIN_H_