]> git.cworth.org Git - glfps/blob - glfps.c
Add a license to the glfps.c file
[glfps] / glfps.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 #define _GNU_SOURCE /* For RTLD_NEXT */
23 #include <dlfcn.h>
24
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #include <X11/Xlib.h>
29 #include <GL/gl.h>
30 #include <GL/glx.h>
31
32 #include <sys/time.h>
33 #include <string.h>
34
35 #include <glaze.h>
36
37 /* How many frames between reports. */
38 #define REPORT_FREQ 60
39
40 static void
41 on_each_frame (void)
42 {
43         static int count = 0;
44         static struct timeval tv_last;
45         struct timeval tv_now;
46
47         if ((count % REPORT_FREQ) == 0) {
48                 gettimeofday (&tv_now, NULL);
49                 if (count == 0) {
50                         printf ("glfps: Initializing FPS timer\n");
51                 } else {
52                         double elapsed = ((tv_now.tv_sec - tv_last.tv_sec) +
53                                           (tv_now.tv_usec - tv_last.tv_usec) / 1e6);
54                         printf ("FPS: %.3f\n", ((double) REPORT_FREQ) / elapsed);
55                 }
56                 tv_last = tv_now;
57         }
58
59         count++;
60 }
61
62 void
63 glXSwapBuffers (Display *dpy, GLXDrawable drawable)
64 {
65         on_each_frame ();
66
67         GLAZE_DEFER (glXSwapBuffers, dpy, drawable);
68 }