X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=eglwrap.c;h=73b7a8d39699001dab539a2c54a0875d6120fad0;hb=6dcb864fcfa77c4bf4eb7e1c04f00e53f9fee446;hp=6f009c35c53f3017d49cf8e22caa5a8725ca0966;hpb=b1a31412b687419fc177fa6f09ff12c3df81ef59;p=fips diff --git a/eglwrap.c b/eglwrap.c index 6f009c3..73b7a8d 100644 --- a/eglwrap.c +++ b/eglwrap.c @@ -21,6 +21,8 @@ #include "fips.h" +#include "fips-dispatch.h" + #include #include "dlwrap.h" @@ -46,6 +48,11 @@ } while (0); +/* Note: We only need to perform a lookup in libEGL.so.1, (not + * libGLESv2.so.2). This is because the functions we wrap, (currently + * eglSwapBufers, eglGetProcAddress, and eglMakeCurrent), exist only + * in libEGL.so.1. + */ static void * eglwrap_lookup (char *name) { @@ -70,7 +77,47 @@ 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; +} + +void (*eglGetProcAddress (char const *func))(void) +{ + void *ret; + + /* If our library has this symbol, that's what we want to give. */ + ret = dlwrap_real_dlsym (NULL, (const char *) func); + if (ret) + return ret; + + /* Otherwise, just defer to the real eglGetProcAddress */ + EGLWRAP_DEFER_WITH_RETURN (ret, eglGetProcAddress, func); + + return ret; +} + +EGLBoolean +eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read, + EGLContext context) +{ + EGLBoolean ret; + + metrics_info_fini (); + + fips_dispatch_init (FIPS_API_EGL); + + EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context); + + metrics_info_init (); + + metrics_set_current_op (METRICS_OP_SHADER + 0); + metrics_counter_start (); + return ret; }