Merge pull request #1102 from martinetd/wlr-subsurface-from-wlr-surface

s/wlr_subsurface_from_surface/wlr_subsurface_from_wlr_surface/
This commit is contained in:
Drew DeVault 2018-06-30 06:29:35 -07:00 committed by GitHub
commit 02dfa9101e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View File

@ -31,10 +31,11 @@ struct wlr_compositor {
void wlr_compositor_destroy(struct wlr_compositor *wlr_compositor); void wlr_compositor_destroy(struct wlr_compositor *wlr_compositor);
struct wlr_compositor *wlr_compositor_create(struct wl_display *display, struct wlr_compositor *wlr_compositor_create(struct wl_display *display,
struct wlr_renderer *renderer); struct wlr_renderer *renderer);
bool wlr_surface_is_subsurface(struct wlr_surface *surface); bool wlr_surface_is_subsurface(struct wlr_surface *surface);
struct wlr_subsurface *wlr_subsurface_from_surface(struct wlr_surface *surface); struct wlr_subsurface *wlr_subsurface_from_wlr_surface(
struct wlr_surface *surface);
#endif #endif

View File

@ -17,7 +17,7 @@ bool wlr_surface_is_subsurface(struct wlr_surface *surface) {
strcmp(surface->role, subsurface_role) == 0; strcmp(surface->role, subsurface_role) == 0;
} }
struct wlr_subsurface *wlr_subsurface_from_surface( struct wlr_subsurface *wlr_subsurface_from_wlr_surface(
struct wlr_surface *surface) { struct wlr_surface *surface) {
assert(wlr_surface_is_subsurface(surface)); assert(wlr_surface_is_subsurface(surface));
return (struct wlr_subsurface *)surface->role_data; return (struct wlr_subsurface *)surface->role_data;
@ -57,7 +57,7 @@ static void subcompositor_handle_get_subsurface(struct wl_client *client,
} }
if (wlr_surface_is_subsurface(surface) && if (wlr_surface_is_subsurface(surface) &&
wlr_subsurface_from_surface(surface) != NULL) { wlr_subsurface_from_wlr_surface(surface) != NULL) {
wl_resource_post_error(resource, wl_resource_post_error(resource,
WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE, WL_SUBCOMPOSITOR_ERROR_BAD_SURFACE,
"%s%d: wl_surface@%d is already a sub-surface", "%s%d: wl_surface@%d is already a sub-surface",

View File

@ -395,7 +395,7 @@ static bool subsurface_is_synchronized(struct wlr_subsurface *subsurface) {
if (!wlr_surface_is_subsurface(subsurface->parent)) { if (!wlr_surface_is_subsurface(subsurface->parent)) {
break; break;
} }
subsurface = wlr_subsurface_from_surface(subsurface->parent); subsurface = wlr_subsurface_from_wlr_surface(subsurface->parent);
} }
return false; return false;
@ -451,7 +451,7 @@ static void surface_commit(struct wl_client *client,
if (wlr_surface_is_subsurface(surface)) { if (wlr_surface_is_subsurface(surface)) {
struct wlr_subsurface *subsurface = struct wlr_subsurface *subsurface =
wlr_subsurface_from_surface(surface); wlr_subsurface_from_wlr_surface(surface);
subsurface_commit(subsurface); subsurface_commit(subsurface);
return; return;
} }
@ -887,7 +887,7 @@ struct wlr_subsurface *wlr_subsurface_create(struct wlr_surface *surface,
struct wlr_surface *wlr_surface_get_root_surface(struct wlr_surface *surface) { struct wlr_surface *wlr_surface_get_root_surface(struct wlr_surface *surface) {
while (wlr_surface_is_subsurface(surface)) { while (wlr_surface_is_subsurface(surface)) {
struct wlr_subsurface *subsurface = struct wlr_subsurface *subsurface =
wlr_subsurface_from_surface(surface); wlr_subsurface_from_wlr_surface(surface);
surface = subsurface->parent; surface = subsurface->parent;
} }
return surface; return surface;