Fix typos in comments and strings
This commit is contained in:
parent
5bd170b2f3
commit
6305e6327f
|
@ -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 {
|
||||||
|
|
|
@ -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 New Issue