diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-07-26 05:21:47 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-07-26 10:55:24 +0200 |
commit | b1d8346ed95f356842455fedb415f97d6c4cacb9 (patch) | |
tree | 90be0f3054f0e5f9988f25290c5fbedf1ee9914e /src/capture/kms.c | |
parent | af4f9b805a947b4495961a519af6045cd3f19a33 (diff) |
Move glClear and glx/eglSwapBuffers from capture backends to main
Diffstat (limited to 'src/capture/kms.c')
-rw-r--r-- | src/capture/kms.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/capture/kms.c b/src/capture/kms.c index b3b4be2..5d0aed3 100644 --- a/src/capture/kms.c +++ b/src/capture/kms.c @@ -275,9 +275,6 @@ static int gsr_capture_kms_capture(gsr_capture *cap, AVFrame *frame, gsr_color_c gsr_capture_kms *self = cap->priv; const bool cursor_texture_id_is_external = self->params.egl->gpu_info.vendor == GSR_GPU_VENDOR_NVIDIA; - //egl->glClearColor(0.0f, 0.0f, 0.0f, 1.0f); - self->params.egl->glClear(0); - gsr_capture_kms_cleanup_kms_fds(self); gsr_kms_response_item *drm_fd = NULL; @@ -457,8 +454,6 @@ static int gsr_capture_kms_capture(gsr_capture *cap, AVFrame *frame, gsr_color_c self->params.egl->glDisable(GL_SCISSOR_TEST); } - self->params.egl->eglSwapBuffers(self->params.egl->egl_display, self->params.egl->egl_surface); - //self->params.egl->glFlush(); //self->params.egl->glFinish(); |