aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/render
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-02-09 22:54:14 +0100
committeremersion <contact@emersion.fr>2018-02-09 22:54:14 +0100
commitbf6d24540000339029a30715f1f72b5b95a45018 (patch)
tree89c04c0a109bce115f9a749d8e1958d666e1f02d /include/wlr/render
parent34489dca16ef9e7fd05c161b8b4f2fd5ce5e4ef0 (diff)
Swap buffers with damage
Diffstat (limited to 'include/wlr/render')
-rw-r--r--include/wlr/render/egl.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/wlr/render/egl.h b/include/wlr/render/egl.h
index 6979fd9b..1facc6b8 100644
--- a/include/wlr/render/egl.h
+++ b/include/wlr/render/egl.h
@@ -1,9 +1,10 @@
#ifndef WLR_EGL_H
#define WLR_EGL_H
+#include <stdbool.h>
#include <EGL/egl.h>
#include <EGL/eglext.h>
-#include <stdbool.h>
+#include <pixman.h>
#include <wayland-server.h>
struct wlr_egl {
@@ -16,6 +17,7 @@ struct wlr_egl {
struct {
bool buffer_age;
+ bool swap_buffers_with_damage;
} egl_exts;
struct wl_display *wl_display;
@@ -72,4 +74,7 @@ const char *egl_error(void);
bool wlr_egl_make_current(struct wlr_egl *egl, EGLSurface surface,
int *buffer_age);
+bool wlr_egl_swap_buffers(struct wlr_egl *egl, EGLSurface surface,
+ pixman_region32_t *damage);
+
#endif