Files
rive-cpp/tests/for_all_adb_devices.sh
csmartdalton 88dce8c523 Overhaul Vulkan synchronization
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>
2024-09-18 18:04:50 +00:00

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