mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
eglglessink: Fix missing texture setup bits
This commit is contained in:
parent
68eac71910
commit
e439c01382
1 changed files with 6 additions and 1 deletions
|
@ -1165,7 +1165,7 @@ static gboolean
|
||||||
gst_eglglessink_init_egl_surface (GstEglGlesSink * eglglessink)
|
gst_eglglessink_init_egl_surface (GstEglGlesSink * eglglessink)
|
||||||
{
|
{
|
||||||
GLint test;
|
GLint test;
|
||||||
GLuint verthandle, fraghandle, prog;
|
GLuint verthandle, fraghandle, prog, texlocation;
|
||||||
GLboolean ret;
|
GLboolean ret;
|
||||||
GLchar *info_log;
|
GLchar *info_log;
|
||||||
|
|
||||||
|
@ -1275,6 +1275,7 @@ gst_eglglessink_init_egl_surface (GstEglGlesSink * eglglessink)
|
||||||
if (got_gl_error ("glUseProgram"))
|
if (got_gl_error ("glUseProgram"))
|
||||||
goto HANDLE_ERROR;
|
goto HANDLE_ERROR;
|
||||||
|
|
||||||
|
|
||||||
/* Generate and bind texture */
|
/* Generate and bind texture */
|
||||||
if (!eglglessink->have_texture) {
|
if (!eglglessink->have_texture) {
|
||||||
GST_INFO_OBJECT (eglglessink, "Doing initial texture setup");
|
GST_INFO_OBJECT (eglglessink, "Doing initial texture setup");
|
||||||
|
@ -1285,10 +1286,14 @@ gst_eglglessink_init_egl_surface (GstEglGlesSink * eglglessink)
|
||||||
if (got_gl_error ("glGenTextures"))
|
if (got_gl_error ("glGenTextures"))
|
||||||
goto HANDLE_ERROR_LOCKED;
|
goto HANDLE_ERROR_LOCKED;
|
||||||
|
|
||||||
|
glActiveTexture (GL_TEXTURE0);
|
||||||
glBindTexture (GL_TEXTURE_2D, eglglessink->texture[0]);
|
glBindTexture (GL_TEXTURE_2D, eglglessink->texture[0]);
|
||||||
if (got_gl_error ("glBindTexture"))
|
if (got_gl_error ("glBindTexture"))
|
||||||
goto HANDLE_ERROR_LOCKED;
|
goto HANDLE_ERROR_LOCKED;
|
||||||
|
|
||||||
|
texlocation = glGetUniformLocation (prog, "tex");
|
||||||
|
glUniform1i (texlocation, 0);
|
||||||
|
|
||||||
eglglessink->have_texture = TRUE;
|
eglglessink->have_texture = TRUE;
|
||||||
g_mutex_unlock (eglglessink->flow_lock);
|
g_mutex_unlock (eglglessink->flow_lock);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue