From 502d074a317f912c17c5dd15889cdf91311a23c5 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Mon, 9 Oct 2017 12:44:49 -0700 Subject: vo_gpu: android: fix gpu context --- video/out/gpu/context.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'video') diff --git a/video/out/gpu/context.c b/video/out/gpu/context.c index c8cbb1aa47..ff9cef226c 100644 --- a/video/out/gpu/context.c +++ b/video/out/gpu/context.c @@ -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 -- cgit v1.2.3