[896/906] utils: use the vtable for deleting the texture

This commit is contained in:
Matthew Waters 2014-03-02 11:48:54 +11:00
parent 8b4503aa6f
commit b9071875e7

View file

@ -133,7 +133,7 @@ gst_gl_context_gen_texture (GstGLContext * context, GLuint * pTexture,
void void
_del_texture (GstGLContext * context, guint * texture) _del_texture (GstGLContext * context, guint * texture)
{ {
glDeleteTextures (1, texture); context->gl_vtable->DeleteTextures (1, texture);
} }
void void