08:56wlb: weston/main: Pekka Paalanen * color-lcms: cmsMAT3 is row-major after all https://gitlab.freedesktop.org/wayland/weston/commit/fbf026653b11 libweston/color-lcms/color-transform.c tests/color_util.h
08:56wlb: weston Merge request !1703 merged \o/ (color-lcms: cmsMAT3 is row-major after all https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1703)
09:21wlb: weston Merge request !1705 opened by Marius Vlad (mvlad) compositor: Mark pnode accordingly when buffer type is direct https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1705 [Core compositor]
09:43wlb: wayland-protocols/main: Jonas Ådahl * xdg-shell: Add edge constraints https://gitlab.freedesktop.org/wayland/wayland-protocols/commit/86750c99ed06 stable/xdg-shell/xdg-shell.xml
09:43wlb: wayland-protocols Merge request !230 merged \o/ (xdg-shell: Add edge constraints https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/230)
09:59wlb: weston Merge request !1706 opened by Marius Vlad (mvlad) backend-drm: Fix count page flips on invalid outputs https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1706 [Debug]
10:01wlb: weston Issue #1008 opened by Mike Bergmann (MikeBergmann) Dynamic keyboard attachment not working https://gitlab.freedesktop.org/wayland/weston/-/issues/1008
12:46wlb: weston Merge request !1461 closed (Use sized internal formats and immutable textures in GL renderer)
12:54LaserEyess: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/216#note_2831852
12:54LaserEyess: can something be done about these AI responses?
12:57pq: daniels, did you say you were talking to kentrl xiao? ^
15:53wlb: weston Merge request !1707 opened by Pekka Paalanen (pq) libweston: introduce linalg.h https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1707
16:20wlb: weston Issue #1009 opened by Derek Foreman (derekf) Follow-up from "compositor: re-order paint node placeholder checks" https://gitlab.freedesktop.org/wayland/weston/-/issues/1009
17:12wlb: weston/main: Marius Vlad * compositor: Mark pnode accordingly when buffer type is direct https://gitlab.freedesktop.org/wayland/weston/commit/9d841e39e876 libweston/compositor.c
17:12wlb: weston Merge request !1705 merged \o/ (compositor: Mark pnode accordingly when buffer type is direct https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1705)
23:35tokyovigilante: Can I ask a couple of questions about frame listeners? I have one set up for my EGL-based app but my callback is not currently being called. I also haven't actually implemented changing my drawable size in response to configure events yet (just showing a 640x480 EGL buffer currently) but if I get a surface configure event (ie the compositor has changed the window size etc) should I submit a new frame in response to this without
23:35tokyovigilante: waiting for my frame callback?
23:50kennylevinsen: you should always respond to a configure event in a timely manner - frame callbacks are suggestions for when it is a good time to render the next frame, and might not arrive anytime soon
23:50kennylevinsen: they also only fire once, and need to be reinstalled after that
23:52tokyovigilante: thanks, that makes sense. Yup understood they only fire once but I am installing one at the end of each render call, and even the first one is not currently. although that may be a problem in my event loop