mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
eglglessink: Also clear the surface once when the buffer content is preserved
This commit is contained in:
parent
147edd1fc2
commit
61db9ad941
1 changed files with 6 additions and 0 deletions
|
@ -1899,6 +1899,12 @@ gst_eglglessink_render_and_display (GstEglGlesSink * eglglessink,
|
|||
eglglessink->eglglesctx.surface_width,
|
||||
eglglessink->eglglesctx.surface_height);
|
||||
|
||||
/* Clear the surface once if its content is preserved */
|
||||
if (eglglessink->eglglesctx.buffer_preserved) {
|
||||
glClearColor (0.0, 0.0, 0.0, 1.0);
|
||||
glClear (GL_COLOR_BUFFER_BIT);
|
||||
}
|
||||
|
||||
if (!gst_eglglessink_setup_vbo (eglglessink, FALSE)) {
|
||||
GST_ERROR_OBJECT (eglglessink, "VBO setup failed");
|
||||
goto HANDLE_ERROR;
|
||||
|
|
Loading…
Reference in a new issue