1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-23 15:47:54 +00:00

vo_gpu: mali-fbdev: fix build error

Apparantly the context was renamed.
This commit is contained in:
Tobias Jakobi 2017-10-13 17:04:47 +02:00 committed by wm4
parent fc013ea8ac
commit 47b1390b80

View File

@ -45,7 +45,7 @@ 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_dxgl;
extern const struct ra_ctx_fns ra_ctx_rpi; 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_android;
extern const struct ra_ctx_fns ra_ctx_mali; extern const struct ra_ctx_fns ra_ctx_mali_fbdev;
extern const struct ra_ctx_fns ra_ctx_vdpauglx; extern const struct ra_ctx_fns ra_ctx_vdpauglx;
/* Vulkan */ /* Vulkan */
@ -89,7 +89,7 @@ static const struct ra_ctx_fns *contexts[] = {
&ra_ctx_drm_egl, &ra_ctx_drm_egl,
#endif #endif
#if HAVE_MALI_FBDEV #if HAVE_MALI_FBDEV
&ra_ctx_mali, &ra_ctx_mali_fbdev,
#endif #endif
#if HAVE_VDPAU_GL_X11 #if HAVE_VDPAU_GL_X11
&ra_ctx_vdpauglx, &ra_ctx_vdpauglx,