diff options
author | wm4 <wm4@nowhere> | 2015-11-09 14:29:58 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-11-09 14:29:58 +0100 |
commit | caa497ee8af7ceab2a1e0a1df4e06ff467e5fd1d (patch) | |
tree | 96d21c6565546bdcf7fdf97d0693eea5f5e62530 /video/out/opengl/common.c | |
parent | 930f8415892dd6d030fc4be3d7a72b2eed9d1467 (diff) | |
download | mpv-caa497ee8af7ceab2a1e0a1df4e06ff467e5fd1d.tar.bz2 mpv-caa497ee8af7ceab2a1e0a1df4e06ff467e5fd1d.tar.xz |
vo_opengl: fix extension name
Diffstat (limited to 'video/out/opengl/common.c')
-rw-r--r-- | video/out/opengl/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/common.c b/video/out/opengl/common.c index 88b1270853..da0a5143e7 100644 --- a/video/out/opengl/common.c +++ b/video/out/opengl/common.c @@ -317,7 +317,7 @@ static const struct gl_functions gl_functions[] = { // uniform buffer object extensions, requires OpenGL 3.1. { .ver_core = 310, - .extension = "ARB_uniform_buffer_object", + .extension = "GL_ARB_uniform_buffer_object", .functions = (const struct gl_function[]) { DEF_FN(GetUniformBlockIndex), DEF_FN(UniformBlockBinding), |