]> git.cworth.org Git - fips/blob - eglwrap.c
Add collection of (AMD_performance_monitor) performance counters to fips
[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  * eglSwapBufers, eglGetProcAddress, and eglMakeCurrent), exist only
54  * in libEGL.so.1.
55  */
56 static void *
57 eglwrap_lookup (char *name)
58 {
59         const char *libegl_filename = "libEGL.so.1";
60         static void *libegl_handle = NULL;
61
62         if (! libegl_handle) {
63                 libegl_handle = dlwrap_real_dlopen (libegl_filename, RTLD_NOW | RTLD_DEEPBIND);
64                 if (! libegl_handle) {
65                         fprintf (stderr, "Error: Failed to dlopen %s\n",
66                                  libegl_filename);
67                         exit (1);
68                 }
69         }
70
71         return dlwrap_real_dlsym (libegl_handle, name);
72 }
73
74 EGLBoolean
75 eglSwapBuffers (EGLDisplay dpy, EGLSurface surface)
76 {
77         EGLBoolean ret;
78
79         EGLWRAP_DEFER_WITH_RETURN (ret, eglSwapBuffers, dpy, surface);
80
81         metrics_counter_stop ();
82
83         metrics_end_frame ();
84
85         metrics_counter_start ();
86
87         return ret;
88 }
89
90 void (*eglGetProcAddress (char const *func))(void)
91 {
92         void *ret;
93
94         /* If our library has this symbol, that's what we want to give. */
95         ret = dlwrap_real_dlsym (NULL, (const char *) func);
96         if (ret)
97                 return ret;
98
99         /* Otherwise, just defer to the real eglGetProcAddress */
100         EGLWRAP_DEFER_WITH_RETURN (ret, eglGetProcAddress, func);
101
102         return ret;
103 }
104
105 EGLBoolean
106 eglMakeCurrent (EGLDisplay display, EGLSurface draw, EGLSurface read,
107                 EGLContext context)
108 {
109         EGLBoolean ret;
110
111         fips_dispatch_init (FIPS_API_EGL);
112
113         EGLWRAP_DEFER_WITH_RETURN (ret, eglMakeCurrent, display, draw, read, context);
114
115         metrics_info_init ();
116
117         metrics_set_current_op (METRICS_OP_SHADER + 0);
118         metrics_counter_start ();
119
120         return ret;
121 }