]> git.cworth.org Git - fips/blob - glxwrap.c
Start wrapping OpenGL, and print periodic FPS value to stdout.
[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 <stdio.h>
23 #include <stdlib.h>
24
25 #include <dlfcn.h>
26
27 #include <X11/Xlib.h>
28 #include <GL/gl.h>
29 #include <GL/glx.h>
30 #include <GL/glext.h>
31
32 #include <sys/time.h>
33
34 typedef void (* fips_glXSwapBuffers_t)(Display *dpy, GLXDrawable drawable);
35
36 static void *
37 lookup (const char *name)
38 {
39         const char *libgl_filename = "libGL.so.1";
40         static void *libgl_handle = NULL;
41
42         if (! libgl_handle) {
43                 libgl_handle = dlopen (libgl_filename, RTLD_NOW);
44                 if (! libgl_handle) {
45                         fprintf (stderr, "Error: Failed to dlopen %s\n",
46                                  libgl_filename);
47                         exit (1);
48                 }
49         }
50
51         return dlsym (libgl_handle, name);
52 }
53
54 static void
55 call_glXSwapBuffers (Display *dpy, GLXDrawable drawable)
56 {
57         static fips_glXSwapBuffers_t real_glXSwapBuffers = NULL;
58         const char *name = "glXSwapBuffers";
59
60         if (! real_glXSwapBuffers) {
61                 real_glXSwapBuffers = (fips_glXSwapBuffers_t) lookup (name);
62                 if (! real_glXSwapBuffers) {
63                         fprintf (stderr, "Error: Failed to find function %s.\n",
64                                  name);
65                         return;
66                 }
67         }
68         real_glXSwapBuffers (dpy, drawable);
69 }       
70
71 void
72 glXSwapBuffers (Display *dpy, GLXDrawable drawable)
73 {
74         static int initialized = 0;
75         static int frames;
76         static struct timeval tv_start, tv_now;
77
78         if (! initialized) {
79                 frames = 0;
80                 gettimeofday (&tv_start, NULL);
81                 initialized = 1;
82         }
83
84         call_glXSwapBuffers (dpy, drawable);
85
86         frames++;
87         if (frames % 60 == 0) {
88                 double fps;
89                 gettimeofday (&tv_now, NULL);
90
91                 fps = (double) frames / (tv_now.tv_sec - tv_start.tv_sec +
92                                          (tv_now.tv_usec - tv_start.tv_usec) / 1.0e6);
93
94                 printf("FPS: %.3f\n", fps);
95         }
96 }