aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 9736a665..4adce8ab 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -101,6 +101,11 @@ struct input_config_mapped_from_region {
101 bool mm; 101 bool mm;
102}; 102};
103 103
104struct calibration_matrix {
105 bool configured;
106 float matrix[6];
107};
108
104/** 109/**
105 * options for input devices 110 * options for input devices
106 */ 111 */
@@ -109,6 +114,7 @@ struct input_config {
109 const char *input_type; 114 const char *input_type;
110 115
111 int accel_profile; 116 int accel_profile;
117 struct calibration_matrix calibration_matrix;
112 int click_method; 118 int click_method;
113 int drag; 119 int drag;
114 int drag_lock; 120 int drag_lock;