mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
This stabilizes Vulkan on Android. Also adds a "vkcore" backend, which tests vulkan without bonus features enabled. Diffs= adc240554 Overhaul Vulkan synchronization (#8166) Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
7 lines
111 B
Bash
Executable File
7 lines
111 B
Bash
Executable File
set -e
|
|
for DEVICE in $(adb devices | grep -v '^List' | cut -f1)
|
|
do
|
|
ANDROID_SERIAL=$DEVICE "$@" &
|
|
done
|
|
wait
|