Re: How to get the protocol version of the peer side

2021-03-04 Thread Peng Wu
Thanks a lot, the patch set seems work now. URL: https://pwu.fedorapeople.org/wayland/preedit_with_mode_v8/ Peng ___ wayland-devel mailing list wayland-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Re: How to get the protocol version of the peer side

2021-02-19 Thread Simon Ser
The version is negotiated when binding to the global. The server indicates its maximum supported version in wl_global_create. The client receives the version supported by the server, and indicates its own version in wl_registry_bind. The pattern is: static void handle_global(void *data, struct

How to get the protocol version of the peer side

2021-02-19 Thread Peng Wu
Hi, Currently we are extending the wayland text input v3 protocol to support preedit_commit_mode event. URL: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/30 The protocol version is bumped in the following branch. URL: https://gitlab.freedesktop.org/pwu/wayland