You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-31 18:41:20 +00:00
Many tweaks as usual but the most interesting additions since the last bump are: - `wl_fixes`, which allows to delete `wl_registry` objects (to hook up in embedder). This requires a new interface as `wl_registry`'s version can't be directly bumped. A notable usecase will come from mesa: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29140 - `wl_shm::release` and `wl_shm_pool::release`, which allows to delete each respective object. (should automatically work but requires max version bump when binding, will do in a separate PR). Useful for the embedder, two less interfaces to instance and share. - `wl_keyboard` version 10, which introduces server-side repetition through a new `repeated` key state. It also includes new buffer formats enumerations, but I don't know the pratical implications of this specific addition, especially as this is the WSI's responsibility FWIU.