From 95e1971f8fc2b9f1814a80ffa19d17fc4eda9e47 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 21 Sep 2024 16:38:15 +0200 Subject: Fix first frame is black --- src/capture/portal.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/capture/portal.c') diff --git a/src/capture/portal.c b/src/capture/portal.c index 58d16d9..db5ba4e 100644 --- a/src/capture/portal.c +++ b/src/capture/portal.c @@ -336,6 +336,9 @@ static int gsr_capture_portal_capture(gsr_capture *cap, AVFrame *frame, gsr_colo const vec2i target_pos = { max_int(0, frame->width / 2 - self->capture_size.x / 2), max_int(0, frame->height / 2 - self->capture_size.y / 2) }; + self->params.egl->glFlush(); + self->params.egl->glFinish(); + // TODO: Handle region crop /* Fast opengl free path */ -- cgit v1.2.3