diff options
author | James Benton <jbenton@vmware.com> | 2012-08-13 18:21:16 +0100 |
---|---|---|
committer | James Benton <jbenton@vmware.com> | 2012-08-16 13:51:12 +0100 |
commit | c53c649fae47d25824e905e3a08d7a27585ffc3f (patch) | |
tree | ba4f6dd7adde0a2ddac91bd4baea8b262cb14c51 /retrace/glretrace.hpp | |
parent | d9a73568b0a26c57d0fac8ee97550d0989b9c321 (diff) |
CPU Profiling now includes all OpenGL calls (was only draw calls).
This only affects CPU profiling, not GPU or non-occluded pixels.
Diffstat (limited to 'retrace/glretrace.hpp')
-rw-r--r-- | retrace/glretrace.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/retrace/glretrace.hpp b/retrace/glretrace.hpp index 27085d48..568049ec 100644 --- a/retrace/glretrace.hpp +++ b/retrace/glretrace.hpp @@ -90,8 +90,8 @@ void initContext(); void updateDrawable(int width, int height); void flushQueries(); -void beginProfile(trace::Call &call); -void endProfile(trace::Call &call); +void beginProfile(trace::Call &call, bool isDraw); +void endProfile(trace::Call &call, bool isDraw); } /* namespace glretrace */ |