├── .clang-format ├── .dockerignore ├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── lib ├── Auburn │ └── include │ │ └── Auburn │ │ └── FastNoiseLite.h ├── cereal │ ├── .github │ │ └── workflows │ │ │ ├── ci-macos.yml │ │ │ └── ci.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── DoxygenLayout.xml │ │ ├── doxygen.in │ │ ├── footer.html │ │ └── mainpage.dox │ ├── include │ │ └── cereal │ │ │ ├── access.hpp │ │ │ ├── archives │ │ │ ├── adapters.hpp │ │ │ ├── binary.hpp │ │ │ ├── json.hpp │ │ │ ├── portable_binary.hpp │ │ │ └── xml.hpp │ │ │ ├── cereal.hpp │ │ │ ├── details │ │ │ ├── helpers.hpp │ │ │ ├── polymorphic_impl.hpp │ │ │ ├── polymorphic_impl_fwd.hpp │ │ │ ├── static_object.hpp │ │ │ ├── traits.hpp │ │ │ └── util.hpp │ │ │ ├── external │ │ │ ├── LICENSE │ │ │ ├── base64.hpp │ │ │ ├── rapidjson │ │ │ │ ├── LICENSE │ │ │ │ ├── allocators.h │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ ├── document.h │ │ │ │ ├── encodedstream.h │ │ │ │ ├── encodings.h │ │ │ │ ├── error │ │ │ │ │ ├── en.h │ │ │ │ │ └── error.h │ │ │ │ ├── filereadstream.h │ │ │ │ ├── filewritestream.h │ │ │ │ ├── fwd.h │ │ │ │ ├── internal │ │ │ │ │ ├── biginteger.h │ │ │ │ │ ├── diyfp.h │ │ │ │ │ ├── dtoa.h │ │ │ │ │ ├── ieee754.h │ │ │ │ │ ├── itoa.h │ │ │ │ │ ├── meta.h │ │ │ │ │ ├── pow10.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── strfunc.h │ │ │ │ │ ├── strtod.h │ │ │ │ │ └── swap.h │ │ │ │ ├── istreamwrapper.h │ │ │ │ ├── memorybuffer.h │ │ │ │ ├── memorystream.h │ │ │ │ ├── msinttypes │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── inttypes.h │ │ │ │ │ └── stdint.h │ │ │ │ ├── ostreamwrapper.h │ │ │ │ ├── pointer.h │ │ │ │ ├── prettywriter.h │ │ │ │ ├── rapidjson.h │ │ │ │ ├── reader.h │ │ │ │ ├── schema.h │ │ │ │ ├── stream.h │ │ │ │ ├── stringbuffer.h │ │ │ │ └── writer.h │ │ │ └── rapidxml │ │ │ │ ├── license.txt │ │ │ │ ├── manual.html │ │ │ │ ├── rapidxml.hpp │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ └── rapidxml_utils.hpp │ │ │ ├── macros.hpp │ │ │ ├── specialize.hpp │ │ │ ├── types │ │ │ ├── array.hpp │ │ │ ├── atomic.hpp │ │ │ ├── base_class.hpp │ │ │ ├── bitset.hpp │ │ │ ├── boost_variant.hpp │ │ │ ├── chrono.hpp │ │ │ ├── common.hpp │ │ │ ├── complex.hpp │ │ │ ├── concepts │ │ │ │ └── pair_associative_container.hpp │ │ │ ├── deque.hpp │ │ │ ├── forward_list.hpp │ │ │ ├── functional.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── memory.hpp │ │ │ ├── optional.hpp │ │ │ ├── polymorphic.hpp │ │ │ ├── queue.hpp │ │ │ ├── set.hpp │ │ │ ├── stack.hpp │ │ │ ├── string.hpp │ │ │ ├── tuple.hpp │ │ │ ├── unordered_map.hpp │ │ │ ├── unordered_set.hpp │ │ │ ├── utility.hpp │ │ │ ├── valarray.hpp │ │ │ ├── variant.hpp │ │ │ └── vector.hpp │ │ │ └── version.hpp │ ├── sandbox │ │ ├── CMakeLists.txt │ │ ├── performance.cpp │ │ ├── sandbox.cpp │ │ ├── sandbox_json.cpp │ │ ├── sandbox_rtti.cpp │ │ ├── sandbox_shared_lib │ │ │ ├── CMakeLists.txt │ │ │ ├── base.cpp │ │ │ ├── base.hpp │ │ │ ├── derived.cpp │ │ │ └── derived.hpp │ │ └── sandbox_vs.cpp │ ├── scripts │ │ ├── add_rapidjson_prefix.sh │ │ ├── appveyor.bat │ │ ├── renameincludes.sh │ │ ├── updatecoverage.sh │ │ └── updatedoc.in │ └── unittests │ │ ├── CMakeLists.txt │ │ ├── array.cpp │ │ ├── array.hpp │ │ ├── atomic.cpp │ │ ├── atomic.hpp │ │ ├── basic_string.cpp │ │ ├── basic_string.hpp │ │ ├── bitset.cpp │ │ ├── bitset.hpp │ │ ├── boost │ │ ├── CMakeLists.txt │ │ ├── boost_variant.cpp │ │ └── boost_variant.hpp │ │ ├── chrono.cpp │ │ ├── chrono.hpp │ │ ├── cmake-config-module.cmake │ │ ├── common.hpp │ │ ├── complex.cpp │ │ ├── complex.hpp │ │ ├── cpp17 │ │ ├── CMakeLists.txt │ │ ├── optional.cpp │ │ ├── optional.hpp │ │ ├── variant.cpp │ │ └── variant.hpp │ │ ├── defer.cpp │ │ ├── defer.hpp │ │ ├── deque.cpp │ │ ├── deque.hpp │ │ ├── doctest.h │ │ ├── forward_list.cpp │ │ ├── forward_list.hpp │ │ ├── list.cpp │ │ ├── list.hpp │ │ ├── load_construct.cpp │ │ ├── load_construct.hpp │ │ ├── map.cpp │ │ ├── map.hpp │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── memory_cycles.cpp │ │ ├── memory_cycles.hpp │ │ ├── multimap.cpp │ │ ├── multimap.hpp │ │ ├── multiset.cpp │ │ ├── multiset.hpp │ │ ├── pair.cpp │ │ ├── pair.hpp │ │ ├── pod.cpp │ │ ├── pod.hpp │ │ ├── polymorphic.cpp │ │ ├── polymorphic.hpp │ │ ├── portability_test.cpp │ │ ├── portable_binary_archive.cpp │ │ ├── portable_binary_archive.hpp │ │ ├── priority_queue.cpp │ │ ├── priority_queue.hpp │ │ ├── queue.cpp │ │ ├── queue.hpp │ │ ├── run_portability_test.cmake │ │ ├── run_valgrind.sh │ │ ├── set.cpp │ │ ├── set.hpp │ │ ├── stack.cpp │ │ ├── stack.hpp │ │ ├── structs.cpp │ │ ├── structs.hpp │ │ ├── structs_minimal.cpp │ │ ├── structs_minimal.hpp │ │ ├── structs_specialized.cpp │ │ ├── structs_specialized.hpp │ │ ├── tuple.cpp │ │ ├── tuple.hpp │ │ ├── unordered_loads.cpp │ │ ├── unordered_loads.hpp │ │ ├── unordered_map.cpp │ │ ├── unordered_map.hpp │ │ ├── unordered_multimap.cpp │ │ ├── unordered_multimap.hpp │ │ ├── unordered_multiset.cpp │ │ ├── unordered_multiset.hpp │ │ ├── unordered_set.cpp │ │ ├── unordered_set.hpp │ │ ├── user_data_adapters.cpp │ │ ├── user_data_adapters.hpp │ │ ├── valarray.cpp │ │ ├── valarray.hpp │ │ ├── vector.cpp │ │ ├── vector.hpp │ │ ├── versioning.cpp │ │ └── versioning.hpp ├── dr │ └── include │ │ └── dr │ │ ├── dr_flac.cpp │ │ ├── dr_flac.h │ │ ├── dr_wav.cpp │ │ └── dr_wav.h ├── entt │ └── include │ │ └── entt │ │ ├── LICENSE │ │ └── entt.hpp ├── gl3w │ ├── CMakeLists.txt │ ├── README.rst │ ├── SConstruct │ ├── UNLICENSE │ ├── cmake │ │ └── gl3w-config.cmake │ ├── gl3w_gen.py │ ├── include │ │ ├── GL │ │ │ ├── gl3w.h │ │ │ └── glcorearb.h │ │ └── KHR │ │ │ └── khrplatform.h │ ├── public-domain-mark.png │ └── src │ │ ├── gl3w.cpp │ │ ├── glfw_test.c │ │ └── glut_test.c ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ └── glm │ │ │ ├── glmConfig-version.cmake │ │ │ └── glmConfig.cmake │ ├── copying.txt │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── 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_half.hpp │ │ │ ├── type_half.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_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.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 │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_int2x2.hpp │ │ │ ├── matrix_int2x2_sized.hpp │ │ │ ├── matrix_int2x3.hpp │ │ │ ├── matrix_int2x3_sized.hpp │ │ │ ├── matrix_int2x4.hpp │ │ │ ├── matrix_int2x4_sized.hpp │ │ │ ├── matrix_int3x2.hpp │ │ │ ├── matrix_int3x2_sized.hpp │ │ │ ├── matrix_int3x3.hpp │ │ │ ├── matrix_int3x3_sized.hpp │ │ │ ├── matrix_int3x4.hpp │ │ │ ├── matrix_int3x4_sized.hpp │ │ │ ├── matrix_int4x2.hpp │ │ │ ├── matrix_int4x2_sized.hpp │ │ │ ├── matrix_int4x3.hpp │ │ │ ├── matrix_int4x3_sized.hpp │ │ │ ├── matrix_int4x4.hpp │ │ │ ├── matrix_int4x4_sized.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── matrix_uint2x2.hpp │ │ │ ├── matrix_uint2x2_sized.hpp │ │ │ ├── matrix_uint2x3.hpp │ │ │ ├── matrix_uint2x3_sized.hpp │ │ │ ├── matrix_uint2x4.hpp │ │ │ ├── matrix_uint2x4_sized.hpp │ │ │ ├── matrix_uint3x2.hpp │ │ │ ├── matrix_uint3x2_sized.hpp │ │ │ ├── matrix_uint3x3.hpp │ │ │ ├── matrix_uint3x3_sized.hpp │ │ │ ├── matrix_uint3x4.hpp │ │ │ ├── matrix_uint3x4_sized.hpp │ │ │ ├── matrix_uint4x2.hpp │ │ │ ├── matrix_uint4x2_sized.hpp │ │ │ ├── matrix_uint4x3.hpp │ │ │ ├── matrix_uint4x3_sized.hpp │ │ │ ├── matrix_uint4x4.hpp │ │ │ ├── matrix_uint4x4_sized.hpp │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_integer.hpp │ │ │ ├── scalar_integer.inl │ │ │ ├── scalar_packing.hpp │ │ │ ├── scalar_packing.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_sized.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_sized.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_sized.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_sized.hpp │ │ │ ├── vector_integer.hpp │ │ │ ├── vector_integer.inl │ │ │ ├── vector_packing.hpp │ │ │ ├── vector_packing.inl │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_sized.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_sized.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_sized.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_sized.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.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 │ │ ├── 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 │ │ │ ├── easing.hpp │ │ │ ├── easing.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 │ │ │ ├── neon.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 │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ └── test_find_glm.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_cpp_constexpr.cpp │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ ├── core_force_arch_unknown.cpp │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ ├── core_force_ctor_init.cpp │ │ │ ├── core_force_cxx03.cpp │ │ │ ├── core_force_cxx98.cpp │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ ├── core_force_inline.cpp │ │ │ ├── core_force_left_handed.cpp │ │ │ ├── core_force_platform_unknown.cpp │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_quat_wxyz.cpp │ │ │ ├── core_force_size_t_length.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_force_xyzw_only.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_platform_unknown.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.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_matrix_clip_space.cpp │ │ │ ├── ext_matrix_common.cpp │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ ├── ext_matrix_projection.cpp │ │ │ ├── ext_matrix_relational.cpp │ │ │ ├── ext_matrix_transform.cpp │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ ├── ext_quaternion_common.cpp │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ ├── ext_quaternion_relational.cpp │ │ │ ├── ext_quaternion_transform.cpp │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ ├── ext_quaternion_type.cpp │ │ │ ├── ext_scalar_common.cpp │ │ │ ├── ext_scalar_constants.cpp │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ ├── ext_scalar_integer.cpp │ │ │ ├── ext_scalar_packing.cpp │ │ │ ├── ext_scalar_relational.cpp │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ ├── ext_scalar_ulp.cpp │ │ │ ├── ext_vec1.cpp │ │ │ ├── ext_vector_bool1.cpp │ │ │ ├── ext_vector_common.cpp │ │ │ ├── ext_vector_iec559.cpp │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ ├── ext_vector_integer.cpp │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ ├── ext_vector_packing.cpp │ │ │ ├── ext_vector_relational.cpp │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ └── ext_vector_ulp.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_easing.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_load.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 │ │ └── perf │ │ │ ├── CMakeLists.txt │ │ │ ├── perf_matrix_div.cpp │ │ │ ├── perf_matrix_inverse.cpp │ │ │ ├── perf_matrix_mul.cpp │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ ├── perf_matrix_transpose.cpp │ │ │ └── perf_vector_mul_matrix.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat ├── imgui │ └── include │ │ └── imgui │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ ├── FUNDING.yml │ │ ├── issue_template.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── build.yml │ │ │ ├── scheduled.yml │ │ │ └── static-analysis.yml │ │ ├── .gitignore │ │ ├── LICENSE.txt │ │ ├── backends │ │ ├── imgui_impl_allegro5.cpp │ │ ├── imgui_impl_allegro5.h │ │ ├── imgui_impl_android.cpp │ │ ├── imgui_impl_android.h │ │ ├── imgui_impl_dx10.cpp │ │ ├── imgui_impl_dx10.h │ │ ├── imgui_impl_dx11.cpp │ │ ├── imgui_impl_dx11.h │ │ ├── imgui_impl_dx12.cpp │ │ ├── imgui_impl_dx12.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_glfw.cpp │ │ ├── imgui_impl_glfw.h │ │ ├── imgui_impl_glut.cpp │ │ ├── imgui_impl_glut.h │ │ ├── imgui_impl_marmalade.cpp │ │ ├── imgui_impl_marmalade.h │ │ ├── imgui_impl_metal.h │ │ ├── imgui_impl_metal.mm │ │ ├── imgui_impl_opengl2.cpp │ │ ├── imgui_impl_opengl2.h │ │ ├── imgui_impl_opengl3.cpp │ │ ├── imgui_impl_opengl3.h │ │ ├── imgui_impl_osx.h │ │ ├── imgui_impl_osx.mm │ │ ├── imgui_impl_sdl.cpp │ │ ├── imgui_impl_sdl.h │ │ ├── imgui_impl_vulkan.cpp │ │ ├── imgui_impl_vulkan.h │ │ ├── imgui_impl_wgpu.cpp │ │ ├── imgui_impl_wgpu.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ └── vulkan │ │ │ ├── generate_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ └── glsl_shader.vert │ │ ├── docs │ │ ├── BACKENDS.md │ │ ├── CHANGELOG.txt │ │ ├── EXAMPLES.md │ │ ├── FAQ.md │ │ ├── FONTS.md │ │ ├── README.md │ │ └── TODO.txt │ │ ├── examples │ │ ├── README.txt │ │ ├── example_allegro5 │ │ │ ├── README.md │ │ │ ├── example_allegro5.vcxproj │ │ │ ├── example_allegro5.vcxproj.filters │ │ │ ├── imconfig_allegro5.h │ │ │ └── main.cpp │ │ ├── example_android_opengl3 │ │ │ ├── CMakeLists.txt │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── java │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ ├── build.gradle │ │ │ │ └── settings.gradle │ │ │ └── main.cpp │ │ ├── example_apple_metal │ │ │ ├── README.md │ │ │ ├── example_apple_metal.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── iOS │ │ │ │ ├── Info-iOS.plist │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── macOS │ │ │ │ ├── Info-macOS.plist │ │ │ │ └── MainMenu.storyboard │ │ │ └── main.mm │ │ ├── example_apple_opengl2 │ │ │ ├── example_apple_opengl2.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── main.mm │ │ ├── example_emscripten_opengl3 │ │ │ ├── README.md │ │ │ ├── main.cpp │ │ │ └── shell_minimal.html │ │ ├── example_emscripten_wgpu │ │ │ ├── README.md │ │ │ └── main.cpp │ │ ├── example_glfw_metal │ │ │ └── main.mm │ │ ├── example_glfw_opengl2 │ │ │ ├── build_win32.bat │ │ │ ├── example_glfw_opengl2.vcxproj │ │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_glfw_opengl3 │ │ │ ├── build_win32.bat │ │ │ ├── example_glfw_opengl3.vcxproj │ │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_glfw_vulkan │ │ │ ├── CMakeLists.txt │ │ │ ├── build_win32.bat │ │ │ ├── build_win64.bat │ │ │ ├── example_glfw_vulkan.vcxproj │ │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_glut_opengl2 │ │ │ ├── example_glut_opengl2.vcxproj │ │ │ ├── example_glut_opengl2.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_marmalade │ │ │ ├── data │ │ │ │ └── app.icf │ │ │ ├── main.cpp │ │ │ └── marmalade_example.mkb │ │ ├── example_null │ │ │ ├── build_win32.bat │ │ │ └── main.cpp │ │ ├── example_sdl_directx11 │ │ │ ├── build_win32.bat │ │ │ ├── example_sdl_directx11.vcxproj │ │ │ ├── example_sdl_directx11.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_sdl_metal │ │ │ └── main.mm │ │ ├── example_sdl_opengl2 │ │ │ ├── README.md │ │ │ ├── build_win32.bat │ │ │ ├── example_sdl_opengl2.vcxproj │ │ │ ├── example_sdl_opengl2.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_sdl_opengl3 │ │ │ ├── README.md │ │ │ ├── build_win32.bat │ │ │ ├── example_sdl_opengl3.vcxproj │ │ │ ├── example_sdl_opengl3.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_sdl_vulkan │ │ │ ├── example_sdl_vulkan.vcxproj │ │ │ ├── example_sdl_vulkan.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_win32_directx10 │ │ │ ├── build_win32.bat │ │ │ ├── example_win32_directx10.vcxproj │ │ │ ├── example_win32_directx10.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_win32_directx11 │ │ │ ├── build_win32.bat │ │ │ ├── example_win32_directx11.vcxproj │ │ │ ├── example_win32_directx11.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_win32_directx12 │ │ │ ├── build_win32.bat │ │ │ ├── example_win32_directx12.vcxproj │ │ │ ├── example_win32_directx12.vcxproj.filters │ │ │ └── main.cpp │ │ ├── example_win32_directx9 │ │ │ ├── build_win32.bat │ │ │ ├── example_win32_directx9.vcxproj │ │ │ ├── example_win32_directx9.vcxproj.filters │ │ │ └── main.cpp │ │ ├── imgui_examples.sln │ │ └── libs │ │ │ ├── gl3w │ │ │ └── GL │ │ │ │ ├── gl3w.c │ │ │ │ ├── gl3w.h │ │ │ │ └── glcorearb.h │ │ │ ├── glfw │ │ │ ├── COPYING.txt │ │ │ ├── include │ │ │ │ └── GLFW │ │ │ │ │ ├── glfw3.h │ │ │ │ │ └── glfw3native.h │ │ │ ├── lib-vc2010-32 │ │ │ │ └── glfw3.lib │ │ │ └── lib-vc2010-64 │ │ │ │ └── glfw3.lib │ │ │ └── usynergy │ │ │ ├── README.txt │ │ │ ├── uSynergy.c │ │ │ └── uSynergy.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ ├── imstb_truetype.h │ │ └── misc │ │ ├── README.txt │ │ ├── cpp │ │ ├── README.txt │ │ ├── imgui_stdlib.cpp │ │ └── imgui_stdlib.h │ │ ├── debuggers │ │ ├── README.txt │ │ ├── imgui.gdb │ │ ├── imgui.natstepfilter │ │ └── imgui.natvis │ │ ├── fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ │ └── single_file │ │ └── imgui_single_file.h ├── par │ └── include │ │ └── par │ │ ├── par_shapes.cpp │ │ ├── par_shapes.h │ │ └── par_streamlines.h ├── stb │ └── include │ │ └── stb │ │ ├── stb_image.cpp │ │ └── stb_image.h └── yoga │ ├── .buckconfig │ ├── .clang-format │ ├── .clang-format-ignore │ ├── .editorconfig │ ├── .gitignore │ ├── .gitmodules │ ├── BUCK │ ├── CMakeLists.txt │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── LICENSE-examples │ ├── README.md │ ├── Yoga.podspec │ ├── YogaKit.podspec │ ├── YogaKit │ ├── .swift-version │ ├── BUCK │ ├── README.md │ ├── Source │ │ ├── UIView+Yoga.h │ │ ├── UIView+Yoga.m │ │ ├── YGLayout+Private.h │ │ ├── YGLayout.h │ │ ├── YGLayout.m │ │ └── YGLayoutExtensions.swift │ ├── Tests │ │ ├── Info.plist │ │ └── YogaKitTests.m │ └── YogaKitSample │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── YogaKitSample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── YogaKitSample.xcscheme │ │ ├── YogaKitSample.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── YogaKitSample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Yoga-20x20@2x.png │ │ │ ├── Yoga-20x20@3x.png │ │ │ ├── Yoga-29x29@1x.png │ │ │ ├── Yoga-29x29@2x.png │ │ │ ├── Yoga-29x29@3x.png │ │ │ ├── Yoga-40x40@2x.png │ │ │ ├── Yoga-40x40@3x.png │ │ │ ├── Yoga-57x57@1x.png │ │ │ ├── Yoga-57x57@2x.png │ │ │ ├── Yoga-60x60@2x.png │ │ │ └── Yoga-60x60@3x.png │ │ └── Contents.json │ │ ├── ExamplesViewController.swift │ │ ├── Info.plist │ │ ├── SwiftViewController.swift │ │ ├── ViewController.m │ │ ├── ViewControllers │ │ ├── BasicViewController.swift │ │ └── LayoutInclusionViewController.swift │ │ └── Views │ │ └── SingleLabelCollectionCell.swift │ ├── benchmark │ ├── BUCK │ └── YGBenchmark.c │ ├── build.gradle │ ├── enums.py │ ├── gentest │ ├── fixtures │ │ ├── YGAbsolutePositionTest.html │ │ ├── YGAlignContentTest.html │ │ ├── YGAlignItemsTest.html │ │ ├── YGAlignSelfTest.html │ │ ├── YGAndroidNewsFeed.html │ │ ├── YGBorderTest.html │ │ ├── YGDimensionTest.html │ │ ├── YGDisplayTest.html │ │ ├── YGFlexDirectionTest.html │ │ ├── YGFlexTest.html │ │ ├── YGFlexWrapTest.html │ │ ├── YGJustifyContentTest.html │ │ ├── YGMarginTest.html │ │ ├── YGMinMaxDimensionTest.html │ │ ├── YGPaddingTest.html │ │ ├── YGPercentageTest.html │ │ ├── YGRoundingTest.html │ │ └── YGSizeOverflowTest.html │ ├── gentest-cpp.js │ ├── gentest-cs.js │ ├── gentest-java.js │ ├── gentest-javascript.js │ ├── gentest.js │ ├── gentest.rb │ └── test-template.html │ ├── lib │ ├── android-support │ │ ├── BUCK │ │ └── android-support-v4.jar │ ├── appcompat │ │ ├── BUCK │ │ └── appcompat-v7-24.2.1.aar │ ├── fb │ │ ├── BUCK │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile │ │ │ ├── include │ │ │ │ ├── fb │ │ │ │ │ └── Doxyfile │ │ │ │ ├── fbjni │ │ │ │ │ ├── ByteBuffer.h │ │ │ │ │ ├── Context.h │ │ │ │ │ ├── File.h │ │ │ │ │ ├── JThread.h │ │ │ │ │ ├── NativeRunnable.h │ │ │ │ │ ├── ReadableByteChannel.h │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── Boxed.h │ │ │ │ │ │ ├── Common.h │ │ │ │ │ │ ├── CoreClasses-inl.h │ │ │ │ │ │ ├── CoreClasses.h │ │ │ │ │ │ ├── Environment.h │ │ │ │ │ │ ├── Exceptions.h │ │ │ │ │ │ ├── Hybrid.h │ │ │ │ │ │ ├── Iterator-inl.h │ │ │ │ │ │ ├── Iterator.h │ │ │ │ │ │ ├── JWeakReference.h │ │ │ │ │ │ ├── Log.h │ │ │ │ │ │ ├── Meta-forward.h │ │ │ │ │ │ ├── Meta-inl.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── MetaConvert.h │ │ │ │ │ │ ├── ReferenceAllocators-inl.h │ │ │ │ │ │ ├── ReferenceAllocators.h │ │ │ │ │ │ ├── References-forward.h │ │ │ │ │ │ ├── References-inl.h │ │ │ │ │ │ ├── References.h │ │ │ │ │ │ ├── Registration-inl.h │ │ │ │ │ │ ├── Registration.h │ │ │ │ │ │ ├── TypeTraits.h │ │ │ │ │ │ └── utf8.h │ │ │ │ │ └── fbjni.h │ │ │ │ └── lyra │ │ │ │ │ ├── lyra.h │ │ │ │ │ └── lyra_exceptions.h │ │ │ ├── jni │ │ │ │ ├── ByteBuffer.cpp │ │ │ │ ├── OnLoad.cpp │ │ │ │ ├── ReadableByteChannel.cpp │ │ │ │ ├── detail │ │ │ │ │ ├── Environment.cpp │ │ │ │ │ ├── Exceptions.cpp │ │ │ │ │ ├── Hybrid.cpp │ │ │ │ │ ├── References.cpp │ │ │ │ │ └── utf8.cpp │ │ │ │ └── fbjni.cpp │ │ │ └── lyra │ │ │ │ ├── cxa_throw.cpp │ │ │ │ ├── lyra.cpp │ │ │ │ ├── lyra_breakpad.cpp │ │ │ │ └── lyra_exceptions.cpp │ │ │ └── java │ │ │ └── com │ │ │ └── facebook │ │ │ └── jni │ │ │ ├── BUCK │ │ │ ├── CppException.java │ │ │ ├── CppSystemErrorException.java │ │ │ ├── DestructorThread.java │ │ │ ├── HybridClassBase.java │ │ │ ├── HybridData.java │ │ │ ├── IteratorHelper.java │ │ │ ├── MapIteratorHelper.java │ │ │ ├── NativeRunnable.java │ │ │ ├── ThreadScopeSupport.java │ │ │ ├── UnknownCppException.java │ │ │ ├── annotations │ │ │ └── DoNotStrip.java │ │ │ └── fbjni.pro │ ├── gtest │ │ └── BUCK │ ├── hamcrest │ │ ├── BUCK │ │ └── hamcrest-2.1.jar │ ├── jni │ │ ├── BUCK │ │ ├── jni.h │ │ └── real │ │ │ └── jni.h │ ├── jsr-305 │ │ ├── BUCK │ │ └── jsr305.jar │ ├── junit │ │ ├── BUCK │ │ └── junit-4.12.jar │ └── soloader │ │ ├── BUCK │ │ └── soloader-0.5.1.aar │ ├── mode │ └── opt │ ├── settings.gradle │ ├── tests │ ├── BitUtilsTest.cpp │ ├── CompactValueTest.cpp │ ├── EventsTest.cpp │ ├── InternalTest.cpp │ ├── YGAbsolutePositionTest.cpp │ ├── YGAlignBaselineTest.cpp │ ├── YGAlignContentTest.cpp │ ├── YGAlignItemsTest.cpp │ ├── YGAlignSelfTest.cpp │ ├── YGAndroidNewsFeed.cpp │ ├── YGAspectRatioTest.cpp │ ├── YGBaselineFuncTest.cpp │ ├── YGBorderTest.cpp │ ├── YGComputedMarginTest.cpp │ ├── YGComputedPaddingTest.cpp │ ├── YGConfigTest.cpp │ ├── YGDefaultValuesTest.cpp │ ├── YGDimensionTest.cpp │ ├── YGDirtiedTest.cpp │ ├── YGDirtyMarkingTest.cpp │ ├── YGDisplayTest.cpp │ ├── YGEdgeTest.cpp │ ├── YGFlexDirectionTest.cpp │ ├── YGFlexTest.cpp │ ├── YGFlexWrapTest.cpp │ ├── YGFloatOptionalTest.cpp │ ├── YGHadOverflowTest.cpp │ ├── YGInfiniteHeightTest.cpp │ ├── YGJustifyContentTest.cpp │ ├── YGLayoutDiffingTest.cpp │ ├── YGLoggerTest.cpp │ ├── YGMarginTest.cpp │ ├── YGMeasureCacheTest.cpp │ ├── YGMeasureModeTest.cpp │ ├── YGMeasureTest.cpp │ ├── YGMinMaxDimensionTest.cpp │ ├── YGNodeCallbackTest.cpp │ ├── YGNodeChildTest.cpp │ ├── YGPaddingTest.cpp │ ├── YGPercentageTest.cpp │ ├── YGPersistenceTest.cpp │ ├── YGRelayoutTest.cpp │ ├── YGRoundingFunctionTest.cpp │ ├── YGRoundingMeasureFuncTest.cpp │ ├── YGRoundingTest.cpp │ ├── YGSizeOverflowTest.cpp │ ├── YGStyleAccessorsTest.cpp │ ├── YGStyleTest.cpp │ ├── YGTraversalTest.cpp │ ├── YGTreeMutationTest.cpp │ ├── YGValueTest.cpp │ └── YGZeroOutLayoutRecursivlyTest.cpp │ ├── testutil │ ├── BUCK │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── yoga │ │ │ │ └── testutil │ │ │ │ └── testutil.h │ │ ├── jni │ │ │ └── jni.cpp │ │ └── testutil │ │ │ └── testutil.cpp │ │ └── java │ │ └── com │ │ └── facebook │ │ └── yoga │ │ └── TestUtil.java │ ├── third-party(Yoga).xcconfig │ ├── tools │ └── build_defs │ │ ├── fb_native_wrapper.bzl │ │ └── oss │ │ └── yoga_defs.bzl │ ├── util │ ├── BUCK │ ├── SingleWriterValueList.cpp │ ├── SingleWriterValueList.h │ └── SingleWriterValueListTest.cpp │ ├── yoga │ ├── BitUtils.h │ ├── CompactValue.h │ ├── Utils.cpp │ ├── Utils.h │ ├── YGConfig.cpp │ ├── YGConfig.h │ ├── YGEnums.cpp │ ├── YGEnums.h │ ├── YGFloatOptional.h │ ├── YGLayout.cpp │ ├── YGLayout.h │ ├── YGMacros.h │ ├── YGNode.cpp │ ├── YGNode.h │ ├── YGNodePrint.cpp │ ├── YGNodePrint.h │ ├── YGStyle.cpp │ ├── YGStyle.h │ ├── YGValue.cpp │ ├── YGValue.h │ ├── Yoga-internal.h │ ├── Yoga.cpp │ ├── Yoga.h │ ├── event │ │ ├── event.cpp │ │ └── event.h │ ├── internal │ │ ├── experiments-inl.h │ │ ├── experiments.cpp │ │ └── experiments.h │ ├── log.cpp │ └── log.h │ └── yogacore │ ├── build.gradle │ └── src │ └── main │ └── AndroidManifest.xml ├── res ├── ai │ └── test.bhv ├── audio │ ├── music │ │ ├── Moonlight_Beach.opus │ │ └── Tikibar_Mixer.opus │ └── sfx │ │ ├── explode.wav │ │ ├── hit.wav │ │ ├── ouch.wav │ │ └── untitled.wav ├── fonts │ ├── 1982.ttf │ ├── FFF_Tusj.ttf │ ├── FSmono.ttf │ ├── escalope_1.ttf │ ├── escalope_2.ttf │ ├── escalope_3.ttf │ ├── escalope_soft.ttf │ ├── humble_fonts │ │ ├── charset.txt │ │ ├── compass-pro-v1.1 │ │ │ ├── CompassPro.eot │ │ │ ├── CompassPro.otf │ │ │ ├── CompassPro.svg │ │ │ ├── CompassPro.ttf │ │ │ ├── CompassPro.woff │ │ │ └── compass-pro-v1.1.png │ │ ├── equipment-pro-v1.1 │ │ │ ├── EquipmentPro.eot │ │ │ ├── EquipmentPro.otf │ │ │ ├── EquipmentPro.svg │ │ │ ├── EquipmentPro.ttf │ │ │ ├── EquipmentPro.woff │ │ │ └── equipment-pro-v1.1.png │ │ ├── expression-pro-v1.1 │ │ │ ├── ExpressionPro.eot │ │ │ ├── ExpressionPro.otf │ │ │ ├── ExpressionPro.svg │ │ │ ├── ExpressionPro.ttf │ │ │ ├── ExpressionPro.woff │ │ │ └── expression-pro-v1.1.png │ │ ├── futile-pro-v1 │ │ │ ├── FutilePro.eot │ │ │ ├── FutilePro.otf │ │ │ ├── FutilePro.svg │ │ │ ├── FutilePro.ttf │ │ │ ├── FutilePro.woff │ │ │ └── futile-pro-v1.png │ │ ├── license.txt │ │ └── matchup-pro-v1.1 │ │ │ ├── MatchupPro.eot │ │ │ ├── MatchupPro.otf │ │ │ ├── MatchupPro.svg │ │ │ ├── MatchupPro.ttf │ │ │ ├── MatchupPro.woff │ │ │ └── matchup-pro-v1.1.png │ └── origami.ttf ├── glsl │ ├── 2d │ │ ├── billboard_instance_frag.glsl │ │ ├── billboard_instance_vert.glsl │ │ ├── font_frag.glsl │ │ ├── font_vert.glsl │ │ ├── screen_frag.glsl │ │ └── screen_vert.glsl │ ├── primitives │ │ ├── lines_frag.glsl │ │ ├── lines_vert.glsl │ │ ├── points_frag.glsl │ │ ├── points_geom.glsl │ │ ├── points_vert.glsl │ │ ├── primitive_frag.glsl │ │ └── primitive_vert.glsl │ ├── proto │ │ ├── decal_instance_frag.glsl │ │ ├── decal_instance_vert.glsl │ │ ├── lightvolume_instance_frag.glsl │ │ ├── lightvolume_instance_vert.glsl │ │ ├── model_multi_frag.glsl │ │ ├── model_multi_vert.glsl │ │ ├── terrain_frag.glsl │ │ └── terrain_vert.glsl │ ├── raft │ │ ├── model_frag.glsl │ │ ├── model_vert.glsl │ │ ├── water_frag.glsl │ │ ├── water_geom.glsl │ │ └── water_vert.glsl │ └── ui │ │ ├── image_frag.glsl │ │ ├── image_vert.glsl │ │ ├── wireframe_frag.glsl │ │ └── wireframe_vert.glsl ├── images │ ├── decals │ │ ├── coords.png │ │ └── explosion.png │ ├── particles │ │ └── smoke.png │ ├── sprites │ │ ├── arrows.png │ │ ├── default_soldier.png │ │ ├── default_soldier_e.png │ │ ├── default_soldier_s.png │ │ ├── default_soldier_se.png │ │ ├── default_soldier_sw.png │ │ ├── default_soldier_w.png │ │ ├── emotes.png │ │ ├── guy_stand_frames.png │ │ ├── healthbar.png │ │ ├── people_frames.png │ │ ├── people_oriented.png │ │ ├── ships.png │ │ └── tiles.png │ ├── textures │ │ ├── dungeon.png │ │ ├── dungeonII.png │ │ ├── floor.png │ │ ├── ground_texture.png │ │ ├── ground_uv.png │ │ └── wall.png │ ├── ui │ │ ├── engine_logo.png │ │ ├── gm_tower.aseprite │ │ ├── gm_tower.png │ │ ├── placeholder.png │ │ ├── profile_picture.png │ │ ├── splash_logo.png │ │ └── title.png │ └── world │ │ └── tileset.png ├── models │ ├── raft │ │ ├── barrel.mtl │ │ ├── barrel.obj │ │ ├── barrelOpen.mtl │ │ ├── barrelOpen.obj │ │ ├── bedroll.mtl │ │ ├── bedroll.obj │ │ ├── bedrollFrame.mtl │ │ ├── bedrollFrame.obj │ │ ├── bedrollPacked.mtl │ │ ├── bedrollPacked.obj │ │ ├── boat_large.mtl │ │ ├── boat_large.obj │ │ ├── boat_small.mtl │ │ ├── boat_small.obj │ │ ├── bottle.mtl │ │ ├── bottle.obj │ │ ├── bottleLarge.mtl │ │ ├── bottleLarge.obj │ │ ├── box.mtl │ │ ├── box.obj │ │ ├── boxOpen.mtl │ │ ├── boxOpen.obj │ │ ├── campfire.mtl │ │ ├── campfire.obj │ │ ├── cannon.mtl │ │ ├── cannon.obj │ │ ├── cannonBall.mtl │ │ ├── cannonBall.obj │ │ ├── cannonLarge.mtl │ │ ├── cannonLarge.obj │ │ ├── cannonMobile.mtl │ │ ├── cannonMobile.obj │ │ ├── chest.mtl │ │ ├── chest.obj │ │ ├── fence.mtl │ │ ├── fence.obj │ │ ├── fenceFortified.mtl │ │ ├── fenceFortified.obj │ │ ├── fish.mtl │ │ ├── fish.obj │ │ ├── fishingStand.mtl │ │ ├── fishingStand.obj │ │ ├── floor.mtl │ │ ├── floor.obj │ │ ├── formationLarge_rock.mtl │ │ ├── formationLarge_rock.obj │ │ ├── formationLarge_stone.mtl │ │ ├── formationLarge_stone.obj │ │ ├── formation_rock.mtl │ │ ├── formation_rock.obj │ │ ├── formation_stone.mtl │ │ ├── formation_stone.obj │ │ ├── grass.mtl │ │ ├── grass.obj │ │ ├── grassLarge.mtl │ │ ├── grassLarge.obj │ │ ├── hole.mtl │ │ ├── hole.obj │ │ ├── paddle.mtl │ │ ├── paddle.obj │ │ ├── palm_detailed_long.mtl │ │ ├── palm_detailed_long.obj │ │ ├── palm_detailed_short.mtl │ │ ├── palm_detailed_short.obj │ │ ├── palm_long.mtl │ │ ├── palm_long.obj │ │ ├── palm_short.mtl │ │ ├── palm_short.obj │ │ ├── pirate_captain.mtl │ │ ├── pirate_captain.obj │ │ ├── pirate_crew.mtl │ │ ├── pirate_crew.obj │ │ ├── pirate_officer.mtl │ │ ├── pirate_officer.obj │ │ ├── plant.mtl │ │ ├── plant.obj │ │ ├── resourceStone.mtl │ │ ├── resourceStone.obj │ │ ├── resourceWood.mtl │ │ ├── resourceWood.obj │ │ ├── rockA.mtl │ │ ├── rockA.obj │ │ ├── rockB.mtl │ │ ├── rockB.obj │ │ ├── rockC.mtl │ │ ├── rockC.obj │ │ ├── rockFlat.mtl │ │ ├── rockFlat.obj │ │ ├── rockFlatGrass.mtl │ │ ├── rockFlatGrass.obj │ │ ├── ship_dark.mtl │ │ ├── ship_dark.obj │ │ ├── ship_light.mtl │ │ ├── ship_light.obj │ │ ├── ship_wreck.mtl │ │ ├── ship_wreck.obj │ │ ├── shovel.mtl │ │ ├── shovel.obj │ │ ├── signpost.mtl │ │ ├── signpost.obj │ │ ├── signpostSingle.mtl │ │ ├── signpostSingle.obj │ │ ├── structure.mtl │ │ ├── structure.obj │ │ ├── structureBase.mtl │ │ ├── structureBase.obj │ │ ├── structureCloth.mtl │ │ ├── structureCloth.obj │ │ ├── structureRoof.mtl │ │ ├── structureRoof.obj │ │ ├── sword.mtl │ │ ├── sword.obj │ │ ├── sword_scimitar.mtl │ │ ├── sword_scimitar.obj │ │ ├── tent.mtl │ │ ├── tent.obj │ │ ├── tentClosed.mtl │ │ ├── tentClosed.obj │ │ ├── tentHalf.mtl │ │ ├── tentHalf.obj │ │ ├── toolAxe.mtl │ │ ├── toolAxe.obj │ │ ├── toolHoe.mtl │ │ ├── toolHoe.obj │ │ ├── toolPickaxe.mtl │ │ ├── toolPickaxe.obj │ │ ├── toolShovel.mtl │ │ ├── toolShovel.obj │ │ ├── tower.mtl │ │ ├── tower.obj │ │ ├── tree.mtl │ │ ├── tree.obj │ │ ├── treeFall.mtl │ │ ├── treeFall.obj │ │ ├── treeFallLarge.mtl │ │ ├── treeFallLarge.obj │ │ ├── treeLarge.mtl │ │ ├── treeLarge.obj │ │ ├── workbench.mtl │ │ ├── workbench.obj │ │ ├── workbenchAnvil.mtl │ │ ├── workbenchAnvil.obj │ │ ├── workbenchGrind.mtl │ │ └── workbenchGrind.obj │ └── world │ │ ├── dungeon_floor.blend │ │ ├── dungeon_floor_wall1.blend │ │ ├── dungeon_floor_wall2_corner.blend │ │ ├── dungeon_floor_wall2_corner_nopillar.blend │ │ ├── dungeon_floor_wall2_opposite.blend │ │ ├── dungeon_floor_wall3_deadend.blend │ │ └── dungeon_floor_wall3_downstairs.blend └── scripts │ ├── engine │ ├── config.lua │ └── init.lua │ ├── entitydefs │ └── bat.lua │ ├── layout │ ├── mainmenu.lua │ ├── splash.lua │ └── title.lua │ ├── modules │ ├── Engine.lua │ ├── Terrain.lua │ ├── Vec3.lua │ └── Yoga.lua │ ├── tower_scene.lua │ └── world │ └── mapgen.lua ├── scripts └── generate_ecs_includes.py ├── src ├── config.hpp.in ├── core │ ├── AI │ │ ├── BehaviorTree.hpp │ │ └── BehaviorTree │ │ │ ├── Actions │ │ │ ├── DebugActionNode.hpp │ │ │ ├── LambdaActionNode.hpp │ │ │ └── TimeoutNode.hpp │ │ │ ├── Composites │ │ │ ├── SelectorNode.hpp │ │ │ └── SequencerNode.hpp │ │ │ ├── Conditions │ │ │ └── IsNearEntity.hpp │ │ │ ├── Decorators │ │ │ ├── ForceSuccessNode.hpp │ │ │ ├── InverterNode.hpp │ │ │ ├── RepeatNode.hpp │ │ │ └── RetryNode.hpp │ │ │ └── INode.hpp │ ├── Animation │ │ ├── Animation.cpp │ │ └── Animation.hpp │ ├── Assets │ │ ├── AssetManager.cpp │ │ ├── AssetManager.hpp │ │ ├── IAssets.hpp │ │ ├── Loaders │ │ │ ├── ObjLoader.cpp │ │ │ └── ObjLoader.hpp │ │ ├── Mesh.cpp │ │ ├── Mesh.hpp │ │ ├── Model.cpp │ │ ├── Model.hpp │ │ ├── Texture.cpp │ │ ├── Texture.hpp │ │ ├── TiledTexture.cpp │ │ ├── TiledTexture.hpp │ │ └── Vertex.hpp │ ├── Debug │ │ ├── ImguiPresets.cpp │ │ └── ImguiPresets.hpp │ ├── Engine │ │ ├── Engine.cpp │ │ ├── Engine.hpp │ │ ├── EngineConfig.cpp │ │ ├── EngineConfig.hpp │ │ └── IScene.hpp │ ├── Graphics │ │ ├── GLState.hpp │ │ ├── Graphics.cpp │ │ └── Graphics.hpp │ ├── Grid2D.cpp │ ├── Grid2D.hpp │ ├── ImprovedTerrain │ │ ├── Bodies │ │ │ ├── CubeBody.cpp │ │ │ ├── CubeBody.hpp │ │ │ ├── DiskBody.cpp │ │ │ ├── DiskBody.hpp │ │ │ ├── SphereBody.cpp │ │ │ └── SphereBody.hpp │ │ ├── CSGTree.cpp │ │ ├── CSGTree.hpp │ │ ├── DynamicTerrain.cpp │ │ ├── DynamicTerrain.hpp │ │ ├── ISignedDistanceBody.hpp │ │ ├── ISignedDistanceFunction.hpp │ │ ├── SparseGrid3D.cpp │ │ └── SparseGrid3D.hpp │ ├── IslandTerrain │ │ ├── Polygonize.hpp │ │ └── Terrain.hpp │ ├── Prefab │ │ ├── IPrefab.hpp │ │ └── NPCs.hpp │ ├── RenderObject │ │ ├── Billboard.cpp │ │ ├── Billboard.hpp │ │ ├── Camera.cpp │ │ ├── Camera.hpp │ │ ├── ChunkedWorld.cpp │ │ ├── ChunkedWorld.hpp │ │ ├── GBuffer.cpp │ │ ├── GBuffer.hpp │ │ ├── Terminal.cpp │ │ └── Terminal.hpp │ ├── Script │ │ ├── FFI.cpp │ │ └── FFI.hpp │ ├── Terrain │ │ ├── ChunkedTerrain.cpp │ │ ├── ChunkedTerrain.hpp │ │ ├── CubeMarcher.cpp │ │ ├── CubeMarcher.hpp │ │ ├── EdgeTable.txt │ │ ├── SignedDistTerrain.cpp │ │ ├── SignedDistTerrain.hpp │ │ ├── Terrain.cpp │ │ ├── Terrain.hpp │ │ └── TriangleTable.txt │ ├── UI │ │ ├── DebugWidget.cpp │ │ ├── DebugWidget.hpp │ │ ├── IWidget.hpp │ │ ├── ImageWidget.cpp │ │ ├── ImageWidget.hpp │ │ ├── Layout.cpp │ │ ├── Layout.hpp │ │ └── NodeID.hpp │ ├── Util │ │ ├── Benchmark.cpp │ │ ├── Benchmark.hpp │ │ ├── Blackboard.cpp │ │ ├── Blackboard.hpp │ │ ├── DeleteAssignAndCopy.hpp │ │ ├── File.cpp │ │ ├── File.hpp │ │ ├── Font.cpp │ │ ├── Font.hpp │ │ ├── Math3d.cpp │ │ ├── Math3d.hpp │ │ ├── Random.cpp │ │ └── Random.hpp │ ├── Window │ │ ├── Screen.cpp │ │ ├── Screen.hpp │ │ ├── Window.cpp │ │ └── Window.hpp │ └── sgl │ │ ├── sgl_attachment.cpp │ │ ├── sgl_attachment.hpp │ │ ├── sgl_audio.cpp │ │ ├── sgl_audio.hpp │ │ ├── sgl_audio_listener.cpp │ │ ├── sgl_audio_listener.hpp │ │ ├── sgl_audio_source.cpp │ │ ├── sgl_audio_source.hpp │ │ ├── sgl_framebuffer.cpp │ │ ├── sgl_framebuffer.hpp │ │ ├── sgl_renderbuffer.cpp │ │ ├── sgl_renderbuffer.hpp │ │ ├── sgl_shader.cpp │ │ ├── sgl_shader.hpp │ │ ├── sgl_shader_uniform.cpp │ │ ├── sgl_shader_uniform.hpp │ │ ├── sgl_texture.cpp │ │ └── sgl_texture.hpp ├── ecs │ ├── components.hpp │ ├── components │ │ ├── CBehavior.hpp │ │ ├── CBillboard.hpp │ │ ├── CCamera.hpp │ │ ├── CDamageOverTime.hpp │ │ ├── CDecal.hpp │ │ ├── CDeletable.hpp │ │ ├── CExplosive.hpp │ │ ├── CGravity.hpp │ │ ├── CHealth.hpp │ │ ├── CJumpTimer.hpp │ │ ├── CKeyboardControllable.hpp │ │ ├── CModel.hpp │ │ ├── COrientation.hpp │ │ ├── COrientedTexture.hpp │ │ ├── CParticle.hpp │ │ ├── CPointLight.hpp │ │ ├── CPosition.hpp │ │ ├── CProjectile.hpp │ │ ├── CRunningToTarget.hpp │ │ ├── CSpawnPoint.hpp │ │ ├── CSphereCollider.hpp │ │ ├── CTerrainCollider.hpp │ │ ├── CTextureRegion.hpp │ │ └── CVelocity.hpp │ ├── events.hpp │ ├── events │ │ ├── DrawPrimitiveEvent.hpp │ │ ├── ExplosionEvent.hpp │ │ ├── GamepadConnectedEvent.hpp │ │ ├── KeyEvent.hpp │ │ ├── KillEntityEvent.hpp │ │ ├── LogEvent.hpp │ │ ├── MouseButtonEvent.hpp │ │ ├── PlaySoundEvent.hpp │ │ ├── TextInputEvent.hpp │ │ ├── WindowCloseEvent.hpp │ │ ├── WindowResizeEvent.hpp │ │ └── WorldTextEvent.hpp │ ├── systems.hpp │ └── systems │ │ ├── AISystem.cpp │ │ ├── AISystem.hpp │ │ ├── AudioSystem.cpp │ │ ├── AudioSystem.hpp │ │ ├── BillboardRenderSystem.cpp │ │ ├── BillboardRenderSystem.hpp │ │ ├── CHealthbarRenderSystem.hpp │ │ ├── CharacterControllerSystem.cpp │ │ ├── CharacterControllerSystem.hpp │ │ ├── DamageSystem.cpp │ │ ├── DamageSystem.hpp │ │ ├── DecalRenderSystem.cpp │ │ ├── DecalRenderSystem.hpp │ │ ├── DespawnSystem.cpp │ │ ├── DespawnSystem.hpp │ │ ├── DistanceFunctionCollisionSystem.cpp │ │ ├── DistanceFunctionCollisionSystem.hpp │ │ ├── EntityDeleteSystem.cpp │ │ ├── EntityDeleteSystem.hpp │ │ ├── GravitySystem.cpp │ │ ├── GravitySystem.hpp │ │ ├── IRenderSystem.hpp │ │ ├── IUpdateSystem.hpp │ │ ├── LightVolumeRenderSystem.cpp │ │ ├── LightVolumeRenderSystem.hpp │ │ ├── LogSystem.cpp │ │ ├── LogSystem.hpp │ │ ├── ModelRenderSystem.cpp │ │ ├── ModelRenderSystem.hpp │ │ ├── PositionUpdateSystem.cpp │ │ ├── PositionUpdateSystem.hpp │ │ ├── PressAwaySystem.cpp │ │ ├── PressAwaySystem.hpp │ │ ├── PrimitiveRenderSystem.cpp │ │ ├── PrimitiveRenderSystem.hpp │ │ ├── RandomJumpSystem.cpp │ │ ├── RandomJumpSystem.hpp │ │ ├── TerrainCollisionSystem.cpp │ │ ├── TerrainCollisionSystem.hpp │ │ ├── TerrainRenderSystem.cpp │ │ ├── TerrainRenderSystem.hpp │ │ ├── TextEventSystem.cpp │ │ ├── TextEventSystem.hpp │ │ ├── TextureOrientationSystem.cpp │ │ ├── TextureOrientationSystem.hpp │ │ ├── WayfindSystem.cpp │ │ └── WayfindSystem.hpp ├── main.cpp └── scenes │ ├── cutscenes │ └── splashscreen │ │ ├── SplashScreenScene.cpp │ │ └── SplashScreenScene.hpp │ ├── gamemode │ ├── TowerScene.cpp │ ├── TowerScene.hpp │ └── raft │ │ ├── IslandTerrain.cpp │ │ ├── IslandTerrain.hpp │ │ ├── MiniRaftScene.cpp │ │ ├── MiniRaftScene.hpp │ │ ├── OceanPlane.hpp │ │ ├── RaftBlock.hpp │ │ └── RaftSet.hpp │ ├── testing │ ├── LayoutEditorScene.cpp │ ├── LayoutEditorScene.hpp │ ├── ParticleScene.cpp │ ├── ParticleScene.hpp │ ├── SpritePreviewScene.cpp │ └── SpritePreviewScene.hpp │ └── ui │ ├── MainMenuScene.cpp │ └── MainMenuScene.hpp ├── vcpkg.json └── website ├── building ├── README.md ├── build_linux.md ├── build_windows.md └── images │ ├── 01_before_configure.png │ ├── 02_after_configure.png │ ├── 03_static_linking.png │ ├── 04_generating_done.png │ ├── 05_visual_studio_before_config.png │ └── 06_runtime_library.png └── images └── screenshot-v0.1.png /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /lib/cereal/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/.github/workflows/ci.yml -------------------------------------------------------------------------------- /lib/cereal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/.gitignore -------------------------------------------------------------------------------- /lib/cereal/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/.travis.yml -------------------------------------------------------------------------------- /lib/cereal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cereal/Config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") 4 | -------------------------------------------------------------------------------- /lib/cereal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/LICENSE -------------------------------------------------------------------------------- /lib/cereal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/README.md -------------------------------------------------------------------------------- /lib/cereal/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/appveyor.yml -------------------------------------------------------------------------------- /lib/cereal/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/doc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cereal/doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /lib/cereal/doc/doxygen.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/doc/doxygen.in -------------------------------------------------------------------------------- /lib/cereal/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/doc/footer.html -------------------------------------------------------------------------------- /lib/cereal/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/doc/mainpage.dox -------------------------------------------------------------------------------- /lib/cereal/include/cereal/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/include/cereal/access.hpp -------------------------------------------------------------------------------- /lib/cereal/include/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/include/cereal/cereal.hpp -------------------------------------------------------------------------------- /lib/cereal/include/cereal/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/include/cereal/macros.hpp -------------------------------------------------------------------------------- /lib/cereal/include/cereal/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/include/cereal/version.hpp -------------------------------------------------------------------------------- /lib/cereal/sandbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cereal/sandbox/performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/performance.cpp -------------------------------------------------------------------------------- /lib/cereal/sandbox/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/sandbox.cpp -------------------------------------------------------------------------------- /lib/cereal/sandbox/sandbox_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/sandbox_json.cpp -------------------------------------------------------------------------------- /lib/cereal/sandbox/sandbox_rtti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/sandbox_rtti.cpp -------------------------------------------------------------------------------- /lib/cereal/sandbox/sandbox_vs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/sandbox/sandbox_vs.cpp -------------------------------------------------------------------------------- /lib/cereal/scripts/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/scripts/appveyor.bat -------------------------------------------------------------------------------- /lib/cereal/scripts/renameincludes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/scripts/renameincludes.sh -------------------------------------------------------------------------------- /lib/cereal/scripts/updatecoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/scripts/updatecoverage.sh -------------------------------------------------------------------------------- /lib/cereal/scripts/updatedoc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/scripts/updatedoc.in -------------------------------------------------------------------------------- /lib/cereal/unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cereal/unittests/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/array.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/array.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/atomic.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/atomic.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/basic_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/basic_string.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/basic_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/basic_string.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/bitset.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/bitset.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/chrono.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/chrono.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/common.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/complex.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/complex.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/defer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/defer.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/defer.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/deque.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/deque.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/doctest.h -------------------------------------------------------------------------------- /lib/cereal/unittests/forward_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/forward_list.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/forward_list.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/list.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/list.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/map.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/map.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/memory.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/memory.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/multimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/multimap.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/multimap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/multimap.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/multiset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/multiset.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/multiset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/multiset.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/pair.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/pair.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/pod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/pod.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/pod.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/polymorphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/polymorphic.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/polymorphic.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/queue.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/queue.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/run_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/run_valgrind.sh -------------------------------------------------------------------------------- /lib/cereal/unittests/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/set.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/set.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/stack.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/stack.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/structs.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/structs.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/tuple.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/tuple.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/valarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/valarray.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/valarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/valarray.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/vector.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/vector.hpp -------------------------------------------------------------------------------- /lib/cereal/unittests/versioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/versioning.cpp -------------------------------------------------------------------------------- /lib/cereal/unittests/versioning.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/cereal/unittests/versioning.hpp -------------------------------------------------------------------------------- /lib/dr/include/dr/dr_flac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/dr/include/dr/dr_flac.cpp -------------------------------------------------------------------------------- /lib/dr/include/dr/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/dr/include/dr/dr_flac.h -------------------------------------------------------------------------------- /lib/dr/include/dr/dr_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/dr/include/dr/dr_wav.cpp -------------------------------------------------------------------------------- /lib/dr/include/dr/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/dr/include/dr/dr_wav.h -------------------------------------------------------------------------------- /lib/entt/include/entt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/entt/include/entt/LICENSE -------------------------------------------------------------------------------- /lib/entt/include/entt/entt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/entt/include/entt/entt.hpp -------------------------------------------------------------------------------- /lib/gl3w/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/CMakeLists.txt -------------------------------------------------------------------------------- /lib/gl3w/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/README.rst -------------------------------------------------------------------------------- /lib/gl3w/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/SConstruct -------------------------------------------------------------------------------- /lib/gl3w/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/UNLICENSE -------------------------------------------------------------------------------- /lib/gl3w/cmake/gl3w-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/cmake/gl3w-config.cmake -------------------------------------------------------------------------------- /lib/gl3w/gl3w_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/gl3w_gen.py -------------------------------------------------------------------------------- /lib/gl3w/include/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/include/GL/gl3w.h -------------------------------------------------------------------------------- /lib/gl3w/include/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/include/GL/glcorearb.h -------------------------------------------------------------------------------- /lib/gl3w/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /lib/gl3w/public-domain-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/public-domain-mark.png -------------------------------------------------------------------------------- /lib/gl3w/src/gl3w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/src/gl3w.cpp -------------------------------------------------------------------------------- /lib/gl3w/src/glfw_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/src/glfw_test.c -------------------------------------------------------------------------------- /lib/gl3w/src/glut_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/gl3w/src/glut_test.c -------------------------------------------------------------------------------- /lib/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/.appveyor.yml -------------------------------------------------------------------------------- /lib/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/.gitignore -------------------------------------------------------------------------------- /lib/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/.travis.yml -------------------------------------------------------------------------------- /lib/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/cmake/glm/glmConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/cmake/glm/glmConfig.cmake -------------------------------------------------------------------------------- /lib/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/copying.txt -------------------------------------------------------------------------------- /lib/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /lib/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /lib/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /lib/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/glm.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /lib/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /lib/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /lib/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/integer.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /lib/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/packing.hpp -------------------------------------------------------------------------------- /lib/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/common.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /lib/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /lib/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /lib/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/manual.md -------------------------------------------------------------------------------- /lib/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/readme.md -------------------------------------------------------------------------------- /lib/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /lib/glm/test/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/ext/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/ext/ext_vec1.cpp -------------------------------------------------------------------------------- /lib/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /lib/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_bitfield.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_constants.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_type_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_type_ptr.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_easing.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_functions.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_intersect.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_load.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_log_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_log_base.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_simd_mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_simd_mat4.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_simd_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_simd_vec4.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_texture.cpp -------------------------------------------------------------------------------- /lib/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /lib/glm/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/util/autoexp.txt -------------------------------------------------------------------------------- /lib/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /lib/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/util/glm.natvis -------------------------------------------------------------------------------- /lib/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/glm/util/usertype.dat -------------------------------------------------------------------------------- /lib/imgui/include/imgui/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://github.com/ocornut/imgui/wiki/Sponsors'] 2 | -------------------------------------------------------------------------------- /lib/imgui/include/imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/imgui/include/imgui/.gitignore -------------------------------------------------------------------------------- /lib/imgui/include/imgui/examples/README.txt: -------------------------------------------------------------------------------- 1 | See EXAMPLES and BACKENDS files in the docs/ folder. 2 | -------------------------------------------------------------------------------- /lib/imgui/include/imgui/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /lib/imgui/include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/imgui/include/imgui/imconfig.h -------------------------------------------------------------------------------- /lib/imgui/include/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/imgui/include/imgui/imgui.cpp -------------------------------------------------------------------------------- /lib/imgui/include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/imgui/include/imgui/imgui.h -------------------------------------------------------------------------------- /lib/par/include/par/par_shapes.cpp: -------------------------------------------------------------------------------- 1 | 2 | #define PAR_SHAPES_IMPLEMENTATION 3 | #include 4 | -------------------------------------------------------------------------------- /lib/par/include/par/par_shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/par/include/par/par_shapes.h -------------------------------------------------------------------------------- /lib/stb/include/stb/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/stb/include/stb/stb_image.cpp -------------------------------------------------------------------------------- /lib/stb/include/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/stb/include/stb/stb_image.h -------------------------------------------------------------------------------- /lib/yoga/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/.buckconfig -------------------------------------------------------------------------------- /lib/yoga/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/.clang-format -------------------------------------------------------------------------------- /lib/yoga/.clang-format-ignore: -------------------------------------------------------------------------------- 1 | ^lib/.* 2 | -------------------------------------------------------------------------------- /lib/yoga/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/.editorconfig -------------------------------------------------------------------------------- /lib/yoga/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/.gitignore -------------------------------------------------------------------------------- /lib/yoga/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/.gitmodules -------------------------------------------------------------------------------- /lib/yoga/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/BUCK -------------------------------------------------------------------------------- /lib/yoga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/CMakeLists.txt -------------------------------------------------------------------------------- /lib/yoga/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /lib/yoga/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/yoga/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/LICENSE -------------------------------------------------------------------------------- /lib/yoga/LICENSE-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/LICENSE-examples -------------------------------------------------------------------------------- /lib/yoga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/README.md -------------------------------------------------------------------------------- /lib/yoga/Yoga.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/Yoga.podspec -------------------------------------------------------------------------------- /lib/yoga/YogaKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit.podspec -------------------------------------------------------------------------------- /lib/yoga/YogaKit/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0.2 2 | -------------------------------------------------------------------------------- /lib/yoga/YogaKit/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit/BUCK -------------------------------------------------------------------------------- /lib/yoga/YogaKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit/README.md -------------------------------------------------------------------------------- /lib/yoga/YogaKit/Source/YGLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit/Source/YGLayout.h -------------------------------------------------------------------------------- /lib/yoga/YogaKit/Source/YGLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit/Source/YGLayout.m -------------------------------------------------------------------------------- /lib/yoga/YogaKit/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/YogaKit/Tests/Info.plist -------------------------------------------------------------------------------- /lib/yoga/benchmark/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/benchmark/BUCK -------------------------------------------------------------------------------- /lib/yoga/benchmark/YGBenchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/benchmark/YGBenchmark.c -------------------------------------------------------------------------------- /lib/yoga/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/build.gradle -------------------------------------------------------------------------------- /lib/yoga/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/enums.py -------------------------------------------------------------------------------- /lib/yoga/gentest/gentest-cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/gentest/gentest-cpp.js -------------------------------------------------------------------------------- /lib/yoga/gentest/gentest-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/gentest/gentest-cs.js -------------------------------------------------------------------------------- /lib/yoga/gentest/gentest-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/gentest/gentest-java.js -------------------------------------------------------------------------------- /lib/yoga/gentest/gentest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/gentest/gentest.js -------------------------------------------------------------------------------- /lib/yoga/gentest/gentest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/gentest/gentest.rb -------------------------------------------------------------------------------- /lib/yoga/lib/android-support/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/android-support/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/appcompat/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/appcompat/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/fb/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/fb/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/fb/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/fb/build.gradle -------------------------------------------------------------------------------- /lib/yoga/lib/gtest/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/gtest/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/hamcrest/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/hamcrest/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/jni/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/jni/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/jni/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/jni/jni.h -------------------------------------------------------------------------------- /lib/yoga/lib/jni/real/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/jni/real/jni.h -------------------------------------------------------------------------------- /lib/yoga/lib/jsr-305/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/jsr-305/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/jsr-305/jsr305.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/jsr-305/jsr305.jar -------------------------------------------------------------------------------- /lib/yoga/lib/junit/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/junit/BUCK -------------------------------------------------------------------------------- /lib/yoga/lib/junit/junit-4.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/junit/junit-4.12.jar -------------------------------------------------------------------------------- /lib/yoga/lib/soloader/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/lib/soloader/BUCK -------------------------------------------------------------------------------- /lib/yoga/mode/opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/mode/opt -------------------------------------------------------------------------------- /lib/yoga/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/settings.gradle -------------------------------------------------------------------------------- /lib/yoga/tests/BitUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/BitUtilsTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/EventsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/EventsTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/InternalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/InternalTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGAlignSelfTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGAlignSelfTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGBorderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGBorderTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGConfigTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGConfigTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGDimensionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGDimensionTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGDirtiedTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGDirtiedTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGDisplayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGDisplayTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGEdgeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGEdgeTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGFlexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGFlexTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGFlexWrapTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGFlexWrapTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGLoggerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGLoggerTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGMarginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGMarginTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGMeasureTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGMeasureTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGNodeChildTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGNodeChildTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGPaddingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGPaddingTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGRelayoutTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGRelayoutTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGRoundingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGRoundingTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGStyleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGStyleTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGTraversalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGTraversalTest.cpp -------------------------------------------------------------------------------- /lib/yoga/tests/YGValueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/tests/YGValueTest.cpp -------------------------------------------------------------------------------- /lib/yoga/testutil/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/testutil/BUCK -------------------------------------------------------------------------------- /lib/yoga/testutil/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/testutil/build.gradle -------------------------------------------------------------------------------- /lib/yoga/util/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/util/BUCK -------------------------------------------------------------------------------- /lib/yoga/yoga/BitUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/BitUtils.h -------------------------------------------------------------------------------- /lib/yoga/yoga/CompactValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/CompactValue.h -------------------------------------------------------------------------------- /lib/yoga/yoga/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/Utils.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/Utils.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGConfig.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGConfig.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGEnums.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGEnums.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGFloatOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGFloatOptional.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGLayout.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGLayout.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGMacros.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGNode.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGNode.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGNodePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGNodePrint.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGNodePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGNodePrint.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGStyle.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGStyle.h -------------------------------------------------------------------------------- /lib/yoga/yoga/YGValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGValue.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/YGValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/YGValue.h -------------------------------------------------------------------------------- /lib/yoga/yoga/Yoga-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/Yoga-internal.h -------------------------------------------------------------------------------- /lib/yoga/yoga/Yoga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/Yoga.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/Yoga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/Yoga.h -------------------------------------------------------------------------------- /lib/yoga/yoga/event/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/event/event.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/event/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/event/event.h -------------------------------------------------------------------------------- /lib/yoga/yoga/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/log.cpp -------------------------------------------------------------------------------- /lib/yoga/yoga/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yoga/log.h -------------------------------------------------------------------------------- /lib/yoga/yogacore/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/lib/yoga/yogacore/build.gradle -------------------------------------------------------------------------------- /res/ai/test.bhv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/ai/test.bhv -------------------------------------------------------------------------------- /res/audio/music/Tikibar_Mixer.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/audio/music/Tikibar_Mixer.opus -------------------------------------------------------------------------------- /res/audio/sfx/explode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/audio/sfx/explode.wav -------------------------------------------------------------------------------- /res/audio/sfx/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/audio/sfx/hit.wav -------------------------------------------------------------------------------- /res/audio/sfx/ouch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/audio/sfx/ouch.wav -------------------------------------------------------------------------------- /res/audio/sfx/untitled.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/audio/sfx/untitled.wav -------------------------------------------------------------------------------- /res/fonts/1982.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/1982.ttf -------------------------------------------------------------------------------- /res/fonts/FFF_Tusj.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/FFF_Tusj.ttf -------------------------------------------------------------------------------- /res/fonts/FSmono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/FSmono.ttf -------------------------------------------------------------------------------- /res/fonts/escalope_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/escalope_1.ttf -------------------------------------------------------------------------------- /res/fonts/escalope_2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/escalope_2.ttf -------------------------------------------------------------------------------- /res/fonts/escalope_3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/escalope_3.ttf -------------------------------------------------------------------------------- /res/fonts/escalope_soft.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/escalope_soft.ttf -------------------------------------------------------------------------------- /res/fonts/humble_fonts/charset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/humble_fonts/charset.txt -------------------------------------------------------------------------------- /res/fonts/humble_fonts/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/humble_fonts/license.txt -------------------------------------------------------------------------------- /res/fonts/origami.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/fonts/origami.ttf -------------------------------------------------------------------------------- /res/glsl/2d/font_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/2d/font_frag.glsl -------------------------------------------------------------------------------- /res/glsl/2d/font_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/2d/font_vert.glsl -------------------------------------------------------------------------------- /res/glsl/2d/screen_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/2d/screen_frag.glsl -------------------------------------------------------------------------------- /res/glsl/2d/screen_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/2d/screen_vert.glsl -------------------------------------------------------------------------------- /res/glsl/proto/terrain_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/proto/terrain_frag.glsl -------------------------------------------------------------------------------- /res/glsl/proto/terrain_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/proto/terrain_vert.glsl -------------------------------------------------------------------------------- /res/glsl/raft/model_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/raft/model_frag.glsl -------------------------------------------------------------------------------- /res/glsl/raft/model_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/raft/model_vert.glsl -------------------------------------------------------------------------------- /res/glsl/raft/water_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/raft/water_frag.glsl -------------------------------------------------------------------------------- /res/glsl/raft/water_geom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/raft/water_geom.glsl -------------------------------------------------------------------------------- /res/glsl/raft/water_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/raft/water_vert.glsl -------------------------------------------------------------------------------- /res/glsl/ui/image_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/ui/image_frag.glsl -------------------------------------------------------------------------------- /res/glsl/ui/image_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/ui/image_vert.glsl -------------------------------------------------------------------------------- /res/glsl/ui/wireframe_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/ui/wireframe_frag.glsl -------------------------------------------------------------------------------- /res/glsl/ui/wireframe_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/glsl/ui/wireframe_vert.glsl -------------------------------------------------------------------------------- /res/images/decals/coords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/decals/coords.png -------------------------------------------------------------------------------- /res/images/decals/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/decals/explosion.png -------------------------------------------------------------------------------- /res/images/particles/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/particles/smoke.png -------------------------------------------------------------------------------- /res/images/sprites/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/sprites/arrows.png -------------------------------------------------------------------------------- /res/images/sprites/emotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/sprites/emotes.png -------------------------------------------------------------------------------- /res/images/sprites/healthbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/sprites/healthbar.png -------------------------------------------------------------------------------- /res/images/sprites/ships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/sprites/ships.png -------------------------------------------------------------------------------- /res/images/sprites/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/sprites/tiles.png -------------------------------------------------------------------------------- /res/images/textures/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/textures/dungeon.png -------------------------------------------------------------------------------- /res/images/textures/dungeonII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/textures/dungeonII.png -------------------------------------------------------------------------------- /res/images/textures/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/textures/floor.png -------------------------------------------------------------------------------- /res/images/textures/ground_uv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/textures/ground_uv.png -------------------------------------------------------------------------------- /res/images/textures/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/textures/wall.png -------------------------------------------------------------------------------- /res/images/ui/engine_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/engine_logo.png -------------------------------------------------------------------------------- /res/images/ui/gm_tower.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/gm_tower.aseprite -------------------------------------------------------------------------------- /res/images/ui/gm_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/gm_tower.png -------------------------------------------------------------------------------- /res/images/ui/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/placeholder.png -------------------------------------------------------------------------------- /res/images/ui/profile_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/profile_picture.png -------------------------------------------------------------------------------- /res/images/ui/splash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/splash_logo.png -------------------------------------------------------------------------------- /res/images/ui/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/ui/title.png -------------------------------------------------------------------------------- /res/images/world/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/images/world/tileset.png -------------------------------------------------------------------------------- /res/models/raft/barrel.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/barrel.mtl -------------------------------------------------------------------------------- /res/models/raft/barrel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/barrel.obj -------------------------------------------------------------------------------- /res/models/raft/barrelOpen.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/barrelOpen.mtl -------------------------------------------------------------------------------- /res/models/raft/barrelOpen.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/barrelOpen.obj -------------------------------------------------------------------------------- /res/models/raft/bedroll.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedroll.mtl -------------------------------------------------------------------------------- /res/models/raft/bedroll.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedroll.obj -------------------------------------------------------------------------------- /res/models/raft/bedrollFrame.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedrollFrame.mtl -------------------------------------------------------------------------------- /res/models/raft/bedrollFrame.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedrollFrame.obj -------------------------------------------------------------------------------- /res/models/raft/bedrollPacked.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedrollPacked.mtl -------------------------------------------------------------------------------- /res/models/raft/bedrollPacked.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bedrollPacked.obj -------------------------------------------------------------------------------- /res/models/raft/boat_large.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boat_large.mtl -------------------------------------------------------------------------------- /res/models/raft/boat_large.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boat_large.obj -------------------------------------------------------------------------------- /res/models/raft/boat_small.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boat_small.mtl -------------------------------------------------------------------------------- /res/models/raft/boat_small.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boat_small.obj -------------------------------------------------------------------------------- /res/models/raft/bottle.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bottle.mtl -------------------------------------------------------------------------------- /res/models/raft/bottle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bottle.obj -------------------------------------------------------------------------------- /res/models/raft/bottleLarge.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bottleLarge.mtl -------------------------------------------------------------------------------- /res/models/raft/bottleLarge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/bottleLarge.obj -------------------------------------------------------------------------------- /res/models/raft/box.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/box.mtl -------------------------------------------------------------------------------- /res/models/raft/box.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/box.obj -------------------------------------------------------------------------------- /res/models/raft/boxOpen.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boxOpen.mtl -------------------------------------------------------------------------------- /res/models/raft/boxOpen.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/boxOpen.obj -------------------------------------------------------------------------------- /res/models/raft/campfire.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/campfire.mtl -------------------------------------------------------------------------------- /res/models/raft/campfire.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/campfire.obj -------------------------------------------------------------------------------- /res/models/raft/cannon.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannon.mtl -------------------------------------------------------------------------------- /res/models/raft/cannon.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannon.obj -------------------------------------------------------------------------------- /res/models/raft/cannonBall.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonBall.mtl -------------------------------------------------------------------------------- /res/models/raft/cannonBall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonBall.obj -------------------------------------------------------------------------------- /res/models/raft/cannonLarge.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonLarge.mtl -------------------------------------------------------------------------------- /res/models/raft/cannonLarge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonLarge.obj -------------------------------------------------------------------------------- /res/models/raft/cannonMobile.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonMobile.mtl -------------------------------------------------------------------------------- /res/models/raft/cannonMobile.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/cannonMobile.obj -------------------------------------------------------------------------------- /res/models/raft/chest.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/chest.mtl -------------------------------------------------------------------------------- /res/models/raft/chest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/chest.obj -------------------------------------------------------------------------------- /res/models/raft/fence.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fence.mtl -------------------------------------------------------------------------------- /res/models/raft/fence.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fence.obj -------------------------------------------------------------------------------- /res/models/raft/fenceFortified.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fenceFortified.mtl -------------------------------------------------------------------------------- /res/models/raft/fenceFortified.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fenceFortified.obj -------------------------------------------------------------------------------- /res/models/raft/fish.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fish.mtl -------------------------------------------------------------------------------- /res/models/raft/fish.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fish.obj -------------------------------------------------------------------------------- /res/models/raft/fishingStand.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fishingStand.mtl -------------------------------------------------------------------------------- /res/models/raft/fishingStand.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/fishingStand.obj -------------------------------------------------------------------------------- /res/models/raft/floor.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/floor.mtl -------------------------------------------------------------------------------- /res/models/raft/floor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/floor.obj -------------------------------------------------------------------------------- /res/models/raft/formation_rock.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/formation_rock.mtl -------------------------------------------------------------------------------- /res/models/raft/formation_rock.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/formation_rock.obj -------------------------------------------------------------------------------- /res/models/raft/grass.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/grass.mtl -------------------------------------------------------------------------------- /res/models/raft/grass.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/grass.obj -------------------------------------------------------------------------------- /res/models/raft/grassLarge.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/grassLarge.mtl -------------------------------------------------------------------------------- /res/models/raft/grassLarge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/grassLarge.obj -------------------------------------------------------------------------------- /res/models/raft/hole.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/hole.mtl -------------------------------------------------------------------------------- /res/models/raft/hole.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/hole.obj -------------------------------------------------------------------------------- /res/models/raft/paddle.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/paddle.mtl -------------------------------------------------------------------------------- /res/models/raft/paddle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/paddle.obj -------------------------------------------------------------------------------- /res/models/raft/palm_long.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/palm_long.mtl -------------------------------------------------------------------------------- /res/models/raft/palm_long.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/palm_long.obj -------------------------------------------------------------------------------- /res/models/raft/palm_short.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/palm_short.mtl -------------------------------------------------------------------------------- /res/models/raft/palm_short.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/palm_short.obj -------------------------------------------------------------------------------- /res/models/raft/pirate_captain.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_captain.mtl -------------------------------------------------------------------------------- /res/models/raft/pirate_captain.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_captain.obj -------------------------------------------------------------------------------- /res/models/raft/pirate_crew.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_crew.mtl -------------------------------------------------------------------------------- /res/models/raft/pirate_crew.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_crew.obj -------------------------------------------------------------------------------- /res/models/raft/pirate_officer.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_officer.mtl -------------------------------------------------------------------------------- /res/models/raft/pirate_officer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/pirate_officer.obj -------------------------------------------------------------------------------- /res/models/raft/plant.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/plant.mtl -------------------------------------------------------------------------------- /res/models/raft/plant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/plant.obj -------------------------------------------------------------------------------- /res/models/raft/resourceStone.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/resourceStone.mtl -------------------------------------------------------------------------------- /res/models/raft/resourceStone.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/resourceStone.obj -------------------------------------------------------------------------------- /res/models/raft/resourceWood.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/resourceWood.mtl -------------------------------------------------------------------------------- /res/models/raft/resourceWood.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/resourceWood.obj -------------------------------------------------------------------------------- /res/models/raft/rockA.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockA.mtl -------------------------------------------------------------------------------- /res/models/raft/rockA.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockA.obj -------------------------------------------------------------------------------- /res/models/raft/rockB.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockB.mtl -------------------------------------------------------------------------------- /res/models/raft/rockB.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockB.obj -------------------------------------------------------------------------------- /res/models/raft/rockC.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockC.mtl -------------------------------------------------------------------------------- /res/models/raft/rockC.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockC.obj -------------------------------------------------------------------------------- /res/models/raft/rockFlat.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockFlat.mtl -------------------------------------------------------------------------------- /res/models/raft/rockFlat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockFlat.obj -------------------------------------------------------------------------------- /res/models/raft/rockFlatGrass.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockFlatGrass.mtl -------------------------------------------------------------------------------- /res/models/raft/rockFlatGrass.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/rockFlatGrass.obj -------------------------------------------------------------------------------- /res/models/raft/ship_dark.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_dark.mtl -------------------------------------------------------------------------------- /res/models/raft/ship_dark.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_dark.obj -------------------------------------------------------------------------------- /res/models/raft/ship_light.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_light.mtl -------------------------------------------------------------------------------- /res/models/raft/ship_light.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_light.obj -------------------------------------------------------------------------------- /res/models/raft/ship_wreck.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_wreck.mtl -------------------------------------------------------------------------------- /res/models/raft/ship_wreck.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/ship_wreck.obj -------------------------------------------------------------------------------- /res/models/raft/shovel.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/shovel.mtl -------------------------------------------------------------------------------- /res/models/raft/shovel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/shovel.obj -------------------------------------------------------------------------------- /res/models/raft/signpost.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/signpost.mtl -------------------------------------------------------------------------------- /res/models/raft/signpost.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/signpost.obj -------------------------------------------------------------------------------- /res/models/raft/signpostSingle.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/signpostSingle.mtl -------------------------------------------------------------------------------- /res/models/raft/signpostSingle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/signpostSingle.obj -------------------------------------------------------------------------------- /res/models/raft/structure.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structure.mtl -------------------------------------------------------------------------------- /res/models/raft/structure.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structure.obj -------------------------------------------------------------------------------- /res/models/raft/structureBase.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureBase.mtl -------------------------------------------------------------------------------- /res/models/raft/structureBase.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureBase.obj -------------------------------------------------------------------------------- /res/models/raft/structureCloth.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureCloth.mtl -------------------------------------------------------------------------------- /res/models/raft/structureCloth.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureCloth.obj -------------------------------------------------------------------------------- /res/models/raft/structureRoof.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureRoof.mtl -------------------------------------------------------------------------------- /res/models/raft/structureRoof.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/structureRoof.obj -------------------------------------------------------------------------------- /res/models/raft/sword.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/sword.mtl -------------------------------------------------------------------------------- /res/models/raft/sword.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/sword.obj -------------------------------------------------------------------------------- /res/models/raft/sword_scimitar.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/sword_scimitar.mtl -------------------------------------------------------------------------------- /res/models/raft/sword_scimitar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/sword_scimitar.obj -------------------------------------------------------------------------------- /res/models/raft/tent.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tent.mtl -------------------------------------------------------------------------------- /res/models/raft/tent.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tent.obj -------------------------------------------------------------------------------- /res/models/raft/tentClosed.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tentClosed.mtl -------------------------------------------------------------------------------- /res/models/raft/tentClosed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tentClosed.obj -------------------------------------------------------------------------------- /res/models/raft/tentHalf.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tentHalf.mtl -------------------------------------------------------------------------------- /res/models/raft/tentHalf.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tentHalf.obj -------------------------------------------------------------------------------- /res/models/raft/toolAxe.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolAxe.mtl -------------------------------------------------------------------------------- /res/models/raft/toolAxe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolAxe.obj -------------------------------------------------------------------------------- /res/models/raft/toolHoe.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolHoe.mtl -------------------------------------------------------------------------------- /res/models/raft/toolHoe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolHoe.obj -------------------------------------------------------------------------------- /res/models/raft/toolPickaxe.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolPickaxe.mtl -------------------------------------------------------------------------------- /res/models/raft/toolPickaxe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolPickaxe.obj -------------------------------------------------------------------------------- /res/models/raft/toolShovel.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolShovel.mtl -------------------------------------------------------------------------------- /res/models/raft/toolShovel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/toolShovel.obj -------------------------------------------------------------------------------- /res/models/raft/tower.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tower.mtl -------------------------------------------------------------------------------- /res/models/raft/tower.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tower.obj -------------------------------------------------------------------------------- /res/models/raft/tree.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tree.mtl -------------------------------------------------------------------------------- /res/models/raft/tree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/tree.obj -------------------------------------------------------------------------------- /res/models/raft/treeFall.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeFall.mtl -------------------------------------------------------------------------------- /res/models/raft/treeFall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeFall.obj -------------------------------------------------------------------------------- /res/models/raft/treeFallLarge.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeFallLarge.mtl -------------------------------------------------------------------------------- /res/models/raft/treeFallLarge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeFallLarge.obj -------------------------------------------------------------------------------- /res/models/raft/treeLarge.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeLarge.mtl -------------------------------------------------------------------------------- /res/models/raft/treeLarge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/treeLarge.obj -------------------------------------------------------------------------------- /res/models/raft/workbench.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbench.mtl -------------------------------------------------------------------------------- /res/models/raft/workbench.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbench.obj -------------------------------------------------------------------------------- /res/models/raft/workbenchAnvil.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbenchAnvil.mtl -------------------------------------------------------------------------------- /res/models/raft/workbenchAnvil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbenchAnvil.obj -------------------------------------------------------------------------------- /res/models/raft/workbenchGrind.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbenchGrind.mtl -------------------------------------------------------------------------------- /res/models/raft/workbenchGrind.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/models/raft/workbenchGrind.obj -------------------------------------------------------------------------------- /res/scripts/engine/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/engine/config.lua -------------------------------------------------------------------------------- /res/scripts/engine/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/engine/init.lua -------------------------------------------------------------------------------- /res/scripts/entitydefs/bat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/entitydefs/bat.lua -------------------------------------------------------------------------------- /res/scripts/layout/mainmenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/layout/mainmenu.lua -------------------------------------------------------------------------------- /res/scripts/layout/splash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/layout/splash.lua -------------------------------------------------------------------------------- /res/scripts/layout/title.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/layout/title.lua -------------------------------------------------------------------------------- /res/scripts/modules/Engine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/modules/Engine.lua -------------------------------------------------------------------------------- /res/scripts/modules/Terrain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/modules/Terrain.lua -------------------------------------------------------------------------------- /res/scripts/modules/Vec3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/modules/Vec3.lua -------------------------------------------------------------------------------- /res/scripts/modules/Yoga.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/modules/Yoga.lua -------------------------------------------------------------------------------- /res/scripts/tower_scene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/tower_scene.lua -------------------------------------------------------------------------------- /res/scripts/world/mapgen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/res/scripts/world/mapgen.lua -------------------------------------------------------------------------------- /scripts/generate_ecs_includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/scripts/generate_ecs_includes.py -------------------------------------------------------------------------------- /src/config.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/config.hpp.in -------------------------------------------------------------------------------- /src/core/AI/BehaviorTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/AI/BehaviorTree.hpp -------------------------------------------------------------------------------- /src/core/AI/BehaviorTree/INode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/AI/BehaviorTree/INode.hpp -------------------------------------------------------------------------------- /src/core/Animation/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Animation/Animation.cpp -------------------------------------------------------------------------------- /src/core/Animation/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Animation/Animation.hpp -------------------------------------------------------------------------------- /src/core/Assets/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/AssetManager.cpp -------------------------------------------------------------------------------- /src/core/Assets/AssetManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/AssetManager.hpp -------------------------------------------------------------------------------- /src/core/Assets/IAssets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/IAssets.hpp -------------------------------------------------------------------------------- /src/core/Assets/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Mesh.cpp -------------------------------------------------------------------------------- /src/core/Assets/Mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Mesh.hpp -------------------------------------------------------------------------------- /src/core/Assets/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Model.cpp -------------------------------------------------------------------------------- /src/core/Assets/Model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Model.hpp -------------------------------------------------------------------------------- /src/core/Assets/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Texture.cpp -------------------------------------------------------------------------------- /src/core/Assets/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Texture.hpp -------------------------------------------------------------------------------- /src/core/Assets/TiledTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/TiledTexture.cpp -------------------------------------------------------------------------------- /src/core/Assets/TiledTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/TiledTexture.hpp -------------------------------------------------------------------------------- /src/core/Assets/Vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Assets/Vertex.hpp -------------------------------------------------------------------------------- /src/core/Debug/ImguiPresets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Debug/ImguiPresets.cpp -------------------------------------------------------------------------------- /src/core/Debug/ImguiPresets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Debug/ImguiPresets.hpp -------------------------------------------------------------------------------- /src/core/Engine/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Engine/Engine.cpp -------------------------------------------------------------------------------- /src/core/Engine/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Engine/Engine.hpp -------------------------------------------------------------------------------- /src/core/Engine/EngineConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Engine/EngineConfig.cpp -------------------------------------------------------------------------------- /src/core/Engine/EngineConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Engine/EngineConfig.hpp -------------------------------------------------------------------------------- /src/core/Engine/IScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Engine/IScene.hpp -------------------------------------------------------------------------------- /src/core/Graphics/GLState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Graphics/GLState.hpp -------------------------------------------------------------------------------- /src/core/Graphics/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Graphics/Graphics.cpp -------------------------------------------------------------------------------- /src/core/Graphics/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Graphics/Graphics.hpp -------------------------------------------------------------------------------- /src/core/Grid2D.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/core/Grid2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Grid2D.hpp -------------------------------------------------------------------------------- /src/core/ImprovedTerrain/SparseGrid3D.cpp: -------------------------------------------------------------------------------- 1 | #include "ImprovedTerrain/SparseGrid3D.hpp" 2 | -------------------------------------------------------------------------------- /src/core/IslandTerrain/Terrain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/IslandTerrain/Terrain.hpp -------------------------------------------------------------------------------- /src/core/Prefab/IPrefab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Prefab/IPrefab.hpp -------------------------------------------------------------------------------- /src/core/Prefab/NPCs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Prefab/NPCs.hpp -------------------------------------------------------------------------------- /src/core/RenderObject/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/Camera.cpp -------------------------------------------------------------------------------- /src/core/RenderObject/Camera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/Camera.hpp -------------------------------------------------------------------------------- /src/core/RenderObject/GBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/GBuffer.cpp -------------------------------------------------------------------------------- /src/core/RenderObject/GBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/GBuffer.hpp -------------------------------------------------------------------------------- /src/core/RenderObject/Terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/Terminal.cpp -------------------------------------------------------------------------------- /src/core/RenderObject/Terminal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/RenderObject/Terminal.hpp -------------------------------------------------------------------------------- /src/core/Script/FFI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Script/FFI.cpp -------------------------------------------------------------------------------- /src/core/Script/FFI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Script/FFI.hpp -------------------------------------------------------------------------------- /src/core/Terrain/CubeMarcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/CubeMarcher.cpp -------------------------------------------------------------------------------- /src/core/Terrain/CubeMarcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/CubeMarcher.hpp -------------------------------------------------------------------------------- /src/core/Terrain/EdgeTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/EdgeTable.txt -------------------------------------------------------------------------------- /src/core/Terrain/Terrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/Terrain.cpp -------------------------------------------------------------------------------- /src/core/Terrain/Terrain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/Terrain.hpp -------------------------------------------------------------------------------- /src/core/Terrain/TriangleTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Terrain/TriangleTable.txt -------------------------------------------------------------------------------- /src/core/UI/DebugWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/DebugWidget.cpp -------------------------------------------------------------------------------- /src/core/UI/DebugWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/DebugWidget.hpp -------------------------------------------------------------------------------- /src/core/UI/IWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/IWidget.hpp -------------------------------------------------------------------------------- /src/core/UI/ImageWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/ImageWidget.cpp -------------------------------------------------------------------------------- /src/core/UI/ImageWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/ImageWidget.hpp -------------------------------------------------------------------------------- /src/core/UI/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/Layout.cpp -------------------------------------------------------------------------------- /src/core/UI/Layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/Layout.hpp -------------------------------------------------------------------------------- /src/core/UI/NodeID.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/UI/NodeID.hpp -------------------------------------------------------------------------------- /src/core/Util/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Benchmark.cpp -------------------------------------------------------------------------------- /src/core/Util/Benchmark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Benchmark.hpp -------------------------------------------------------------------------------- /src/core/Util/Blackboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Blackboard.cpp -------------------------------------------------------------------------------- /src/core/Util/Blackboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Blackboard.hpp -------------------------------------------------------------------------------- /src/core/Util/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/File.cpp -------------------------------------------------------------------------------- /src/core/Util/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/File.hpp -------------------------------------------------------------------------------- /src/core/Util/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Font.cpp -------------------------------------------------------------------------------- /src/core/Util/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Font.hpp -------------------------------------------------------------------------------- /src/core/Util/Math3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Math3d.cpp -------------------------------------------------------------------------------- /src/core/Util/Math3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Math3d.hpp -------------------------------------------------------------------------------- /src/core/Util/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Random.cpp -------------------------------------------------------------------------------- /src/core/Util/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Util/Random.hpp -------------------------------------------------------------------------------- /src/core/Window/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Window/Screen.cpp -------------------------------------------------------------------------------- /src/core/Window/Screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Window/Screen.hpp -------------------------------------------------------------------------------- /src/core/Window/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Window/Window.cpp -------------------------------------------------------------------------------- /src/core/Window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/Window/Window.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_attachment.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_attachment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_attachment.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_audio.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_audio.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_audio_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_audio_source.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_audio_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_audio_source.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_framebuffer.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_framebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_framebuffer.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_renderbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_renderbuffer.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_renderbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_renderbuffer.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_shader.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_shader.hpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_texture.cpp -------------------------------------------------------------------------------- /src/core/sgl/sgl_texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/core/sgl/sgl_texture.hpp -------------------------------------------------------------------------------- /src/ecs/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components.hpp -------------------------------------------------------------------------------- /src/ecs/components/CBehavior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CBehavior.hpp -------------------------------------------------------------------------------- /src/ecs/components/CBillboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CBillboard.hpp -------------------------------------------------------------------------------- /src/ecs/components/CCamera.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CCamera.hpp -------------------------------------------------------------------------------- /src/ecs/components/CDecal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CDecal.hpp -------------------------------------------------------------------------------- /src/ecs/components/CDeletable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CDeletable.hpp -------------------------------------------------------------------------------- /src/ecs/components/CExplosive.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct CExplosive { 4 | float radius; 5 | }; 6 | -------------------------------------------------------------------------------- /src/ecs/components/CGravity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CGravity.hpp -------------------------------------------------------------------------------- /src/ecs/components/CHealth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CHealth.hpp -------------------------------------------------------------------------------- /src/ecs/components/CJumpTimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CJumpTimer.hpp -------------------------------------------------------------------------------- /src/ecs/components/CModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CModel.hpp -------------------------------------------------------------------------------- /src/ecs/components/CParticle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CParticle.hpp -------------------------------------------------------------------------------- /src/ecs/components/CPointLight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CPointLight.hpp -------------------------------------------------------------------------------- /src/ecs/components/CPosition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CPosition.hpp -------------------------------------------------------------------------------- /src/ecs/components/CProjectile.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct CProjectile { 4 | void* _dummy; 5 | }; 6 | -------------------------------------------------------------------------------- /src/ecs/components/CSpawnPoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CSpawnPoint.hpp -------------------------------------------------------------------------------- /src/ecs/components/CVelocity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/components/CVelocity.hpp -------------------------------------------------------------------------------- /src/ecs/events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events.hpp -------------------------------------------------------------------------------- /src/ecs/events/ExplosionEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/ExplosionEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/KeyEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/KeyEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/KillEntityEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/KillEntityEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/LogEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/LogEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/PlaySoundEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/PlaySoundEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/TextInputEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/TextInputEvent.hpp -------------------------------------------------------------------------------- /src/ecs/events/WindowCloseEvent.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct WindowCloseEvent {}; 4 | -------------------------------------------------------------------------------- /src/ecs/events/WorldTextEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/events/WorldTextEvent.hpp -------------------------------------------------------------------------------- /src/ecs/systems.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems.hpp -------------------------------------------------------------------------------- /src/ecs/systems/AISystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/AISystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/AISystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/AISystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/AudioSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/AudioSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/AudioSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/AudioSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/DamageSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/DamageSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/DamageSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/DamageSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/DespawnSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/DespawnSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/DespawnSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/DespawnSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/GravitySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/GravitySystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/GravitySystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/GravitySystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/IRenderSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/IRenderSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/IUpdateSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/IUpdateSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/LogSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/LogSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/LogSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/LogSystem.hpp -------------------------------------------------------------------------------- /src/ecs/systems/WayfindSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/WayfindSystem.cpp -------------------------------------------------------------------------------- /src/ecs/systems/WayfindSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/ecs/systems/WayfindSystem.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/scenes/gamemode/TowerScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/scenes/gamemode/TowerScene.cpp -------------------------------------------------------------------------------- /src/scenes/gamemode/TowerScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/scenes/gamemode/TowerScene.hpp -------------------------------------------------------------------------------- /src/scenes/gamemode/raft/RaftBlock.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | struct RaftBlock { 4 | int id; 5 | }; 6 | -------------------------------------------------------------------------------- /src/scenes/testing/ParticleScene.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scenes/ui/MainMenuScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/scenes/ui/MainMenuScene.cpp -------------------------------------------------------------------------------- /src/scenes/ui/MainMenuScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/src/scenes/ui/MainMenuScene.hpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/vcpkg.json -------------------------------------------------------------------------------- /website/building/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/website/building/README.md -------------------------------------------------------------------------------- /website/building/build_linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/website/building/build_linux.md -------------------------------------------------------------------------------- /website/building/build_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/website/building/build_windows.md -------------------------------------------------------------------------------- /website/images/screenshot-v0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpad/ecs-sandbox/HEAD/website/images/screenshot-v0.1.png --------------------------------------------------------------------------------