2012-10-03 16:25:41 +00:00
|
|
|
#ifndef MPLAYER_GL_OSD_H
|
|
|
|
#define MPLAYER_GL_OSD_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2015-08-29 02:12:56 +00:00
|
|
|
#include "utils.h"
|
2017-08-04 17:09:46 +00:00
|
|
|
#include "shader_cache.h"
|
2013-11-24 11:58:06 +00:00
|
|
|
#include "sub/osd.h"
|
2012-10-03 16:25:41 +00:00
|
|
|
|
2017-08-05 11:39:20 +00:00
|
|
|
struct mpgl_osd *mpgl_osd_init(struct ra *ra, struct mp_log *log,
|
2017-08-19 02:33:40 +00:00
|
|
|
struct osd_state *osd);
|
2012-10-03 16:25:41 +00:00
|
|
|
void mpgl_osd_destroy(struct mpgl_osd *ctx);
|
|
|
|
|
vo_opengl: refactor shader generation (part 1)
The basic idea is to use dynamically generated shaders instead of a
single monolithic file + a ton of ifdefs. Instead of having to setup
every aspect of it separately (like compiling shaders, setting uniforms,
perfoming the actual rendering steps, the GLSL parts), we generate the
GLSL on the fly, and perform the rendering at the same time. The GLSL
is regenerated every frame, but the actual compiled OpenGL-level shaders
are cached, which makes it fast again. Almost all logic can be in a
single place.
The new code is significantly more flexible, which allows us to improve
the code clarity, performance and add more features easily.
This commit is incomplete. It drops almost all previous code, and
readds only the most important things (some of them actually buggy).
The next commit will complete it - it's separate to preserve authorship
information.
2015-03-12 20:57:54 +00:00
|
|
|
void mpgl_osd_generate(struct mpgl_osd *ctx, struct mp_osd_res res, double pts,
|
2015-03-23 01:42:19 +00:00
|
|
|
int stereo_mode, int draw_flags);
|
2016-03-21 21:23:41 +00:00
|
|
|
void mpgl_osd_resize(struct mpgl_osd *ctx, struct mp_osd_res res, int stereo_mode);
|
2017-07-22 19:53:50 +00:00
|
|
|
bool mpgl_osd_draw_prepare(struct mpgl_osd *ctx, int index,
|
|
|
|
struct gl_shader_cache *sc);
|
2017-08-07 14:44:15 +00:00
|
|
|
void mpgl_osd_draw_finish(struct mpgl_osd *ctx, int index,
|
2017-09-20 08:45:33 +00:00
|
|
|
struct gl_shader_cache *sc, struct ra_fbo fbo);
|
2017-08-11 11:02:13 +00:00
|
|
|
bool mpgl_osd_check_change(struct mpgl_osd *ctx, struct mp_osd_res *res,
|
|
|
|
double pts);
|
VO, sub: refactor
Remove VFCTRL_DRAW_OSD, VFCAP_EOSD_FILTER, VFCAP_EOSD_RGBA, VFCAP_EOSD,
VOCTRL_DRAW_EOSD, VOCTRL_GET_EOSD_RES, VOCTRL_QUERY_EOSD_FORMAT.
Remove draw_osd_with_eosd(), which rendered the OSD by calling
VOCTRL_DRAW_EOSD. Change VOs to call osd_draw() directly, which takes
a callback as argument. (This basically works like the old OSD API,
except multiple OSD bitmap formats are supported and caching is
possible.)
Remove all mentions of "eosd". It's simply "osd" now.
Make OSD size per-OSD-object, as they can be different when using
vf_sub. Include display_par/video_par in resolution change detection.
Fix the issue with margin borders in vo_corevideo.
2012-10-19 17:25:18 +00:00
|
|
|
|
2012-10-03 16:25:41 +00:00
|
|
|
#endif
|