mirror of
https://github.com/mpv-player/mpv
synced 2025-02-05 22:52:18 +00:00
vo_gpu: android: fix gpu context
This commit is contained in:
parent
05cb8d28af
commit
502d074a31
@ -44,6 +44,7 @@ extern const struct ra_ctx_fns ra_ctx_wgl;
|
||||
extern const struct ra_ctx_fns ra_ctx_angle;
|
||||
extern const struct ra_ctx_fns ra_ctx_dxgl;
|
||||
extern const struct ra_ctx_fns ra_ctx_rpi;
|
||||
extern const struct ra_ctx_fns ra_ctx_android;
|
||||
extern const struct ra_ctx_fns ra_ctx_mali;
|
||||
extern const struct ra_ctx_fns ra_ctx_vdpauglx;
|
||||
|
||||
@ -54,6 +55,9 @@ extern const struct ra_ctx_fns ra_ctx_vulkan_xlib;
|
||||
|
||||
static const struct ra_ctx_fns *contexts[] = {
|
||||
// OpenGL contexts:
|
||||
#if HAVE_ANDROID
|
||||
&ra_ctx_android,
|
||||
#endif
|
||||
#if HAVE_RPI
|
||||
&ra_ctx_rpi,
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user