Upgrade to v1.3.208 31/272931/1
authorXuelian Bai <xuelian.bai@samsung.com>
Mon, 28 Mar 2022 06:17:48 +0000 (14:17 +0800)
committerXuelian Bai <xuelian.bai@samsung.com>
Mon, 28 Mar 2022 06:17:48 +0000 (14:17 +0800)
Change-Id: I59a7e25b26f42a2fcf43dedd84d982c53e13ede3

cube/cube.c
packaging/vulkan-tools.spec

index e0d8a31..614adc4 100644 (file)
@@ -2801,7 +2801,7 @@ static void handle_surface_configure(void *data, struct xdg_surface *xdg_surface
     demo->xdg_surface_has_been_configured = 1;
 }
 
-static const struct xdg_surface_listener xdg_surface_listener = {handle_surface_configure};
+static const struct xdg_surface_listener xdg_surface_listener = {.configure = handle_surface_configure};
 
 static void handle_toplevel_configure(void *data, struct xdg_toplevel *xdg_toplevel UNUSED, int32_t width, int32_t height,
                                       struct wl_array *states UNUSED) {
@@ -2822,7 +2822,7 @@ static void handle_toplevel_close(void *data, struct xdg_toplevel *xdg_toplevel
     demo->quit = true;
 }
 
-static const struct xdg_toplevel_listener xdg_toplevel_listener = {handle_toplevel_configure, handle_toplevel_close};
+static const struct xdg_toplevel_listener xdg_toplevel_listener = { .configure = handle_toplevel_configure, .close = handle_toplevel_close};
 
 static void demo_create_window(struct demo *demo) {
     if (!demo->xdg_wm_base) {
index 5b1a40c..69ccf2d 100644 (file)
@@ -1,5 +1,5 @@
 Name:     vulkan-tools
-Version: 1.2.179
+Version: 1.3.208
 Release: 0
 Summary: Vulkan tools
 Group:   Graphics & UI Framework/GL
@@ -17,6 +17,7 @@ BuildRequires:  pkgconfig(wayland-client)
 BuildRequires:  pkgconfig(wayland-cursor)
 BuildRequires:  pkgconfig(wayland-server)
 BuildRequires:  pkgconfig(wayland-egl)
+BuildRequires:  pkgconfig(wayland-protocols)
 
 %define BUILD_TYPE Debug