├── .gitignore ├── ASSET_LICENSE ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── CMakeLists.txt │ ├── ImageReaderListener.cpp │ ├── ImageReaderListener.h │ ├── cmakemodules │ │ ├── Makefile │ │ ├── RuAddCFlag.cmake │ │ ├── RuAddCXXFlag.cmake │ │ ├── RuAddCompilerFlagsCommon.cmake │ │ ├── RuAddCompilerFlagsGen.py │ │ ├── RuAddSpirV.cmake │ │ ├── RuCheckCAttribute.cmake │ │ ├── RuCheckCXXAttribute.cmake │ │ └── RuCheckCompilerAttributeGen.py │ ├── config.h.in │ ├── native-lib.cpp │ ├── native-lib.h │ ├── ring_buffer.h │ ├── shaders │ │ ├── filter_colour_blast.glsl │ │ ├── filter_drawing4.glsl │ │ ├── filter_lighting.glsl │ │ ├── filter_watercolour_blur.glsl │ │ ├── quad.frag.glsl │ │ └── quad.vert.glsl │ ├── third_party │ │ ├── androidndkgif │ │ │ ├── BaseGifEncoder.cpp │ │ │ ├── BaseGifEncoder.h │ │ │ ├── BitWritingBlock.cpp │ │ │ ├── BitWritingBlock.h │ │ │ ├── CMakeLists.txt │ │ │ ├── FastGifEncoder.cpp │ │ │ ├── FastGifEncoder.h │ │ │ ├── GCTGifEncoder.cpp │ │ │ ├── GCTGifEncoder.h │ │ │ └── LICENSE │ │ ├── filter_height_field │ │ │ ├── LICENSE │ │ │ └── filter_height_field.glsl │ │ ├── filter_shapes │ │ │ ├── LICENSE │ │ │ └── filter_shapes.glsl │ │ ├── filter_watercolour │ │ │ ├── LICENSE │ │ │ └── filter_watercolour.glsl │ │ ├── glm │ │ │ ├── LICENSE │ │ │ ├── common.hpp │ │ │ ├── detail │ │ │ │ ├── _features.hpp │ │ │ │ ├── _fixes.hpp │ │ │ │ ├── _literals.hpp │ │ │ │ ├── _noise.hpp │ │ │ │ ├── _swizzle.hpp │ │ │ │ ├── _swizzle_func.hpp │ │ │ │ ├── _vectorize.hpp │ │ │ │ ├── dummy.cpp │ │ │ │ ├── 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 │ │ └── vulkan_debug │ │ │ ├── LICENSE │ │ │ ├── vulkan_debug.cpp │ │ │ └── vulkan_debug.h │ ├── vulkan-utils │ │ ├── CMakeLists.txt │ │ ├── FilterParams.h │ │ ├── VulkanAHBManager.cpp │ │ ├── VulkanAHBManager.h │ │ ├── VulkanAHardwareBufferImage.cpp │ │ ├── VulkanAHardwareBufferImage.h │ │ ├── VulkanImageRenderer.cpp │ │ ├── VulkanImageRenderer.h │ │ ├── VulkanInstance.cpp │ │ ├── VulkanInstance.h │ │ ├── VulkanSurface.cpp │ │ ├── VulkanSurface.h │ │ ├── VulkanSwapchain.cpp │ │ ├── VulkanSwapchain.h │ │ ├── vulkan_utils.cpp │ │ └── vulkan_utils.h │ └── vulkan_wrapper │ │ ├── vulkan_wrapper.cpp │ │ └── vulkan_wrapper.h │ ├── ic_launcher-web.png │ ├── java │ └── dev │ │ └── hadrosaur │ │ └── vulkanphotobooth │ │ ├── CameraParams.kt │ │ ├── CameraUtils.kt │ │ ├── DeviceInfo.kt │ │ ├── FilterParams.kt │ │ ├── ImageUtils.kt │ │ ├── LeftPanelActivity.kt │ │ ├── MainActivity.kt │ │ ├── MeasureUtils.kt │ │ ├── PrefHelper.kt │ │ ├── RightPanelActivity.kt │ │ ├── VulkanViewModel.kt │ │ └── cameracontroller │ │ ├── Camera2CaptureCallback.kt │ │ ├── Camera2CaptureSessionCallback.kt │ │ ├── Camera2Controller.kt │ │ ├── Camera2DeviceStateCallback.kt │ │ └── Camera2PreviewSessionStateCallback.kt │ └── res │ ├── anim │ ├── progress_indeterminate_horizontal_rect1.xml │ └── progress_indeterminate_horizontal_rect2.xml │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── .idea │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── circular_spinner.xml │ ├── count_down_circle_background.xml │ ├── digit_1_yellow.png │ ├── digit_2_red.png │ ├── digit_3_blue.png │ ├── filter_button_disabled.xml │ ├── filter_button_disabled_drawable.xml │ ├── filter_button_disabled_hover_drawable.xml │ ├── filter_button_disabled_png.png │ ├── filter_button_enabled.xml │ ├── filter_button_enabled_drawable.xml │ ├── filter_button_enabled_hover_drawable.xml │ ├── filter_button_enabled_png.png │ ├── ic_launcher_background.xml │ ├── progress_bar_horizontal.xml │ ├── progress_indeterminate.xml │ ├── slider_bar.xml │ ├── slider_control.xml │ └── vector_drawable_indeterminate.xml │ ├── layout │ ├── activity_left_panel.xml │ ├── activity_main.xml │ └── activity_right_panel.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── progress_indeterminate_horizontal_rect1_scalex.xml │ ├── progress_indeterminate_horizontal_rect1_translatex.xml │ ├── progress_indeterminate_horizontal_rect2_scalex.xml │ └── progress_indeterminate_horizontal_rect2_translatex.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/.gitignore -------------------------------------------------------------------------------- /ASSET_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/ASSET_LICENSE -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/ImageReaderListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/ImageReaderListener.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/ImageReaderListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/ImageReaderListener.h -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/Makefile -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuAddCFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuAddCFlag.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuAddCXXFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuAddCXXFlag.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuAddCompilerFlagsCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuAddCompilerFlagsCommon.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuAddCompilerFlagsGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuAddCompilerFlagsGen.py -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuAddSpirV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuAddSpirV.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuCheckCAttribute.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuCheckCAttribute.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuCheckCXXAttribute.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuCheckCXXAttribute.cmake -------------------------------------------------------------------------------- /app/src/main/cpp/cmakemodules/RuCheckCompilerAttributeGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/cmakemodules/RuCheckCompilerAttributeGen.py -------------------------------------------------------------------------------- /app/src/main/cpp/config.h.in: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #cmakedefine HAVE_C_ATTRIBUTE_ALLOC_SIZE 4 | -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/native-lib.h -------------------------------------------------------------------------------- /app/src/main/cpp/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/ring_buffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/filter_colour_blast.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/filter_colour_blast.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/filter_drawing4.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/filter_drawing4.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/filter_lighting.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/filter_lighting.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/filter_watercolour_blur.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/filter_watercolour_blur.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/quad.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/quad.frag.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/shaders/quad.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/shaders/quad.vert.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/BaseGifEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/BaseGifEncoder.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/BaseGifEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/BaseGifEncoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/BitWritingBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/BitWritingBlock.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/BitWritingBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/BitWritingBlock.h -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/FastGifEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/FastGifEncoder.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/FastGifEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/FastGifEncoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/GCTGifEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/GCTGifEncoder.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/GCTGifEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/GCTGifEncoder.h -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/androidndkgif/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/androidndkgif/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_height_field/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_height_field/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_height_field/filter_height_field.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_height_field/filter_height_field.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_shapes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_shapes/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_shapes/filter_shapes.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_shapes/filter_shapes.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_watercolour/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_watercolour/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/filter_watercolour/filter_watercolour.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/filter_watercolour/filter_watercolour.glsl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/common.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_features.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_common.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/glm.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/hint.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/precision.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/setup.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_half.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/ext.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/fwd.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/geometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/glm.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/constants.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/noise.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/packing.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/random.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/random.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/bit.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/extend.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/integer.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/io.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/io.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/norm.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/normal.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/projection.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/random.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/spline.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/transform.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/integer.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat2x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat2x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat2x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat3x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat3x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat3x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat4x2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat4x3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/mat4x4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/matrix.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/packing.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/trigonometric.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/vec2.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/vec3.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/vec4.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/vector_relational.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/vulkan_debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/vulkan_debug/LICENSE -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/vulkan_debug/vulkan_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/vulkan_debug/vulkan_debug.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/third_party/vulkan_debug/vulkan_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/third_party/vulkan_debug/vulkan_debug.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/FilterParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/FilterParams.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanAHBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanAHBManager.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanAHBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanAHBManager.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanAHardwareBufferImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanAHardwareBufferImage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanAHardwareBufferImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanAHardwareBufferImage.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanImageRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanImageRenderer.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanImageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanImageRenderer.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanInstance.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanInstance.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanSurface.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanSurface.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanSwapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanSwapchain.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/VulkanSwapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/VulkanSwapchain.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/vulkan_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/vulkan_utils.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan-utils/vulkan_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan-utils/vulkan_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan_wrapper/vulkan_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan_wrapper/vulkan_wrapper.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/vulkan_wrapper/vulkan_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/cpp/vulkan_wrapper/vulkan_wrapper.h -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/CameraParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/CameraParams.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/CameraUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/CameraUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/DeviceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/DeviceInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/FilterParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/FilterParams.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/ImageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/ImageUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/LeftPanelActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/LeftPanelActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/MeasureUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/MeasureUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/PrefHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/PrefHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/RightPanelActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/RightPanelActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/VulkanViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/VulkanViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2CaptureCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2CaptureCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2CaptureSessionCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2CaptureSessionCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2Controller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2Controller.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2DeviceStateCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2DeviceStateCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2PreviewSessionStateCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/java/dev/hadrosaur/vulkanphotobooth/cameracontroller/Camera2PreviewSessionStateCallback.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/progress_indeterminate_horizontal_rect1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/anim/progress_indeterminate_horizontal_rect1.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/progress_indeterminate_horizontal_rect2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/anim/progress_indeterminate_horizontal_rect2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/.idea/modules.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/.idea/vcs.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/.idea/workspace.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circular_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/circular_spinner.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/count_down_circle_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/count_down_circle_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/digit_1_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/digit_1_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/digit_2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/digit_2_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/digit_3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/digit_3_blue.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_disabled.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_disabled_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_disabled_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_disabled_hover_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_disabled_hover_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_disabled_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_disabled_png.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_enabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_enabled.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_enabled_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_enabled_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_enabled_hover_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_enabled_hover_drawable.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/filter_button_enabled_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/filter_button_enabled_png.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_bar_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/progress_bar_horizontal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/progress_indeterminate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/progress_indeterminate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/slider_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/slider_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/slider_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/slider_control.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/vector_drawable_indeterminate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/drawable/vector_drawable_indeterminate.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_left_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/layout/activity_left_panel.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_right_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/layout/activity_right_panel.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/progress_indeterminate_horizontal_rect1_scalex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/xml/progress_indeterminate_horizontal_rect1_scalex.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/progress_indeterminate_horizontal_rect1_translatex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/xml/progress_indeterminate_horizontal_rect1_translatex.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/progress_indeterminate_horizontal_rect2_scalex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/xml/progress_indeterminate_horizontal_rect2_scalex.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/progress_indeterminate_horizontal_rect2_translatex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/app/src/main/res/xml/progress_indeterminate_horizontal_rect2_translatex.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chromeos/vulkanphotobooth/HEAD/settings.gradle --------------------------------------------------------------------------------