X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=eglwrap.c;h=fe7f736243195c0c51eaaedfa007dac30ed07e08;hb=c60ce62ccb73402852eb4537dc435b6334a1538b;hp=9e583895f888cc3c53939ea4f4855b48073b17cd;hpb=61b4545d541527ca2bd76811195b964595db7ed1;p=fips diff --git a/eglwrap.c b/eglwrap.c index 9e58389..fe7f736 100644 --- a/eglwrap.c +++ b/eglwrap.c @@ -25,6 +25,8 @@ #include +#include "context.h" +#include "eglwrap.h" #include "dlwrap.h" #include "metrics.h" @@ -53,7 +55,7 @@ * eglSwapBufers, eglGetProcAddress, and eglMakeCurrent), exist only * in libEGL.so.1. */ -static void * +void * eglwrap_lookup (char *name) { const char *libegl_filename = "libEGL.so.1"; @@ -108,12 +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); - metrics_set_current_op (METRICS_OP_SHADER + 0); - metrics_counter_start (); + context_enter (FIPS_API_EGL, context); return ret; }