├── .gitignore ├── Libraries ├── CMakeLists.txt ├── glfw-3.2.1.bin.WIN64 │ ├── COPYING.txt │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── lib-mingw-w64 │ │ ├── glfw3.dll │ │ ├── libglfw3.a │ │ └── libglfw3dll.a │ ├── lib-vc2012 │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ └── glfw3dll.lib │ ├── lib-vc2013 │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ └── glfw3dll.lib │ └── lib-vc2015 │ │ ├── glfw3.dll │ │ ├── glfw3.lib │ │ └── glfw3dll.lib ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ ├── glm.pc.in │ │ ├── glmBuildConfig.cmake.in │ │ └── glmConfig.cmake.in │ ├── cmake_uninstall.cmake.in │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── 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_mat4x4_simd.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 │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── vector_relational.hpp │ │ │ └── vector_relational.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.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 │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ ├── vec1.hpp │ │ │ └── vec1.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.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_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.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 │ │ │ ├── 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 │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── 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 │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ ├── CMakeLists.txt │ │ │ └── bug_ms_vec_static.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_float.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── ext │ │ │ ├── CMakeLists.txt │ │ │ ├── ext_vec1.cpp │ │ │ └── ext_vector_relational.cpp │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_aligned.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ └── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx.cpp │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_encoding.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extended_min_max.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_exterior_product.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_functions.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_number_precision.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_texture.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_type_trait.cpp │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── conan-package │ │ ├── .gitignore │ │ ├── FindGLM.cmake │ │ ├── README.md │ │ ├── conanfile.py │ │ ├── lib_licenses │ │ │ ├── LICENSE1.txt │ │ │ └── LICENSE2.txt │ │ └── test_package │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.py │ │ │ └── main.cpp │ │ ├── glm.natvis │ │ └── usertype.dat ├── stb │ ├── .github │ │ ├── CONTRIBUTING.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .travis.yml │ ├── README.md │ ├── data │ │ ├── atari_8bit_font_revised.png │ │ ├── easy_font_raw.png │ │ ├── herringbone │ │ │ ├── license.txt │ │ │ ├── template_caves_limit_connectivity.png │ │ │ ├── template_caves_tiny_corridors.png │ │ │ ├── template_corner_caves.png │ │ │ ├── template_horizontal_corridors_v1.png │ │ │ ├── template_horizontal_corridors_v2.png │ │ │ ├── template_horizontal_corridors_v3.png │ │ │ ├── template_limit_connectivity_fat.png │ │ │ ├── template_limited_connectivity.png │ │ │ ├── template_maze_2_wide.png │ │ │ ├── template_maze_plus_2_wide.png │ │ │ ├── template_open_areas.png │ │ │ ├── template_ref2_corner_caves.png │ │ │ ├── template_rooms_and_corridors.png │ │ │ ├── template_rooms_and_corridors_2_wide_diagonal_bias.png │ │ │ ├── template_rooms_limit_connectivity.png │ │ │ ├── template_round_rooms_diagonal_corridors.png │ │ │ ├── template_sean_dungeon.png │ │ │ ├── template_simple_caves_2_wide.png │ │ │ └── template_square_rooms_with_random_rects.png │ │ ├── map_01.png │ │ ├── map_02.png │ │ └── map_03.png │ ├── deprecated │ │ ├── rrsprintf.h │ │ ├── stb_image.c │ │ └── stretchy_buffer.txt │ ├── docs │ │ ├── other_libs.md │ │ ├── stb_howto.txt │ │ ├── stb_voxel_render_interview.md │ │ └── why_public_domain.md │ ├── stb.h │ ├── stb_c_lexer.h │ ├── stb_connected_components.h │ ├── stb_divide.h │ ├── stb_dxt.h │ ├── stb_easy_font.h │ ├── stb_herringbone_wang_tile.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_leakcheck.h │ ├── stb_perlin.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ ├── stb_textedit.h │ ├── stb_tilemap_editor.h │ ├── stb_truetype.h │ ├── stb_vorbis.c │ ├── stb_voxel_render.h │ ├── stretchy_buffer.h │ ├── tests │ │ ├── Makefile │ │ ├── c_lexer_test.c │ │ ├── c_lexer_test.dsp │ │ ├── caveview │ │ │ ├── README.md │ │ │ ├── cave_main.c │ │ │ ├── cave_mesher.c │ │ │ ├── cave_parse.c │ │ │ ├── cave_parse.h │ │ │ ├── cave_render.c │ │ │ ├── caveview.dsp │ │ │ ├── caveview.dsw │ │ │ ├── caveview.h │ │ │ ├── glext.h │ │ │ ├── glext_list.h │ │ │ ├── main.c │ │ │ ├── stb_gl.h │ │ │ ├── stb_glprog.h │ │ │ └── win32 │ │ │ │ └── SDL_windows_main.c │ │ ├── grid_reachability.c │ │ ├── herringbone.dsp │ │ ├── herringbone_generator.c │ │ ├── herringbone_map.c │ │ ├── herringbone_map.dsp │ │ ├── image_test.c │ │ ├── image_test.dsp │ │ ├── oversample │ │ │ ├── README.md │ │ │ ├── main.c │ │ │ ├── oversample.dsp │ │ │ ├── oversample.dsw │ │ │ ├── oversample.exe │ │ │ └── stb_wingraph.h │ │ ├── pg_test │ │ │ └── pg_test.c │ │ ├── pngsuite │ │ │ ├── 16bit │ │ │ │ ├── basi0g16.png │ │ │ │ ├── basi2c16.png │ │ │ │ ├── basi4a16.png │ │ │ │ ├── basi6a16.png │ │ │ │ ├── basn0g16.png │ │ │ │ ├── basn2c16.png │ │ │ │ ├── basn4a16.png │ │ │ │ ├── basn6a16.png │ │ │ │ ├── bgai4a16.png │ │ │ │ ├── bgan6a16.png │ │ │ │ ├── bggn4a16.png │ │ │ │ ├── bgyn6a16.png │ │ │ │ ├── oi1n0g16.png │ │ │ │ ├── oi1n2c16.png │ │ │ │ ├── oi2n0g16.png │ │ │ │ ├── oi2n2c16.png │ │ │ │ ├── oi4n0g16.png │ │ │ │ ├── oi4n2c16.png │ │ │ │ ├── oi9n0g16.png │ │ │ │ ├── oi9n2c16.png │ │ │ │ ├── tbbn2c16.png │ │ │ │ ├── tbgn2c16.png │ │ │ │ └── tbwn0g16.png │ │ │ ├── PngSuite.LICENSE │ │ │ ├── corrupt │ │ │ │ ├── xc1n0g08.png │ │ │ │ ├── xc9n2c08.png │ │ │ │ ├── xcrn0g04.png │ │ │ │ ├── xcsn0g01.png │ │ │ │ ├── xd0n2c08.png │ │ │ │ ├── xd3n2c08.png │ │ │ │ ├── xd9n2c08.png │ │ │ │ ├── xdtn0g01.png │ │ │ │ ├── xhdn0g08.png │ │ │ │ ├── xlfn0g04.png │ │ │ │ ├── xs1n0g01.png │ │ │ │ ├── xs2n0g01.png │ │ │ │ ├── xs4n0g01.png │ │ │ │ └── xs7n0g01.png │ │ │ ├── primary │ │ │ │ ├── basi0g01.png │ │ │ │ ├── basi0g02.png │ │ │ │ ├── basi0g04.png │ │ │ │ ├── basi0g08.png │ │ │ │ ├── basi2c08.png │ │ │ │ ├── basi3p01.png │ │ │ │ ├── basi3p02.png │ │ │ │ ├── basi3p04.png │ │ │ │ ├── basi3p08.png │ │ │ │ ├── basi4a08.png │ │ │ │ ├── basi6a08.png │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn6a08.png │ │ │ │ ├── bgai4a08.png │ │ │ │ ├── bgan6a08.png │ │ │ │ ├── bgbn4a08.png │ │ │ │ ├── bgwn6a08.png │ │ │ │ ├── s01i3p01.png │ │ │ │ ├── s01n3p01.png │ │ │ │ ├── s02i3p01.png │ │ │ │ ├── s02n3p01.png │ │ │ │ ├── s03i3p01.png │ │ │ │ ├── s03n3p01.png │ │ │ │ ├── s04i3p01.png │ │ │ │ ├── s04n3p01.png │ │ │ │ ├── s05i3p02.png │ │ │ │ ├── s05n3p02.png │ │ │ │ ├── s06i3p02.png │ │ │ │ ├── s06n3p02.png │ │ │ │ ├── s07i3p02.png │ │ │ │ ├── s07n3p02.png │ │ │ │ ├── s08i3p02.png │ │ │ │ ├── s08n3p02.png │ │ │ │ ├── s09i3p02.png │ │ │ │ ├── s09n3p02.png │ │ │ │ ├── s32i3p04.png │ │ │ │ ├── s32n3p04.png │ │ │ │ ├── s33i3p04.png │ │ │ │ ├── s33n3p04.png │ │ │ │ ├── s34i3p04.png │ │ │ │ ├── s34n3p04.png │ │ │ │ ├── s35i3p04.png │ │ │ │ ├── s35n3p04.png │ │ │ │ ├── s36i3p04.png │ │ │ │ ├── s36n3p04.png │ │ │ │ ├── s37i3p04.png │ │ │ │ ├── s37n3p04.png │ │ │ │ ├── s38i3p04.png │ │ │ │ ├── s38n3p04.png │ │ │ │ ├── s39i3p04.png │ │ │ │ ├── s39n3p04.png │ │ │ │ ├── s40i3p04.png │ │ │ │ ├── s40n3p04.png │ │ │ │ ├── tbbn0g04.png │ │ │ │ ├── tbbn3p08.png │ │ │ │ ├── tbgn3p08.png │ │ │ │ ├── tbrn2c08.png │ │ │ │ ├── tbwn3p08.png │ │ │ │ ├── tbyn3p08.png │ │ │ │ ├── tm3n3p02.png │ │ │ │ ├── tp0n0g08.png │ │ │ │ ├── tp0n2c08.png │ │ │ │ ├── tp0n3p08.png │ │ │ │ ├── tp1n3p08.png │ │ │ │ ├── z00n2c08.png │ │ │ │ ├── z03n2c08.png │ │ │ │ ├── z06n2c08.png │ │ │ │ └── z09n2c08.png │ │ │ ├── primary_check │ │ │ │ ├── basi0g01.png │ │ │ │ ├── basi0g02.png │ │ │ │ ├── basi0g04.png │ │ │ │ ├── basi0g08.png │ │ │ │ ├── basi2c08.png │ │ │ │ ├── basi3p01.png │ │ │ │ ├── basi3p02.png │ │ │ │ ├── basi3p04.png │ │ │ │ ├── basi3p08.png │ │ │ │ ├── basi4a08.png │ │ │ │ ├── basi6a08.png │ │ │ │ ├── basn0g01.png │ │ │ │ ├── basn0g02.png │ │ │ │ ├── basn0g04.png │ │ │ │ ├── basn0g08.png │ │ │ │ ├── basn2c08.png │ │ │ │ ├── basn3p01.png │ │ │ │ ├── basn3p02.png │ │ │ │ ├── basn3p04.png │ │ │ │ ├── basn3p08.png │ │ │ │ ├── basn4a08.png │ │ │ │ ├── basn6a08.png │ │ │ │ ├── bgai4a08.png │ │ │ │ ├── bgan6a08.png │ │ │ │ ├── bgbn4a08.png │ │ │ │ ├── bgwn6a08.png │ │ │ │ ├── s01i3p01.png │ │ │ │ ├── s01n3p01.png │ │ │ │ ├── s02i3p01.png │ │ │ │ ├── s02n3p01.png │ │ │ │ ├── s03i3p01.png │ │ │ │ ├── s03n3p01.png │ │ │ │ ├── s04i3p01.png │ │ │ │ ├── s04n3p01.png │ │ │ │ ├── s05i3p02.png │ │ │ │ ├── s05n3p02.png │ │ │ │ ├── s06i3p02.png │ │ │ │ ├── s06n3p02.png │ │ │ │ ├── s07i3p02.png │ │ │ │ ├── s07n3p02.png │ │ │ │ ├── s08i3p02.png │ │ │ │ ├── s08n3p02.png │ │ │ │ ├── s09i3p02.png │ │ │ │ ├── s09n3p02.png │ │ │ │ ├── s32i3p04.png │ │ │ │ ├── s32n3p04.png │ │ │ │ ├── s33i3p04.png │ │ │ │ ├── s33n3p04.png │ │ │ │ ├── s34i3p04.png │ │ │ │ ├── s34n3p04.png │ │ │ │ ├── s35i3p04.png │ │ │ │ ├── s35n3p04.png │ │ │ │ ├── s36i3p04.png │ │ │ │ ├── s36n3p04.png │ │ │ │ ├── s37i3p04.png │ │ │ │ ├── s37n3p04.png │ │ │ │ ├── s38i3p04.png │ │ │ │ ├── s38n3p04.png │ │ │ │ ├── s39i3p04.png │ │ │ │ ├── s39n3p04.png │ │ │ │ ├── s40i3p04.png │ │ │ │ ├── s40n3p04.png │ │ │ │ ├── tbbn0g04.png │ │ │ │ ├── tbbn3p08.png │ │ │ │ ├── tbgn3p08.png │ │ │ │ ├── tbrn2c08.png │ │ │ │ ├── tbwn3p08.png │ │ │ │ ├── tbyn3p08.png │ │ │ │ ├── tm3n3p02.png │ │ │ │ ├── tp0n0g08.png │ │ │ │ ├── tp0n2c08.png │ │ │ │ ├── tp0n3p08.png │ │ │ │ ├── tp1n3p08.png │ │ │ │ ├── z00n2c08.png │ │ │ │ ├── z03n2c08.png │ │ │ │ ├── z06n2c08.png │ │ │ │ └── z09n2c08.png │ │ │ └── unused │ │ │ │ ├── ccwn2c08.png │ │ │ │ ├── ccwn3p08.png │ │ │ │ ├── cdfn2c08.png │ │ │ │ ├── cdhn2c08.png │ │ │ │ ├── cdsn2c08.png │ │ │ │ ├── cdun2c08.png │ │ │ │ ├── ch1n3p04.png │ │ │ │ ├── ch2n3p08.png │ │ │ │ ├── cm0n0g04.png │ │ │ │ ├── cm7n0g04.png │ │ │ │ ├── cm9n0g04.png │ │ │ │ ├── cs3n2c16.png │ │ │ │ ├── cs3n3p08.png │ │ │ │ ├── cs5n2c08.png │ │ │ │ ├── cs5n3p08.png │ │ │ │ ├── cs8n2c08.png │ │ │ │ ├── cs8n3p08.png │ │ │ │ ├── ct0n0g04.png │ │ │ │ ├── ct1n0g04.png │ │ │ │ ├── cten0g04.png │ │ │ │ ├── ctfn0g04.png │ │ │ │ ├── ctgn0g04.png │ │ │ │ ├── cthn0g04.png │ │ │ │ ├── ctjn0g04.png │ │ │ │ ├── ctzn0g04.png │ │ │ │ ├── f00n0g08.png │ │ │ │ ├── f00n2c08.png │ │ │ │ ├── f01n0g08.png │ │ │ │ ├── f01n2c08.png │ │ │ │ ├── f02n0g08.png │ │ │ │ ├── f02n2c08.png │ │ │ │ ├── f03n0g08.png │ │ │ │ ├── f03n2c08.png │ │ │ │ ├── f04n0g08.png │ │ │ │ ├── f04n2c08.png │ │ │ │ ├── f99n0g04.png │ │ │ │ ├── g03n0g16.png │ │ │ │ ├── g03n2c08.png │ │ │ │ ├── g03n3p04.png │ │ │ │ ├── g04n0g16.png │ │ │ │ ├── g04n2c08.png │ │ │ │ ├── g04n3p04.png │ │ │ │ ├── g05n0g16.png │ │ │ │ ├── g05n2c08.png │ │ │ │ ├── g05n3p04.png │ │ │ │ ├── g07n0g16.png │ │ │ │ ├── g07n2c08.png │ │ │ │ ├── g07n3p04.png │ │ │ │ ├── g10n0g16.png │ │ │ │ ├── g10n2c08.png │ │ │ │ ├── g10n3p04.png │ │ │ │ ├── g25n0g16.png │ │ │ │ ├── g25n2c08.png │ │ │ │ ├── g25n3p04.png │ │ │ │ ├── pp0n2c16.png │ │ │ │ ├── pp0n6a08.png │ │ │ │ ├── ps1n0g08.png │ │ │ │ ├── ps1n2c16.png │ │ │ │ ├── ps2n0g08.png │ │ │ │ └── ps2n2c16.png │ │ ├── resample_test.cpp │ │ ├── resample_test_c.c │ │ ├── resize.dsp │ │ ├── sdf │ │ │ ├── sdf_test.c │ │ │ ├── sdf_test_arial_16.png │ │ │ ├── sdf_test_times_16.png │ │ │ └── sdf_test_times_50.png │ │ ├── stb.c │ │ ├── stb.dsp │ │ ├── stb.dsw │ │ ├── stb_cpp.cpp │ │ ├── stb_cpp.dsp │ │ ├── stretch_test.c │ │ ├── stretch_test.dsp │ │ ├── stretchy_buffer_test.c │ │ ├── test_c_compilation.c │ │ ├── test_cpp_compilation.cpp │ │ ├── test_truetype.c │ │ ├── test_vorbis.c │ │ ├── textedit_sample.c │ │ ├── tilemap_editor_integration_example.c │ │ └── vorbseek │ │ │ ├── vorbseek.c │ │ │ └── vorbseek.dsp │ └── tools │ │ ├── README.footer.md │ │ ├── README.header.md │ │ ├── README.list │ │ ├── easy_font_maker.c │ │ ├── make_readme.c │ │ ├── make_readme.dsp │ │ ├── mr.bat │ │ ├── unicode.c │ │ └── unicode │ │ └── unicode.dsp └── tinyobj │ ├── tiny_obj_loader.cc │ └── tiny_obj_loader.h ├── README.md └── SkyEngine ├── Debug ├── SkyEngine.exe ├── SkyEngine.ilk └── SkyEngine.pdb ├── Screenshots ├── blooperNegative.PNG ├── layers.PNG ├── marchingSunlight.png ├── multiresMarch.png ├── remapCoverage1.PNG ├── remapCoverage1Graph.PNG ├── remapCoverage2.PNG ├── remapEQNs.PNG ├── remapstep1.PNG ├── remapstep2.PNG ├── remapstep3.PNG ├── remapstep4.PNG ├── renderPipeline.PNG ├── reprojectVisual.png └── shmallow.PNG ├── SkyEngine.sdf └── SkyEngine ├── Debug ├── SkyEngine.log ├── SkyEngine.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── SkyEngine.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── camera.obj ├── vc140.idb └── vc140.pdb ├── Geometry.cpp ├── Geometry.h ├── ImageUtils.cpp ├── ImageUtils.h ├── Models ├── DisplayCube.obj ├── lopolyLessCheek2.obj └── terrain.obj ├── Shader.cpp ├── Shader.h ├── Shaders ├── background.frag ├── background.vert ├── compute-clouds.comp ├── god-ray.frag ├── model.frag ├── model.vert ├── post-pass.vert ├── radialBlur.frag ├── reproject.comp └── tonemap.frag ├── SkyEngine.vcxproj ├── SkyEngine.vcxproj.user ├── SkyManager.cpp ├── SkyManager.h ├── Texture.cpp ├── Texture.h ├── Textures ├── 3DTextures │ ├── hiResCloudShape │ │ ├── hiResClouds (0).tga │ │ ├── hiResClouds (1).tga │ │ ├── hiResClouds (10).tga │ │ ├── hiResClouds (11).tga │ │ ├── hiResClouds (12).tga │ │ ├── hiResClouds (13).tga │ │ ├── hiResClouds (14).tga │ │ ├── hiResClouds (15).tga │ │ ├── hiResClouds (16).tga │ │ ├── hiResClouds (17).tga │ │ ├── hiResClouds (18).tga │ │ ├── hiResClouds (19).tga │ │ ├── hiResClouds (2).tga │ │ ├── hiResClouds (20).tga │ │ ├── hiResClouds (21).tga │ │ ├── hiResClouds (22).tga │ │ ├── hiResClouds (23).tga │ │ ├── hiResClouds (24).tga │ │ ├── hiResClouds (25).tga │ │ ├── hiResClouds (26).tga │ │ ├── hiResClouds (27).tga │ │ ├── hiResClouds (28).tga │ │ ├── hiResClouds (29).tga │ │ ├── hiResClouds (3).tga │ │ ├── hiResClouds (30).tga │ │ ├── hiResClouds (31).tga │ │ ├── hiResClouds (4).tga │ │ ├── hiResClouds (5).tga │ │ ├── hiResClouds (6).tga │ │ ├── hiResClouds (7).tga │ │ ├── hiResClouds (8).tga │ │ └── hiResClouds (9).tga │ └── lowResCloudShape │ │ ├── lowResCloud(0).tga │ │ ├── lowResCloud(1).tga │ │ ├── lowResCloud(10).tga │ │ ├── lowResCloud(100).tga │ │ ├── lowResCloud(101).tga │ │ ├── lowResCloud(102).tga │ │ ├── lowResCloud(103).tga │ │ ├── lowResCloud(104).tga │ │ ├── lowResCloud(105).tga │ │ ├── lowResCloud(106).tga │ │ ├── lowResCloud(107).tga │ │ ├── lowResCloud(108).tga │ │ ├── lowResCloud(109).tga │ │ ├── lowResCloud(11).tga │ │ ├── lowResCloud(110).tga │ │ ├── lowResCloud(111).tga │ │ ├── lowResCloud(112).tga │ │ ├── lowResCloud(113).tga │ │ ├── lowResCloud(114).tga │ │ ├── lowResCloud(115).tga │ │ ├── lowResCloud(116).tga │ │ ├── lowResCloud(117).tga │ │ ├── lowResCloud(118).tga │ │ ├── lowResCloud(119).tga │ │ ├── lowResCloud(12).tga │ │ ├── lowResCloud(120).tga │ │ ├── lowResCloud(121).tga │ │ ├── lowResCloud(122).tga │ │ ├── lowResCloud(123).tga │ │ ├── lowResCloud(124).tga │ │ ├── lowResCloud(125).tga │ │ ├── lowResCloud(126).tga │ │ ├── lowResCloud(127).tga │ │ ├── lowResCloud(13).tga │ │ ├── lowResCloud(14).tga │ │ ├── lowResCloud(15).tga │ │ ├── lowResCloud(16).tga │ │ ├── lowResCloud(17).tga │ │ ├── lowResCloud(18).tga │ │ ├── lowResCloud(19).tga │ │ ├── lowResCloud(2).tga │ │ ├── lowResCloud(20).tga │ │ ├── lowResCloud(21).tga │ │ ├── lowResCloud(22).tga │ │ ├── lowResCloud(23).tga │ │ ├── lowResCloud(24).tga │ │ ├── lowResCloud(25).tga │ │ ├── lowResCloud(26).tga │ │ ├── lowResCloud(27).tga │ │ ├── lowResCloud(28).tga │ │ ├── lowResCloud(29).tga │ │ ├── lowResCloud(3).tga │ │ ├── lowResCloud(30).tga │ │ ├── lowResCloud(31).tga │ │ ├── lowResCloud(32).tga │ │ ├── lowResCloud(33).tga │ │ ├── lowResCloud(34).tga │ │ ├── lowResCloud(35).tga │ │ ├── lowResCloud(36).tga │ │ ├── lowResCloud(37).tga │ │ ├── lowResCloud(38).tga │ │ ├── lowResCloud(39).tga │ │ ├── lowResCloud(4).tga │ │ ├── lowResCloud(40).tga │ │ ├── lowResCloud(41).tga │ │ ├── lowResCloud(42).tga │ │ ├── lowResCloud(43).tga │ │ ├── lowResCloud(44).tga │ │ ├── lowResCloud(45).tga │ │ ├── lowResCloud(46).tga │ │ ├── lowResCloud(47).tga │ │ ├── lowResCloud(48).tga │ │ ├── lowResCloud(49).tga │ │ ├── lowResCloud(5).tga │ │ ├── lowResCloud(50).tga │ │ ├── lowResCloud(51).tga │ │ ├── lowResCloud(52).tga │ │ ├── lowResCloud(53).tga │ │ ├── lowResCloud(54).tga │ │ ├── lowResCloud(55).tga │ │ ├── lowResCloud(56).tga │ │ ├── lowResCloud(57).tga │ │ ├── lowResCloud(58).tga │ │ ├── lowResCloud(59).tga │ │ ├── lowResCloud(6).tga │ │ ├── lowResCloud(60).tga │ │ ├── lowResCloud(61).tga │ │ ├── lowResCloud(62).tga │ │ ├── lowResCloud(63).tga │ │ ├── lowResCloud(64).tga │ │ ├── lowResCloud(65).tga │ │ ├── lowResCloud(66).tga │ │ ├── lowResCloud(67).tga │ │ ├── lowResCloud(68).tga │ │ ├── lowResCloud(69).tga │ │ ├── lowResCloud(7).tga │ │ ├── lowResCloud(70).tga │ │ ├── lowResCloud(71).tga │ │ ├── lowResCloud(72).tga │ │ ├── lowResCloud(73).tga │ │ ├── lowResCloud(74).tga │ │ ├── lowResCloud(75).tga │ │ ├── lowResCloud(76).tga │ │ ├── lowResCloud(77).tga │ │ ├── lowResCloud(78).tga │ │ ├── lowResCloud(79).tga │ │ ├── lowResCloud(8).tga │ │ ├── lowResCloud(80).tga │ │ ├── lowResCloud(81).tga │ │ ├── lowResCloud(82).tga │ │ ├── lowResCloud(83).tga │ │ ├── lowResCloud(84).tga │ │ ├── lowResCloud(85).tga │ │ ├── lowResCloud(86).tga │ │ ├── lowResCloud(87).tga │ │ ├── lowResCloud(88).tga │ │ ├── lowResCloud(89).tga │ │ ├── lowResCloud(9).tga │ │ ├── lowResCloud(90).tga │ │ ├── lowResCloud(91).tga │ │ ├── lowResCloud(92).tga │ │ ├── lowResCloud(93).tga │ │ ├── lowResCloud(94).tga │ │ ├── lowResCloud(95).tga │ │ ├── lowResCloud(96).tga │ │ ├── lowResCloud(97).tga │ │ ├── lowResCloud(98).tga │ │ └── lowResCloud(99).tga ├── CloudPlacement.png ├── CloudPlacementSparse.png ├── CurlNoise.tga ├── CurlNoiseFBM.png ├── CurlNoiseFBM.tga ├── CurlNoisePerlin.png ├── NightSky │ ├── nightSky.png │ ├── nightSkyNoiseMap.png │ ├── nightSky_betterStars.png │ └── nightSky_noOrange.png ├── brdfLUT.png ├── cloudSlice.png ├── curlNoiseTest.png ├── rockColor.png ├── rockNormal.png ├── rockPBRinfo.png ├── tilesColor.png ├── tilesHeight.png ├── tilesNormal.png └── tilesPBRinfo.png ├── VulkanApplication.cpp ├── VulkanApplication.h ├── VulkanObject.cpp ├── VulkanObject.h ├── camera.cpp ├── camera.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.filters 3 | *.sln 4 | *.xcodeproj 5 | *.db 6 | *.opendb 7 | *.tlog 8 | *.lastbuild 9 | *.suo 10 | *.spv 11 | Debug/ 12 | Release/ 13 | build 14 | -------------------------------------------------------------------------------- /Libraries/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "Build the GLFW example programs") 3 | set(GLFW_BUILD_TESTS OFF CACHE BOOL "Build the GLFW test programs") 4 | set(GLFW_BUILD_DOCS OFF CACHE BOOL "Build the GLFW documentation") 5 | set(GLFW_INSTALL OFF CACHE BOOL "Generate installation target") 6 | add_subdirectory(GLFW) 7 | 8 | set(GLM_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/glm PARENT_SCOPE) 9 | set(STB_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/stb PARENT_SCOPE) 10 | -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/glfw3.dll -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/libglfw3.a -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/libglfw3dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-mingw-w64/libglfw3dll.a -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3.dll -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3.lib -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2012/glfw3dll.lib -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3.dll -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3.lib -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2013/glfw3dll.lib -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3.dll -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3.lib -------------------------------------------------------------------------------- /Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glfw-3.2.1.bin.WIN64/lib-vc2015/glfw3dll.lib -------------------------------------------------------------------------------- /Libraries/glm/cmake/glm.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@CMAKE_INSTALL_PREFIX@ 2 | includedir=${prefix}/include 3 | 4 | Name: GLM 5 | Description: OpenGL Mathematics 6 | Version: @GLM_VERSION@ 7 | Cflags: -I${includedir} 8 | -------------------------------------------------------------------------------- /Libraries/glm/cmake/glmBuildConfig.cmake.in: -------------------------------------------------------------------------------- 1 | set(GLM_VERSION "@GLM_VERSION@") 2 | set(GLM_INCLUDE_DIRS "@CMAKE_CURRENT_SOURCE_DIR@") 3 | 4 | if (NOT CMAKE_VERSION VERSION_LESS "3.0") 5 | include("${CMAKE_CURRENT_LIST_DIR}/glmTargets.cmake") 6 | endif() 7 | -------------------------------------------------------------------------------- /Libraries/glm/cmake/glmConfig.cmake.in: -------------------------------------------------------------------------------- 1 | set(GLM_VERSION "@GLM_VERSION@") 2 | 3 | @PACKAGE_INIT@ 4 | 5 | set_and_check(GLM_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@") 6 | 7 | if (NOT CMAKE_VERSION VERSION_LESS "3.0") 8 | include("${CMAKE_CURRENT_LIST_DIR}/glmTargets.cmake") 9 | endif() 10 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/_fixes.hpp 3 | 4 | #include 5 | 6 | //! Workaround for compatibility with other libraries 7 | #ifdef max 8 | #undef max 9 | #endif 10 | 11 | //! Workaround for compatibility with other libraries 12 | #ifdef min 13 | #undef min 14 | #endif 15 | 16 | //! Workaround for Android 17 | #ifdef isnan 18 | #undef isnan 19 | #endif 20 | 21 | //! Workaround for Android 22 | #ifdef isinf 23 | #undef isinf 24 | #endif 25 | 26 | //! Workaround for Chrone Native Client 27 | #ifdef log2 28 | #undef log2 29 | #endif 30 | 31 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "setup.hpp" 4 | #include 5 | #include 6 | 7 | namespace glm{ 8 | namespace detail 9 | { 10 | template ::is_iec559> 11 | struct compute_equal 12 | { 13 | GLM_FUNC_QUALIFIER static bool call(T a, T b) 14 | { 15 | return a == b; 16 | } 17 | }; 18 | 19 | template 20 | struct compute_equal 21 | { 22 | GLM_FUNC_QUALIFIER static bool call(T a, T b) 23 | { 24 | return std::memcmp(&a, &b, sizeof(T)) == 0; 25 | } 26 | }; 27 | }//namespace detail 28 | }//namespace glm 29 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_packing_simd.inl 3 | 4 | namespace glm{ 5 | namespace detail 6 | { 7 | 8 | }//namespace detail 9 | }//namespace glm 10 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/detail/func_trigonometric_simd.inl -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/func_vector_relational_simd.inl 3 | 4 | namespace glm{ 5 | namespace detail 6 | { 7 | 8 | }//namespace detail 9 | }//namespace glm 10 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_half.hpp 3 | 4 | #pragma once 5 | 6 | #include "setup.hpp" 7 | 8 | namespace glm{ 9 | namespace detail 10 | { 11 | typedef short hdata; 12 | 13 | GLM_FUNC_DECL float toFloat32(hdata value); 14 | GLM_FUNC_DECL hdata toFloat16(float const& value); 15 | 16 | }//namespace detail 17 | }//namespace glm 18 | 19 | #include "type_half.inl" 20 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_mat.inl 3 | 4 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_mat4x4_sse2.inl 3 | 4 | namespace glm 5 | { 6 | 7 | }//namespace glm 8 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/detail/type_vec.inl 3 | -------------------------------------------------------------------------------- /Libraries/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /Libraries/glm/glm/ext/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/ext/vec1.inl -------------------------------------------------------------------------------- /Libraries/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_swizzle 2 | /// @file glm/gtc/swizzle.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_vec1 2 | /// @file glm/gtc/vec1.inl 3 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_float_normalize 2 | /// @file glm/gtx/float_normalize.inl 3 | 4 | #include 5 | 6 | namespace glm 7 | { 8 | template 9 | GLM_FUNC_QUALIFIER vec floatNormalize(vec const& v) 10 | { 11 | return vec(v) / static_cast(std::numeric_limits::max()); 12 | } 13 | 14 | }//namespace glm 15 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_log_base 2 | /// @file glm/gtx/log_base.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType log(genType const& x, genType const& base) 8 | { 9 | assert(!detail::compute_equal::call(x, static_cast(0))); 10 | return glm::log(x) / glm::log(base); 11 | } 12 | 13 | template 14 | GLM_FUNC_QUALIFIER vec log(vec const& x, vec const& base) 15 | { 16 | return glm::log(x) / glm::log(base); 17 | } 18 | }//namespace glm 19 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_mixed_product 2 | /// @file glm/gtx/mixed_product.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER T mixedProduct 8 | ( 9 | vec<3, T, Q> const& v1, 10 | vec<3, T, Q> const& v2, 11 | vec<3, T, Q> const& v3 12 | ) 13 | { 14 | return dot(cross(v1, v2), v3); 15 | } 16 | }//namespace glm 17 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_normal 2 | /// @file glm/gtx/normal.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER vec<3, T, Q> triangleNormal 8 | ( 9 | vec<3, T, Q> const& p1, 10 | vec<3, T, Q> const& p2, 11 | vec<3, T, Q> const& p3 12 | ) 13 | { 14 | return normalize(cross(p1 - p2, p1 - p3)); 15 | } 16 | }//namespace glm 17 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_normalize_dot 2 | /// @file glm/gtx/normalize_dot.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER T normalizeDot(vec const& x, vec const& y) 8 | { 9 | return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y)); 10 | } 11 | 12 | template 13 | GLM_FUNC_QUALIFIER T fastNormalizeDot(vec const& x, vec const& y) 14 | { 15 | return glm::dot(x, y) * glm::fastInverseSqrt(glm::dot(x, x) * glm::dot(y, y)); 16 | } 17 | }//namespace glm 18 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | /// @file glm/gtx/number_precision.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_optimum_pow 2 | /// @file glm/gtx/optimum_pow.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType pow2(genType const& x) 8 | { 9 | return x * x; 10 | } 11 | 12 | template 13 | GLM_FUNC_QUALIFIER genType pow3(genType const& x) 14 | { 15 | return x * x * x; 16 | } 17 | 18 | template 19 | GLM_FUNC_QUALIFIER genType pow4(genType const& x) 20 | { 21 | return (x * x) * (x * x); 22 | } 23 | }//namespace glm 24 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_perpendicular 2 | /// @file glm/gtx/perpendicular.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal) 8 | { 9 | return x - proj(x, Normal); 10 | } 11 | }//namespace glm 12 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_projection 2 | /// @file glm/gtx/projection.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | GLM_FUNC_QUALIFIER genType proj(genType const& x, genType const& Normal) 8 | { 9 | return glm::dot(x, Normal) / glm::dot(Normal, Normal) * Normal; 10 | } 11 | }//namespace glm 12 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | /// @file glm/gtx/raw_data.inl 3 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | /// @file glm/gtx/std_based_type.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_texture 2 | /// @file glm/gtx/texture.inl 3 | 4 | namespace glm 5 | { 6 | template 7 | inline T levels(vec const& Extent) 8 | { 9 | return glm::log2(compMax(Extent)) + static_cast(1); 10 | } 11 | 12 | template 13 | inline T levels(T Extent) 14 | { 15 | return vec<1, T, defaultp>(Extent).x; 16 | } 17 | }//namespace glm 18 | 19 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | /// @file glm/gtc/type_aligned.inl 3 | 4 | namespace glm 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /Libraries/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /Libraries/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/experimental.h 3 | 4 | #pragma once 5 | 6 | #include "platform.h" 7 | 8 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | GLM_FUNC_QUALIFIER glm_vec4 glm_vec1_sqrt_lowp(glm_vec4 x) 11 | { 12 | return _mm_mul_ss(_mm_rsqrt_ss(x), x); 13 | } 14 | 15 | GLM_FUNC_QUALIFIER glm_vec4 glm_vec4_sqrt_lowp(glm_vec4 x) 16 | { 17 | return _mm_mul_ps(_mm_rsqrt_ps(x), x); 18 | } 19 | 20 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 21 | -------------------------------------------------------------------------------- /Libraries/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/packing.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /Libraries/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/trigonometric.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | 10 | -------------------------------------------------------------------------------- /Libraries/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- 1 | /// @ref simd 2 | /// @file glm/simd/vector_relational.h 3 | 4 | #pragma once 5 | 6 | #if GLM_ARCH & GLM_ARCH_SSE2_BIT 7 | 8 | #endif//GLM_ARCH & GLM_ARCH_SSE2_BIT 9 | -------------------------------------------------------------------------------- /Libraries/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec2.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec2.hpp" 9 | -------------------------------------------------------------------------------- /Libraries/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec3.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec3.hpp" 9 | -------------------------------------------------------------------------------- /Libraries/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- 1 | /// @ref core 2 | /// @file glm/vec4.hpp 3 | 4 | #include "detail/setup.hpp" 5 | 6 | #pragma once 7 | 8 | #include "detail/type_vec4.hpp" 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | function(glmCreateTestGTC NAME) 2 | if(GLM_TEST_ENABLE) 3 | set(SAMPLE_NAME test-${NAME}) 4 | add_executable(${SAMPLE_NAME} ${NAME}.cpp) 5 | 6 | add_test( 7 | NAME ${SAMPLE_NAME} 8 | COMMAND $ ) 9 | endif(GLM_TEST_ENABLE) 10 | endfunction() 11 | 12 | add_subdirectory(bug) 13 | add_subdirectory(core) 14 | add_subdirectory(ext) 15 | add_subdirectory(gtc) 16 | add_subdirectory(gtx) 17 | 18 | 19 | -------------------------------------------------------------------------------- /Libraries/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /Libraries/glm/test/bug/bug_ms_vec_static.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #if GLM_HAS_ALIGNED_TYPE 4 | struct vec2; 5 | 6 | struct _swizzle 7 | { 8 | char _buffer[1]; 9 | }; 10 | 11 | struct vec2 12 | { 13 | GLM_CONSTEXPR_CTOR vec2() : 14 | x(0), y(0) 15 | {} 16 | 17 | union 18 | { 19 | struct { float x, y; }; 20 | struct { _swizzle xx; }; 21 | }; 22 | }; 23 | #endif 24 | 25 | // Visual C++ has a bug generating the error: fatal error C1001: An internal error has occurred in the compiler. 26 | // vec2 Bar; 27 | 28 | int main() 29 | { 30 | return 0; 31 | } 32 | -------------------------------------------------------------------------------- /Libraries/glm/test/core/core_force_unrestricted_gentype.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_FORCE_UNRESTRICTED_GENTYPE 2 | 3 | #include 4 | 5 | int main() 6 | { 7 | int Error = 0; 8 | 9 | return Error; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Libraries/glm/test/core/core_func_noise.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | int Error = 0; 4 | 5 | return Error; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /Libraries/glm/test/core/core_func_trigonometric.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | int Error = 0; 6 | 7 | 8 | return Error; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Libraries/glm/test/core/core_setup_force_cxx98.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_FORCE_CXX98 2 | #include 3 | #include 4 | 5 | int main() 6 | { 7 | int Error = 0; 8 | 9 | return Error; 10 | } 11 | -------------------------------------------------------------------------------- /Libraries/glm/test/core/core_setup_force_size_t_length.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_FORCE_SIZE_T_LENGTH 2 | #include 3 | #include 4 | 5 | template 6 | genType add(genType const& a, genType const& b) 7 | { 8 | genType result(0); 9 | for(glm::length_t i = 0; i < a.length(); ++i) 10 | result[i] = a[i] + b[i]; 11 | return result; 12 | } 13 | 14 | int main() 15 | { 16 | int Error = 0; 17 | 18 | glm::ivec4 v(1); 19 | Error += add(v, v) == glm::ivec4(2) ? 0 : 1; 20 | 21 | return Error; 22 | } 23 | -------------------------------------------------------------------------------- /Libraries/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(ext_vec1) 2 | glmCreateTestGTC(ext_vector_relational) 3 | -------------------------------------------------------------------------------- /Libraries/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | int Error = 0; 6 | 7 | return Error; 8 | } 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtc/gtc_constants.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int test_epsilon() 4 | { 5 | int Error = 0; 6 | 7 | { 8 | float Test = glm::epsilon(); 9 | Error += Test > 0.0f ? 0 : 1; 10 | } 11 | 12 | { 13 | double Test = glm::epsilon(); 14 | Error += Test > 0.0 ? 0 : 1; 15 | } 16 | 17 | return Error; 18 | } 19 | 20 | int main() 21 | { 22 | int Error(0); 23 | 24 | //float MinHalf = 0.0f; 25 | //while (glm::half(MinHalf) == glm::half(0.0f)) 26 | // MinHalf += std::numeric_limits::epsilon(); 27 | Error += test_epsilon(); 28 | 29 | return Error; 30 | } 31 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtc/gtc_matrix_integer.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | int Error = 0; 6 | 7 | return Error; 8 | } 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtc/gtc_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/glm/test/gtc/gtc_quaternion.cpp -------------------------------------------------------------------------------- /Libraries/glm/test/gtc/gtc_reciprocal.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main() 5 | { 6 | return 0; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | int Error = 0; 6 | 7 | return Error; 8 | } 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | int Error = 0; 6 | 7 | return Error; 8 | } 9 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_associated_min_max.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | #include 4 | 5 | int main() 6 | { 7 | int Error(0); 8 | 9 | return Error; 10 | } 11 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_closest_point.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_color_space.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int test_saturation() 5 | { 6 | int Error(0); 7 | 8 | glm::vec4 Color = glm::saturation(1.0f, glm::vec4(1.0, 0.5, 0.0, 1.0)); 9 | 10 | return Error; 11 | } 12 | 13 | int main() 14 | { 15 | int Error(0); 16 | 17 | Error += test_saturation(); 18 | 19 | return Error; 20 | } 21 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_color_space_YCoCg.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_compatibility.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | Error += glm::isfinite(1.0f) ? 0 : 1; 9 | Error += glm::isfinite(1.0) ? 0 : 1; 10 | Error += glm::isfinite(-1.0f) ? 0 : 1; 11 | Error += glm::isfinite(-1.0) ? 0 : 1; 12 | 13 | Error += glm::all(glm::isfinite(glm::vec4(1.0f))) ? 0 : 1; 14 | Error += glm::all(glm::isfinite(glm::dvec4(1.0))) ? 0 : 1; 15 | Error += glm::all(glm::isfinite(glm::vec4(-1.0f))) ? 0 : 1; 16 | Error += glm::all(glm::isfinite(glm::dvec4(-1.0))) ? 0 : 1; 17 | 18 | return Error; 19 | } 20 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_exterior_product.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | int main() 6 | { 7 | int Error = 0; 8 | 9 | float const f = glm::cross(glm::vec2(1.0f, 1.0f), glm::vec2(1.0f, 1.0f)); 10 | Error += glm::epsilonEqual(f, 0.0f, 0.001f) ? 0 : 1; 11 | 12 | return Error; 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_fast_exponential.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_handed_coordinate_space.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_matrix_cross_product.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_matrix_decompose.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | glm::mat4 Matrix(1); 9 | 10 | glm::vec3 Scale; 11 | glm::quat Orientation; 12 | glm::vec3 Translation; 13 | glm::vec3 Skew(1); 14 | glm::vec4 Perspective(1); 15 | 16 | glm::decompose(Matrix, Scale, Orientation, Translation, Skew, Perspective); 17 | 18 | return Error; 19 | } 20 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_matrix_major_storage.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_matrix_operation.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_matrix_transform_2d.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_normalize_dot.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_number_precision.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_optimum_pow.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_orthonormalize.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_perpendicular.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_polar_coordinates.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_projection.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_rotate_normalized_axis.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error(0); 7 | 8 | return Error; 9 | } 10 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | #include 4 | 5 | int test_levels() 6 | { 7 | int Error = 0; 8 | 9 | int const Levels = glm::levels(glm::ivec2(3, 2)); 10 | Error += Levels == 2 ? 0 : 1; 11 | 12 | return Error; 13 | } 14 | 15 | int main() 16 | { 17 | int Error = 0; 18 | 19 | Error += test_levels(); 20 | 21 | return Error; 22 | } 23 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_type_trait.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | #include 4 | 5 | int main() 6 | { 7 | int Error = 0; 8 | 9 | 10 | 11 | return Error; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /Libraries/glm/test/gtx/gtx_vec_swizzle.cpp: -------------------------------------------------------------------------------- 1 | #define GLM_ENABLE_EXPERIMENTAL 2 | #include 3 | 4 | int main() 5 | { 6 | int Error = 0; 7 | 8 | 9 | return Error; 10 | } 11 | 12 | -------------------------------------------------------------------------------- /Libraries/glm/util/autoexp.txt: -------------------------------------------------------------------------------- 1 | [Visualizer] 2 | 3 | glm::detail::tvec2<*>{ 4 | preview ( 5 | #(#($c.x,$c.y)) 6 | ) 7 | children ( 8 | #([x]: $c.x,[y]: $c.y) 9 | ) 10 | } 11 | 12 | glm::detail::tvec3<*>{ 13 | preview ( 14 | #($e.x,$e.y,$e.z) 15 | ) 16 | children ( 17 | #([x]: $e.x,[y]: $e.y,[z]: $e.z) 18 | ) 19 | } 20 | 21 | glm::detail::tvec4<*>{ 22 | preview ( 23 | #($c.x,$c.y,$c.z,$c.w) 24 | ) 25 | children ( 26 | #([x]: $e.x,[y]: $e.y,[z]: $e.z, #([w]: $e.w)) 27 | ) 28 | } 29 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/.gitignore: -------------------------------------------------------------------------------- 1 | #Backup files 2 | *\~ 3 | *swp 4 | 5 | #OSX 6 | Thumbs.db 7 | .DS_Store 8 | 9 | #Emacs buffers 10 | \#*\# 11 | \.#* 12 | 13 | #Conan 14 | test_package/build 15 | conanfile.pyc 16 | conaninfo.txt 17 | conanbuildinfo.txt 18 | conanbuildinfo.cmake 19 | !FindGLM.cmake 20 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/FindGLM.cmake: -------------------------------------------------------------------------------- 1 | FIND_PATH( 2 | GLM_INCLUDE_DIR 3 | NAMES 4 | glm 5 | PATHS 6 | include) 7 | 8 | INCLUDE(FindPackageHandleStandardArgs) 9 | 10 | FIND_PACKAGE_HANDLE_STANDARD_ARGS(GLM REQUIRED_VARS GLM_INCLUDE_DIR) 11 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/README.md: -------------------------------------------------------------------------------- 1 | Conan package for the [GLM](https://github.com/g-truc/glm) library 2 | 3 | The package is hosted on [bintray](https://bintray.com/conan/conan-center?filterByPkgName=glm%3Ag-truc). 4 | 5 | It works on Windows (Visual Studio or MinGW), MacOS/OSX and Linux. 6 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | project(GlmTest) 2 | cmake_minimum_required(VERSION 3.0.0) 3 | include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) 4 | conan_basic_setup() 5 | 6 | if(MSVC) 7 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc") 8 | endif(MSVC) 9 | 10 | add_executable(testGlm main.cpp) 11 | 12 | 13 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/test_package/conanfile.py: -------------------------------------------------------------------------------- 1 | from conans import ConanFile, CMake 2 | import os 3 | 4 | class TestGlm(ConanFile): 5 | settings = "os", "compiler", "build_type", "arch" 6 | generators = "cmake" 7 | 8 | def build(self): 9 | cmake = CMake(self) 10 | self.run('cmake "%s" %s' % (self.conanfile_directory, cmake.command_line)) 11 | self.run("cmake --build . %s" % cmake.build_config) 12 | 13 | def test(self): 14 | self.run(os.sep.join([".","bin", "testGlm"])) 15 | 16 | -------------------------------------------------------------------------------- /Libraries/glm/util/conan-package/test_package/main.cpp: -------------------------------------------------------------------------------- 1 | #include "glm/glm.hpp" 2 | 3 | int main (){ 4 | glm::mat4x4 aMatrix; 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /Libraries/stb/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | * Delete this list before clicking CREATE PULL REQUEST 2 | * Make sure you're using a special branch just for this pull request. (Sometimes people unknowingly use a default branch, then later update that branch, which updates the pull request with the other changes if it hasn't been merged yet.) 3 | * Do NOT update the version number in the file. (This just causes conflicts.) 4 | * Do add your name to the list of contributors. (Don't worry about the formatting.) I'll try to remember to add it if you don't, but I sometimes forget as it's an extra step. 5 | 6 | If you get something above wrong, don't fret it, it's not the end of the world. 7 | -------------------------------------------------------------------------------- /Libraries/stb/.travis.yml: -------------------------------------------------------------------------------- 1 | language: C 2 | install: true 3 | script: 4 | - cd tests 5 | - make all 6 | -------------------------------------------------------------------------------- /Libraries/stb/data/atari_8bit_font_revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/atari_8bit_font_revised.png -------------------------------------------------------------------------------- /Libraries/stb/data/easy_font_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/easy_font_raw.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/license.txt: -------------------------------------------------------------------------------- 1 | All files in this directory are in the public domain. Where 2 | a public domain declaration is not recognized, you are granted 3 | a license to freely use, modify, and redistribute them in 4 | any way you choose. -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_caves_limit_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_caves_limit_connectivity.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_caves_tiny_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_caves_tiny_corridors.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_corner_caves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_corner_caves.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_horizontal_corridors_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_horizontal_corridors_v1.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_horizontal_corridors_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_horizontal_corridors_v2.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_horizontal_corridors_v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_horizontal_corridors_v3.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_limit_connectivity_fat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_limit_connectivity_fat.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_limited_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_limited_connectivity.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_maze_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_maze_2_wide.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_maze_plus_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_maze_plus_2_wide.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_open_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_open_areas.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_ref2_corner_caves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_ref2_corner_caves.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_rooms_and_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_rooms_and_corridors.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_rooms_and_corridors_2_wide_diagonal_bias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_rooms_and_corridors_2_wide_diagonal_bias.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_rooms_limit_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_rooms_limit_connectivity.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_round_rooms_diagonal_corridors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_round_rooms_diagonal_corridors.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_sean_dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_sean_dungeon.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_simple_caves_2_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_simple_caves_2_wide.png -------------------------------------------------------------------------------- /Libraries/stb/data/herringbone/template_square_rooms_with_random_rects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/herringbone/template_square_rooms_with_random_rects.png -------------------------------------------------------------------------------- /Libraries/stb/data/map_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/map_01.png -------------------------------------------------------------------------------- /Libraries/stb/data/map_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/map_02.png -------------------------------------------------------------------------------- /Libraries/stb/data/map_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/data/map_03.png -------------------------------------------------------------------------------- /Libraries/stb/docs/other_libs.md: -------------------------------------------------------------------------------- 1 | Moved to https://github.com/nothings/single_file_libs -------------------------------------------------------------------------------- /Libraries/stb/tests/Makefile: -------------------------------------------------------------------------------- 1 | INCLUDES = -I.. 2 | CFLAGS = -Wno-pointer-to-int-cast -Wno-int-to-pointer-cast -DSTB_DIVIDE_TEST 3 | CPPFLAGS = -Wno-write-strings -DSTB_DIVIDE_TEST 4 | 5 | all: 6 | $(CC) $(INCLUDES) $(CFLAGS) ../stb_vorbis.c test_c_compilation.c -lm 7 | $(CC) $(INCLUDES) $(CPPFLAGS) test_cpp_compilation.cpp -lm 8 | -------------------------------------------------------------------------------- /Libraries/stb/tests/caveview/caveview.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "caveview"=.\caveview.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /Libraries/stb/tests/caveview/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/caveview/main.c -------------------------------------------------------------------------------- /Libraries/stb/tests/oversample/oversample.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "oversample"=.\oversample.dsp - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /Libraries/stb/tests/oversample/oversample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/oversample/oversample.exe -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basi0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basi0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basi2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basi2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basi4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basi4a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basi6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basi6a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basn0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basn2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basn4a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/basn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/basn6a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/bgai4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/bgai4a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/bgan6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/bgan6a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/bggn4a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/bggn4a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/bgyn6a16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/bgyn6a16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi1n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi1n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi1n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi2n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi2n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi2n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi4n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi4n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi4n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi4n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi9n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi9n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/oi9n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/oi9n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/tbbn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/tbbn2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/tbgn2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/tbgn2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/16bit/tbwn0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/16bit/tbwn0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/PngSuite.LICENSE: -------------------------------------------------------------------------------- 1 | PngSuite 2 | -------- 3 | 4 | Permission to use, copy, modify and distribute these images for any 5 | purpose and without fee is hereby granted. 6 | 7 | 8 | (c) Willem van Schaik, 1996, 2011 9 | 10 | -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xc1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xc1n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xc9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xc9n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xcrn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xcrn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xcsn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xcsn0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xd0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xd0n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xd3n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xd3n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xd9n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xd9n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xdtn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xdtn0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xhdn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xhdn0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xlfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xlfn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xs1n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xs1n0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xs2n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xs2n0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xs4n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xs4n0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/corrupt/xs7n0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/corrupt/xs7n0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi0g02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basi6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn0g02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/basn6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/bgai4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/bgan6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/bgbn4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/bgwn6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s01i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s01i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s01n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s01n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s02i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s02i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s02n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s02n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s03i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s03i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s03n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s03n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s04i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s04i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s04n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s04n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s05i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s05i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s05n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s05n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s06i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s06i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s06n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s06n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s07i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s07i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s07n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s07n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s08i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s08i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s08n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s08n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s09i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s09i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s09n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s09n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s32i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s32i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s32n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s32n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s33i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s33i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s33n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s33n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s34i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s34i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s34n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s34n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s35i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s35i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s35n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s35n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s36i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s36i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s36n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s36n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s37i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s37i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s37n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s37n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s38i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s38i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s38n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s38n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s39i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s39i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s39n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s39n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s40i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s40i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/s40n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/s40n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbbn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbbn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbgn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbrn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbwn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tbyn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tm3n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tm3n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tp0n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tp0n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tp0n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/tp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/tp1n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/z00n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/z03n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/z06n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary/z09n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi0g02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basi6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basi6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn0g01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn0g01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn0g02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn0g02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/basn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/basn6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/bgai4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/bgai4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/bgan6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/bgan6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/bgbn4a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/bgbn4a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/bgwn6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/bgwn6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s01i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s01i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s01n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s01n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s02i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s02i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s02n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s02n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s03i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s03i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s03n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s03n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s04i3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s04i3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s04n3p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s04n3p01.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s05i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s05i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s05n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s05n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s06i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s06i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s06n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s06n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s07i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s07i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s07n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s07n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s08i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s08i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s08n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s08n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s09i3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s09i3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s09n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s09n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s32i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s32i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s32n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s32n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s33i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s33i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s33n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s33n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s34i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s34i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s34n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s34n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s35i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s35i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s35n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s35n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s36i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s36i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s36n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s36n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s37i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s37i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s37n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s37n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s38i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s38i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s38n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s38n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s39i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s39i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s39n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s39n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s40i3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s40i3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/s40n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/s40n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbbn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbbn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbbn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbbn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbgn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbgn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbrn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbrn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbwn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tbyn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tbyn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tm3n3p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tm3n3p02.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tp0n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tp0n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tp0n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tp0n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tp0n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tp0n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/tp1n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/tp1n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/z00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/z00n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/z03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/z03n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/z06n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/z06n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/primary_check/z09n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/primary_check/z09n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ccwn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ccwn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ccwn3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ccwn3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cdfn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cdfn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cdhn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cdhn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cdsn2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cdsn2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cdun2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cdun2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ch1n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ch1n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ch2n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ch2n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cm0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cm0n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cm7n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cm7n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cm9n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cm9n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs3n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs3n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs3n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs3n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs5n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs5n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs5n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs5n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs8n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs8n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cs8n3p08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cs8n3p08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ct0n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ct0n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ct1n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ct1n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cten0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cten0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ctfn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ctfn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ctgn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ctgn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/cthn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/cthn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ctjn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ctjn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ctzn0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ctzn0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f00n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f00n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f00n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f00n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f01n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f01n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f01n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f01n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f02n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f02n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f02n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f02n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f03n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f03n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f03n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f04n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f04n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f04n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/f99n0g04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/f99n0g04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g03n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g03n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g03n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g03n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g03n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g03n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g04n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g04n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g04n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g04n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g04n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g04n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g05n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g05n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g05n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g05n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g05n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g05n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g07n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g07n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g07n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g07n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g07n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g07n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g10n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g10n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g10n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g10n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g10n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g10n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g25n0g16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g25n0g16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g25n2c08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g25n2c08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/g25n3p04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/g25n3p04.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/pp0n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/pp0n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/pp0n6a08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/pp0n6a08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ps1n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ps1n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ps1n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ps1n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ps2n0g08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ps2n0g08.png -------------------------------------------------------------------------------- /Libraries/stb/tests/pngsuite/unused/ps2n2c16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/pngsuite/unused/ps2n2c16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/resample_test_c.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_RESIZE_IMPLEMENTATION 2 | #define STB_IMAGE_RESIZE_STATIC 3 | #include "stb_image_resize.h" 4 | 5 | // Just to make sure it will build properly with a c compiler 6 | 7 | int main() { 8 | } 9 | -------------------------------------------------------------------------------- /Libraries/stb/tests/sdf/sdf_test_arial_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/sdf/sdf_test_arial_16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/sdf/sdf_test_times_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/sdf/sdf_test_times_16.png -------------------------------------------------------------------------------- /Libraries/stb/tests/sdf/sdf_test_times_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/Libraries/stb/tests/sdf/sdf_test_times_50.png -------------------------------------------------------------------------------- /Libraries/stb/tests/stretch_test.c: -------------------------------------------------------------------------------- 1 | // check that stb_truetype compiles with no stb_rect_pack.h 2 | #define STB_TRUETYPE_IMPLEMENTATION 3 | #include "stb_truetype.h" 4 | 5 | #include "stretchy_buffer.h" 6 | #include 7 | 8 | int main(int arg, char **argv) 9 | { 10 | int i; 11 | int *arr = NULL; 12 | 13 | for (i=0; i < 1000000; ++i) 14 | sb_push(arr, i); 15 | 16 | assert(sb_count(arr) == 1000000); 17 | for (i=0; i < 1000000; ++i) 18 | assert(arr[i] == i); 19 | 20 | sb_free(arr); 21 | arr = NULL; 22 | 23 | for (i=0; i < 1000; ++i) 24 | sb_add(arr, 1000); 25 | assert(sb_count(arr) == 1000000); 26 | 27 | return 0; 28 | } -------------------------------------------------------------------------------- /Libraries/stb/tests/stretchy_buffer_test.c: -------------------------------------------------------------------------------- 1 | #include "stretchy_buffer.h" -------------------------------------------------------------------------------- /Libraries/stb/tests/test_vorbis.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_STATIC 2 | #define STB_IMAGE_IMPLEMENTATION 3 | #include "stb_image.h" 4 | 5 | #define STB_VORBIS_HEADER_ONLY 6 | #include "stb_vorbis.c" 7 | #include "stb.h" 8 | 9 | extern void stb_vorbis_dumpmem(void); 10 | 11 | #ifdef VORBIS_TEST 12 | int main(int argc, char **argv) 13 | { 14 | size_t memlen; 15 | unsigned char *mem = stb_fileu("c:/x/sketch008.ogg", &memlen); 16 | int chan, samplerate; 17 | short *output; 18 | int samples = stb_vorbis_decode_memory(mem, memlen, &chan, &samplerate, &output); 19 | stb_filewrite("c:/x/sketch008.raw", output, samples*4); 20 | return 0; 21 | } 22 | #endif 23 | -------------------------------------------------------------------------------- /Libraries/stb/tools/README.header.md: -------------------------------------------------------------------------------- 1 | stb 2 | === 3 | 4 | single-file public domain (or MIT licensed) libraries for C/C++ 5 | 6 | Most libraries by stb, except: stb_dxt by Fabian "ryg" Giesen, stb_image_resize 7 | by Jorge L. "VinoBS" Rodriguez, and stb_sprintf by Jeff Roberts. 8 | 9 | 10 | library | lastest version | category | LoC | description 11 | --------------------- | ---- | -------- | --- | -------------------------------- 12 | -------------------------------------------------------------------------------- /Libraries/stb/tools/mr.bat: -------------------------------------------------------------------------------- 1 | debug\make_readme 2 | -------------------------------------------------------------------------------- /Libraries/tinyobj/tiny_obj_loader.cc: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" -------------------------------------------------------------------------------- /SkyEngine/Debug/SkyEngine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Debug/SkyEngine.exe -------------------------------------------------------------------------------- /SkyEngine/Debug/SkyEngine.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Debug/SkyEngine.ilk -------------------------------------------------------------------------------- /SkyEngine/Debug/SkyEngine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Debug/SkyEngine.pdb -------------------------------------------------------------------------------- /SkyEngine/Screenshots/blooperNegative.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/blooperNegative.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/layers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/layers.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/marchingSunlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/marchingSunlight.png -------------------------------------------------------------------------------- /SkyEngine/Screenshots/multiresMarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/multiresMarch.png -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapCoverage1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapCoverage1.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapCoverage1Graph.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapCoverage1Graph.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapCoverage2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapCoverage2.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapEQNs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapEQNs.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapstep1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapstep1.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapstep2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapstep2.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapstep3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapstep3.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/remapstep4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/remapstep4.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/renderPipeline.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/renderPipeline.PNG -------------------------------------------------------------------------------- /SkyEngine/Screenshots/reprojectVisual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/reprojectVisual.png -------------------------------------------------------------------------------- /SkyEngine/Screenshots/shmallow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/Screenshots/shmallow.PNG -------------------------------------------------------------------------------- /SkyEngine/SkyEngine.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine.sdf -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.log: -------------------------------------------------------------------------------- 1 |  VulkanApplication.cpp 2 | c:\users\joe\documents\penn\senior_year\semester_1\cis_565\final_project\project-marshmallow\skyengine\skyengine\vulkanapplication.h(4): fatal error C1083: Cannot open include file: 'GLFW/glfw3.h': No such file or directory 3 | main.cpp 4 | c:\users\joe\documents\penn\senior_year\semester_1\cis_565\final_project\project-marshmallow\skyengine\skyengine\vulkanapplication.h(4): fatal error C1083: Cannot open include file: 'GLFW/glfw3.h': No such file or directory 5 | Generating Code... 6 | Skipping... (no relevant changes detected) 7 | camera.cpp 8 | -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/SkyEngine.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1 2 | Debug|Win32|C:\Users\Joe\Documents\Penn\Senior_Year\Semester_1\CIS_565\Final_Project\Project-Marshmallow\SkyEngine\| 3 | -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/SkyEngine.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/camera.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/camera.obj -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/vc140.idb -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Debug/vc140.pdb -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/ImageUtils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #define GLFW_INCLUDE_VULKAN 5 | #include 6 | 7 | #include 8 | #include 9 | #include 10 | #include 11 | 12 | void GenerateCurlNoise(std::string path); 13 | -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Shaders/background.frag: -------------------------------------------------------------------------------- 1 | #version 450 2 | #extension GL_ARB_separate_shader_objects : enable 3 | 4 | layout(set = 0, binding = 0) uniform sampler2D texColor; 5 | layout(set = 1, binding = 0) uniform sampler2D blurMask; 6 | 7 | layout(location = 0) in vec3 fragColor; 8 | layout(location = 1) in vec2 fragUV; 9 | 10 | layout(location = 0) out vec4 outColor; 11 | 12 | void main() { 13 | vec4 col = texture(texColor, fragUV); 14 | 15 | outColor = col; 16 | } -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Shaders/background.vert: -------------------------------------------------------------------------------- 1 | #version 450 2 | #extension GL_ARB_separate_shader_objects : enable 3 | 4 | out gl_PerVertex { 5 | vec4 gl_Position; 6 | }; 7 | 8 | layout(location = 0) in vec3 inPosition; 9 | layout(location = 1) in vec3 inColor; 10 | layout(location = 2) in vec2 inUV; 11 | 12 | layout(location = 0) out vec3 fragColor; 13 | layout(location = 1) out vec2 fragUV; 14 | 15 | void main() { 16 | gl_Position = vec4(inPosition.xyz, 1.0); 17 | fragUV = inUV; 18 | fragColor = inColor; 19 | } -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Shaders/post-pass.vert: -------------------------------------------------------------------------------- 1 | #version 450 2 | #extension GL_ARB_separate_shader_objects : enable 3 | 4 | out gl_PerVertex { 5 | vec4 gl_Position; 6 | }; 7 | 8 | // Matches background shader 9 | layout(location = 0) in vec3 inPosition; 10 | layout(location = 2) in vec2 inUV; 11 | 12 | layout(location = 0) out vec2 fragUV; 13 | 14 | void main() { 15 | gl_Position = vec4(inPosition.xyz, 1.0); 16 | fragUV = inUV; 17 | } -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/SkyEngine.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | true 5 | 6 | -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (0).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (0).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (1).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (1).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (10).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (10).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (11).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (11).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (12).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (12).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (13).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (13).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (14).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (14).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (15).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (15).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (16).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (16).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (17).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (17).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (18).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (18).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (19).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (19).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (2).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (2).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (20).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (20).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (21).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (21).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (22).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (22).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (23).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (23).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (24).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (24).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (25).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (25).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (26).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (26).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (27).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (27).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (28).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (28).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (29).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (29).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (3).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (3).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (30).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (30).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (31).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (31).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (4).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (4).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (5).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (5).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (6).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (6).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (7).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (7).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (8).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (8).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (9).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/hiResCloudShape/hiResClouds (9).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(0).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(0).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(1).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(1).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(10).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(10).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(100).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(100).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(101).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(101).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(102).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(102).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(103).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(103).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(104).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(104).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(105).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(105).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(106).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(106).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(107).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(107).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(108).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(108).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(109).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(109).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(11).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(11).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(110).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(110).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(111).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(111).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(112).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(112).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(113).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(113).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(114).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(114).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(115).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(115).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(116).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(116).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(117).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(117).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(118).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(118).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(119).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(119).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(12).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(12).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(120).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(120).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(121).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(121).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(122).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(122).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(123).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(123).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(124).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(124).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(125).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(125).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(126).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(126).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(127).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(127).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(13).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(13).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(14).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(14).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(15).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(15).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(16).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(16).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(17).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(17).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(18).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(18).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(19).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(19).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(2).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(2).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(20).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(20).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(21).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(21).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(22).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(22).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(23).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(23).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(24).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(24).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(25).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(25).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(26).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(26).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(27).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(27).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(28).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(28).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(29).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(29).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(3).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(3).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(30).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(30).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(31).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(31).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(32).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(32).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(33).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(33).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(34).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(34).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(35).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(35).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(36).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(36).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(37).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(37).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(38).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(38).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(39).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(39).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(4).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(4).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(40).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(40).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(41).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(41).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(42).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(42).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(43).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(43).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(44).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(44).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(45).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(45).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(46).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(46).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(47).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(47).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(48).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(48).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(49).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(49).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(5).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(5).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(50).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(50).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(51).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(51).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(52).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(52).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(53).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(53).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(54).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(54).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(55).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(55).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(56).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(56).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(57).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(57).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(58).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(58).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(59).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(59).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(6).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(6).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(60).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(60).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(61).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(61).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(62).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(62).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(63).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(63).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(64).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(64).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(65).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(65).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(66).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(66).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(67).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(67).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(68).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(68).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(69).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(69).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(7).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(7).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(70).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(70).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(71).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(71).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(72).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(72).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(73).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(73).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(74).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(74).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(75).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(75).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(76).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(76).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(77).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(77).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(78).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(78).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(79).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(79).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(8).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(8).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(80).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(80).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(81).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(81).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(82).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(82).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(83).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(83).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(84).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(84).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(85).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(85).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(86).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(86).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(87).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(87).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(88).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(88).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(89).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(89).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(9).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(9).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(90).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(90).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(91).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(91).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(92).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(92).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(93).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(93).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(94).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(94).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(95).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(95).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(96).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(96).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(97).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(97).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(98).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(98).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(99).tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/3DTextures/lowResCloudShape/lowResCloud(99).tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CloudPlacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CloudPlacement.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CloudPlacementSparse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CloudPlacementSparse.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CurlNoise.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CurlNoise.tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CurlNoiseFBM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CurlNoiseFBM.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CurlNoiseFBM.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CurlNoiseFBM.tga -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/CurlNoisePerlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/CurlNoisePerlin.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/NightSky/nightSky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/NightSky/nightSky.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/NightSky/nightSkyNoiseMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/NightSky/nightSkyNoiseMap.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/NightSky/nightSky_betterStars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/NightSky/nightSky_betterStars.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/NightSky/nightSky_noOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/NightSky/nightSky_noOrange.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/brdfLUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/brdfLUT.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/cloudSlice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/cloudSlice.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/curlNoiseTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/curlNoiseTest.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/rockColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/rockColor.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/rockNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/rockNormal.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/rockPBRinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/rockPBRinfo.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/tilesColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/tilesColor.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/tilesHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/tilesHeight.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/tilesNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/tilesNormal.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/Textures/tilesPBRinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mccannd/Project-Marshmallow/06a1bde8c3d997bbf603905d82c1f3fec339e48d/SkyEngine/SkyEngine/Textures/tilesPBRinfo.png -------------------------------------------------------------------------------- /SkyEngine/SkyEngine/main.cpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "VulkanApplication.h" 3 | 4 | int main() { 5 | VulkanApplication app = VulkanApplication(); 6 | 7 | // remove this pls 8 | try { 9 | app.run(); 10 | } 11 | catch (const std::runtime_error& e) { 12 | std::cerr << e.what() << std::endl; 13 | return EXIT_FAILURE; 14 | } 15 | 16 | return EXIT_SUCCESS; 17 | 18 | } --------------------------------------------------------------------------------