mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
docs: replace the less commonly used "::" with "."
This commit is contained in:
parent
0fdbdc36c0
commit
a09d649439
19 changed files with 42 additions and 42 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue