mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-04-22 10:30:47 +02:00
surface: Add comments to weston_surface_status member
Explain what each member implies. Signed-off-by: Daniel Stone <daniels@collabora.com>
This commit is contained in:
parent
6526346b72
commit
3c1e2e5c32
1 changed files with 4 additions and 0 deletions
|
|
@ -1728,8 +1728,12 @@ struct weston_view {
|
|||
};
|
||||
|
||||
enum weston_surface_status {
|
||||
/** nothing has changed */
|
||||
WESTON_SURFACE_CLEAN = 0,
|
||||
/** a new buffer has been attached, but is like-for-like with the
|
||||
* previous */
|
||||
WESTON_SURFACE_DIRTY_BUFFER = 1 << 0,
|
||||
/** surface has been resized */
|
||||
WESTON_SURFACE_DIRTY_SIZE = 1 << 1,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue