diff options
author | Tobias Jakobi <tjakobi@math.uni-bielefeld.de> | 2017-10-13 17:04:47 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-10-13 17:10:52 +0200 |
commit | 47b1390b8081f5603e9ed7c0dd18d96b71884b2b (patch) | |
tree | 244c521875850cb08b539b158131fd56157422bf /video | |
parent | fc013ea8ac3ba0db5086d45de09b4378909925d9 (diff) |
vo_gpu: mali-fbdev: fix build error
Apparantly the context was renamed.
Diffstat (limited to 'video')
-rw-r--r-- | video/out/gpu/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/gpu/context.c b/video/out/gpu/context.c index ff9cef226c..8be0b2fc90 100644 --- a/video/out/gpu/context.c +++ b/video/out/gpu/context.c @@ -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_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_mali_fbdev; extern const struct ra_ctx_fns ra_ctx_vdpauglx; /* Vulkan */ @@ -89,7 +89,7 @@ static const struct ra_ctx_fns *contexts[] = { &ra_ctx_drm_egl, #endif #if HAVE_MALI_FBDEV - &ra_ctx_mali, + &ra_ctx_mali_fbdev, #endif #if HAVE_VDPAU_GL_X11 &ra_ctx_vdpauglx, |