From b062b54626d066c01161b5dbbd38fa993687bb27 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 9 Dec 2014 22:36:28 +0100 Subject: vo_opengl: fix linkage type Can happen on Windows, I suppose. --- video/out/gl_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.2.3