diff options
author | Olivier Blin <olivier.blin@softathome.com> | 2012-07-26 18:55:53 +0200 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-07-26 22:03:41 -0400 |
commit | 7679d9a62e0321615d9a4726b0f02d99d4cb0708 (patch) | |
tree | ddc9d4c4209985f9ad0d639e235fab632f4f818f | |
parent | a1d0cf5d6978b7ac1bd0079f91c37b3e3a969385 (diff) |
gears: add a warning about refresh rate limitation
-rw-r--r-- | clients/gears.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clients/gears.c b/clients/gears.c index 19165e75..aee03572 100644 --- a/clients/gears.c +++ b/clients/gears.c @@ -435,6 +435,7 @@ gears_create(struct display *display) gettimeofday(&tv, NULL); gears->last_fps = tv.tv_sec * 1000 + tv.tv_usec / 1000; + printf("Warning: FPS count is limited by the wayland compositor or monitor refresh rate\n"); glEnable(GL_NORMALIZE); |