vo/gpu: ra_pl: Add helper to get pl_fmt from ra_format

When interacting directly with libplacebo, we may need to pass a
pl_fmt based on an ra_format. Although the mapping is currently
trivial, it's worth wrapping to make it easy to adapt if this
changes in the future.
This commit is contained in:
Philip Langdale 2019-01-31 20:39:17 -08:00 committed by Jan Ekström
parent 4c133f3b45
commit ffb8ffdd55
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,11 @@ struct ra *ra_create_pl(const struct pl_gpu *gpu, struct mp_log *log);
const struct pl_gpu *ra_pl_get(const struct ra *ra);
static inline const struct pl_fmt *ra_pl_fmt_get(const struct ra_format *format)
{
return format->priv;
}
// Wrap a pl_tex into a ra_tex struct, returns if successful
bool mppl_wrap_tex(struct ra *ra, const struct pl_tex *pltex,
struct ra_tex *out_tex);