diff options
author | dec05eba <dec05eba@protonmail.com> | 2023-12-11 01:00:32 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2023-12-11 01:00:32 +0100 |
commit | 5490e519cfb52d1cbb63752cee277ae01cd9e3fb (patch) | |
tree | 611cf5215f6ce2884e66fe018f67769f3c6c70d4 /src | |
parent | 10ca6eb57024a7042cc6201c6287e1a3d01c7e23 (diff) |
add window flush function
Diffstat (limited to 'src')
-rw-r--r-- | src/window/window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window/window.c b/src/window/window.c index b0d1235..05d643d 100644 --- a/src/window/window.c +++ b/src/window/window.c @@ -1736,3 +1736,8 @@ bool mgl_window_get_clipboard_string(mgl_window *self, char **str, size_t *size) void mgl_window_set_key_repeat_enabled(mgl_window *self, bool enabled) { self->key_repeat_enabled = enabled; } + +void mgl_window_flush(mgl_window *self) { + mgl_context *context = mgl_get_context(); + XFlush(context->connection); +} |