mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-04 07:15:29 -04:00
quirks: add KDE quirk: surface must be damaged *after* being attached
KDE resets all surface damage when a buffer is attached. Add a quirk that adds a full-buffer damage to the surface. This quirk is intended to be called after attaching a buffer to a surface.
This commit is contained in:
parent
3a04061847
commit
b42709525c
2 changed files with 43 additions and 13 deletions
19
quirks.h
19
quirks.h
|
|
@ -4,9 +4,28 @@
|
|||
|
||||
#include "terminal.h"
|
||||
|
||||
/*
|
||||
* On weston (8.0), synchronized subsurfaces aren't updated correctly.
|
||||
|
||||
* They appear to render once, but after that, updates are
|
||||
* sporadic. Sometimes they update, most of the time they don't.
|
||||
*
|
||||
* Adding explicit parent surface commits right after the subsurface
|
||||
* commit doesn't help (and would be useless anyway, since it would
|
||||
* defeat the purpose of having the subsurface synchronized in the
|
||||
* first place).
|
||||
*/
|
||||
void quirk_weston_subsurface_desync_on(struct wl_subsurface *sub);
|
||||
void quirk_weston_subsurface_desync_off(struct wl_subsurface *sub);
|
||||
|
||||
/* Shortcuts to call desync_{on,off} on all CSD subsurfaces */
|
||||
void quirk_weston_csd_on(struct terminal *term);
|
||||
void quirk_weston_csd_off(struct terminal *term);
|
||||
|
||||
/*
|
||||
* KDE discards all previous damage when a buffer is attached to a
|
||||
* surface. Thus, if you have recorded damage before you call
|
||||
* wl_surface_attach(), call this function to record a full buffer
|
||||
* damage.
|
||||
*/
|
||||
void quirk_kde_damage_before_attach(struct wl_surface *surface);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue