summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-12-09 22:36:28 +0100
committerAlessandro Ghedini <alessandro@ghedini.me>2014-12-17 20:06:05 +0100
commitb062b54626d066c01161b5dbbd38fa993687bb27 (patch)
treedcf6946a8d1c98d8120f862a0498e8f1938df70a
parent9bee56cc6740fd201cb807ff5a1c1573bfad073b (diff)
downloadmpv-b062b54626d066c01161b5dbbd38fa993687bb27.tar.bz2
mpv-b062b54626d066c01161b5dbbd38fa993687bb27.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 b141224080..1a966224a2 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);
}