From c4707cdee66ebb3023ed97e033df7c68d147c17d Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 23 May 2016 21:25:43 +0200 Subject: vo_opengl: fix other minor namespace issues See previous commit. --- video/out/opengl/video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'video/out/opengl/video.c') diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index 97c92b0ae8..8859b34ed8 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -523,7 +523,7 @@ static struct bstr load_cached_file(struct gl_video *p, const char *path) static void debug_check_gl(struct gl_video *p, const char *msg) { if (p->gl_debug) - glCheckError(p->gl, p->log, msg); + gl_check_error(p->gl, p->log, msg); } void gl_video_set_debug(struct gl_video *p, bool enable) @@ -2983,7 +2983,7 @@ static bool test_fbo(struct gl_video *p, GLint format) success = true; } fbotex_uninit(&fbo); - glCheckError(gl, p->log, "FBO test"); + gl_check_error(gl, p->log, "FBO test"); return success; } -- cgit v1.2.3