diff options
author | Micah Fedke <[email protected]> | 2017-02-07 17:29:53 -0500 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-09-19 19:02:34 +0100 |
commit | be52bd17ebf114e7ad16a6d9d0135cdbb0723cd0 (patch) | |
tree | ccd2cd36cf072f37bc44a87091f1fb047ff0781a /src/egl | |
parent | 15a6ebdfbba3b378868aa63f134fc1f6fd3d43be (diff) |
wayland-drm: avoid deprecated use of struct wl_resource
Wayland v1.2 with commit 1488c96a5db ("Add accessor functions for
wl_resource and deprecate wl_client_add_resource") paves the way towards
making wl_resource opaque.
Namely, new helpers were introduced and the struct was annotated as
deprecated.
Since wayland headers are normally installed in /usr/include, which is
in -isystem, GCC did not generate warnings as documented in the manual.
"Warnings from system headers are normally suppressed..."
Signed-off-by: Micah Fedke <[email protected]>
Reviewed-by: Pekka Paalanen <[email protected]>
[Emil Velikov: add commit message]
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/wayland/wayland-drm/wayland-drm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/egl/wayland/wayland-drm/wayland-drm.c b/src/egl/wayland/wayland-drm/wayland-drm.c index fc33e4d8fc9..2e256aea6d5 100644 --- a/src/egl/wayland/wayland-drm/wayland-drm.c +++ b/src/egl/wayland/wayland-drm/wayland-drm.c @@ -55,7 +55,7 @@ struct wl_drm { static void destroy_buffer(struct wl_resource *resource) { - struct wl_drm_buffer *buffer = resource->data; + struct wl_drm_buffer *buffer = wl_resource_get_user_data(resource); struct wl_drm *drm = buffer->drm; drm->callbacks->release_buffer(drm->user_data, buffer); @@ -77,7 +77,7 @@ create_buffer(struct wl_client *client, struct wl_resource *resource, int32_t offset1, int32_t stride1, int32_t offset2, int32_t stride2) { - struct wl_drm *drm = resource->data; + struct wl_drm *drm = wl_resource_get_user_data(resource); struct wl_drm_buffer *buffer; buffer = calloc(1, sizeof *buffer); @@ -187,7 +187,7 @@ static void drm_authenticate(struct wl_client *client, struct wl_resource *resource, uint32_t id) { - struct wl_drm *drm = resource->data; + struct wl_drm *drm = wl_resource_get_user_data(resource); if (drm->callbacks->authenticate(drm->user_data, id) < 0) wl_resource_post_error(resource, |