skia2/tools/skottie_ios_app
Hal Canary 719a8119ae skottie_ios_app: fix tap logic
Cq-Include-Trybots: skia/skia.primary:Build-Mac-Clang-arm64-Debug-iOS_Metal
Cq-Include-Trybots: skia/skia.primary:Build-Mac-Clang-arm64-Debug-iOS
Change-Id: Iddfe7f3c32c00cbd84064835c2dd3a31126c2ece
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/260498
Reviewed-by: Hal Canary <halcanary@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
2019-12-17 16:09:42 +00:00
..
BUILD.gn SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
Info.plist skottie_ios_app: fix tap logic 2019-12-17 16:09:42 +00:00
main.mm skottie_ios_app: fix tap logic 2019-12-17 16:09:42 +00:00
README.md SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkAnimationDraw.h SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkMetalViewBridge.h SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkMetalViewBridge.mm SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkottieMtkView.h SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkottieMtkView.mm SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkottieUIView.h SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00
SkottieUIView.mm skottie_ios_app: fix tap logic 2019-12-17 16:09:42 +00:00
SkTimeKeeper.h SkMetalDeviceToGrContext: no longer needs any Skia headers 2019-12-16 18:09:40 +00:00

Skottie iOS Example App

Metal

How to compile for the Metal backend:

cd $SKIA_ROOT_DIRECTORY

mkdir -p out/ios_arm64_mtl
cat > out/ios_arm64_mtl/args.gn <<EOM
target_os="ios"
target_cpu="arm64"
skia_use_metal=true
skia_use_expat=false
skia_enable_pdf=false
EOM

tools/git-sync-deps
bin/gn gen out/ios_arm64_mtl
ninja -C out/ios_arm64_mtl skottie_example

Then install the out/ios_arm64_mtl/skottie_example.app bundle.

CPU

How to compile for the CPU backend:

cd $SKIA_ROOT_DIRECTORY

mkdir -p out/ios_arm64_cpu
cat > out/ios_arm64_cpu/args.gn <<EOM
target_cpu="arm64"
target_os="ios"
skia_enable_gpu=false
skia_enable_pdf=false
skia_use_expat=false

tools/git-sync-deps
bin/gn gen out/ios_arm64_cpu
ninja -C out/ios_arm64_cpu skottie_example

Then install the out/ios_arm64_cpu/skottie_example.app bundle.