Skip to content

Commit 7a496e5

Browse files
mahkohgithub-actions[bot]
authored andcommitted
Update protocols
1 parent ef86c2d commit 7a496e5

File tree

8 files changed

+292
-292
lines changed

8 files changed

+292
-292
lines changed

protocols/river-protocols/river-window-management-v1.xml

Lines changed: 70 additions & 70 deletions
Large diffs are not rendered by default.

wl-proxy/src/protocols/river_window_management_v1/river_decoration_v1.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ impl RiverDecorationV1 {
131131
///
132132
/// # Arguments
133133
///
134-
/// - `x`:
135-
/// - `y`:
134+
/// - `x`: x relative to top left window corner
135+
/// - `y`: y relative to top left window corner
136136
#[inline]
137137
pub fn try_send_set_offset(
138138
&self,
@@ -192,8 +192,8 @@ impl RiverDecorationV1 {
192192
///
193193
/// # Arguments
194194
///
195-
/// - `x`:
196-
/// - `y`:
195+
/// - `x`: x relative to top left window corner
196+
/// - `y`: y relative to top left window corner
197197
#[inline]
198198
pub fn send_set_offset(
199199
&self,
@@ -325,8 +325,8 @@ pub trait RiverDecorationV1Handler: Any {
325325
///
326326
/// # Arguments
327327
///
328-
/// - `x`:
329-
/// - `y`:
328+
/// - `x`: x relative to top left window corner
329+
/// - `y`: y relative to top left window corner
330330
#[inline]
331331
fn handle_set_offset(
332332
&mut self,

wl-proxy/src/protocols/river_window_management_v1/river_node_v1.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ impl RiverNodeV1 {
134134
///
135135
/// # Arguments
136136
///
137-
/// - `x`:
138-
/// - `y`:
137+
/// - `x`: global x coordinate
138+
/// - `y`: global y coordinate
139139
#[inline]
140140
pub fn try_send_set_position(
141141
&self,
@@ -199,8 +199,8 @@ impl RiverNodeV1 {
199199
///
200200
/// # Arguments
201201
///
202-
/// - `x`:
203-
/// - `y`:
202+
/// - `x`: global x coordinate
203+
/// - `y`: global y coordinate
204204
#[inline]
205205
pub fn send_set_position(
206206
&self,
@@ -357,7 +357,7 @@ impl RiverNodeV1 {
357357
///
358358
/// # Arguments
359359
///
360-
/// - `other`:
360+
/// - `other`: other node
361361
#[inline]
362362
pub fn try_send_place_above(
363363
&self,
@@ -417,7 +417,7 @@ impl RiverNodeV1 {
417417
///
418418
/// # Arguments
419419
///
420-
/// - `other`:
420+
/// - `other`: other node
421421
#[inline]
422422
pub fn send_place_above(
423423
&self,
@@ -446,7 +446,7 @@ impl RiverNodeV1 {
446446
///
447447
/// # Arguments
448448
///
449-
/// - `other`:
449+
/// - `other`: other node
450450
#[inline]
451451
pub fn try_send_place_below(
452452
&self,
@@ -506,7 +506,7 @@ impl RiverNodeV1 {
506506
///
507507
/// # Arguments
508508
///
509-
/// - `other`:
509+
/// - `other`: other node
510510
#[inline]
511511
pub fn send_place_below(
512512
&self,
@@ -567,8 +567,8 @@ pub trait RiverNodeV1Handler: Any {
567567
///
568568
/// # Arguments
569569
///
570-
/// - `x`:
571-
/// - `y`:
570+
/// - `x`: global x coordinate
571+
/// - `y`: global y coordinate
572572
#[inline]
573573
fn handle_set_position(
574574
&mut self,
@@ -644,7 +644,7 @@ pub trait RiverNodeV1Handler: Any {
644644
///
645645
/// # Arguments
646646
///
647-
/// - `other`:
647+
/// - `other`: other node
648648
///
649649
/// All borrowed proxies passed to this function are guaranteed to be
650650
/// immutable and non-null.
@@ -677,7 +677,7 @@ pub trait RiverNodeV1Handler: Any {
677677
///
678678
/// # Arguments
679679
///
680-
/// - `other`:
680+
/// - `other`: other node
681681
///
682682
/// All borrowed proxies passed to this function are guaranteed to be
683683
/// immutable and non-null.

wl-proxy/src/protocols/river_window_management_v1/river_output_v1.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ impl RiverOutputV1 {
323323
///
324324
/// # Arguments
325325
///
326-
/// - `x`:
327-
/// - `y`:
326+
/// - `x`: global x coordinate
327+
/// - `y`: global y coordinate
328328
#[inline]
329329
pub fn try_send_position(
330330
&self,
@@ -389,8 +389,8 @@ impl RiverOutputV1 {
389389
///
390390
/// # Arguments
391391
///
392-
/// - `x`:
393-
/// - `y`:
392+
/// - `x`: global x coordinate
393+
/// - `y`: global y coordinate
394394
#[inline]
395395
pub fn send_position(
396396
&self,
@@ -427,8 +427,8 @@ impl RiverOutputV1 {
427427
///
428428
/// # Arguments
429429
///
430-
/// - `width`:
431-
/// - `height`:
430+
/// - `width`: output width
431+
/// - `height`: output height
432432
#[inline]
433433
pub fn try_send_dimensions(
434434
&self,
@@ -493,8 +493,8 @@ impl RiverOutputV1 {
493493
///
494494
/// # Arguments
495495
///
496-
/// - `width`:
497-
/// - `height`:
496+
/// - `width`: output width
497+
/// - `height`: output height
498498
#[inline]
499499
pub fn send_dimensions(
500500
&self,
@@ -632,8 +632,8 @@ pub trait RiverOutputV1Handler: Any {
632632
///
633633
/// # Arguments
634634
///
635-
/// - `x`:
636-
/// - `y`:
635+
/// - `x`: global x coordinate
636+
/// - `y`: global y coordinate
637637
#[inline]
638638
fn handle_position(
639639
&mut self,
@@ -671,8 +671,8 @@ pub trait RiverOutputV1Handler: Any {
671671
///
672672
/// # Arguments
673673
///
674-
/// - `width`:
675-
/// - `height`:
674+
/// - `width`: output width
675+
/// - `height`: output height
676676
#[inline]
677677
fn handle_dimensions(
678678
&mut self,

0 commit comments

Comments
 (0)