aboutsummaryrefslogtreecommitdiff
path: root/include/backend
diff options
context:
space:
mode:
Diffstat (limited to 'include/backend')
-rw-r--r--include/backend/libinput.h2
-rw-r--r--include/backend/wayland.h2
-rw-r--r--include/backend/x11.h12
3 files changed, 8 insertions, 8 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h
index d469eb7c..73a52754 100644
--- a/include/backend/libinput.h
+++ b/include/backend/libinput.h
@@ -27,7 +27,7 @@ struct wlr_libinput_backend {
struct wl_listener session_destroy;
struct wl_listener session_signal;
- struct wl_list devices; // wlr_libinput_device::link
+ struct wl_list devices; // wlr_libinput_device.link
};
struct wlr_libinput_input_device {
diff --git a/include/backend/wayland.h b/include/backend/wayland.h
index ad04c348..a51595ec 100644
--- a/include/backend/wayland.h
+++ b/include/backend/wayland.h
@@ -133,7 +133,7 @@ struct wlr_wl_seat {
struct wl_pointer *wl_pointer;
struct wlr_wl_pointer *active_pointer;
- struct wl_list pointers; // wlr_wl_pointer::link
+ struct wl_list pointers; // wlr_wl_pointer.link
struct zwp_pointer_gesture_swipe_v1 *gesture_swipe;
struct zwp_pointer_gesture_pinch_v1 *gesture_pinch;
diff --git a/include/backend/x11.h b/include/backend/x11.h
index f66fed2a..06834c1c 100644
--- a/include/backend/x11.h
+++ b/include/backend/x11.h
@@ -30,7 +30,7 @@ struct wlr_x11_backend;
struct wlr_x11_output {
struct wlr_output wlr_output;
struct wlr_x11_backend *x11;
- struct wl_list link; // wlr_x11_backend::outputs
+ struct wl_list link; // wlr_x11_backend.outputs
xcb_window_t win;
xcb_present_event_t present_event_id;
@@ -38,9 +38,9 @@ struct wlr_x11_output {
struct wlr_pointer pointer;
struct wlr_touch touch;
- struct wl_list touchpoints; // wlr_x11_touchpoint::link
+ struct wl_list touchpoints; // wlr_x11_touchpoint.link
- struct wl_list buffers; // wlr_x11_buffer::link
+ struct wl_list buffers; // wlr_x11_buffer.link
pixman_region32_t exposed;
@@ -55,7 +55,7 @@ struct wlr_x11_output {
struct wlr_x11_touchpoint {
uint32_t x11_id;
int wayland_id;
- struct wl_list link; // wlr_x11_output::touch_points
+ struct wl_list link; // wlr_x11_output.touch_points
};
struct wlr_x11_backend {
@@ -76,7 +76,7 @@ struct wlr_x11_backend {
uint32_t dri3_major_version, dri3_minor_version;
size_t requested_outputs;
- struct wl_list outputs; // wlr_x11_output::link
+ struct wl_list outputs; // wlr_x11_output.link
struct wlr_keyboard keyboard;
@@ -113,7 +113,7 @@ struct wlr_x11_buffer {
struct wlr_x11_backend *x11;
struct wlr_buffer *buffer;
xcb_pixmap_t pixmap;
- struct wl_list link; // wlr_x11_output::buffers
+ struct wl_list link; // wlr_x11_output.buffers
struct wl_listener buffer_destroy;
size_t n_busy;
};