X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=eglwrap.c;h=913532ef023df21c7b6765a82f25649a7f0de237;hb=b0e640a505171550746af20e940076c579a0e638;hp=913fd488d74a23dc0d7a9277dfe37525e3db776f;hpb=5569357a9fc7189c2bae43773f44ba576583ec2b;p=fips diff --git a/eglwrap.c b/eglwrap.c index 913fd48..913532e 100644 --- a/eglwrap.c +++ b/eglwrap.c @@ -25,6 +25,8 @@ #include +#include "context.h" +#include "eglwrap.h" #include "dlwrap.h" #include "metrics.h" @@ -48,7 +50,12 @@ } while (0); -static void * +/* 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. + */ +void * eglwrap_lookup (char *name) { const char *libegl_filename = "libEGL.so.1"; @@ -72,7 +79,27 @@ eglSwapBuffers (EGLDisplay dpy, EGLSurface surface) EGLBoolean ret; EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface); - metrics_end_frame (); + + context_counter_stop (); + + context_end_frame (); + + context_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; } @@ -83,9 +110,11 @@ eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read, { EGLBoolean ret; - fips_dispatch_init (FIPS_API_EGL); + context_leave (); EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context); + context_enter (FIPS_API_EGL, context); + return ret; }