├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .google └── packaging.yaml ├── .pre-commit-config.yaml ├── ARCHITECTURE.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── REFERENCE.md ├── audio-echo └── README.md ├── base ├── .gitignore ├── build.gradle.kts └── src │ └── main │ └── cpp │ ├── CMakeLists.txt │ ├── include │ └── base │ │ ├── errno_restorer.h │ │ ├── logging.h │ │ └── macros.h │ ├── logging.cpp │ └── logging_splitters.h ├── bitmap-plasma ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── jni.cpp │ │ ├── libplasma.map.txt │ │ ├── plasma.cpp │ │ └── plasma.h │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── plasma │ │ │ └── Plasma.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── camera ├── Camera2ProgrammingModel.png ├── README.md ├── basic │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── android_main.cpp │ │ ├── camera_engine.cpp │ │ ├── camera_engine.h │ │ ├── camera_listeners.cpp │ │ ├── camera_manager.cpp │ │ ├── camera_manager.h │ │ ├── camera_ui.cpp │ │ ├── image_reader.cpp │ │ ├── image_reader.h │ │ └── libndk_camera.map.txt │ │ ├── java │ │ └── com │ │ │ └── sample │ │ │ └── camera │ │ │ └── basic │ │ │ └── CameraActivity.java │ │ └── res │ │ ├── drawable │ │ └── camera_button.png │ │ ├── layout │ │ └── widgets.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml ├── camera-utils │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── cpp │ │ ├── CMakeLists.txt │ │ ├── camera_utils.cpp │ │ └── include │ │ └── ndksamples │ │ └── camera │ │ ├── camera_utils.h │ │ └── native_debug.h ├── ndkCamera.png └── texture-view │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── android_main.cpp │ ├── camera_engine.cpp │ ├── camera_engine.h │ ├── camera_listeners.cpp │ ├── camera_manager.cpp │ ├── camera_manager.h │ └── libcamera_textureview.map.txt │ ├── java │ └── com │ │ └── sample │ │ └── textureview │ │ └── ViewActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_main.xml │ └── values │ └── strings.xml ├── cmake └── AppLibrary.cmake ├── docs └── run-sample.png ├── endless-tunnel ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── android_main.cpp │ │ ├── anim.cpp │ │ ├── anim.hpp │ │ ├── ascii_to_geom.cpp │ │ ├── ascii_to_geom.hpp │ │ ├── common.hpp │ │ ├── data │ │ │ ├── alphabet.inl │ │ │ ├── ascii_art.inl │ │ │ ├── blurb.inl │ │ │ ├── cube_geom.inl │ │ │ ├── our_shader.inl │ │ │ ├── strings.inl │ │ │ └── tunnel_geom.inl │ │ ├── dialog_scene.cpp │ │ ├── dialog_scene.hpp │ │ ├── engine.hpp │ │ ├── game_consts.hpp │ │ ├── glm │ │ │ ├── CMakeLists.txt │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _literals.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── func_common.hpp │ │ │ │ ├── func_common.inl │ │ │ │ ├── func_exponential.hpp │ │ │ │ ├── func_exponential.inl │ │ │ │ ├── func_geometric.hpp │ │ │ │ ├── func_geometric.inl │ │ │ │ ├── func_integer.hpp │ │ │ │ ├── func_integer.inl │ │ │ │ ├── func_matrix.hpp │ │ │ │ ├── func_matrix.inl │ │ │ │ ├── func_noise.hpp │ │ │ │ ├── func_noise.inl │ │ │ │ ├── func_packing.hpp │ │ │ │ ├── func_packing.inl │ │ │ │ ├── func_trigonometric.hpp │ │ │ │ ├── func_trigonometric.inl │ │ │ │ ├── func_vector_relational.hpp │ │ │ │ ├── func_vector_relational.inl │ │ │ │ ├── glm.cpp │ │ │ │ ├── hint.hpp │ │ │ │ ├── intrinsic_common.hpp │ │ │ │ ├── intrinsic_common.inl │ │ │ │ ├── intrinsic_exponential.hpp │ │ │ │ ├── intrinsic_exponential.inl │ │ │ │ ├── intrinsic_geometric.hpp │ │ │ │ ├── intrinsic_geometric.inl │ │ │ │ ├── intrinsic_integer.hpp │ │ │ │ ├── intrinsic_integer.inl │ │ │ │ ├── intrinsic_matrix.hpp │ │ │ │ ├── intrinsic_matrix.inl │ │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ │ ├── intrinsic_trigonometric.inl │ │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ │ ├── intrinsic_vector_relational.inl │ │ │ │ ├── precision.hpp │ │ │ │ ├── precision.inl │ │ │ │ ├── setup.hpp │ │ │ │ ├── type_float.hpp │ │ │ │ ├── type_gentype.hpp │ │ │ │ ├── type_gentype.inl │ │ │ │ ├── type_half.hpp │ │ │ │ ├── type_half.inl │ │ │ │ ├── type_int.hpp │ │ │ │ ├── type_mat.hpp │ │ │ │ ├── type_mat.inl │ │ │ │ ├── type_mat2x2.hpp │ │ │ │ ├── type_mat2x2.inl │ │ │ │ ├── type_mat2x3.hpp │ │ │ │ ├── type_mat2x3.inl │ │ │ │ ├── type_mat2x4.hpp │ │ │ │ ├── type_mat2x4.inl │ │ │ │ ├── type_mat3x2.hpp │ │ │ │ ├── type_mat3x2.inl │ │ │ │ ├── type_mat3x3.hpp │ │ │ │ ├── type_mat3x3.inl │ │ │ │ ├── type_mat3x4.hpp │ │ │ │ ├── type_mat3x4.inl │ │ │ │ ├── type_mat4x2.hpp │ │ │ │ ├── type_mat4x2.inl │ │ │ │ ├── type_mat4x3.hpp │ │ │ │ ├── type_mat4x3.inl │ │ │ │ ├── type_mat4x4.hpp │ │ │ │ ├── type_mat4x4.inl │ │ │ │ ├── type_vec.hpp │ │ │ │ ├── type_vec.inl │ │ │ │ ├── type_vec1.hpp │ │ │ │ ├── type_vec1.inl │ │ │ │ ├── type_vec2.hpp │ │ │ │ ├── type_vec2.inl │ │ │ │ ├── type_vec3.hpp │ │ │ │ ├── type_vec3.inl │ │ │ │ ├── type_vec4.hpp │ │ │ │ └── type_vec4.inl │ │ │ ├── exponential.hpp │ │ │ ├── ext.hpp │ │ │ ├── fwd.hpp │ │ │ ├── geometric.hpp │ │ │ ├── glm.hpp │ │ │ ├── gtc │ │ │ │ ├── constants.hpp │ │ │ │ ├── constants.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── epsilon.inl │ │ │ │ ├── matrix_access.hpp │ │ │ │ ├── matrix_access.inl │ │ │ │ ├── matrix_integer.hpp │ │ │ │ ├── matrix_inverse.hpp │ │ │ │ ├── matrix_inverse.inl │ │ │ │ ├── matrix_transform.hpp │ │ │ │ ├── matrix_transform.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── noise.inl │ │ │ │ ├── packing.hpp │ │ │ │ ├── packing.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── random.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── reciprocal.inl │ │ │ │ ├── type_precision.hpp │ │ │ │ ├── type_precision.inl │ │ │ │ ├── type_ptr.hpp │ │ │ │ ├── type_ptr.inl │ │ │ │ ├── ulp.hpp │ │ │ │ └── ulp.inl │ │ │ ├── gtx │ │ │ │ ├── associated_min_max.hpp │ │ │ │ ├── associated_min_max.inl │ │ │ │ ├── bit.hpp │ │ │ │ ├── bit.inl │ │ │ │ ├── closest_point.hpp │ │ │ │ ├── closest_point.inl │ │ │ │ ├── color_space.hpp │ │ │ │ ├── color_space.inl │ │ │ │ ├── color_space_YCoCg.hpp │ │ │ │ ├── color_space_YCoCg.inl │ │ │ │ ├── compatibility.hpp │ │ │ │ ├── compatibility.inl │ │ │ │ ├── component_wise.hpp │ │ │ │ ├── component_wise.inl │ │ │ │ ├── constants.hpp │ │ │ │ ├── dual_quaternion.hpp │ │ │ │ ├── dual_quaternion.inl │ │ │ │ ├── epsilon.hpp │ │ │ │ ├── euler_angles.hpp │ │ │ │ ├── euler_angles.inl │ │ │ │ ├── extend.hpp │ │ │ │ ├── extend.inl │ │ │ │ ├── extented_min_max.hpp │ │ │ │ ├── extented_min_max.inl │ │ │ │ ├── fast_exponential.hpp │ │ │ │ ├── fast_exponential.inl │ │ │ │ ├── fast_square_root.hpp │ │ │ │ ├── fast_square_root.inl │ │ │ │ ├── fast_trigonometry.hpp │ │ │ │ ├── fast_trigonometry.inl │ │ │ │ ├── gradient_paint.hpp │ │ │ │ ├── gradient_paint.inl │ │ │ │ ├── handed_coordinate_space.hpp │ │ │ │ ├── handed_coordinate_space.inl │ │ │ │ ├── inertia.hpp │ │ │ │ ├── inertia.inl │ │ │ │ ├── int_10_10_10_2.hpp │ │ │ │ ├── int_10_10_10_2.inl │ │ │ │ ├── integer.hpp │ │ │ │ ├── integer.inl │ │ │ │ ├── intersect.hpp │ │ │ │ ├── intersect.inl │ │ │ │ ├── io.hpp │ │ │ │ ├── io.inl │ │ │ │ ├── log_base.hpp │ │ │ │ ├── log_base.inl │ │ │ │ ├── matrix_cross_product.hpp │ │ │ │ ├── matrix_cross_product.inl │ │ │ │ ├── matrix_interpolation.hpp │ │ │ │ ├── matrix_interpolation.inl │ │ │ │ ├── matrix_major_storage.hpp │ │ │ │ ├── matrix_major_storage.inl │ │ │ │ ├── matrix_operation.hpp │ │ │ │ ├── matrix_operation.inl │ │ │ │ ├── matrix_query.hpp │ │ │ │ ├── matrix_query.inl │ │ │ │ ├── matrix_transform_2d.hpp │ │ │ │ ├── matrix_transform_2d.inl │ │ │ │ ├── mixed_product.hpp │ │ │ │ ├── mixed_product.inl │ │ │ │ ├── multiple.hpp │ │ │ │ ├── multiple.inl │ │ │ │ ├── noise.hpp │ │ │ │ ├── norm.hpp │ │ │ │ ├── norm.inl │ │ │ │ ├── normal.hpp │ │ │ │ ├── normal.inl │ │ │ │ ├── normalize_dot.hpp │ │ │ │ ├── normalize_dot.inl │ │ │ │ ├── number_precision.hpp │ │ │ │ ├── number_precision.inl │ │ │ │ ├── optimum_pow.hpp │ │ │ │ ├── optimum_pow.inl │ │ │ │ ├── orthonormalize.hpp │ │ │ │ ├── orthonormalize.inl │ │ │ │ ├── perpendicular.hpp │ │ │ │ ├── perpendicular.inl │ │ │ │ ├── polar_coordinates.hpp │ │ │ │ ├── polar_coordinates.inl │ │ │ │ ├── projection.hpp │ │ │ │ ├── projection.inl │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── quaternion.inl │ │ │ │ ├── random.hpp │ │ │ │ ├── raw_data.hpp │ │ │ │ ├── raw_data.inl │ │ │ │ ├── reciprocal.hpp │ │ │ │ ├── rotate_normalized_axis.hpp │ │ │ │ ├── rotate_normalized_axis.inl │ │ │ │ ├── rotate_vector.hpp │ │ │ │ ├── rotate_vector.inl │ │ │ │ ├── scalar_relational.hpp │ │ │ │ ├── scalar_relational.inl │ │ │ │ ├── simd_mat4.hpp │ │ │ │ ├── simd_mat4.inl │ │ │ │ ├── simd_quat.hpp │ │ │ │ ├── simd_quat.inl │ │ │ │ ├── simd_vec4.hpp │ │ │ │ ├── simd_vec4.inl │ │ │ │ ├── spline.hpp │ │ │ │ ├── spline.inl │ │ │ │ ├── std_based_type.hpp │ │ │ │ ├── std_based_type.inl │ │ │ │ ├── string_cast.hpp │ │ │ │ ├── string_cast.inl │ │ │ │ ├── transform.hpp │ │ │ │ ├── transform.inl │ │ │ │ ├── transform2.hpp │ │ │ │ ├── transform2.inl │ │ │ │ ├── ulp.hpp │ │ │ │ ├── unsigned_int.hpp │ │ │ │ ├── unsigned_int.inl │ │ │ │ ├── vec1.hpp │ │ │ │ ├── vec1.inl │ │ │ │ ├── vector_angle.hpp │ │ │ │ ├── vector_angle.inl │ │ │ │ ├── vector_query.hpp │ │ │ │ ├── vector_query.inl │ │ │ │ ├── wrap.hpp │ │ │ │ └── wrap.inl │ │ │ ├── integer.hpp │ │ │ ├── mat2x2.hpp │ │ │ ├── mat2x3.hpp │ │ │ ├── mat2x4.hpp │ │ │ ├── mat3x2.hpp │ │ │ ├── mat3x3.hpp │ │ │ ├── mat3x4.hpp │ │ │ ├── mat4x2.hpp │ │ │ ├── mat4x3.hpp │ │ │ ├── mat4x4.hpp │ │ │ ├── matrix.hpp │ │ │ ├── packing.hpp │ │ │ ├── trigonometric.hpp │ │ │ ├── vec2.hpp │ │ │ ├── vec3.hpp │ │ │ ├── vec4.hpp │ │ │ ├── vector_relational.hpp │ │ │ └── virtrev │ │ │ │ └── xstream.hpp │ │ ├── indexbuf.cpp │ │ ├── indexbuf.hpp │ │ ├── input_util.cpp │ │ ├── input_util.hpp │ │ ├── jni_util.cpp │ │ ├── jni_util.hpp │ │ ├── joystick-support.hpp │ │ ├── libgame.map.txt │ │ ├── native_engine.cpp │ │ ├── native_engine.hpp │ │ ├── obstacle.cpp │ │ ├── obstacle.hpp │ │ ├── obstacle_generator.cpp │ │ ├── obstacle_generator.hpp │ │ ├── our_key_codes.hpp │ │ ├── our_shader.cpp │ │ ├── our_shader.hpp │ │ ├── play_scene.cpp │ │ ├── play_scene.hpp │ │ ├── scene.cpp │ │ ├── scene.hpp │ │ ├── scene_manager.cpp │ │ ├── scene_manager.hpp │ │ ├── sfxman.cpp │ │ ├── sfxman.hpp │ │ ├── shader.cpp │ │ ├── shader.hpp │ │ ├── shape_renderer.cpp │ │ ├── shape_renderer.hpp │ │ ├── simplegeom.hpp │ │ ├── tex_quad.cpp │ │ ├── tex_quad.hpp │ │ ├── text_renderer.cpp │ │ ├── text_renderer.hpp │ │ ├── texture.cpp │ │ ├── texture.hpp │ │ ├── ui_scene.cpp │ │ ├── ui_scene.hpp │ │ ├── util.cpp │ │ ├── util.hpp │ │ ├── vertexbuf.cpp │ │ ├── vertexbuf.hpp │ │ ├── welcome_scene.cpp │ │ └── welcome_scene.hpp │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── screenshot.png ├── exceptions ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── exception_helper.cpp │ │ ├── exception_helper.h │ │ ├── libexceptions.map.txt │ │ └── native-lib.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── exceptions │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml └── screenshot.png ├── gles3jni ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── RendererES2.cpp │ │ ├── RendererES3.cpp │ │ ├── gles3jni.cpp │ │ ├── gles3jni.h │ │ └── libgles3jni.map.txt │ │ ├── java │ │ └── com │ │ │ └── android │ │ │ └── gles3jni │ │ │ ├── GLES3JNIActivity.java │ │ │ ├── GLES3JNILib.java │ │ │ └── GLES3JNIView.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hello-gl2 ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── gl_code.cpp │ │ └── libgl2jni.map.txt │ │ ├── java │ │ └── com │ │ │ └── android │ │ │ └── gl2jni │ │ │ ├── GL2JNIActivity.java │ │ │ ├── GL2JNILib.java │ │ │ └── GL2JNIView.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── hello-jni ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── hello-jni.cpp │ │ └── libhello-jni.map.txt │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── hellojni │ │ │ └── HelloJni.kt │ │ └── res │ │ ├── layout │ │ └── activity_hello_jni.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── screenshot.png ├── hello-jniCallback ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── hello-jnicallback.cpp │ │ └── libhello-jnicallback.map.txt │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── hellojnicallback │ │ │ ├── JniHandler.java │ │ │ └── MainActivity.java │ │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── screenshot.png ├── hello-oboe └── README.md ├── hello-vulkan ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── hellovk.h │ │ ├── libhellovkjni.map.txt │ │ └── vk_main.cpp │ │ ├── java │ │ └── com │ │ │ └── android │ │ │ └── hellovk │ │ │ └── VulkanActivity.kt │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── values │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ └── shaders │ │ ├── shader.frag │ │ └── shader.vert └── documentation-assets │ └── example-triangle.png ├── native-activity ├── README.md └── app │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── libnative-activity.map.txt │ └── main.cpp │ └── res │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ └── strings.xml ├── native-audio ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── README.txt │ │ └── background.mp3 │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── android_clip.h │ │ ├── hello_clip.h │ │ ├── libnative-audio-jni.map.txt │ │ └── native-audio-jni.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── nativeaudio │ │ │ └── NativeAudio.java │ │ └── res │ │ ├── layout │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── native-codec ├── README.md ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── clips │ │ │ └── testfile.mp4 │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── libnative-codec-jni.map.txt │ │ ├── looper.cpp │ │ ├── looper.h │ │ └── native-codec-jni.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── nativecodec │ │ │ ├── MyGLSurfaceView.java │ │ │ └── NativeCodec.java │ │ └── res │ │ ├── layout │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── native-media └── README.md ├── native-midi ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── AndroidDebug.h │ │ ├── AppMidiManager.cpp │ │ ├── CMakeLists.txt │ │ ├── MainActivity.cpp │ │ ├── MidiSpec.h │ │ └── libnative_midi.map.txt │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── nativemidi │ │ │ ├── AppMidiManager.java │ │ │ ├── MainActivity.java │ │ │ ├── MidiDataHelper.java │ │ │ └── MidiSpec.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── config.png └── screenshot.png ├── nn-samples └── README.md ├── orderfile ├── README.md └── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── liborderfiledemo.map.txt │ └── orderfile.cpp │ ├── java │ └── com │ │ └── example │ │ └── orderfiledemo │ │ └── MainActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── prefab └── README.md ├── san-angeles └── README.md ├── sanitizers ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── asan │ │ └── resources │ │ │ └── .gitignore │ │ ├── hwasan │ │ └── resources │ │ │ └── lib │ │ │ └── arm64-v8a │ │ │ └── wrap.sh │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── libsanitizers.map.txt │ │ └── native-lib.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── sanitizers │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── asan.png ├── hwasan.png └── ubsan.png ├── sensor-graph ├── README.md ├── accelerometer │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── shader.glslf │ │ └── shader.glslv │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── libaccelerometergraph.map.txt │ │ └── sensorgraph.cpp │ │ ├── java │ │ └── com │ │ │ └── android │ │ │ └── accelerometergraph │ │ │ ├── AccelerometerGraphActivity.java │ │ │ └── AccelerometerGraphJNI.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── screenshot.png ├── settings.gradle ├── teapots ├── .gitignore ├── README.md ├── choreographer-30fps │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── Shaders │ │ │ ├── ShaderPlain.fsh │ │ │ └── VS_ShaderPlain.vsh │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── ChoreographerNativeActivity.cpp │ │ ├── TeapotRenderer.cpp │ │ ├── TeapotRenderer.h │ │ ├── libChoreographerNativeActivity.map.txt │ │ └── teapot.inl │ │ ├── java │ │ └── com │ │ │ └── sample │ │ │ ├── choreographer │ │ │ ├── ChoreographerApplication.java │ │ │ └── ChoreographerNativeActivity.java │ │ │ └── helper │ │ │ └── NDKHelper.java │ │ └── res │ │ ├── layout │ │ └── widgets.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── classic-teapot │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── Shaders │ │ │ ├── ShaderPlain.fsh │ │ │ └── VS_ShaderPlain.vsh │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── TeapotNativeActivity.cpp │ │ ├── TeapotRenderer.cpp │ │ ├── TeapotRenderer.h │ │ ├── libTeapotNativeActivity.map.txt │ │ └── teapot.inl │ │ ├── java │ │ └── com │ │ │ └── sample │ │ │ ├── helper │ │ │ └── NDKHelper.java │ │ │ └── teapot │ │ │ ├── TeapotApplication.java │ │ │ └── TeapotNativeActivity.java │ │ └── res │ │ ├── layout │ │ └── widgets.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── common │ └── ndk_helper │ │ ├── CMakeLists.txt │ │ ├── GLContext.cpp │ │ ├── GLContext.h │ │ ├── JNIHelper.cpp │ │ ├── JNIHelper.h │ │ ├── NDKHelper.h │ │ ├── gestureDetector.cpp │ │ ├── gestureDetector.h │ │ ├── gl3stub.c │ │ ├── gl3stub.cpp │ │ ├── gl3stub.h │ │ ├── interpolator.cpp │ │ ├── interpolator.h │ │ ├── perfMonitor.cpp │ │ ├── perfMonitor.h │ │ ├── sensorManager.cpp │ │ ├── sensorManager.h │ │ ├── shader.cpp │ │ ├── shader.h │ │ ├── tapCamera.cpp │ │ ├── tapCamera.h │ │ ├── vecmath.cpp │ │ └── vecmath.h ├── image-decoder │ ├── README.md │ ├── build.gradle │ ├── screenshot.png │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── Shaders │ │ │ ├── 2DTexture.fsh │ │ │ ├── 2DTexture.vsh │ │ │ ├── Cubemap.fsh │ │ │ ├── Cubemap.vsh │ │ │ ├── ShaderPlain.fsh │ │ │ └── VS_ShaderPlain.vsh │ │ └── Textures │ │ │ ├── back.png │ │ │ ├── bottom.png │ │ │ ├── front.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── top.png │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── ImageDecoderRender.cpp │ │ ├── ImageDecoderRender.h │ │ ├── TeapotNativeActivity.cpp │ │ ├── TeapotRenderer.cpp │ │ ├── TeapotRenderer.h │ │ ├── Texture.cpp │ │ ├── Texture.h │ │ ├── android_debug.h │ │ ├── libImageDecoderNativeActivity.map.txt │ │ └── teapot.inl │ │ ├── java │ │ └── com │ │ │ └── sample │ │ │ ├── helper │ │ │ └── NDKHelper.java │ │ │ └── imagedecoder │ │ │ ├── TeapotApplication.java │ │ │ └── TeapotNativeActivity.java │ │ └── res │ │ ├── layout │ │ └── widgets.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── more-teapots │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── Shaders │ │ │ ├── ShaderPlain.fsh │ │ │ ├── ShaderPlainES3.fsh │ │ │ ├── VS_ShaderPlain.vsh │ │ │ └── VS_ShaderPlainES3.vsh │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── MoreTeapotsNativeActivity.cpp │ │ ├── MoreTeapotsRenderer.cpp │ │ ├── MoreTeapotsRenderer.h │ │ ├── libMoreTeapotsNativeActivity.map.txt │ │ └── teapot.inl │ │ ├── java │ │ └── com │ │ │ └── sample │ │ │ ├── helper │ │ │ └── NDKHelper.java │ │ │ └── moreteapots │ │ │ ├── MoreTeapotsApplication.java │ │ │ └── MoreTeapotsNativeActivity.java │ │ └── res │ │ ├── layout │ │ └── widgets.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── screenshot.png └── textured-teapot │ ├── README.md │ ├── build.gradle │ ├── screenshot.png │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── Shaders │ │ ├── 2DTexture.fsh │ │ ├── 2DTexture.vsh │ │ ├── Cubemap.fsh │ │ ├── Cubemap.vsh │ │ ├── ShaderPlain.fsh │ │ └── VS_ShaderPlain.vsh │ └── Textures │ │ ├── android_pie.bmp │ │ ├── back.tga │ │ ├── bottom.tga │ │ ├── front.tga │ │ ├── left.tga │ │ ├── right.tga │ │ └── top.tga │ ├── cpp │ ├── AssetUtil.cpp │ ├── AssetUtil.h │ ├── CMakeLists.txt │ ├── TeapotNativeActivity.cpp │ ├── TeapotRenderer.cpp │ ├── TeapotRenderer.h │ ├── Texture.cpp │ ├── Texture.h │ ├── TexturedTeapotRender.cpp │ ├── TexturedTeapotRender.h │ ├── android_debug.h │ ├── libTexturedTeapotNativeActivity.map.txt │ └── teapot.inl │ ├── java │ └── com │ │ └── sample │ │ ├── helper │ │ └── NDKHelper.java │ │ └── texturedteapot │ │ ├── TeapotApplication.java │ │ └── TeapotNativeActivity.java │ └── res │ ├── layout │ └── widgets.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-v11 │ └── styles.xml │ ├── values-v14 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── unit-test ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── unittest │ │ │ └── NativeTests.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── adder.cpp │ │ ├── adder.h │ │ ├── adder_test.cpp │ │ ├── libunittest.map.txt │ │ └── native-lib.cpp │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── unittest │ │ │ └── MainActivity.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml └── screenshot.png └── vectorization ├── .gitignore ├── README.md ├── build.gradle.kts └── src └── main ├── AndroidManifest.xml ├── cpp ├── CMakeLists.txt ├── auto_vectorization.h ├── benchmark.cpp ├── benchmark.h ├── clang_vector.h ├── jni.cpp ├── libapp.map.txt ├── matrix.h └── omp_simd.h ├── java └── com │ └── android │ └── ndk │ └── samples │ └── vectorization │ ├── VectorizationActivity.kt │ └── ui │ └── theme │ ├── Color.kt │ ├── Theme.kt │ └── Type.kt └── res ├── drawable-v24 └── ic_launcher_foreground.xml ├── drawable └── ic_launcher_background.xml ├── mipmap-anydpi-v26 ├── ic_launcher.xml └── ic_launcher_round.xml ├── mipmap-hdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-mdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp ├── mipmap-xxxhdpi ├── ic_launcher.webp └── ic_launcher_round.webp └── values ├── colors.xml ├── strings.xml └── themes.xml /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | DerivePointerAlignment: false 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.google/packaging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/.google/packaging.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/README.md -------------------------------------------------------------------------------- /REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/REFERENCE.md -------------------------------------------------------------------------------- /audio-echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/audio-echo/README.md -------------------------------------------------------------------------------- /base/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /base/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/build.gradle.kts -------------------------------------------------------------------------------- /base/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /base/src/main/cpp/include/base/errno_restorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/include/base/errno_restorer.h -------------------------------------------------------------------------------- /base/src/main/cpp/include/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/include/base/logging.h -------------------------------------------------------------------------------- /base/src/main/cpp/include/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/include/base/macros.h -------------------------------------------------------------------------------- /base/src/main/cpp/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/logging.cpp -------------------------------------------------------------------------------- /base/src/main/cpp/logging_splitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/base/src/main/cpp/logging_splitters.h -------------------------------------------------------------------------------- /bitmap-plasma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/README.md -------------------------------------------------------------------------------- /bitmap-plasma/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/build.gradle -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/cpp/jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/cpp/jni.cpp -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/cpp/libplasma.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/cpp/libplasma.map.txt -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/cpp/plasma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/cpp/plasma.cpp -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/cpp/plasma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/cpp/plasma.h -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bitmap-plasma/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bitmap-plasma/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/bitmap-plasma/screenshot.png -------------------------------------------------------------------------------- /camera/Camera2ProgrammingModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/Camera2ProgrammingModel.png -------------------------------------------------------------------------------- /camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/README.md -------------------------------------------------------------------------------- /camera/basic/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/build.gradle -------------------------------------------------------------------------------- /camera/basic/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/android_main.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_engine.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_engine.h -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_listeners.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_manager.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_manager.h -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/camera_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/camera_ui.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/image_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/image_reader.cpp -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/image_reader.h -------------------------------------------------------------------------------- /camera/basic/src/main/cpp/libndk_camera.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/cpp/libndk_camera.map.txt -------------------------------------------------------------------------------- /camera/basic/src/main/res/drawable/camera_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/drawable/camera_button.png -------------------------------------------------------------------------------- /camera/basic/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /camera/basic/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /camera/basic/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /camera/basic/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /camera/basic/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /camera/basic/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/basic/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /camera/camera-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/camera-utils/build.gradle.kts -------------------------------------------------------------------------------- /camera/camera-utils/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/camera-utils/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /camera/camera-utils/src/main/cpp/camera_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/camera-utils/src/main/cpp/camera_utils.cpp -------------------------------------------------------------------------------- /camera/ndkCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/ndkCamera.png -------------------------------------------------------------------------------- /camera/texture-view/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/build.gradle -------------------------------------------------------------------------------- /camera/texture-view/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/android_main.cpp -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/camera_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/camera_engine.cpp -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/camera_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/camera_engine.h -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/camera_listeners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/camera_listeners.cpp -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/camera_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/camera_manager.cpp -------------------------------------------------------------------------------- /camera/texture-view/src/main/cpp/camera_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/cpp/camera_manager.h -------------------------------------------------------------------------------- /camera/texture-view/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /camera/texture-view/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/camera/texture-view/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /cmake/AppLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/cmake/AppLibrary.cmake -------------------------------------------------------------------------------- /docs/run-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/docs/run-sample.png -------------------------------------------------------------------------------- /endless-tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/README.md -------------------------------------------------------------------------------- /endless-tunnel/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/build.gradle -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/android_main.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/anim.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/anim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/anim.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/ascii_to_geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/ascii_to_geom.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/ascii_to_geom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/ascii_to_geom.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/common.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/alphabet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/alphabet.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/ascii_art.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/ascii_art.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/blurb.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/blurb.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/cube_geom.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/cube_geom.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/our_shader.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/our_shader.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/strings.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/strings.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/data/tunnel_geom.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/data/tunnel_geom.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/dialog_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/dialog_scene.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/dialog_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/dialog_scene.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/engine.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/game_consts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/game_consts.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/CMakeLists.txt -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/common.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_features.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_common.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/glm.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/hint.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/precision.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/setup.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_half.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/exponential.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/ext.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/fwd.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/geometric.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/glm.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/constants.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/noise.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/packing.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/random.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/random.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/bit.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/extend.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/integer.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/io.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/io.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/norm.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/normal.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/projection.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/random.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/spline.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/transform.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/integer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat2x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat2x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat2x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat3x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat3x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat3x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat4x2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat4x3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/mat4x4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/matrix.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/packing.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/trigonometric.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/vec2.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/vec3.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/vec4.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/vector_relational.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/indexbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/indexbuf.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/indexbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/indexbuf.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/input_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/input_util.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/input_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/input_util.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/jni_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/jni_util.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/jni_util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/jni_util.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/joystick-support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/joystick-support.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/libgame.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/libgame.map.txt -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/native_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/native_engine.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/native_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/native_engine.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/obstacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/obstacle.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/obstacle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/obstacle.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/obstacle_generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/obstacle_generator.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/obstacle_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/obstacle_generator.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/our_key_codes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/our_key_codes.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/our_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/our_shader.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/our_shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/our_shader.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/play_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/play_scene.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/play_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/play_scene.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/scene.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/scene.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/scene_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/scene_manager.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/scene_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/scene_manager.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/sfxman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/sfxman.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/sfxman.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/sfxman.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/shader.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/shader.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/shape_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/shape_renderer.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/shape_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/shape_renderer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/simplegeom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/simplegeom.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/tex_quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/tex_quad.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/tex_quad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/tex_quad.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/text_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/text_renderer.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/text_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/text_renderer.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/texture.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/texture.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/ui_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/ui_scene.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/ui_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/ui_scene.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/util.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/util.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/vertexbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/vertexbuf.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/vertexbuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/vertexbuf.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/welcome_scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/welcome_scene.cpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/cpp/welcome_scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/cpp/welcome_scene.hpp -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /endless-tunnel/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /endless-tunnel/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/endless-tunnel/screenshot.png -------------------------------------------------------------------------------- /exceptions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/.gitignore -------------------------------------------------------------------------------- /exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/README.md -------------------------------------------------------------------------------- /exceptions/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /exceptions/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/build.gradle -------------------------------------------------------------------------------- /exceptions/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/proguard-rules.pro -------------------------------------------------------------------------------- /exceptions/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /exceptions/app/src/main/cpp/exception_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/cpp/exception_helper.cpp -------------------------------------------------------------------------------- /exceptions/app/src/main/cpp/exception_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/cpp/exception_helper.h -------------------------------------------------------------------------------- /exceptions/app/src/main/cpp/libexceptions.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/cpp/libexceptions.map.txt -------------------------------------------------------------------------------- /exceptions/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /exceptions/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /exceptions/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /exceptions/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/exceptions/screenshot.png -------------------------------------------------------------------------------- /gles3jni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/README.md -------------------------------------------------------------------------------- /gles3jni/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/build.gradle -------------------------------------------------------------------------------- /gles3jni/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/RendererES2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/RendererES2.cpp -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/RendererES3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/RendererES3.cpp -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/gles3jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/gles3jni.cpp -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/gles3jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/gles3jni.h -------------------------------------------------------------------------------- /gles3jni/app/src/main/cpp/libgles3jni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/cpp/libgles3jni.map.txt -------------------------------------------------------------------------------- /gles3jni/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /gles3jni/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /gles3jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gles3jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /gles3jni/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gles3jni/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gles3jni/screenshot.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hello-gl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/README.md -------------------------------------------------------------------------------- /hello-gl2/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/build.gradle -------------------------------------------------------------------------------- /hello-gl2/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-gl2/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hello-gl2/app/src/main/cpp/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/cpp/gl_code.cpp -------------------------------------------------------------------------------- /hello-gl2/app/src/main/cpp/libgl2jni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/cpp/libgl2jni.map.txt -------------------------------------------------------------------------------- /hello-gl2/app/src/main/java/com/android/gl2jni/GL2JNILib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/java/com/android/gl2jni/GL2JNILib.java -------------------------------------------------------------------------------- /hello-gl2/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-gl2/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-gl2/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-gl2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-gl2/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hello-gl2/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-gl2/screenshot.png -------------------------------------------------------------------------------- /hello-jni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/README.md -------------------------------------------------------------------------------- /hello-jni/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /hello-jni/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/build.gradle -------------------------------------------------------------------------------- /hello-jni/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/proguard-rules.pro -------------------------------------------------------------------------------- /hello-jni/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hello-jni/app/src/main/cpp/hello-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/cpp/hello-jni.cpp -------------------------------------------------------------------------------- /hello-jni/app/src/main/cpp/libhello-jni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/cpp/libhello-jni.map.txt -------------------------------------------------------------------------------- /hello-jni/app/src/main/java/com/example/hellojni/HelloJni.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/java/com/example/hellojni/HelloJni.kt -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/layout/activity_hello_jni.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/layout/activity_hello_jni.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hello-jni/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /hello-jni/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jni/screenshot.png -------------------------------------------------------------------------------- /hello-jniCallback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/README.md -------------------------------------------------------------------------------- /hello-jniCallback/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /hello-jniCallback/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/build.gradle -------------------------------------------------------------------------------- /hello-jniCallback/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/proguard-rules.pro -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/cpp/hello-jnicallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/cpp/hello-jnicallback.cpp -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hello-jniCallback/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /hello-jniCallback/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-jniCallback/screenshot.png -------------------------------------------------------------------------------- /hello-oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-oboe/README.md -------------------------------------------------------------------------------- /hello-vulkan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/README.md -------------------------------------------------------------------------------- /hello-vulkan/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/build.gradle -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/cpp/hellovk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/cpp/hellovk.h -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/cpp/libhellovkjni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/cpp/libhellovkjni.map.txt -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/cpp/vk_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/cpp/vk_main.cpp -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/shaders/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/shaders/shader.frag -------------------------------------------------------------------------------- /hello-vulkan/app/src/main/shaders/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/app/src/main/shaders/shader.vert -------------------------------------------------------------------------------- /hello-vulkan/documentation-assets/example-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/hello-vulkan/documentation-assets/example-triangle.png -------------------------------------------------------------------------------- /native-activity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/README.md -------------------------------------------------------------------------------- /native-activity/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/build.gradle -------------------------------------------------------------------------------- /native-activity/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-activity/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /native-activity/app/src/main/cpp/libnative-activity.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/cpp/libnative-activity.map.txt -------------------------------------------------------------------------------- /native-activity/app/src/main/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/cpp/main.cpp -------------------------------------------------------------------------------- /native-activity/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-activity/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-activity/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-activity/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-activity/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-audio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/README.md -------------------------------------------------------------------------------- /native-audio/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/build.gradle -------------------------------------------------------------------------------- /native-audio/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-audio/app/src/main/assets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/assets/README.txt -------------------------------------------------------------------------------- /native-audio/app/src/main/assets/background.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/assets/background.mp3 -------------------------------------------------------------------------------- /native-audio/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /native-audio/app/src/main/cpp/android_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/cpp/android_clip.h -------------------------------------------------------------------------------- /native-audio/app/src/main/cpp/hello_clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/cpp/hello_clip.h -------------------------------------------------------------------------------- /native-audio/app/src/main/cpp/libnative-audio-jni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/cpp/libnative-audio-jni.map.txt -------------------------------------------------------------------------------- /native-audio/app/src/main/cpp/native-audio-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/cpp/native-audio-jni.cpp -------------------------------------------------------------------------------- /native-audio/app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /native-audio/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-audio/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-audio/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-audio/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-audio/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-audio/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-audio/screenshot.png -------------------------------------------------------------------------------- /native-codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/README.md -------------------------------------------------------------------------------- /native-codec/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/build.gradle -------------------------------------------------------------------------------- /native-codec/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-codec/app/src/main/assets/clips/testfile.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/assets/clips/testfile.mp4 -------------------------------------------------------------------------------- /native-codec/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /native-codec/app/src/main/cpp/libnative-codec-jni.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/cpp/libnative-codec-jni.map.txt -------------------------------------------------------------------------------- /native-codec/app/src/main/cpp/looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/cpp/looper.cpp -------------------------------------------------------------------------------- /native-codec/app/src/main/cpp/looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/cpp/looper.h -------------------------------------------------------------------------------- /native-codec/app/src/main/cpp/native-codec-jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/cpp/native-codec-jni.cpp -------------------------------------------------------------------------------- /native-codec/app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /native-codec/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-codec/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-codec/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-codec/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-codec/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-codec/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-codec/screenshot.png -------------------------------------------------------------------------------- /native-media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-media/README.md -------------------------------------------------------------------------------- /native-midi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/README.md -------------------------------------------------------------------------------- /native-midi/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /native-midi/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/build.gradle -------------------------------------------------------------------------------- /native-midi/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/proguard-rules.pro -------------------------------------------------------------------------------- /native-midi/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/AndroidDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/AndroidDebug.h -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/AppMidiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/AppMidiManager.cpp -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/MainActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/MainActivity.cpp -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/MidiSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/MidiSpec.h -------------------------------------------------------------------------------- /native-midi/app/src/main/cpp/libnative_midi.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/cpp/libnative_midi.map.txt -------------------------------------------------------------------------------- /native-midi/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-midi/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-midi/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-midi/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-midi/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native-midi/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /native-midi/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /native-midi/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/config.png -------------------------------------------------------------------------------- /native-midi/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/native-midi/screenshot.png -------------------------------------------------------------------------------- /nn-samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/nn-samples/README.md -------------------------------------------------------------------------------- /orderfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/README.md -------------------------------------------------------------------------------- /orderfile/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /orderfile/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/build.gradle -------------------------------------------------------------------------------- /orderfile/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/proguard-rules.pro -------------------------------------------------------------------------------- /orderfile/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /orderfile/app/src/main/cpp/liborderfiledemo.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/cpp/liborderfiledemo.map.txt -------------------------------------------------------------------------------- /orderfile/app/src/main/cpp/orderfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/cpp/orderfile.cpp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /orderfile/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /orderfile/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/orderfile/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /prefab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/prefab/README.md -------------------------------------------------------------------------------- /san-angeles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/san-angeles/README.md -------------------------------------------------------------------------------- /sanitizers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/.gitignore -------------------------------------------------------------------------------- /sanitizers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/README.md -------------------------------------------------------------------------------- /sanitizers/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/.gitignore -------------------------------------------------------------------------------- /sanitizers/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/build.gradle -------------------------------------------------------------------------------- /sanitizers/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/proguard-rules.pro -------------------------------------------------------------------------------- /sanitizers/app/src/asan/resources/.gitignore: -------------------------------------------------------------------------------- 1 | # These are installed by the cmake build. 2 | wrap.sh 3 | -------------------------------------------------------------------------------- /sanitizers/app/src/hwasan/resources/lib/arm64-v8a/wrap.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | LD_HWASAN=1 exec "$@" 3 | -------------------------------------------------------------------------------- /sanitizers/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sanitizers/app/src/main/cpp/libsanitizers.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/cpp/libsanitizers.map.txt -------------------------------------------------------------------------------- /sanitizers/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /sanitizers/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /sanitizers/asan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/asan.png -------------------------------------------------------------------------------- /sanitizers/hwasan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/hwasan.png -------------------------------------------------------------------------------- /sanitizers/ubsan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sanitizers/ubsan.png -------------------------------------------------------------------------------- /sensor-graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/README.md -------------------------------------------------------------------------------- /sensor-graph/accelerometer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/build.gradle -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/assets/shader.glslf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/assets/shader.glslf -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/assets/shader.glslv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/assets/shader.glslv -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/cpp/sensorgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/cpp/sensorgraph.cpp -------------------------------------------------------------------------------- /sensor-graph/accelerometer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/accelerometer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sensor-graph/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/sensor-graph/screenshot.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/settings.gradle -------------------------------------------------------------------------------- /teapots/.gitignore: -------------------------------------------------------------------------------- 1 | **/stb 2 | 3 | -------------------------------------------------------------------------------- /teapots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/README.md -------------------------------------------------------------------------------- /teapots/choreographer-30fps/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/build.gradle -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/cpp/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/cpp/TeapotRenderer.cpp -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/cpp/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/cpp/TeapotRenderer.h -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/cpp/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/cpp/teapot.inl -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /teapots/choreographer-30fps/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/choreographer-30fps/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/build.gradle -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/cpp/TeapotNativeActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/cpp/TeapotNativeActivity.cpp -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/cpp/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/cpp/TeapotRenderer.cpp -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/cpp/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/cpp/TeapotRenderer.h -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/cpp/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/cpp/teapot.inl -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /teapots/classic-teapot/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/classic-teapot/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /teapots/common/ndk_helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/common/ndk_helper/GLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/GLContext.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/GLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/GLContext.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/JNIHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/JNIHelper.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/JNIHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/JNIHelper.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/NDKHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/NDKHelper.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/gestureDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/gestureDetector.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/gestureDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/gestureDetector.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/gl3stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/gl3stub.c -------------------------------------------------------------------------------- /teapots/common/ndk_helper/gl3stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/gl3stub.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/gl3stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/gl3stub.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/interpolator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/interpolator.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/interpolator.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/perfMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/perfMonitor.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/perfMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/perfMonitor.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/sensorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/sensorManager.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/sensorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/sensorManager.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/shader.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/shader.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/tapCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/tapCamera.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/tapCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/tapCamera.h -------------------------------------------------------------------------------- /teapots/common/ndk_helper/vecmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/vecmath.cpp -------------------------------------------------------------------------------- /teapots/common/ndk_helper/vecmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/common/ndk_helper/vecmath.h -------------------------------------------------------------------------------- /teapots/image-decoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/README.md -------------------------------------------------------------------------------- /teapots/image-decoder/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/build.gradle -------------------------------------------------------------------------------- /teapots/image-decoder/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/screenshot.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Shaders/2DTexture.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Shaders/2DTexture.fsh -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Shaders/2DTexture.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Shaders/2DTexture.vsh -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Shaders/Cubemap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Shaders/Cubemap.fsh -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Shaders/Cubemap.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Shaders/Cubemap.vsh -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Shaders/ShaderPlain.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Shaders/ShaderPlain.fsh -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/back.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/bottom.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/front.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/left.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/right.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/assets/Textures/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/assets/Textures/top.png -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/ImageDecoderRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/ImageDecoderRender.cpp -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/ImageDecoderRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/ImageDecoderRender.h -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/TeapotNativeActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/TeapotNativeActivity.cpp -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/TeapotRenderer.cpp -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/TeapotRenderer.h -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/Texture.cpp -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/Texture.h -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/android_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/android_debug.h -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/cpp/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/cpp/teapot.inl -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /teapots/image-decoder/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/image-decoder/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /teapots/more-teapots/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/build.gradle -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/assets/Shaders/ShaderPlain.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/assets/Shaders/ShaderPlain.fsh -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/cpp/MoreTeapotsRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/cpp/MoreTeapotsRenderer.cpp -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/cpp/MoreTeapotsRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/cpp/MoreTeapotsRenderer.h -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/cpp/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/cpp/teapot.inl -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /teapots/more-teapots/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/more-teapots/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /teapots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/screenshot.png -------------------------------------------------------------------------------- /teapots/textured-teapot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/README.md -------------------------------------------------------------------------------- /teapots/textured-teapot/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/build.gradle -------------------------------------------------------------------------------- /teapots/textured-teapot/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/screenshot.png -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Shaders/2DTexture.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Shaders/2DTexture.fsh -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Shaders/2DTexture.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Shaders/2DTexture.vsh -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Shaders/Cubemap.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Shaders/Cubemap.fsh -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Shaders/Cubemap.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Shaders/Cubemap.vsh -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/back.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/back.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/bottom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/bottom.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/front.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/front.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/left.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/right.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/assets/Textures/top.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/assets/Textures/top.tga -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/AssetUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/AssetUtil.cpp -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/AssetUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/AssetUtil.h -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/TeapotNativeActivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/TeapotNativeActivity.cpp -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/TeapotRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/TeapotRenderer.cpp -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/TeapotRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/TeapotRenderer.h -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/Texture.cpp -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/Texture.h -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/TexturedTeapotRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/TexturedTeapotRender.cpp -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/TexturedTeapotRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/TexturedTeapotRender.h -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/android_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/android_debug.h -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/cpp/teapot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/cpp/teapot.inl -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/res/layout/widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/res/layout/widgets.xml -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /teapots/textured-teapot/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/teapots/textured-teapot/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /unit-test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/.gitignore -------------------------------------------------------------------------------- /unit-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/README.md -------------------------------------------------------------------------------- /unit-test/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /unit-test/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/build.gradle -------------------------------------------------------------------------------- /unit-test/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/proguard-rules.pro -------------------------------------------------------------------------------- /unit-test/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/adder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/adder.cpp -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/adder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/adder.h -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/adder_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/adder_test.cpp -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/libunittest.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/libunittest.map.txt -------------------------------------------------------------------------------- /unit-test/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /unit-test/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /unit-test/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /unit-test/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/unit-test/screenshot.png -------------------------------------------------------------------------------- /vectorization/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vectorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/README.md -------------------------------------------------------------------------------- /vectorization/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/build.gradle.kts -------------------------------------------------------------------------------- /vectorization/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /vectorization/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /vectorization/src/main/cpp/auto_vectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/auto_vectorization.h -------------------------------------------------------------------------------- /vectorization/src/main/cpp/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/benchmark.cpp -------------------------------------------------------------------------------- /vectorization/src/main/cpp/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/benchmark.h -------------------------------------------------------------------------------- /vectorization/src/main/cpp/clang_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/clang_vector.h -------------------------------------------------------------------------------- /vectorization/src/main/cpp/jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/jni.cpp -------------------------------------------------------------------------------- /vectorization/src/main/cpp/libapp.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/libapp.map.txt -------------------------------------------------------------------------------- /vectorization/src/main/cpp/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/matrix.h -------------------------------------------------------------------------------- /vectorization/src/main/cpp/omp_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/cpp/omp_simd.h -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /vectorization/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /vectorization/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /vectorization/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android/ndk-samples/HEAD/vectorization/src/main/res/values/themes.xml --------------------------------------------------------------------------------