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 ++++ wscript | 1 + 2 files changed, 5 insertions(+) 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 diff --git a/wscript b/wscript index 0a718c961a..8d99e82a62 100644 --- a/wscript +++ b/wscript @@ -156,6 +156,7 @@ main_dependencies = [ 'func': compose_checks( check_statement('android/api-level.h', '(void)__ANDROID__'), # arbitrary android-specific header check_cc(lib="android"), + check_cc(lib="EGL"), ) }, { 'name': 'posix-or-mingw', -- cgit v1.2.3