summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/osd.h
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2015-08-29 04:12:56 +0200
committerwm4 <wm4@nowhere>2015-09-09 18:09:31 +0200
commit44eda2177d8facb1cd064c164b16e9027529d164 (patch)
tree7f3d77dd5aa4757fdd6e062cc6ff5613151afb3d /video/out/opengl/osd.h
parentdeebc55014074fef121c1df6b117e9c0bf97d516 (diff)
downloadmpv-44eda2177d8facb1cd064c164b16e9027529d164.tar.bz2
mpv-44eda2177d8facb1cd064c164b16e9027529d164.tar.xz
vo_opengl: remove gl_ prefixes from files in video/out/opengl
This is a bit redundant with the name of the directory itself, and not in line with existing naming conventions.
Diffstat (limited to 'video/out/opengl/osd.h')
-rw-r--r--video/out/opengl/osd.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/video/out/opengl/osd.h b/video/out/opengl/osd.h
new file mode 100644
index 0000000000..bd47f71764
--- /dev/null
+++ b/video/out/opengl/osd.h
@@ -0,0 +1,22 @@
+#ifndef MPLAYER_GL_OSD_H
+#define MPLAYER_GL_OSD_H
+
+#include <stdbool.h>
+#include <inttypes.h>
+
+#include "utils.h"
+#include "sub/osd.h"
+
+struct mpgl_osd *mpgl_osd_init(GL *gl, struct mp_log *log, struct osd_state *osd);
+void mpgl_osd_destroy(struct mpgl_osd *ctx);
+
+void mpgl_osd_set_options(struct mpgl_osd *ctx, bool pbo);
+
+void mpgl_osd_generate(struct mpgl_osd *ctx, struct mp_osd_res res, double pts,
+ int stereo_mode, int draw_flags);
+enum sub_bitmap_format mpgl_osd_get_part_format(struct mpgl_osd *ctx, int index);
+struct gl_vao *mpgl_osd_get_vao(struct mpgl_osd *ctx);
+void mpgl_osd_draw_part(struct mpgl_osd *ctx, int vp_w, int vp_h, int index);
+int64_t mpgl_get_change_counter(struct mpgl_osd *ctx);
+
+#endif