mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
Merge pull request #947 from Morganamilo/typos
Fix typos across documentation, comments and strings
This commit is contained in:
commit
d0a939243b
14 changed files with 17 additions and 17 deletions
|
@ -25,7 +25,7 @@ code you were going to write anyway.
|
||||||
wlroots implements a huge variety of Wayland compositor features and implements
|
wlroots implements a huge variety of Wayland compositor features and implements
|
||||||
them *right*, so you can focus on the features that make your compositor
|
them *right*, so you can focus on the features that make your compositor
|
||||||
unique. By using wlroots, you get high performance, excellent hardware
|
unique. By using wlroots, you get high performance, excellent hardware
|
||||||
compatability, broad support for many wayland interfaces, and comfortable
|
compatibility, broad support for many wayland interfaces, and comfortable
|
||||||
development tools - or any subset of these features you like, because all of
|
development tools - or any subset of these features you like, because all of
|
||||||
them work independently of one another and freely compose with anything you want
|
them work independently of one another and freely compose with anything you want
|
||||||
to implement yourself.
|
to implement yourself.
|
||||||
|
|
|
@ -266,7 +266,7 @@ static bool match_obj_(struct match_state *st, size_t skips, size_t score, size_
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not compatable
|
// Not compatible
|
||||||
if (!(st->objs[st->res[i]] & (1 << i))) {
|
if (!(st->objs[st->res[i]] & (1 << i))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,7 @@ static bool backend_start(struct wlr_backend *_backend) {
|
||||||
wlr_log(L_ERROR, "Failed to create input event on event loop");
|
wlr_log(L_ERROR, "Failed to create input event on event loop");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
wlr_log(L_DEBUG, "libinput sucessfully initialized");
|
wlr_log(L_DEBUG, "libinput successfully initialized");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ union wlr_drm_connector_props {
|
||||||
|
|
||||||
union wlr_drm_crtc_props {
|
union wlr_drm_crtc_props {
|
||||||
struct {
|
struct {
|
||||||
// Neither of these are guranteed to exist
|
// Neither of these are guaranteed to exist
|
||||||
uint32_t rotation;
|
uint32_t rotation;
|
||||||
uint32_t scaling_mode;
|
uint32_t scaling_mode;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ union wlr_drm_crtc_props {
|
||||||
union wlr_drm_plane_props {
|
union wlr_drm_plane_props {
|
||||||
struct {
|
struct {
|
||||||
uint32_t type;
|
uint32_t type;
|
||||||
uint32_t rotation; // Not guranteed to exist
|
uint32_t rotation; // Not guaranteed to exist
|
||||||
|
|
||||||
// atomic-modesetting only
|
// atomic-modesetting only
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ struct wlr_session {
|
||||||
* of the terminal (Xorg, another Wayland compositor, etc.).
|
* of the terminal (Xorg, another Wayland compositor, etc.).
|
||||||
*
|
*
|
||||||
* If logind support is not enabled, you must have CAP_SYS_ADMIN or be root.
|
* If logind support is not enabled, you must have CAP_SYS_ADMIN or be root.
|
||||||
* It is safe to drop priviledges after this is called.
|
* It is safe to drop privileges after this is called.
|
||||||
*
|
*
|
||||||
* Returns NULL on error.
|
* Returns NULL on error.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -117,7 +117,7 @@ void wlr_cursor_set_image(struct wlr_cursor *cur, const uint8_t *pixels,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the cursor surface. The surface can be committed to update the cursor
|
* Set the cursor surface. The surface can be committed to update the cursor
|
||||||
* image. The surface position is substracted from the hotspot. A NULL surface
|
* image. The surface position is subtracted from the hotspot. A NULL surface
|
||||||
* commit hides the cursor.
|
* commit hides the cursor.
|
||||||
*/
|
*/
|
||||||
void wlr_cursor_set_surface(struct wlr_cursor *cur, struct wlr_surface *surface,
|
void wlr_cursor_set_surface(struct wlr_cursor *cur, struct wlr_surface *surface,
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
/**
|
/**
|
||||||
* Idle protocol is used to create timers which will notify the client when the
|
* Idle protocol is used to create timers which will notify the client when the
|
||||||
* compositor does not receive any input for a given time(in milliseconds). Also
|
* compositor does not receive any input for a given time(in milliseconds). Also
|
||||||
* the client will be notify when the timer receve an activity notify and already
|
* the client will be notified when the timer receives an activity notify and already
|
||||||
* was in idle state. Besides this, the client is able to simulate user activity
|
* was in idle state. Besides this, the client is able to simulate user activity
|
||||||
* which will reset the timers and at any time can destroy the timer.
|
* which will reset the timers and at any time can destroy the timer.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -171,7 +171,7 @@ struct wlr_surface *wlr_surface_from_resource(struct wl_resource *resource);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call `iterator` on each surface in the surface tree, with the surface's
|
* Call `iterator` on each surface in the surface tree, with the surface's
|
||||||
* positon relative to the root surface. The function is called from root to
|
* position relative to the root surface. The function is called from root to
|
||||||
* leaves (in rendering order).
|
* leaves (in rendering order).
|
||||||
*/
|
*/
|
||||||
void wlr_surface_for_each_surface(struct wlr_surface *surface,
|
void wlr_surface_for_each_surface(struct wlr_surface *surface,
|
||||||
|
|
|
@ -157,7 +157,7 @@ struct wlr_wl_surface *wlr_wl_shell_surface_from_wlr_surface(
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call `iterator` on each surface in the shell surface tree, with the surface's
|
* Call `iterator` on each surface in the shell surface tree, with the surface's
|
||||||
* positon relative to the root xdg-surface. The function is called from root to
|
* position relative to the root xdg-surface. The function is called from root to
|
||||||
* leaves (in rendering order).
|
* leaves (in rendering order).
|
||||||
*/
|
*/
|
||||||
void wlr_wl_shell_surface_for_each_surface(struct wlr_wl_shell_surface *surface,
|
void wlr_wl_shell_surface_for_each_surface(struct wlr_wl_shell_surface *surface,
|
||||||
|
|
|
@ -128,7 +128,7 @@ struct wlr_xdg_surface_configure {
|
||||||
*
|
*
|
||||||
* When a surface has a role and is ready to be displayed, the `map` event is
|
* When a surface has a role and is ready to be displayed, the `map` event is
|
||||||
* emitted. When a surface should no longer be displayed, the `unmap` event is
|
* emitted. When a surface should no longer be displayed, the `unmap` event is
|
||||||
* emitted. The `unmap` event is guaranted to be emitted before the `destroy`
|
* emitted. The `unmap` event is guaranteed to be emitted before the `destroy`
|
||||||
* event if the view is destroyed when mapped.
|
* event if the view is destroyed when mapped.
|
||||||
*/
|
*/
|
||||||
struct wlr_xdg_surface {
|
struct wlr_xdg_surface {
|
||||||
|
@ -314,7 +314,7 @@ struct wlr_xdg_surface *wlr_xdg_surface_from_wlr_surface(
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call `iterator` on each surface in the xdg-surface tree, with the surface's
|
* Call `iterator` on each surface in the xdg-surface tree, with the surface's
|
||||||
* positon relative to the root xdg-surface. The function is called from root to
|
* position relative to the root xdg-surface. The function is called from root to
|
||||||
* leaves (in rendering order).
|
* leaves (in rendering order).
|
||||||
*/
|
*/
|
||||||
void wlr_xdg_surface_for_each_surface(struct wlr_xdg_surface *surface,
|
void wlr_xdg_surface_for_each_surface(struct wlr_xdg_surface *surface,
|
||||||
|
|
|
@ -97,7 +97,7 @@ struct wlr_xdg_toplevel_v6_state {
|
||||||
*
|
*
|
||||||
* When a surface has a role and is ready to be displayed, the `map` event is
|
* When a surface has a role and is ready to be displayed, the `map` event is
|
||||||
* emitted. When a surface should no longer be displayed, the `unmap` event is
|
* emitted. When a surface should no longer be displayed, the `unmap` event is
|
||||||
* emitted. The `unmap` event is guaranted to be emitted before the `destroy`
|
* emitted. The `unmap` event is guaranteed to be emitted before the `destroy`
|
||||||
* event if the view is destroyed when mapped.
|
* event if the view is destroyed when mapped.
|
||||||
*/
|
*/
|
||||||
struct wlr_xdg_toplevel_v6 {
|
struct wlr_xdg_toplevel_v6 {
|
||||||
|
@ -306,7 +306,7 @@ struct wlr_xdg_surface_v6 *wlr_xdg_surface_v6_from_wlr_surface(
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Call `iterator` on each surface in the xdg-surface tree, with the surface's
|
* Call `iterator` on each surface in the xdg-surface tree, with the surface's
|
||||||
* positon relative to the root xdg-surface. The function is called from root to
|
* position relative to the root xdg-surface. The function is called from root to
|
||||||
* leaves (in rendering order).
|
* leaves (in rendering order).
|
||||||
*/
|
*/
|
||||||
void wlr_xdg_surface_v6_for_each_surface(struct wlr_xdg_surface_v6 *surface,
|
void wlr_xdg_surface_v6_for_each_surface(struct wlr_xdg_surface_v6 *surface,
|
||||||
|
|
|
@ -81,7 +81,7 @@ struct wlr_xwayland_surface_size_hints {
|
||||||
*
|
*
|
||||||
* When a surface is ready to be displayed, the `map` event is emitted. When a
|
* When a surface is ready to be displayed, the `map` event is emitted. When a
|
||||||
* surface should no longer be displayed, the `unmap` event is emitted. The
|
* surface should no longer be displayed, the `unmap` event is emitted. The
|
||||||
* `unmap` event is guaranted to be emitted before the `destroy` event if the
|
* `unmap` event is guaranteed to be emitted before the `destroy` event if the
|
||||||
* view is destroyed when mapped.
|
* view is destroyed when mapped.
|
||||||
*/
|
*/
|
||||||
struct wlr_xwayland_surface {
|
struct wlr_xwayland_surface {
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
how they should interact with surfaces that do. If set to zero, the
|
how they should interact with surfaces that do. If set to zero, the
|
||||||
surface indicates that it would like to be moved to avoid occluding
|
surface indicates that it would like to be moved to avoid occluding
|
||||||
surfaces with a positive excluzive zone. If set to -1, the surface
|
surfaces with a positive excluzive zone. If set to -1, the surface
|
||||||
indicates that it would not like to be moved to accomodate for other
|
indicates that it would not like to be moved to accommodate for other
|
||||||
surfaces, and the compositor should extend it all the way to the edges
|
surfaces, and the compositor should extend it all the way to the edges
|
||||||
it is anchored to.
|
it is anchored to.
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,7 @@ void wlr_matrix_transform(float mat[static 9],
|
||||||
wlr_matrix_multiply(mat, mat, transforms[transform]);
|
wlr_matrix_multiply(mat, mat, transforms[transform]);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Equivilent to glOrtho(0, width, 0, height, 1, -1) with the transform applied
|
// Equivalent to glOrtho(0, width, 0, height, 1, -1) with the transform applied
|
||||||
void wlr_matrix_projection(float mat[static 9], int width, int height,
|
void wlr_matrix_projection(float mat[static 9], int width, int height,
|
||||||
enum wl_output_transform transform) {
|
enum wl_output_transform transform) {
|
||||||
memset(mat, 0, sizeof(*mat) * 9);
|
memset(mat, 0, sizeof(*mat) * 9);
|
||||||
|
|
Loading…
Reference in a new issue