Lines Matching defs:features
41 struct wacom_features *features)
75 features->x_max = get_unaligned_le16(&data[3]);
76 features->y_max = get_unaligned_le16(&data[5]);
77 features->pressure_max = get_unaligned_le16(&data[11]);
78 features->fw_version = get_unaligned_le16(&data[13]);
82 features->x_max, features->y_max,
83 features->pressure_max, features->fw_version);
152 struct wacom_features features = { 0 };
160 error = wacom_query_device(client, &features);
177 input->id.version = features.fw_version;
190 input_set_abs_params(input, ABS_X, 0, features.x_max, 0, 0);
191 input_set_abs_params(input, ABS_Y, 0, features.y_max, 0, 0);
193 0, features.pressure_max, 0, 0);