This repository was archived by the owner on Oct 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathRenderTimingPlugin.cpp
226 lines (193 loc) · 7.05 KB
/
RenderTimingPlugin.cpp
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
// Copyright 2017 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Plugin to expose GL_EXT_disjoint_timer_query, providing accurate GPU render
// timing in real-time to the app.
#include "RenderTimingPlugin.h"
#include "Unity/IUnityGraphics.h"
#include <cassert>
#include <cmath>
#include <cstdio>
#include <string>
// --------------------------------------------------------------------------
// Include headers for the graphics APIs we support
#if SUPPORT_OPENGL_UNIFIED
# if UNITY_IPHONE
# include <OpenGLES/ES2/gl.h>
# elif UNITY_ANDROID
# include <GLES3/gl3.h>
# define GL_TIME_ELAPSED 0x88BF
# define GL_GPU_DISJOINT 0x8FBB
# else
# include "GL/glew.h"
# endif
#endif
static IUnityInterfaces* s_UnityInterfaces = NULL;
static IUnityGraphics* s_Graphics = NULL;
static UnityGfxRenderer s_DeviceType = kUnityGfxRendererNull;
static void InitRenderTiming();
// --------------------------------------------------------------------------
// GraphicsDeviceEvent
#if SUPPORT_OPENGL_UNIFIED
static void DoEventGraphicsDeviceGLUnified(UnityGfxDeviceEventType eventType) {
if (eventType == kUnityGfxDeviceEventInitialize) {
if (s_DeviceType == kUnityGfxRendererOpenGLES20) {
::printf("OpenGLES 2.0 device\n");
}
else if(s_DeviceType == kUnityGfxRendererOpenGLES30) {
::printf("OpenGLES 3.0 device\n");
}
#if SUPPORT_OPENGL_CORE
else if(s_DeviceType == kUnityGfxRendererOpenGLCore) {
::printf("OpenGL Core device\n");
glewExperimental = GL_TRUE;
glewInit();
glGetError(); // Clean up error generated by glewInit
}
#endif
assert(glGetError() == GL_NO_ERROR);
}
else if (eventType == kUnityGfxDeviceEventShutdown) {
}
}
#endif // SUPPORT_OPENGL_UNIFIED
static void UNITY_INTERFACE_API OnGraphicsDeviceEvent(UnityGfxDeviceEventType eventType) {
UnityGfxRenderer currentDeviceType = s_DeviceType;
switch (eventType) {
case kUnityGfxDeviceEventInitialize: {
s_DeviceType = s_Graphics->GetRenderer();
currentDeviceType = s_DeviceType;
break;
}
case kUnityGfxDeviceEventShutdown: {
s_DeviceType = kUnityGfxRendererNull;
break;
}
case kUnityGfxDeviceEventBeforeReset: {
break;
}
case kUnityGfxDeviceEventAfterReset: {
break;
}
};
#if SUPPORT_OPENGL_UNIFIED
if (currentDeviceType == kUnityGfxRendererOpenGLES20 ||
currentDeviceType == kUnityGfxRendererOpenGLES30 ||
currentDeviceType == kUnityGfxRendererOpenGLCore) {
DoEventGraphicsDeviceGLUnified(eventType);
InitRenderTiming();
}
#endif
}
// --------------------------------------------------------------------------
// UnitySetInterfaces
extern "C" void UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API UnityPluginLoad(IUnityInterfaces* unityInterfaces) {
s_UnityInterfaces = unityInterfaces;
s_Graphics = s_UnityInterfaces->Get<IUnityGraphics>();
s_Graphics->RegisterDeviceEventCallback(OnGraphicsDeviceEvent);
// Run OnGraphicsDeviceEvent(initialize) manually on plugin load
OnGraphicsDeviceEvent(kUnityGfxDeviceEventInitialize);
}
extern "C" void UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API UnityPluginUnload() {
s_Graphics->UnregisterDeviceEventCallback(OnGraphicsDeviceEvent);
}
// --------------------------------------------------------------------------
// GPU timer API
typedef void (*DebugFuncPtr)(const char*);
static DebugFuncPtr Debug;
static const int BUFFER_SIZE = 4;
static GLuint queries[BUFFER_SIZE];
static int query_buffer_next_index;
static int query_buffer_n;
static float elapsed_time_seconds = NAN;
static void InitRenderTiming() {
glGenQueries(BUFFER_SIZE, queries);
GLint disjointOccurred;
glGetIntegerv(GL_GPU_DISJOINT, &disjointOccurred); // clear
}
// Register logging function which takes a string
extern "C" void SetDebugFunction(DebugFuncPtr fp) {
Debug = fp;
}
// Start GL timer query, and read elapsed time from oldest pending query.
// Use GetTiming() to retrieve elapsed time, which yields NaN if no queries
// pending or timing otherwise can't be accessed.
// Arg eventID is unused.
// TODO: allow multiple (non-nested) timings per frame
// TODO: allow mulitple, nested timings per frame (start & stop timers)
static void UNITY_INTERFACE_API StartTimingEvent(int eventID) {
// Unknown graphics device type? Do nothing.
if (s_DeviceType == kUnityGfxRendererNull)
return;
// on disjoint exception, clear query buffer
GLint disjointOccurred = false;
glGetIntegerv(GL_GPU_DISJOINT, &disjointOccurred);
if (disjointOccurred) {
query_buffer_n = 0;
Debug("disjoint exception");
}
// read result of oldest pending query
// We use buffering to avoid blocking when reading results.
elapsed_time_seconds = NAN;
if (query_buffer_n > 0) {
int index =
(query_buffer_next_index + (BUFFER_SIZE - query_buffer_n)) % BUFFER_SIZE;
GLuint available = 0;
glGetQueryObjectuiv(queries[index], GL_QUERY_RESULT_AVAILABLE, &available);
if (available) {
GLuint elapsed_time_ns;
glGetQueryObjectuiv(queries[index], GL_QUERY_RESULT, &elapsed_time_ns);
if (glGetError() == GL_NO_ERROR) {
elapsed_time_seconds = elapsed_time_ns/1e9f;
} else {
Debug("error reading query result");
}
--query_buffer_n;
}
}
// start new query
if (query_buffer_n < BUFFER_SIZE) {
glBeginQuery(GL_TIME_ELAPSED, queries[query_buffer_next_index]);
if (glGetError() == GL_NO_ERROR) {
query_buffer_next_index = (query_buffer_next_index + 1) % BUFFER_SIZE;
++query_buffer_n;
} else {
Debug("glBeginQuery error");
}
} else {
Debug("query buffer overflow");
}
}
// End timing query.
// Arg eventID is unused.
// Must be called once for every StartTimingEvent.
static void UNITY_INTERFACE_API EndTimingEvent(int eventID) {
// Unknown graphics device type? Do nothing.
if (s_DeviceType == kUnityGfxRendererNull)
return;
glEndQuery(GL_TIME_ELAPSED);
if (glGetError() != GL_NO_ERROR) Debug("glEndQuery error");
}
// Returns timing period in seconds if available, else NaN. Reflects the value
// from several frames prior, depending on the level of GPU buffering.
extern "C" float GetTiming() {
return elapsed_time_seconds;
}
// Returns plugin event function to be used in the app with IssuePluginEvent()
extern "C" UnityRenderingEvent UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API GetStartTimingFunc() {
return StartTimingEvent;
}
// Returns plugin event function to be used in the app with IssuePluginEvent()
extern "C" UnityRenderingEvent UNITY_INTERFACE_EXPORT UNITY_INTERFACE_API GetEndTimingFunc() {
return EndTimingEvent;
}