X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=eglwrap.c;h=9e583895f888cc3c53939ea4f4855b48073b17cd;hb=7980e4108be1dff9b074aa91b97c8d787df41d83;hp=198b4f0b57072dc43e4de2a07901691c77da4c3d;hpb=40c840f59d6d4f58c91eaa9ce9a8eb02a5cf8c6e;p=fips diff --git a/eglwrap.c b/eglwrap.c index 198b4f0..9e58389 100644 --- a/eglwrap.c +++ b/eglwrap.c @@ -77,8 +77,13 @@ eglSwapBuffers (EGLDisplay dpy, EGLSurface surface) EGLBoolean ret; EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface); + + metrics_counter_stop (); + metrics_end_frame (); + metrics_counter_start (); + return ret; } @@ -107,5 +112,8 @@ eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read, EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context); + metrics_set_current_op (METRICS_OP_SHADER + 0); + metrics_counter_start (); + return ret; }