mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
Fix warnings
This commit is contained in:
parent
b91cd10fcb
commit
77a4a79559
3 changed files with 40 additions and 54 deletions
|
|
@ -39,10 +39,6 @@ struct wlsc_matrix {
|
|||
GLfloat d[16];
|
||||
};
|
||||
|
||||
struct wl_visual {
|
||||
struct wl_object base;
|
||||
};
|
||||
|
||||
struct wlsc_surface;
|
||||
|
||||
struct wlsc_listener {
|
||||
|
|
@ -91,7 +87,7 @@ enum wlsc_pointer_type {
|
|||
};
|
||||
|
||||
struct wlsc_input_device {
|
||||
struct wl_object base;
|
||||
struct wl_input_device base;
|
||||
int32_t x, y;
|
||||
struct wlsc_compositor *ec;
|
||||
struct wlsc_surface *sprite;
|
||||
|
|
@ -139,7 +135,7 @@ struct wlsc_compositor {
|
|||
struct wl_display *wl_display;
|
||||
|
||||
/* We implement the shell interface. */
|
||||
struct wl_object shell;
|
||||
struct wl_shell shell;
|
||||
|
||||
/* There can be more than one, but not right now... */
|
||||
struct wlsc_input_device *input_device;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue