aboutsummaryrefslogtreecommitdiff
path: root/demos/android
AgeCommit message (Collapse)Author
2017-12-15demos: GH1054, make cube shaders inlinePetr Kraus
2017-11-06android: Remove mips targetsCody Northrop
2017-10-29repo: normalize line termination across repoMike Weiblen
This is a scrub of the entire repo to normalize end-of-line termination to conform to the recently added .gitattributes file. A mismatch of line termination can cause difficult-to-resolve conflicts when rebasing or merging. The process performed is described at: https://help.github.com/articles/dealing-with-line-endings/#refreshing-a-repository-after-changing-line-endings The .gitattributes file is required because some files (*.bat and *.sh) are sensitive to line termination. The .gitattributes file is stored in the repo, and overrides settings which could be corrupted by a developer's local git configuration. The .gitattributes file was added in f077c81 This commit completes bcc9fec, which fixed a single file. Change-Id: I75d4594b61cb8aa6a09efb3ed5ace34fe8394871
2017-08-16android: Updates for NDK r15Cody Northrop
Removes app_dummy from apps that use native activity. For more details refer to: https://github.com/android-ndk/ndk/issues/381
2017-01-26repo: Clang-format c/cpp/h LVL files using LLVMMark Lobodzinski
Bring all source files in the repo up to date with consistent coding style/standard. Change-Id: Iceedbc17109974d3a0437fc4995441c9ad7e0c23
2016-09-29demos: Remove tri from Android buildCody Northrop
2016-09-28demos: Remove tri demoTony Barbour
Removing tri demo for maintenance reasons. Cube should be the demo to go to for examples of good Vulkan Change-Id: I4442a1882b5c168cfe88501eccc41a554ae4d026
2016-09-28demos: Enable validation for Android cubeCody Northrop
2016-09-28demos: Add APK with layers to cubeCody Northrop
2016-09-22demos: Give Cube and Tri distinct app namesCody Northrop
2016-09-22demos: Clean up APK creation for cube and triCody Northrop
Instead of moving manifest files, run the following commands: android update project -s -p . -t "android-23" ant -buildfile cube debug ant -buildfile tri debug And the APKs can coexist: ./cube/bin/NativeActivity-debug.apk ./tri/bin/NativeActivity-debug.apk
2016-09-13demos: Give Android versions permissions for internet & read/write filesIan Elliott
This is in support of RenderDoc (and other tracing libraries). On Android, these "native" applications must have permission to read/write files on the Android filesystem so that a trace-capture library can write a trace file. After building and installing the application, the following commands should be run from a Linux shell, in order to truly grant those permissions (not normally required for an Android Java-based app, with a GUI; but is required for these shell-launched, native apps): adb shell pm grant com.example.Cube android.permission.READ_EXTERNAL_STORAGE adb shell pm grant com.example.Cube android.permission.WRITE_EXTERNAL_STORAGE
2016-08-05demos: Flip cube texture on androidMike Stroyan
Flip the cube texture on android to track commit cb7f374. Recreate lunarg.ppm.h from lunarg.ppm using xxd. xxd -g 1 -c 12 -i lunarg.ppm > android/include/lunarg.ppm.h
2016-07-13demos: Fix android buildCody Northrop
2016-04-28demos: Fix-ups so that cube/tri build and run on both linux & androidTobin Ehlis
2016-04-28android: Start using vulkan_wrapper in cube and triCody Northrop
2016-04-28Fix cube for android.Michael Lentine
2016-04-28Make tri work on android.Michael Lentine