]> git.cworth.org Git - fips/blob - glxwrap.c
Generalize glXGetProcAddressARB wrapper to work for all wrapper functions
[fips] / glxwrap.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 <X11/Xlib.h>
25 #include <GL/gl.h>
26 #include <GL/glx.h>
27
28 #include <sys/time.h>
29
30 #include "dlwrap.h"
31
32 typedef void (* fips_glXSwapBuffers_t)(Display *dpy, GLXDrawable drawable);
33
34 static void *
35 lookup (const char *name)
36 {
37         const char *libgl_filename = "libGL.so.1";
38         static void *libgl_handle = NULL;
39
40         if (! libgl_handle) {
41                 libgl_handle = dlwrap_real_dlopen (libgl_filename, RTLD_NOW | RTLD_DEEPBIND);
42                 if (! libgl_handle) {
43                         fprintf (stderr, "Error: Failed to dlopen %s\n",
44                                  libgl_filename);
45                         exit (1);
46                 }
47         }
48
49         return dlwrap_real_dlsym (libgl_handle, name);
50 }
51
52 static void
53 call_glXSwapBuffers (Display *dpy, GLXDrawable drawable)
54 {
55         static fips_glXSwapBuffers_t real_glXSwapBuffers = NULL;
56         const char *name = "glXSwapBuffers";
57
58         if (! real_glXSwapBuffers) {
59                 real_glXSwapBuffers = (fips_glXSwapBuffers_t) lookup (name);
60                 if (! real_glXSwapBuffers) {
61                         fprintf (stderr, "Error: Failed to find function %s.\n",
62                                  name);
63                         return;
64                 }
65         }
66         real_glXSwapBuffers (dpy, drawable);
67 }       
68
69 void
70 glXSwapBuffers (Display *dpy, GLXDrawable drawable)
71 {
72         static int initialized = 0;
73         static int frames;
74         static struct timeval tv_start, tv_now;
75
76         if (! initialized) {
77                 frames = 0;
78                 gettimeofday (&tv_start, NULL);
79                 initialized = 1;
80         }
81
82         call_glXSwapBuffers (dpy, drawable);
83
84         frames++;
85         if (frames % 60 == 0) {
86                 double fps;
87                 gettimeofday (&tv_now, NULL);
88
89                 fps = (double) frames / (tv_now.tv_sec - tv_start.tv_sec +
90                                          (tv_now.tv_usec - tv_start.tv_usec) / 1.0e6);
91
92                 printf("FPS: %.3f\n", fps);
93         }
94 }
95
96
97 typedef __GLXextFuncPtr (* fips_glXGetProcAddressARB_t)(const GLubyte *func);
98 __GLXextFuncPtr
99 glXGetProcAddressARB (const GLubyte *func)
100 {
101         __GLXextFuncPtr ptr;
102         static fips_glXGetProcAddressARB_t real_glXGetProcAddressARB = NULL;
103         const char *name = "glXGetProcAddressARB";
104
105         if (! real_glXGetProcAddressARB) {
106                 real_glXGetProcAddressARB = (fips_glXGetProcAddressARB_t) lookup (name);
107                 if (! real_glXGetProcAddressARB) {
108                         fprintf (stderr, "Error: Failed to find function %s.\n",
109                                  name);
110                         return NULL;
111                 }
112         }
113
114         /* If our library has this symbol, that's what we want to give. */
115         ptr = dlwrap_real_dlsym (NULL, (const char *) func);
116         if (ptr)
117                 return ptr;
118
119         /* Otherwise, just defer to the real glXGetProcAddressARB. */
120         return real_glXGetProcAddressARB (func);
121 }