diff options
author | Simon Ser <contact@emersion.fr> | 2021-08-17 12:30:17 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-09-08 09:50:08 -0400 |
commit | 04d105760da71524c85a06f4ff7e5efba6a36088 (patch) | |
tree | 4512008646c30eab8e7282d826b4c5a2b7d2d080 /include | |
parent | 968c1df7e978d57ad5d21bcf3c6506a465ae7de6 (diff) |
scene: add wlr_scene_output_commit
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_scene.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_scene.h b/include/wlr/types/wlr_scene.h index 6e3c13cd..f2773c6b 100644 --- a/include/wlr/types/wlr_scene.h +++ b/include/wlr/types/wlr_scene.h @@ -189,5 +189,9 @@ void wlr_scene_output_destroy(struct wlr_scene_output *scene_output); */ void wlr_scene_output_set_position(struct wlr_scene_output *scene_output, int lx, int ly); +/** + * Render and commit an output. + */ +bool wlr_scene_output_commit(struct wlr_scene_output *scene_output); #endif |