From 67e97e4be18b5a2e0f2640d9f1e39f2d3f2b0075 Mon Sep 17 00:00:00 2001 From: Sunderland93 Date: Thu, 26 Dec 2024 14:37:04 +0400 Subject: [PATCH] wayland: add support for content-type-v1 protocol --- Makefile.common | 3 +- .../staging/content-type/README | 5 + .../staging/content-type/content-type-v1.xml | 128 ++++++++ gfx/common/wayland/content-type-v1.c | 72 +++++ gfx/common/wayland/content-type-v1.h | 296 ++++++++++++++++++ gfx/common/wayland/generate_wayland_protos.sh | 1 + gfx/common/wayland_common.c | 12 + input/common/wayland_common.c | 4 + input/common/wayland_common.h | 3 + 9 files changed, 523 insertions(+), 1 deletion(-) create mode 100644 deps/wayland-protocols/staging/content-type/README create mode 100644 deps/wayland-protocols/staging/content-type/content-type-v1.xml create mode 100644 gfx/common/wayland/content-type-v1.c create mode 100644 gfx/common/wayland/content-type-v1.h diff --git a/Makefile.common b/Makefile.common index c50619271c12..70914d4b5cce 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1277,7 +1277,8 @@ ifeq ($(HAVE_WAYLAND), 1) gfx/common/wayland/pointer-constraints-unstable-v1.o \ gfx/common/wayland/relative-pointer-unstable-v1.o \ gfx/common/wayland/cursor-shape-v1.o \ - gfx/common/wayland/tablet-unstable-v2.o + gfx/common/wayland/tablet-unstable-v2.o \ + gfx/common/wayland/content-type-v1.o ifeq ($(HAVE_VULKAN), 1) OBJ += gfx/drivers_context/wayland_vk_ctx.o diff --git a/deps/wayland-protocols/staging/content-type/README b/deps/wayland-protocols/staging/content-type/README new file mode 100644 index 000000000000..797a9c9e53f3 --- /dev/null +++ b/deps/wayland-protocols/staging/content-type/README @@ -0,0 +1,5 @@ +Content type hint protocol + +Maintainers: +Emmanuel Gil Peyrot (@linkmauve) +Xaver Hugl (@Zamundaaa) diff --git a/deps/wayland-protocols/staging/content-type/content-type-v1.xml b/deps/wayland-protocols/staging/content-type/content-type-v1.xml new file mode 100644 index 000000000000..2624aa12b58e --- /dev/null +++ b/deps/wayland-protocols/staging/content-type/content-type-v1.xml @@ -0,0 +1,128 @@ + + + + Copyright © 2021 Emmanuel Gil Peyrot + Copyright © 2022 Xaver Hugl + + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice (including the next + paragraph) shall be included in all copies or substantial portions of the + Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + + + + + This interface allows a client to describe the kind of content a surface + will display, to allow the compositor to optimize its behavior for it. + + Warning! The protocol described in this file is currently in the testing + phase. Backward compatible changes may be added together with the + corresponding interface version bump. Backward incompatible changes can + only be done by creating a new major version of the extension. + + + + + Destroy the content type manager. This doesn't destroy objects created + with the manager. + + + + + + + + + + Create a new content type object associated with the given surface. + + Creating a wp_content_type_v1 from a wl_surface which already has one + attached is a client error: already_constructed. + + + + + + + + + The content type object allows the compositor to optimize for the kind + of content shown on the surface. A compositor may for example use it to + set relevant drm properties like "content type". + + The client may request to switch to another content type at any time. + When the associated surface gets destroyed, this object becomes inert and + the client should destroy it. + + + + + Switch back to not specifying the content type of this surface. This is + equivalent to setting the content type to none, including double + buffering semantics. See set_content_type for details. + + + + + + These values describe the available content types for a surface. + + + + The content type none means that either the application has no data + about the content type, or that the content doesn't fit into one of + the other categories. + + + + + The content type photo describes content derived from digital still + pictures and may be presented with minimal processing. + + + + + The content type video describes a video or animation and may be + presented with more accurate timing to avoid stutter. Where scaling + is needed, scaling methods more appropriate for video may be used. + + + + + The content type game describes a running game. Its content may be + presented with reduced latency. + + + + + + + Set the surface content type. This informs the compositor that the + client believes it is displaying buffers matching this content type. + + This is purely a hint for the compositor, which can be used to adjust + its behavior or hardware settings to fit the presented content best. + + The content type is double-buffered state, see wl_surface.commit for + details. + + + + + diff --git a/gfx/common/wayland/content-type-v1.c b/gfx/common/wayland/content-type-v1.c new file mode 100644 index 000000000000..294ead3e3477 --- /dev/null +++ b/gfx/common/wayland/content-type-v1.c @@ -0,0 +1,72 @@ +/* Generated by wayland-scanner 1.23.0 */ + +/* + * Copyright © 2021 Emmanuel Gil Peyrot + * Copyright © 2022 Xaver Hugl + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ + +#include +#include +#include +#include "wayland-util.h" + +#ifndef __has_attribute +# define __has_attribute(x) 0 /* Compatibility with non-clang compilers. */ +#endif + +#if (__has_attribute(visibility) || defined(__GNUC__) && __GNUC__ >= 4) +#define WL_PRIVATE __attribute__ ((visibility("hidden"))) +#else +#define WL_PRIVATE +#endif + +extern const struct wl_interface wl_surface_interface; +extern const struct wl_interface wp_content_type_v1_interface; + +static const struct wl_interface *content_type_v1_types[] = { + NULL, + &wp_content_type_v1_interface, + &wl_surface_interface, +}; + +static const struct wl_message wp_content_type_manager_v1_requests[] = { + { "destroy", "", content_type_v1_types + 0 }, + { "get_surface_content_type", "no", content_type_v1_types + 1 }, +}; + +WL_PRIVATE const struct wl_interface wp_content_type_manager_v1_interface = { + "wp_content_type_manager_v1", 1, + 2, wp_content_type_manager_v1_requests, + 0, NULL, +}; + +static const struct wl_message wp_content_type_v1_requests[] = { + { "destroy", "", content_type_v1_types + 0 }, + { "set_content_type", "u", content_type_v1_types + 0 }, +}; + +WL_PRIVATE const struct wl_interface wp_content_type_v1_interface = { + "wp_content_type_v1", 1, + 2, wp_content_type_v1_requests, + 0, NULL, +}; + diff --git a/gfx/common/wayland/content-type-v1.h b/gfx/common/wayland/content-type-v1.h new file mode 100644 index 000000000000..65c9aed84b2d --- /dev/null +++ b/gfx/common/wayland/content-type-v1.h @@ -0,0 +1,296 @@ +/* Generated by wayland-scanner 1.23.0 */ + +#ifndef CONTENT_TYPE_V1_CLIENT_PROTOCOL_H +#define CONTENT_TYPE_V1_CLIENT_PROTOCOL_H + +#include +#include +#include "wayland-client.h" + +#ifdef __cplusplus +extern "C" { +#endif + +/** + * @page page_content_type_v1 The content_type_v1 protocol + * @section page_ifaces_content_type_v1 Interfaces + * - @subpage page_iface_wp_content_type_manager_v1 - surface content type manager + * - @subpage page_iface_wp_content_type_v1 - content type object for a surface + * @section page_copyright_content_type_v1 Copyright + *
+ *
+ * Copyright © 2021 Emmanuel Gil Peyrot
+ * Copyright © 2022 Xaver Hugl
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ * 
+ */ +struct wl_surface; +struct wp_content_type_manager_v1; +struct wp_content_type_v1; + +#ifndef WP_CONTENT_TYPE_MANAGER_V1_INTERFACE +#define WP_CONTENT_TYPE_MANAGER_V1_INTERFACE +/** + * @page page_iface_wp_content_type_manager_v1 wp_content_type_manager_v1 + * @section page_iface_wp_content_type_manager_v1_desc Description + * + * This interface allows a client to describe the kind of content a surface + * will display, to allow the compositor to optimize its behavior for it. + * + * Warning! The protocol described in this file is currently in the testing + * phase. Backward compatible changes may be added together with the + * corresponding interface version bump. Backward incompatible changes can + * only be done by creating a new major version of the extension. + * @section page_iface_wp_content_type_manager_v1_api API + * See @ref iface_wp_content_type_manager_v1. + */ +/** + * @defgroup iface_wp_content_type_manager_v1 The wp_content_type_manager_v1 interface + * + * This interface allows a client to describe the kind of content a surface + * will display, to allow the compositor to optimize its behavior for it. + * + * Warning! The protocol described in this file is currently in the testing + * phase. Backward compatible changes may be added together with the + * corresponding interface version bump. Backward incompatible changes can + * only be done by creating a new major version of the extension. + */ +extern const struct wl_interface wp_content_type_manager_v1_interface; +#endif +#ifndef WP_CONTENT_TYPE_V1_INTERFACE +#define WP_CONTENT_TYPE_V1_INTERFACE +/** + * @page page_iface_wp_content_type_v1 wp_content_type_v1 + * @section page_iface_wp_content_type_v1_desc Description + * + * The content type object allows the compositor to optimize for the kind + * of content shown on the surface. A compositor may for example use it to + * set relevant drm properties like "content type". + * + * The client may request to switch to another content type at any time. + * When the associated surface gets destroyed, this object becomes inert and + * the client should destroy it. + * @section page_iface_wp_content_type_v1_api API + * See @ref iface_wp_content_type_v1. + */ +/** + * @defgroup iface_wp_content_type_v1 The wp_content_type_v1 interface + * + * The content type object allows the compositor to optimize for the kind + * of content shown on the surface. A compositor may for example use it to + * set relevant drm properties like "content type". + * + * The client may request to switch to another content type at any time. + * When the associated surface gets destroyed, this object becomes inert and + * the client should destroy it. + */ +extern const struct wl_interface wp_content_type_v1_interface; +#endif + +#ifndef WP_CONTENT_TYPE_MANAGER_V1_ERROR_ENUM +#define WP_CONTENT_TYPE_MANAGER_V1_ERROR_ENUM +enum wp_content_type_manager_v1_error { + /** + * wl_surface already has a content type object + */ + WP_CONTENT_TYPE_MANAGER_V1_ERROR_ALREADY_CONSTRUCTED = 0, +}; +#endif /* WP_CONTENT_TYPE_MANAGER_V1_ERROR_ENUM */ + +#define WP_CONTENT_TYPE_MANAGER_V1_DESTROY 0 +#define WP_CONTENT_TYPE_MANAGER_V1_GET_SURFACE_CONTENT_TYPE 1 + + +/** + * @ingroup iface_wp_content_type_manager_v1 + */ +#define WP_CONTENT_TYPE_MANAGER_V1_DESTROY_SINCE_VERSION 1 +/** + * @ingroup iface_wp_content_type_manager_v1 + */ +#define WP_CONTENT_TYPE_MANAGER_V1_GET_SURFACE_CONTENT_TYPE_SINCE_VERSION 1 + +/** @ingroup iface_wp_content_type_manager_v1 */ +static inline void +wp_content_type_manager_v1_set_user_data(struct wp_content_type_manager_v1 *wp_content_type_manager_v1, void *user_data) +{ + wl_proxy_set_user_data((struct wl_proxy *) wp_content_type_manager_v1, user_data); +} + +/** @ingroup iface_wp_content_type_manager_v1 */ +static inline void * +wp_content_type_manager_v1_get_user_data(struct wp_content_type_manager_v1 *wp_content_type_manager_v1) +{ + return wl_proxy_get_user_data((struct wl_proxy *) wp_content_type_manager_v1); +} + +static inline uint32_t +wp_content_type_manager_v1_get_version(struct wp_content_type_manager_v1 *wp_content_type_manager_v1) +{ + return wl_proxy_get_version((struct wl_proxy *) wp_content_type_manager_v1); +} + +/** + * @ingroup iface_wp_content_type_manager_v1 + * + * Destroy the content type manager. This doesn't destroy objects created + * with the manager. + */ +static inline void +wp_content_type_manager_v1_destroy(struct wp_content_type_manager_v1 *wp_content_type_manager_v1) +{ + wl_proxy_marshal_flags((struct wl_proxy *) wp_content_type_manager_v1, + WP_CONTENT_TYPE_MANAGER_V1_DESTROY, NULL, wl_proxy_get_version((struct wl_proxy *) wp_content_type_manager_v1), WL_MARSHAL_FLAG_DESTROY); +} + +/** + * @ingroup iface_wp_content_type_manager_v1 + * + * Create a new content type object associated with the given surface. + * + * Creating a wp_content_type_v1 from a wl_surface which already has one + * attached is a client error: already_constructed. + */ +static inline struct wp_content_type_v1 * +wp_content_type_manager_v1_get_surface_content_type(struct wp_content_type_manager_v1 *wp_content_type_manager_v1, struct wl_surface *surface) +{ + struct wl_proxy *id; + + id = wl_proxy_marshal_flags((struct wl_proxy *) wp_content_type_manager_v1, + WP_CONTENT_TYPE_MANAGER_V1_GET_SURFACE_CONTENT_TYPE, &wp_content_type_v1_interface, wl_proxy_get_version((struct wl_proxy *) wp_content_type_manager_v1), 0, NULL, surface); + + return (struct wp_content_type_v1 *) id; +} + +#ifndef WP_CONTENT_TYPE_V1_TYPE_ENUM +#define WP_CONTENT_TYPE_V1_TYPE_ENUM +/** + * @ingroup iface_wp_content_type_v1 + * possible content types + * + * These values describe the available content types for a surface. + */ +enum wp_content_type_v1_type { + /** + * no content type applies + * + * The content type none means that either the application has no + * data about the content type, or that the content doesn't fit + * into one of the other categories. + */ + WP_CONTENT_TYPE_V1_TYPE_NONE = 0, + /** + * photo content type + * + * The content type photo describes content derived from digital + * still pictures and may be presented with minimal processing. + */ + WP_CONTENT_TYPE_V1_TYPE_PHOTO = 1, + /** + * video content type + * + * The content type video describes a video or animation and may + * be presented with more accurate timing to avoid stutter. Where + * scaling is needed, scaling methods more appropriate for video + * may be used. + */ + WP_CONTENT_TYPE_V1_TYPE_VIDEO = 2, + /** + * game content type + * + * The content type game describes a running game. Its content + * may be presented with reduced latency. + */ + WP_CONTENT_TYPE_V1_TYPE_GAME = 3, +}; +#endif /* WP_CONTENT_TYPE_V1_TYPE_ENUM */ + +#define WP_CONTENT_TYPE_V1_DESTROY 0 +#define WP_CONTENT_TYPE_V1_SET_CONTENT_TYPE 1 + + +/** + * @ingroup iface_wp_content_type_v1 + */ +#define WP_CONTENT_TYPE_V1_DESTROY_SINCE_VERSION 1 +/** + * @ingroup iface_wp_content_type_v1 + */ +#define WP_CONTENT_TYPE_V1_SET_CONTENT_TYPE_SINCE_VERSION 1 + +/** @ingroup iface_wp_content_type_v1 */ +static inline void +wp_content_type_v1_set_user_data(struct wp_content_type_v1 *wp_content_type_v1, void *user_data) +{ + wl_proxy_set_user_data((struct wl_proxy *) wp_content_type_v1, user_data); +} + +/** @ingroup iface_wp_content_type_v1 */ +static inline void * +wp_content_type_v1_get_user_data(struct wp_content_type_v1 *wp_content_type_v1) +{ + return wl_proxy_get_user_data((struct wl_proxy *) wp_content_type_v1); +} + +static inline uint32_t +wp_content_type_v1_get_version(struct wp_content_type_v1 *wp_content_type_v1) +{ + return wl_proxy_get_version((struct wl_proxy *) wp_content_type_v1); +} + +/** + * @ingroup iface_wp_content_type_v1 + * + * Switch back to not specifying the content type of this surface. This is + * equivalent to setting the content type to none, including double + * buffering semantics. See set_content_type for details. + */ +static inline void +wp_content_type_v1_destroy(struct wp_content_type_v1 *wp_content_type_v1) +{ + wl_proxy_marshal_flags((struct wl_proxy *) wp_content_type_v1, + WP_CONTENT_TYPE_V1_DESTROY, NULL, wl_proxy_get_version((struct wl_proxy *) wp_content_type_v1), WL_MARSHAL_FLAG_DESTROY); +} + +/** + * @ingroup iface_wp_content_type_v1 + * + * Set the surface content type. This informs the compositor that the + * client believes it is displaying buffers matching this content type. + * + * This is purely a hint for the compositor, which can be used to adjust + * its behavior or hardware settings to fit the presented content best. + * + * The content type is double-buffered state, see wl_surface.commit for + * details. + */ +static inline void +wp_content_type_v1_set_content_type(struct wp_content_type_v1 *wp_content_type_v1, uint32_t content_type) +{ + wl_proxy_marshal_flags((struct wl_proxy *) wp_content_type_v1, + WP_CONTENT_TYPE_V1_SET_CONTENT_TYPE, NULL, wl_proxy_get_version((struct wl_proxy *) wp_content_type_v1), 0, content_type); +} + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/gfx/common/wayland/generate_wayland_protos.sh b/gfx/common/wayland/generate_wayland_protos.sh index 55d08c489c5d..a0fc857d424d 100755 --- a/gfx/common/wayland/generate_wayland_protos.sh +++ b/gfx/common/wayland/generate_wayland_protos.sh @@ -71,3 +71,4 @@ generate_source 'staging/fractional-scale' 'fractional-scale-v1' generate_source 'staging/cursor-shape' 'cursor-shape-v1' # Required by cursor-shape-v1 generate_source 'unstable/tablet' 'tablet-unstable-v2' +generate_source 'staging/content-type' 'content-type-v1' diff --git a/gfx/common/wayland_common.c b/gfx/common/wayland_common.c index c7cb70b71351..a28d8bdaea85 100644 --- a/gfx/common/wayland_common.c +++ b/gfx/common/wayland_common.c @@ -311,6 +311,10 @@ void gfx_ctx_wl_destroy_resources_common(gfx_ctx_wayland_data_t *wl) zwp_pointer_constraints_v1_destroy(wl->pointer_constraints); if (wl->relative_pointer_manager) zwp_relative_pointer_manager_v1_destroy (wl->relative_pointer_manager); + if (wl->content_type_manager) + wp_content_type_manager_v1_destroy (wl->content_type_manager); + if (wl->content_type_v1) + wp_content_type_v1_destroy (wl->content_type_v1); if (wl->cursor_shape_manager) wp_cursor_shape_manager_v1_destroy (wl->cursor_shape_manager); if (wl->cursor_shape_device) @@ -362,6 +366,8 @@ void gfx_ctx_wl_destroy_resources_common(gfx_ctx_wayland_data_t *wl) wl->seat = NULL; wl->relative_pointer_manager = NULL; wl->pointer_constraints = NULL; + wl->content_type_v1 = NULL; + wl->content_type_manager = NULL; wl->cursor_shape_manager = NULL; wl->cursor_shape_device = NULL; wl->idle_inhibit_manager = NULL; @@ -721,6 +727,12 @@ bool gfx_ctx_wl_init_common( RARCH_LOG("[Wayland]: fractional_scale_v1 enabled\n"); } + if (wl->content_type_manager) + { + wl->content_type_v1 = wp_content_type_manager_v1_get_surface_content_type(wl->content_type_manager, wl->surface); + wp_content_type_v1_set_content_type(wl->content_type_v1, WP_CONTENT_TYPE_V1_TYPE_GAME); + } + wl_surface_add_listener(wl->surface, &wl_surface_listener, wl); #ifdef HAVE_LIBDECOR_H diff --git a/input/common/wayland_common.c b/input/common/wayland_common.c index 1319f987a5c5..4a6fa50595ef 100644 --- a/input/common/wayland_common.c +++ b/input/common/wayland_common.c @@ -797,6 +797,10 @@ static void wl_registry_handle_global(void *data, struct wl_registry *reg, wl->cursor_shape_manager = (struct wp_cursor_shape_manager_v1*) wl_registry_bind( reg, id, &wp_cursor_shape_manager_v1_interface, MIN(version, 1)); + else if (string_is_equal(interface, wp_content_type_manager_v1_interface.name)) + wl->content_type_manager = (struct wp_content_type_manager_v1*) + wl_registry_bind( + reg, id, &wp_content_type_manager_v1_interface, MIN(version, 1)); } static void wl_registry_handle_global_remove(void *data, diff --git a/input/common/wayland_common.h b/input/common/wayland_common.h index d363ef2b1543..956d45c5c62a 100644 --- a/input/common/wayland_common.h +++ b/input/common/wayland_common.h @@ -34,6 +34,7 @@ #endif /* Generated from wayland protocol files by generate_wayland_protos.sh */ +#include "../../gfx/common/wayland/content-type-v1.h" #include "../../gfx/common/wayland/cursor-shape-v1.h" #include "../../gfx/common/wayland/fractional-scale-v1.h" #include "../../gfx/common/wayland/viewporter.h" @@ -184,6 +185,8 @@ typedef struct gfx_ctx_wayland_data struct zwp_relative_pointer_manager_v1 *relative_pointer_manager; struct wp_cursor_shape_manager_v1 *cursor_shape_manager; struct wp_cursor_shape_device_v1 *cursor_shape_device; + struct wp_content_type_manager_v1 *content_type_manager; + struct wp_content_type_v1 *content_type_v1; output_info_t *current_output; #ifdef HAVE_VULKAN gfx_ctx_vulkan_data_t vk;