0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

vo_opengl: fix linkage type

Can happen on Windows, I suppose.
This commit is contained in:
wm4 2014-12-09 22:36:28 +01:00
parent 2413fc1cba
commit 5beac919d0

View File

@ -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);
}