]> git.cworth.org Git - fips/blob - eglwrap.c
EGL: Add wrapper for eglGetProcAddress
[fips] / eglwrap.c
1 /* Copyright © 2013, Intel Corporation
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in
11  * all copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19  * THE SOFTWARE.
20  */
21
22 #include "fips.h"
23
24 #include "fips-dispatch.h"
25
26 #include <EGL/egl.h>
27
28 #include "dlwrap.h"
29 #include "metrics.h"
30
31 /* Defer to the real 'function' (from libEGL.so.1) to do the real work.
32  * The symbol is looked up once and cached in a static variable for
33  * future uses.
34  */
35 #define EGLWRAP_DEFER(function,...) do {                        \
36         static typeof(&function) real_ ## function;             \
37         if (! real_ ## function)                                \
38                 real_ ## function = eglwrap_lookup (#function); \
39         real_ ## function(__VA_ARGS__);                         \
40 } while (0);
41
42 /* As EGLWRAP_DEFER, but also set 'ret' to the return value */
43 #define EGLWRAP_DEFER_WITH_RETURN(ret, function,...) do {       \
44         static typeof(&function) real_ ## function;             \
45         if (! real_ ## function)                                \
46                 real_ ## function = eglwrap_lookup (#function); \
47         (ret) = real_ ## function(__VA_ARGS__);                 \
48 } while (0);
49
50
51 static void *
52 eglwrap_lookup (char *name)
53 {
54         const char *libegl_filename = "libEGL.so.1";
55         static void *libegl_handle = NULL;
56
57         if (! libegl_handle) {
58                 libegl_handle = dlwrap_real_dlopen (libegl_filename, RTLD_NOW | RTLD_DEEPBIND);
59                 if (! libegl_handle) {
60                         fprintf (stderr, "Error: Failed to dlopen %s\n",
61                                  libegl_filename);
62                         exit (1);
63                 }
64         }
65
66         return dlwrap_real_dlsym (libegl_handle, name);
67 }
68
69 EGLBoolean
70 eglSwapBuffers (EGLDisplay dpy, EGLSurface surface)
71 {
72         EGLBoolean ret;
73
74         EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface);
75         metrics_end_frame ();
76
77         return ret;
78 }
79
80 void (*eglGetProcAddress (char const *func))(void)
81 {
82         void *ret;
83
84         /* If our library has this symbol, that's what we want to give. */
85         ret = dlwrap_real_dlsym (NULL, (const char *) func);
86         if (ret)
87                 return ret;
88
89         /* Otherwise, just defer to the real eglGetProcAddress */
90         EGLWRAP_DEFER_WITH_RETURN (ret, eglGetProcAddress, func);
91
92         return ret;
93 }
94
95 EGLBoolean
96 eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read,
97                 EGLContext context)
98 {
99         EGLBoolean ret;
100
101         fips_dispatch_init (FIPS_API_EGL);
102
103         EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context);
104
105         return ret;
106 }