From: Carl Worth Date: Mon, 24 Jun 2013 22:44:47 +0000 (-0700) Subject: EGL: Add wrapper for eglGetProcAddress X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=8209db451b878656c1751223fb3d3f4a9df159e4;hp=8209db451b878656c1751223fb3d3f4a9df159e4;p=fips EGL: Add wrapper for eglGetProcAddress If an EGL-using program uses eglGetProcAddress to locate functions, we want to intercept that to return our own versions of the functions, (to add out metrics timings, etc.). If the requested function is not implemented in our library, just defer to the real, underlying eglGetProcAddress function to find the symbol. ---