summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/osd.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-11 13:02:13 +0200
committerwm4 <wm4@nowhere>2017-08-11 21:29:35 +0200
commit697c4389a9e650935cee934009bdbd42dc4e5cfa (patch)
treeca9fc5d3ab28e70c42e78c9ac3eb4c9cb9b9cd32 /video/out/opengl/osd.h
parentde3eecce7fabc23eb76558310040d54fd2528254 (diff)
downloadmpv-697c4389a9e650935cee934009bdbd42dc4e5cfa.tar.bz2
mpv-697c4389a9e650935cee934009bdbd42dc4e5cfa.tar.xz
rpi: fix build
Runtime untested, because I get this: [vo/rpi] Could not get DISPMANX objects. This happened even when building older git versions, and on a RPI image that hasn't changed in the recent years. I don't know how to make this POS work again, so I guess if there's a bug in the new code, it will remain broken.
Diffstat (limited to 'video/out/opengl/osd.h')
-rw-r--r--video/out/opengl/osd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/video/out/opengl/osd.h b/video/out/opengl/osd.h
index 9763d7e03a..6c2b886de3 100644
--- a/video/out/opengl/osd.h
+++ b/video/out/opengl/osd.h
@@ -19,6 +19,7 @@ bool mpgl_osd_draw_prepare(struct mpgl_osd *ctx, int index,
struct gl_shader_cache *sc);
void mpgl_osd_draw_finish(struct mpgl_osd *ctx, int index,
struct gl_shader_cache *sc, struct fbodst target);
-int64_t mpgl_get_change_counter(struct mpgl_osd *ctx);
+bool mpgl_osd_check_change(struct mpgl_osd *ctx, struct mp_osd_res *res,
+ double pts);
#endif