]> git.cworth.org Git - fips/blob - eglwrap.c
util-x11: Rework init_window interface to accept XVisualInfo
[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 /* Note: We only need to perform a lookup in libEGL.so.1, (not
52  * libGLESv2.so.2). This is because the functions we wrap, (currently
53  * wglSwapBufers, eglGetProcAddress, and eglMakeCurrent), exist only
54  * in libEGL.so.1.
55  *
56  * If we *do* later add wrappers for functions that lib in
57  * libGLESv2.so.2 then those might more naturally live in a file named
58  * gleswrap.c or so.
59  */
60 static void *
61 eglwrap_lookup (char *name)
62 {
63         const char *libegl_filename = "libEGL.so.1";
64         static void *libegl_handle = NULL;
65
66         if (! libegl_handle) {
67                 libegl_handle = dlwrap_real_dlopen (libegl_filename, RTLD_NOW | RTLD_DEEPBIND);
68                 if (! libegl_handle) {
69                         fprintf (stderr, "Error: Failed to dlopen %s\n",
70                                  libegl_filename);
71                         exit (1);
72                 }
73         }
74
75         return dlwrap_real_dlsym (libegl_handle, name);
76 }
77
78 EGLBoolean
79 eglSwapBuffers (EGLDisplay dpy, EGLSurface surface)
80 {
81         EGLBoolean ret;
82
83         EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface);
84         metrics_end_frame ();
85
86         return ret;
87 }
88
89 void (*eglGetProcAddress (char const *func))(void)
90 {
91         void *ret;
92
93         /* If our library has this symbol, that's what we want to give. */
94         ret = dlwrap_real_dlsym (NULL, (const char *) func);
95         if (ret)
96                 return ret;
97
98         /* Otherwise, just defer to the real eglGetProcAddress */
99         EGLWRAP_DEFER_WITH_RETURN (ret, eglGetProcAddress, func);
100
101         return ret;
102 }
103
104 EGLBoolean
105 eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read,
106                 EGLContext context)
107 {
108         EGLBoolean ret;
109
110         fips_dispatch_init (FIPS_API_EGL);
111
112         EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context);
113
114         return ret;
115 }