vo_gpu: android: fix gpu context

This commit is contained in:
Aman Gupta 2017-10-09 12:44:49 -07:00 committed by wm4
parent 05cb8d28af
commit 502d074a31
2 changed files with 5 additions and 0 deletions

View File

@ -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_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_mali; extern const struct ra_ctx_fns ra_ctx_mali;
extern const struct ra_ctx_fns ra_ctx_vdpauglx; 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[] = { static const struct ra_ctx_fns *contexts[] = {
// OpenGL contexts: // OpenGL contexts:
#if HAVE_ANDROID
&ra_ctx_android,
#endif
#if HAVE_RPI #if HAVE_RPI
&ra_ctx_rpi, &ra_ctx_rpi,
#endif #endif

View File

@ -156,6 +156,7 @@ main_dependencies = [
'func': compose_checks( 'func': compose_checks(
check_statement('android/api-level.h', '(void)__ANDROID__'), # arbitrary android-specific header check_statement('android/api-level.h', '(void)__ANDROID__'), # arbitrary android-specific header
check_cc(lib="android"), check_cc(lib="android"),
check_cc(lib="EGL"),
) )
}, { }, {
'name': 'posix-or-mingw', 'name': 'posix-or-mingw',