summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-09 22:36:28 +0100
committerwm4 <wm4@nowhere>2014-12-09 22:37:32 +0100
commit5beac919d0a2e9c7a2c103df13ee34cd2958269f (patch)
tree73c995b79b152984b56ba09660baa08b2dd124e9
parent2413fc1cba7eaa0f8da0a77501b082e62c31ab52 (diff)
downloadmpv-5beac919d0a2e9c7a2c103df13ee34cd2958269f.tar.bz2
mpv-5beac919d0a2e9c7a2c103df13ee34cd2958269f.tar.xz
vo_opengl: fix linkage type
Can happen on Windows, I suppose.
-rw-r--r--video/out/gl_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gl_common.c b/video/out/gl_common.c
index 5edd80146b..6cc2d20a17 100644
--- a/video/out/gl_common.c
+++ b/video/out/gl_common.c
@@ -141,7 +141,7 @@ static bool is_software_gl(GL *gl)
strcmp(renderer, "Mesa X11") == 0;
}
-static void dummy_glBindFramebuffer(GLenum target, GLuint framebuffer)
+static void GLAPIENTRY dummy_glBindFramebuffer(GLenum target, GLuint framebuffer)
{
assert(framebuffer == 0);
}