vo_opengl: fix an outdated comment

This wasn't updated over multiple iterations.
This commit is contained in:
wm4 2016-04-16 16:16:50 +02:00
parent 8e96e04999
commit 44644e69f0
1 changed files with 1 additions and 3 deletions

View File

@ -348,11 +348,9 @@ static const struct gl_functions gl_functions[] = {
// Fill the GL struct with function pointers and extensions from the current
// GL context. Called by the backend.
// getProcAddress: function to resolve function names, may be NULL
// get_fn: function to resolve function names
// ext2: an extra extension string
// log: used to output messages
// Note: if you create a CONTEXT_FORWARD_COMPATIBLE_BIT_ARB with OpenGL 3.0,
// you must append "GL_ARB_compatibility" to ext2.
void mpgl_load_functions2(GL *gl, void *(*get_fn)(void *ctx, const char *n),
void *fn_ctx, const char *ext2, struct mp_log *log)
{