summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/osd.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/opengl/osd.h')
-rw-r--r--video/out/opengl/osd.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/video/out/opengl/osd.h b/video/out/opengl/osd.h
deleted file mode 100644
index 6c2b886de3..0000000000
--- a/video/out/opengl/osd.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef MPLAYER_GL_OSD_H
-#define MPLAYER_GL_OSD_H
-
-#include <stdbool.h>
-#include <inttypes.h>
-
-#include "utils.h"
-#include "shader_cache.h"
-#include "sub/osd.h"
-
-struct mpgl_osd *mpgl_osd_init(struct ra *ra, struct mp_log *log,
- struct osd_state *osd);
-void mpgl_osd_destroy(struct mpgl_osd *ctx);
-
-void mpgl_osd_generate(struct mpgl_osd *ctx, struct mp_osd_res res, double pts,
- int stereo_mode, int draw_flags);
-void mpgl_osd_resize(struct mpgl_osd *ctx, struct mp_osd_res res, int stereo_mode);
-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);
-bool mpgl_osd_check_change(struct mpgl_osd *ctx, struct mp_osd_res *res,
- double pts);
-
-#endif