mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-29 05:40:16 -04:00
wayland-egl: rename wl_egl_window::private to driver_private
private is a reserved keyword in C++. Thus if one is to have a backend driver written in said language build will fail as below: .../wayland-egl-backend.h:56:8: expected unqualified-id before ‘private’ Rename it to driver_private and update the test. NOTE: version bump is not required since: - this is a pure API change, ABI is identical - hardware drivers already require [minor] changes to move to the upstream wayland-egl-backend.h Cc: Arnaud Vrac <rawoul@gmail.com> Cc: Miguel A . Vico <mvicomoya@nvidia.com> Suggested-by: Arnaud Vrac <rawoul@gmail.com> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Miguel A Vico Moya <mvicomoya@nvidia.com>
This commit is contained in:
parent
8d8f2600ec
commit
9fa60983b5
3 changed files with 6 additions and 6 deletions
|
|
@ -53,7 +53,7 @@ struct wl_egl_window {
|
|||
int attached_width;
|
||||
int attached_height;
|
||||
|
||||
void *private;
|
||||
void *driver_private;
|
||||
void (*resize_callback)(struct wl_egl_window *, void *);
|
||||
void (*destroy_window_callback)(void *);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue