summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/utils.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-05-23 21:25:43 +0200
committerwm4 <wm4@nowhere>2016-05-23 21:27:18 +0200
commitc4707cdee66ebb3023ed97e033df7c68d147c17d (patch)
treef555f44f6c2b699641d0af8f7ec6684e2b3efc2b /video/out/opengl/utils.h
parente76aa7e8dbb3da3a6f7ea8a20adb7ae70ef9a8e3 (diff)
downloadmpv-c4707cdee66ebb3023ed97e033df7c68d147c17d.tar.bz2
mpv-c4707cdee66ebb3023ed97e033df7c68d147c17d.tar.xz
vo_opengl: fix other minor namespace issues
See previous commit.
Diffstat (limited to 'video/out/opengl/utils.h')
-rw-r--r--video/out/opengl/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/opengl/utils.h b/video/out/opengl/utils.h
index 1e069f4455..85d3413831 100644
--- a/video/out/opengl/utils.h
+++ b/video/out/opengl/utils.h
@@ -24,13 +24,13 @@
struct mp_log;
-void glCheckError(GL *gl, struct mp_log *log, const char *info);
+void gl_check_error(GL *gl, struct mp_log *log, const char *info);
void gl_upload_tex(GL *gl, GLenum target, GLenum format, GLenum type,
const void *dataptr, int stride,
int x, int y, int w, int h);
-mp_image_t *glGetWindowScreenshot(GL *gl);
+mp_image_t *gl_read_window_contents(GL *gl);
const char* mp_sampler_type(GLenum texture_target);