(Android) Hook up Vulkan for gfx_ctx_bind_api

This commit is contained in:
twinaphex 2016-03-01 18:21:09 +01:00
parent b8c1e31c13
commit eaa0b08bc2

View File

@ -344,6 +344,13 @@ static bool android_gfx_ctx_bind_api(void *data,
} }
#endif #endif
break; break;
case GFX_CTX_VULKAN_API:
#ifdef HAVE_VULKAN
android_api = api;
return true;
#else
break;
#endif
default: default:
break; break;
} }