diff options
author | Simon Ser <contact@emersion.fr> | 2020-03-05 14:37:32 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-03-07 00:32:04 +0100 |
commit | a2d49099e16ef54a409bb7b42061fd16052cbeb6 (patch) | |
tree | b28df4933852610751b617c018085b33ae7fce89 /swaymsg | |
parent | 5d692b05811f939024fbf92c2e6eb7e66e0790dc (diff) |
Add adaptive_sync_status to output IPC reply
Diffstat (limited to 'swaymsg')
-rw-r--r-- | swaymsg/main.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/swaymsg/main.c b/swaymsg/main.c index b9a8189c..f9d3515a 100644 --- a/swaymsg/main.c +++ b/swaymsg/main.c @@ -190,7 +190,7 @@ static void pretty_print_output(json_object *o) { json_object_object_get_ex(o, "active", &active); json_object_object_get_ex(o, "current_workspace", &ws); json_object *make, *model, *serial, *scale, *scale_filter, *subpixel, - *transform, *max_render_time; + *transform, *max_render_time, *adaptive_sync_status; json_object_object_get_ex(o, "make", &make); json_object_object_get_ex(o, "model", &model); json_object_object_get_ex(o, "serial", &serial); @@ -199,6 +199,7 @@ static void pretty_print_output(json_object *o) { json_object_object_get_ex(o, "subpixel_hinting", &subpixel); json_object_object_get_ex(o, "transform", &transform); json_object_object_get_ex(o, "max_render_time", &max_render_time); + json_object_object_get_ex(o, "adaptive_sync_status", &adaptive_sync_status); json_object *x, *y; json_object_object_get_ex(rect, "x", &x); json_object_object_get_ex(rect, "y", &y); @@ -219,8 +220,7 @@ static void pretty_print_output(json_object *o) { " Scale filter: %s\n" " Subpixel hinting: %s\n" " Transform: %s\n" - " Workspace: %s\n" - " Max render time: ", + " Workspace: %s\n", json_object_get_string(name), json_object_get_string(make), json_object_get_string(model), @@ -236,8 +236,13 @@ static void pretty_print_output(json_object *o) { json_object_get_string(transform), json_object_get_string(ws) ); + int max_render_time_int = json_object_get_int(max_render_time); + printf(" Max render time: "); printf(max_render_time_int == 0 ? "off\n" : "%d ms\n", max_render_time_int); + + printf(" Adaptive sync: %s\n", + json_object_get_string(adaptive_sync_status)); } else { printf( "Output %s '%s %s %s' (inactive)\n", |