diff options
author | wm4 <wm4@nowhere> | 2016-04-16 16:16:50 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-04-16 16:16:50 +0200 |
commit | 44644e69f04b40142c7ab0930c9ec3856c006a56 (patch) | |
tree | 68d6b5f1510eb2cd309f7b111fd6b5606731fcd3 /video/out/opengl/common.c | |
parent | 8e96e049999ccc4acd88ea43a252bf815464a682 (diff) | |
download | mpv-44644e69f04b40142c7ab0930c9ec3856c006a56.tar.bz2 mpv-44644e69f04b40142c7ab0930c9ec3856c006a56.tar.xz |
vo_opengl: fix an outdated comment
This wasn't updated over multiple iterations.
Diffstat (limited to 'video/out/opengl/common.c')
-rw-r--r-- | video/out/opengl/common.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/video/out/opengl/common.c b/video/out/opengl/common.c index 46cbc2fc8c..30cce911e4 100644 --- a/video/out/opengl/common.c +++ b/video/out/opengl/common.c @@ -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) { |