From 2cbf2abea0cf1f971b0a804c5ce52cbe219a8fa7 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Thu, 14 May 2015 18:35:35 +1000 Subject: [PATCH] tests/gl: fix typo --- tests/check/libs/gstglcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/libs/gstglcontext.c b/tests/check/libs/gstglcontext.c index 94a5f95f32..601e673449 100644 --- a/tests/check/libs/gstglcontext.c +++ b/tests/check/libs/gstglcontext.c @@ -174,7 +174,7 @@ draw_render (gpointer data) gl->LoadIdentity (); gl->ActiveTexture (GL_TEXTURE_2D); - gl->BindTexture (GL_TEXTURE_2D, tex_id); + gl->BindTexture (GL_TEXTURE_2D, tex); gl->EnableClientState (GL_VERTEX_ARRAY); gl->VertexPointer (2, GL_FLOAT, 0, &verts);