aboutsummaryrefslogtreecommitdiffstats
path: root/sway/ipc-json.c
diff options
context:
space:
mode:
authorLibravatar Sergei Dolgov <dolgovs@gmail.com>2019-06-22 14:32:39 +0200
committerLibravatar Simon Ser <contact@emersion.fr>2019-07-05 18:41:56 +0300
commita5c6816095158ff01ace12403bc527fec8c8af84 (patch)
tree08610261dada277f8bfd7ad978a0b730c1a6c442 /sway/ipc-json.c
parentUse isnan (diff)
downloadsway-a5c6816095158ff01ace12403bc527fec8c8af84.tar.gz
sway-a5c6816095158ff01ace12403bc527fec8c8af84.tar.zst
sway-a5c6816095158ff01ace12403bc527fec8c8af84.zip
calibration_matrix: add the current matrix to the IPC description for libinput devices
Diffstat (limited to 'sway/ipc-json.c')
-rw-r--r--sway/ipc-json.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/sway/ipc-json.c b/sway/ipc-json.c
index 7a65be07..87aef47b 100644
--- a/sway/ipc-json.c
+++ b/sway/ipc-json.c
@@ -798,6 +798,18 @@ static json_object *describe_libinput_device(struct libinput_device *device) {
798 json_object_object_add(object, "dwt", json_object_new_string(dwt)); 798 json_object_object_add(object, "dwt", json_object_new_string(dwt));
799 } 799 }
800 800
801 if (libinput_device_config_calibration_has_matrix(device)) {
802 float matrix[6];
803 libinput_device_config_calibration_get_matrix(device, matrix);
804 struct json_object* array = json_object_new_array();
805 struct json_object* x;
806 for (int i = 0; i < 6; i++) {
807 x = json_object_new_double(matrix[i]);
808 json_object_array_add(array, x);
809 }
810 json_object_object_add(object, "calibration_matrix", array);
811 }
812
801 return object; 813 return object;
802} 814}
803 815