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',