├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── workflow.yml ├── .gitignore ├── .gitmodules ├── .lldbinit ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── CMakePresets.json ├── CommonLibrary.cmake ├── LICENSE ├── Private ├── 3rdparty │ ├── absl │ │ ├── LICENSE.txt │ │ └── internal │ │ │ ├── city.cc │ │ │ └── hash.cc │ ├── cpp-base64 │ │ ├── LICENSE.txt │ │ ├── base64.cpp │ │ └── base64.h │ ├── fmt │ │ ├── format.cc │ │ └── os.cc │ └── mimalloc │ │ ├── LICENSE.txt │ │ ├── alloc-aligned.cpp │ │ ├── alloc-posix.cpp │ │ ├── alloc.cpp │ │ ├── arena.cpp │ │ ├── bitmap.cpp │ │ ├── heap.cpp │ │ ├── init.cpp │ │ ├── options.cpp │ │ ├── os.cpp │ │ ├── page.cpp │ │ ├── prim │ │ ├── emscripten │ │ │ └── emmalloc.cpp │ │ ├── osx │ │ │ └── alloc-override-zone.cpp │ │ ├── prim.cpp │ │ └── readme.md │ │ ├── random.cpp │ │ ├── segment-map.cpp │ │ ├── segment.cpp │ │ └── stats.cpp ├── Application │ └── Application.cpp ├── Assert │ └── Assert.cpp ├── Asset │ ├── Asset.cpp │ ├── AssetDatabase.cpp │ └── AssetOwners.cpp ├── CommandLine │ └── CommandLineArguments.cpp ├── IO │ ├── AsyncLoadFromDiskJob.cpp │ ├── File.cpp │ ├── FileChangeListener.cpp │ ├── FileIterator.cpp │ ├── Library.cpp │ ├── Log.cpp │ └── Path.cpp ├── Identifiers │ └── Guid.cpp ├── Math │ ├── CoreNumericTypes.cpp │ ├── Matrices.cpp │ ├── Quaternion.cpp │ ├── Random.cpp │ ├── Serialization.cpp │ ├── Transform.cpp │ └── Vectors.cpp ├── Memory │ ├── Any.cpp │ ├── Containers │ │ ├── String.cpp │ │ └── StringView.cpp │ ├── New.cpp │ └── Optional.cpp ├── Network │ └── Address.cpp ├── Platform │ ├── ApplePlatform.mm │ ├── IsDebuggerAttached.cpp │ ├── Pasteboard.cpp │ └── Type.cpp ├── Project System │ ├── EngineDatabase.cpp │ ├── EngineInfo.cpp │ ├── PackagedBundle.cpp │ ├── PluginDatabase.cpp │ ├── PluginInfo.cpp │ ├── ProjectDatabase.cpp │ └── ProjectInfo.cpp ├── Reflection │ ├── CoreTypes.cpp │ ├── DynamicTypeDefinition.cpp │ ├── PropertyBinder.cpp │ ├── Registry.cpp │ └── TypeDefinition.cpp ├── Serialization │ └── Serialization.cpp ├── System │ └── Query.cpp ├── Threading │ ├── Atomic.cpp │ ├── Jobs │ │ ├── Job.cpp │ │ ├── JobManager.cpp │ │ ├── JobRunnerThread.cpp │ │ └── TimersJob.cpp │ ├── Sleep.cpp │ ├── Thread.cpp │ └── ThreadId.cpp └── Time │ ├── Duration.cpp │ └── Timestamp.cpp ├── Public └── Common │ ├── 3rdparty │ ├── absl │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── abseil.podspec.gen.py │ │ ├── algorithm │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithm.h │ │ │ ├── algorithm_test.cc │ │ │ ├── container.h │ │ │ ├── container_test.cc │ │ │ └── equal_benchmark.cc │ │ ├── base │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── attributes.h │ │ │ ├── bit_cast_test.cc │ │ │ ├── call_once.h │ │ │ ├── call_once_test.cc │ │ │ ├── casts.h │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── const_init.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── exception_safety_testing_test.cc │ │ │ ├── inline_variable_test.cc │ │ │ ├── inline_variable_test_a.cc │ │ │ ├── inline_variable_test_b.cc │ │ │ ├── internal │ │ │ │ ├── atomic_hook.h │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ ├── bits.h │ │ │ │ ├── bits_test.cc │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ ├── cycleclock.cc │ │ │ │ ├── cycleclock.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── endian.h │ │ │ │ ├── endian_test.cc │ │ │ │ ├── errno_saver.h │ │ │ │ ├── errno_saver_test.cc │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── exponential_biased.cc │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ ├── fast_type_id.h │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.cc │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── periodic_sampler.cc │ │ │ │ ├── periodic_sampler.h │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.cc │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.cc │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ ├── spinlock.cc │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ ├── spinlock_linux.inc │ │ │ │ ├── spinlock_posix.inc │ │ │ │ ├── spinlock_wait.cc │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── spinlock_win32.inc │ │ │ │ ├── strerror.cc │ │ │ │ ├── strerror.h │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ ├── strerror_test.cc │ │ │ │ ├── sysinfo.cc │ │ │ │ ├── sysinfo.h │ │ │ │ ├── sysinfo_test.cc │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── thread_identity.cc │ │ │ │ ├── thread_identity.h │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ ├── thread_identity_test.cc │ │ │ │ ├── throw_delegate.cc │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ └── unscaledcycleclock.h │ │ │ ├── invoke_test.cc │ │ │ ├── log_severity.cc │ │ │ ├── log_severity.h │ │ │ ├── log_severity_test.cc │ │ │ ├── macros.h │ │ │ ├── optimization.h │ │ │ ├── optimization_test.cc │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ ├── raw_logging_test.cc │ │ │ ├── spinlock_test_common.cc │ │ │ ├── thread_annotations.h │ │ │ └── throw_delegate_test.cc │ │ ├── compiler_config_setting.bzl │ │ ├── container │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── btree_benchmark.cc │ │ │ ├── btree_map.h │ │ │ ├── btree_set.h │ │ │ ├── btree_test.cc │ │ │ ├── btree_test.h │ │ │ ├── fixed_array.h │ │ │ ├── fixed_array_benchmark.cc │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ ├── fixed_array_test.cc │ │ │ ├── flat_hash_map.h │ │ │ ├── flat_hash_map_test.cc │ │ │ ├── flat_hash_set.h │ │ │ ├── flat_hash_set_test.cc │ │ │ ├── inlined_vector.h │ │ │ ├── inlined_vector_benchmark.cc │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ ├── inlined_vector_test.cc │ │ │ ├── internal │ │ │ │ ├── btree.h │ │ │ │ ├── btree_container.h │ │ │ │ ├── common.h │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ ├── container_memory.h │ │ │ │ ├── container_memory_test.cc │ │ │ │ ├── counting_allocator.h │ │ │ │ ├── hash_function_defaults.h │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ ├── hash_generator_testing.h │ │ │ │ ├── hash_policy_testing.h │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ ├── hash_policy_traits.h │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ ├── hashtable_debug.h │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ ├── have_sse.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── layout_test.cc │ │ │ │ ├── node_hash_policy.h │ │ │ │ ├── node_hash_policy_test.cc │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.cc │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ ├── test_instance_tracker.h │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ ├── tracked.h │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ ├── unordered_map_test.cc │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ └── unordered_set_test.cc │ │ │ ├── node_hash_map.h │ │ │ ├── node_hash_map_test.cc │ │ │ ├── node_hash_set.h │ │ │ └── node_hash_set_test.cc │ │ ├── copts │ │ │ ├── AbseilConfigureCopts.cmake │ │ │ ├── GENERATED_AbseilCopts.cmake │ │ │ ├── GENERATED_copts.bzl │ │ │ ├── configure_copts.bzl │ │ │ ├── copts.py │ │ │ └── generate_copts.py │ │ ├── debugging │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── failure_signal_handler.cc │ │ │ ├── failure_signal_handler.h │ │ │ ├── failure_signal_handler_test.cc │ │ │ ├── internal │ │ │ │ ├── address_is_readable.cc │ │ │ │ ├── address_is_readable.h │ │ │ │ ├── demangle.cc │ │ │ │ ├── demangle.h │ │ │ │ ├── demangle_test.cc │ │ │ │ ├── elf_mem_image.cc │ │ │ │ ├── elf_mem_image.h │ │ │ │ ├── examine_stack.cc │ │ │ │ ├── examine_stack.h │ │ │ │ ├── stack_consumption.cc │ │ │ │ ├── stack_consumption.h │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ ├── stacktrace_config.h │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ ├── symbolize.h │ │ │ │ ├── vdso_support.cc │ │ │ │ └── vdso_support.h │ │ │ ├── leak_check.cc │ │ │ ├── leak_check.h │ │ │ ├── leak_check_disable.cc │ │ │ ├── leak_check_fail_test.cc │ │ │ ├── leak_check_test.cc │ │ │ ├── stacktrace.cc │ │ │ ├── stacktrace.h │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_darwin.inc │ │ │ ├── symbolize_elf.inc │ │ │ ├── symbolize_test.cc │ │ │ ├── symbolize_unimplemented.inc │ │ │ └── symbolize_win32.inc │ │ ├── flags │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── commandlineflag.cc │ │ │ ├── commandlineflag.h │ │ │ ├── commandlineflag_test.cc │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── declare.h │ │ │ ├── flag.cc │ │ │ ├── flag.h │ │ │ ├── flag_benchmark.cc │ │ │ ├── flag_test.cc │ │ │ ├── flag_test_defs.cc │ │ │ ├── internal │ │ │ │ ├── commandlineflag.cc │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── flag.cc │ │ │ │ ├── flag.h │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── path_util_test.cc │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ ├── private_handle_accessor.h │ │ │ │ ├── program_name.cc │ │ │ │ ├── program_name.h │ │ │ │ ├── program_name_test.cc │ │ │ │ ├── registry.h │ │ │ │ ├── usage.cc │ │ │ │ ├── usage.h │ │ │ │ └── usage_test.cc │ │ │ ├── marshalling.cc │ │ │ ├── marshalling.h │ │ │ ├── marshalling_test.cc │ │ │ ├── parse.cc │ │ │ ├── parse.h │ │ │ ├── parse_test.cc │ │ │ ├── reflection.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_test.cc │ │ │ ├── usage.cc │ │ │ ├── usage.h │ │ │ ├── usage_config.cc │ │ │ ├── usage_config.h │ │ │ └── usage_config_test.cc │ │ ├── functional │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── bind_front.h │ │ │ ├── bind_front_test.cc │ │ │ ├── function_ref.h │ │ │ ├── function_ref_benchmark.cc │ │ │ ├── function_ref_test.cc │ │ │ └── internal │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ ├── hash │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── hash.h │ │ │ ├── hash_test.cc │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.h │ │ │ │ ├── city_test.cc │ │ │ │ ├── hash.h │ │ │ │ ├── print_hash_of.cc │ │ │ │ └── spy_hash_state.h │ │ ├── memory │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── memory.h │ │ │ ├── memory_exception_safety_test.cc │ │ │ └── memory_test.cc │ │ ├── meta │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── type_traits.h │ │ │ └── type_traits_test.cc │ │ ├── numeric │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_benchmark.cc │ │ │ ├── int128_have_intrinsic.inc │ │ │ ├── int128_no_intrinsic.inc │ │ │ ├── int128_stream_test.cc │ │ │ └── int128_test.cc │ │ ├── random │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmarks.cc │ │ │ ├── bernoulli_distribution.h │ │ │ ├── bernoulli_distribution_test.cc │ │ │ ├── beta_distribution.h │ │ │ ├── beta_distribution_test.cc │ │ │ ├── bit_gen_ref.h │ │ │ ├── bit_gen_ref_test.cc │ │ │ ├── discrete_distribution.cc │ │ │ ├── discrete_distribution.h │ │ │ ├── discrete_distribution_test.cc │ │ │ ├── distributions.h │ │ │ ├── distributions_test.cc │ │ │ ├── examples_test.cc │ │ │ ├── exponential_distribution.h │ │ │ ├── exponential_distribution_test.cc │ │ │ ├── gaussian_distribution.cc │ │ │ ├── gaussian_distribution.h │ │ │ ├── gaussian_distribution_test.cc │ │ │ ├── generators_test.cc │ │ │ ├── internal │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── chi_square.cc │ │ │ │ ├── chi_square.h │ │ │ │ ├── chi_square_test.cc │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.cc │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ ├── fastmath.h │ │ │ │ ├── fastmath_test.cc │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ ├── generate_real.h │ │ │ │ ├── generate_real_test.cc │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ ├── mock_helpers.h │ │ │ │ ├── mock_overload_set.h │ │ │ │ ├── nanobenchmark.cc │ │ │ │ ├── nanobenchmark.h │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ ├── nonsecure_base.h │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ ├── pcg_engine.h │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ ├── platform.h │ │ │ │ ├── pool_urbg.cc │ │ │ │ ├── pool_urbg.h │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ ├── randen.cc │ │ │ │ ├── randen.h │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ ├── randen_detect.cc │ │ │ │ ├── randen_detect.h │ │ │ │ ├── randen_engine.h │ │ │ │ ├── randen_engine_test.cc │ │ │ │ ├── randen_hwaes.cc │ │ │ │ ├── randen_hwaes.h │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ ├── randen_round_keys.cc │ │ │ │ ├── randen_slow.cc │ │ │ │ ├── randen_slow.h │ │ │ │ ├── randen_slow_test.cc │ │ │ │ ├── randen_test.cc │ │ │ │ ├── randen_traits.h │ │ │ │ ├── salted_seed_seq.h │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ ├── seed_material.cc │ │ │ │ ├── seed_material.h │ │ │ │ ├── seed_material_test.cc │ │ │ │ ├── sequence_urbg.h │ │ │ │ ├── traits.h │ │ │ │ ├── traits_test.cc │ │ │ │ ├── uniform_helper.h │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ ├── wide_multiply.h │ │ │ │ └── wide_multiply_test.cc │ │ │ ├── log_uniform_int_distribution.h │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ ├── mock_distributions.h │ │ │ ├── mock_distributions_test.cc │ │ │ ├── mocking_bit_gen.h │ │ │ ├── mocking_bit_gen_test.cc │ │ │ ├── poisson_distribution.h │ │ │ ├── poisson_distribution_test.cc │ │ │ ├── random.h │ │ │ ├── seed_gen_exception.cc │ │ │ ├── seed_gen_exception.h │ │ │ ├── seed_sequences.cc │ │ │ ├── seed_sequences.h │ │ │ ├── seed_sequences_test.cc │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_int_distribution_test.cc │ │ │ ├── uniform_real_distribution.h │ │ │ ├── uniform_real_distribution_test.cc │ │ │ ├── zipf_distribution.h │ │ │ └── zipf_distribution_test.cc │ │ ├── status │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── internal │ │ │ │ ├── status_internal.h │ │ │ │ └── statusor_internal.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_payload_printer.cc │ │ │ ├── status_payload_printer.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ └── statusor_test.cc │ │ ├── strings │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── ascii.cc │ │ │ ├── ascii.h │ │ │ ├── ascii_benchmark.cc │ │ │ ├── ascii_test.cc │ │ │ ├── charconv.cc │ │ │ ├── charconv.h │ │ │ ├── charconv_benchmark.cc │ │ │ ├── charconv_test.cc │ │ │ ├── cord.cc │ │ │ ├── cord.h │ │ │ ├── cord_test.cc │ │ │ ├── cord_test_helpers.h │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── escaping_benchmark.cc │ │ │ ├── escaping_test.cc │ │ │ ├── internal │ │ │ │ ├── char_map.h │ │ │ │ ├── char_map_benchmark.cc │ │ │ │ ├── char_map_test.cc │ │ │ │ ├── charconv_bigint.cc │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ ├── charconv_parse.cc │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ ├── cord_internal.h │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── memutil.cc │ │ │ │ ├── memutil.h │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ ├── memutil_test.cc │ │ │ │ ├── numbers_test_common.h │ │ │ │ ├── ostringstream.cc │ │ │ │ ├── ostringstream.h │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ ├── ostringstream_test.cc │ │ │ │ ├── pow10_helper.cc │ │ │ │ ├── pow10_helper.h │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ ├── resize_uninitialized.h │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ ├── stl_type_traits.h │ │ │ │ ├── str_format │ │ │ │ │ ├── arg.cc │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.h │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.cc │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_test.cc │ │ │ │ │ ├── parser.cc │ │ │ │ │ ├── parser.h │ │ │ │ │ └── parser_test.cc │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ ├── utf8.cc │ │ │ │ ├── utf8.h │ │ │ │ └── utf8_test.cc │ │ │ ├── match.cc │ │ │ ├── match.h │ │ │ ├── match_test.cc │ │ │ ├── numbers.cc │ │ │ ├── numbers.h │ │ │ ├── numbers_benchmark.cc │ │ │ ├── numbers_test.cc │ │ │ ├── str_cat.cc │ │ │ ├── str_cat.h │ │ │ ├── str_cat_benchmark.cc │ │ │ ├── str_cat_test.cc │ │ │ ├── str_format.h │ │ │ ├── str_format_test.cc │ │ │ ├── str_join.h │ │ │ ├── str_join_benchmark.cc │ │ │ ├── str_join_test.cc │ │ │ ├── str_replace.cc │ │ │ ├── str_replace.h │ │ │ ├── str_replace_benchmark.cc │ │ │ ├── str_replace_test.cc │ │ │ ├── str_split.cc │ │ │ ├── str_split.h │ │ │ ├── str_split_benchmark.cc │ │ │ ├── str_split_test.cc │ │ │ ├── string_view.cc │ │ │ ├── string_view.h │ │ │ ├── string_view_benchmark.cc │ │ │ ├── string_view_test.cc │ │ │ ├── strip.h │ │ │ ├── strip_test.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ └── substitute_test.cc │ │ ├── synchronization │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── barrier.cc │ │ │ ├── barrier.h │ │ │ ├── barrier_test.cc │ │ │ ├── blocking_counter.cc │ │ │ ├── blocking_counter.h │ │ │ ├── blocking_counter_test.cc │ │ │ ├── internal │ │ │ │ ├── create_thread_identity.cc │ │ │ │ ├── create_thread_identity.h │ │ │ │ ├── graphcycles.cc │ │ │ │ ├── graphcycles.h │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ ├── graphcycles_test.cc │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── mutex_nonprod.cc │ │ │ │ ├── mutex_nonprod.inc │ │ │ │ ├── per_thread_sem.cc │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ ├── thread_pool.h │ │ │ │ ├── waiter.cc │ │ │ │ └── waiter.h │ │ │ ├── lifetime_test.cc │ │ │ ├── mutex.cc │ │ │ ├── mutex.h │ │ │ ├── mutex_benchmark.cc │ │ │ ├── mutex_test.cc │ │ │ ├── notification.cc │ │ │ ├── notification.h │ │ │ └── notification_test.cc │ │ ├── time │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── civil_time.cc │ │ │ ├── civil_time.h │ │ │ ├── civil_time_benchmark.cc │ │ │ ├── civil_time_test.cc │ │ │ ├── clock.cc │ │ │ ├── clock.h │ │ │ ├── clock_benchmark.cc │ │ │ ├── clock_test.cc │ │ │ ├── duration.cc │ │ │ ├── duration_benchmark.cc │ │ │ ├── duration_test.cc │ │ │ ├── format.cc │ │ │ ├── format_benchmark.cc │ │ │ ├── format_test.cc │ │ │ ├── internal │ │ │ │ ├── cctz │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── include │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ ├── src │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ ├── version │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ ├── America │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ ├── Nuuk │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ ├── Qostanay │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ ├── North │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ ├── South │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ ├── West │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ ├── East │ │ │ │ │ │ └── West │ │ │ │ │ │ ├── CET │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ ├── EET │ │ │ │ │ │ ├── EST │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ ├── London │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── GB │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── HST │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ ├── MET │ │ │ │ │ │ ├── MST │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ └── General │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ └── Yap │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── US │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ ├── WET │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ ├── localtime │ │ │ │ │ │ └── zone1970.tab │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ └── zoneinfo.inc │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ ├── time_benchmark.cc │ │ │ ├── time_test.cc │ │ │ └── time_zone_test.cc │ │ ├── types │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── any.h │ │ │ ├── any_exception_safety_test.cc │ │ │ ├── any_test.cc │ │ │ ├── bad_any_cast.cc │ │ │ ├── bad_any_cast.h │ │ │ ├── bad_optional_access.cc │ │ │ ├── bad_optional_access.h │ │ │ ├── bad_variant_access.cc │ │ │ ├── bad_variant_access.h │ │ │ ├── compare.h │ │ │ ├── compare_test.cc │ │ │ ├── internal │ │ │ │ ├── conformance_aliases.h │ │ │ │ ├── conformance_archetype.h │ │ │ │ ├── conformance_profile.h │ │ │ │ ├── conformance_testing.h │ │ │ │ ├── conformance_testing_helpers.h │ │ │ │ ├── conformance_testing_test.cc │ │ │ │ ├── optional.h │ │ │ │ ├── parentheses.h │ │ │ │ ├── span.h │ │ │ │ ├── transform_args.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── optional_exception_safety_test.cc │ │ │ ├── optional_test.cc │ │ │ ├── span.h │ │ │ ├── span_test.cc │ │ │ ├── variant.h │ │ │ ├── variant_benchmark.cc │ │ │ ├── variant_exception_safety_test.cc │ │ │ └── variant_test.cc │ │ └── utility │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── utility.h │ │ │ └── utility_test.cc │ ├── date │ │ ├── LICENSE.txt │ │ ├── chrono_io.h │ │ ├── date.h │ │ ├── ios.h │ │ ├── islamic.h │ │ ├── iso_week.h │ │ ├── julian.h │ │ ├── ptz.h │ │ ├── tz.h │ │ └── tz_private.h │ ├── fmt │ │ ├── Include.h │ │ ├── LICENSE.txt │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ ├── mimalloc │ │ ├── LICENSE.txt │ │ ├── alloc-override.h │ │ ├── bitmap.h │ │ ├── mimalloc-atomic.h │ │ ├── mimalloc-internal.h │ │ ├── mimalloc-new-delete.h │ │ ├── mimalloc-override.h │ │ ├── mimalloc-prim.h │ │ ├── mimalloc-track.h │ │ ├── mimalloc-types.h │ │ ├── mimalloc.h │ │ ├── page-queue.h │ │ └── prim │ │ │ ├── emscripten │ │ │ ├── emmalloc.cpp │ │ │ └── prim.h │ │ │ ├── osx │ │ │ ├── alloc-override-zone.cpp │ │ │ └── prim.h │ │ │ ├── unix │ │ │ └── prim.h │ │ │ ├── wasi │ │ │ └── prim.h │ │ │ └── windows │ │ │ ├── etw-mimalloc.wprp │ │ │ ├── etw.h │ │ │ ├── etw.man │ │ │ ├── prim.h │ │ │ └── readme.md │ └── rapidjson │ │ ├── allocators.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 │ │ ├── license.txt │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h │ ├── Algorithms │ ├── GenerateUniqueName.h │ └── Sort.h │ ├── Application │ ├── Application.h │ └── PluginInstance.h │ ├── Assert │ ├── Assert.h │ └── Validate.h │ ├── Asset │ ├── Asset.h │ ├── AssetDatabase.h │ ├── AssetDatabaseEntry.h │ ├── AssetFormat.h │ ├── AssetOwners.h │ ├── AssetTypeTag.h │ ├── Context.h │ ├── FolderAssetType.h │ ├── Format │ │ └── Guid.h │ ├── Guid.h │ ├── LocalAssetDatabase.h │ ├── MetaData.h │ ├── Picker.h │ ├── Reference.h │ ├── Serialization │ │ └── MetaData.h │ ├── TagAssetType.h │ ├── Types.h │ └── VirtualAsset.h │ ├── AtomicEnumFlags.h │ ├── CommandLine │ ├── CommandLineArgument.h │ ├── CommandLineArguments.h │ ├── CommandLineArguments.inl │ ├── CommandLineArgumentsView.h │ └── CommandLineInitializationParameters.h │ ├── Common.h │ ├── Common.natvis │ ├── CommonLLDBFormatters.py │ ├── Compression │ ├── Bool.h │ ├── Compress.h │ ├── Compressor.h │ ├── Decompress.h │ ├── Enum.h │ ├── Float.h │ └── ForwardDeclarations │ │ └── Compressor.h │ ├── EnumFlagOperators.h │ ├── EnumFlags.h │ ├── Format │ └── Guid.h │ ├── ForwardDeclarations │ └── EnumFlags.h │ ├── Function │ ├── Callback.h │ ├── CopyableFunction.h │ ├── Event.h │ ├── EventCallbackResult.h │ ├── FlatFunction.h │ ├── ForwardDeclarations │ │ ├── Callback.h │ │ ├── CopyableFunction.h │ │ ├── Event.h │ │ ├── FlatFunction.h │ │ ├── Function.h │ │ ├── FunctionBase.h │ │ ├── FunctionPointer.h │ │ └── ThreadSafeEvent.h │ ├── Function.h │ ├── FunctionBase.h │ ├── FunctionPointer.h │ └── ThreadSafeEvent.h │ ├── Guid.h │ ├── IO │ ├── AccessModeFlags.h │ ├── AsyncLoadCallback.h │ ├── AsyncLoadFromDiskJob.h │ ├── File.h │ ├── FileChangeListener.h │ ├── FileIterator.h │ ├── FileView.h │ ├── Format │ │ ├── Path.h │ │ ├── URI.h │ │ ├── ZeroTerminatedPathView.h │ │ └── ZeroTerminatedURIView.h │ ├── ForwardDeclarations │ │ ├── Path.h │ │ ├── PathView.h │ │ ├── URI.h │ │ ├── URIView.h │ │ ├── ZeroTerminatedPathView.h │ │ └── ZeroTerminatedURIView.h │ ├── Library.h │ ├── Log.h │ ├── Path.h │ ├── PathCharType.h │ ├── PathConstants.h │ ├── PathFlags.h │ ├── PathView.h │ ├── SharingFlags.h │ ├── TPath.h │ ├── TPathView.h │ ├── URI.h │ ├── URICharType.h │ ├── URIView.h │ ├── ZeroTerminatedPathView.h │ ├── ZeroTerminatedURIView.h │ └── rapidjson.h │ ├── Math │ ├── Abs.h │ ├── Acceleration.h │ ├── Acos.h │ ├── Angle.h │ ├── Angle │ │ └── Random.h │ ├── Angle3.h │ ├── Asin.h │ ├── Atan.h │ ├── Atan2.h │ ├── Ceil.h │ ├── Clamp.h │ ├── ClampedValue.h │ ├── Color.h │ ├── CompressedDirectionAndSign.h │ ├── Constants.h │ ├── CoreNumericTypes.h │ ├── Cos.h │ ├── CubicRoot.h │ ├── Damping.h │ ├── Density.h │ ├── Epsilon.h │ ├── Floor.h │ ├── Format │ │ ├── Color.h │ │ ├── Vector2.h │ │ ├── Vector3.h │ │ └── Vector4.h │ ├── ForwardDeclarations │ │ ├── Acceleration.h │ │ ├── Angle.h │ │ ├── Angle3.h │ │ ├── Color.h │ │ ├── Density.h │ │ ├── Frequency.h │ │ ├── Length.h │ │ ├── Mass.h │ │ ├── Matrix3x3.h │ │ ├── Matrix3x4.h │ │ ├── Matrix4x4.h │ │ ├── Quaternion.h │ │ ├── Radius.h │ │ ├── Range.h │ │ ├── Ratio.h │ │ ├── Rotation2D.h │ │ ├── RotationalSpeed.h │ │ ├── ScaledQuaternion.h │ │ ├── Speed.h │ │ ├── Torque.h │ │ ├── Transform.h │ │ ├── Transform2D.h │ │ ├── Vector2.h │ │ ├── Vector3.h │ │ ├── Vector4.h │ │ └── WorldCoordinate.h │ ├── Fract.h │ ├── Frequency.h │ ├── Half.h │ ├── Hash.h │ ├── HashedObject.h │ ├── Hexagon │ │ ├── Hexagon.h │ │ └── HexagonWorld.h │ ├── ISqrt.h │ ├── IsEquivalentTo.h │ ├── IsNearlyZero.h │ ├── IsNegative.h │ ├── Length.h │ ├── LinearGradient.h │ ├── LinearInterpolate.h │ ├── Log.h │ ├── Log10.h │ ├── Log2.h │ ├── Mass.h │ ├── MathAssert.h │ ├── Matrix3x3.h │ ├── Matrix3x4.h │ ├── Matrix4x4.h │ ├── Max.h │ ├── Min.h │ ├── Mod.h │ ├── MultiplicativeInverse.h │ ├── NumericLimits.h │ ├── Power.h │ ├── PowerOfTwo.h │ ├── Primitives │ │ ├── BoundingBox.h │ │ ├── Circle.h │ │ ├── CullingFrustum.h │ │ ├── ForwardDeclarations │ │ │ ├── BoundingBox.h │ │ │ ├── Circle.h │ │ │ ├── CullingFrustum.h │ │ │ ├── InfinitePlane.h │ │ │ ├── Line.h │ │ │ ├── Plane.h │ │ │ ├── Rectangle.h │ │ │ ├── RectangleCorners.h │ │ │ ├── RectangleEdges.h │ │ │ ├── Sphere.h │ │ │ ├── Spline.h │ │ │ ├── WorldBoundingBox.h │ │ │ └── WorldLine.h │ │ ├── InfinitePlane.h │ │ ├── Intersect.h │ │ ├── Intersect │ │ │ ├── ForwardDeclarations │ │ │ │ ├── Result.h │ │ │ │ └── WorldResult.h │ │ │ ├── LineBoundingBox.h │ │ │ ├── LineLine.h │ │ │ ├── LinePlane.h │ │ │ ├── LineSphere.h │ │ │ ├── LineTriangle.h │ │ │ ├── Result.h │ │ │ └── SphereTriangle.h │ │ ├── Line.h │ │ ├── Overlap.h │ │ ├── Overlap │ │ │ ├── BoundingBoxBoundingBox.h │ │ │ ├── BoundingBoxInfinitePlane.h │ │ │ ├── BoundingBoxTriangle.h │ │ │ ├── LineBoundingBox.h │ │ │ ├── SphereBoundingBox.h │ │ │ ├── SphereSphere.h │ │ │ └── SphereTriangle.h │ │ ├── Plane.h │ │ ├── Rectangle.h │ │ ├── RectangleCorners.h │ │ ├── RectangleEdges.h │ │ ├── Serialization │ │ │ ├── BoundingBox.h │ │ │ ├── RectangleCorners.h │ │ │ ├── RectangleEdges.h │ │ │ └── Spline.h │ │ ├── Sphere.h │ │ ├── Spline.h │ │ ├── Sweep.h │ │ ├── Sweep │ │ │ ├── ForwardDeclarations │ │ │ │ ├── Result.h │ │ │ │ └── WorldResult.h │ │ │ ├── Result.h │ │ │ └── SphereTriangle.h │ │ ├── Transform │ │ │ ├── BoundingBox.h │ │ │ ├── Line.h │ │ │ └── Sphere.h │ │ ├── Triangle.h │ │ ├── WorldBoundingBox.h │ │ └── WorldLine.h │ ├── PseudoRandomDistributions.h │ ├── Quantize.h │ ├── Quaternion.h │ ├── Radius.h │ ├── Random.h │ ├── Range.h │ ├── Ratio.h │ ├── Rotation2D.h │ ├── RotationalSpeed.h │ ├── Round.h │ ├── Scale3.h │ ├── ScaledQuaternion.h │ ├── Select.h │ ├── Serialization │ │ ├── Angle3.h │ │ └── Range.h │ ├── Sign.h │ ├── SignNonZero.h │ ├── Sin.h │ ├── SinCos.h │ ├── SmoothStep.h │ ├── Speed.h │ ├── Split.h │ ├── Sqrt.h │ ├── Step.h │ ├── Tan.h │ ├── Tangents.h │ ├── Torque.h │ ├── Transform.h │ ├── Transform2D.h │ ├── Truncate.h │ ├── Vector2.h │ ├── Vector2 │ │ ├── Abs.h │ │ ├── Ceil.h │ │ ├── Exponential.h │ │ ├── Floor.h │ │ ├── Hash.h │ │ ├── IsEquivalentTo.h │ │ ├── Max.h │ │ ├── Min.h │ │ ├── Mod.h │ │ ├── MultiplicativeInverse.h │ │ ├── Quantize.h │ │ ├── Round.h │ │ ├── Select.h │ │ ├── Sign.h │ │ ├── SignNonZero.h │ │ └── Sqrt.h │ ├── Vector3.h │ ├── Vector3 │ │ ├── Abs.h │ │ ├── Ceil.h │ │ ├── Cos.h │ │ ├── Floor.h │ │ ├── IsEquivalentTo.h │ │ ├── Max.h │ │ ├── Min.h │ │ ├── Mod.h │ │ ├── MultiplicativeInverse.h │ │ ├── Power.h │ │ ├── Quantize.h │ │ ├── Random.h │ │ ├── Round.h │ │ ├── Select.h │ │ ├── Sign.h │ │ ├── SignNonZero.h │ │ ├── Sin.h │ │ ├── SinCos.h │ │ ├── Sqrt.h │ │ ├── Tan.h │ │ └── Truncate.h │ ├── Vector3ToFrom2.h │ ├── Vector4.h │ ├── Vector4 │ │ ├── Abs.h │ │ ├── IsEquivalentTo.h │ │ ├── Max.h │ │ ├── Min.h │ │ ├── Mod.h │ │ ├── MultiplicativeInverse.h │ │ ├── Power.h │ │ ├── Quantize.h │ │ ├── Random.h │ │ ├── Round.h │ │ ├── Select.h │ │ ├── Sign.h │ │ ├── SignNonZero.h │ │ ├── Sqrt.h │ │ └── Truncate.h │ ├── Vectorization │ │ ├── Abs.h │ │ ├── Acos.h │ │ ├── Asin.h │ │ ├── Atan.h │ │ ├── Atan2.h │ │ ├── Ceil.h │ │ ├── Cos.h │ │ ├── CubicRoot.h │ │ ├── Floor.h │ │ ├── Fract.h │ │ ├── ISqrt.h │ │ ├── IsEquivalentTo.h │ │ ├── Log.h │ │ ├── Log10.h │ │ ├── Log2.h │ │ ├── Max.h │ │ ├── Min.h │ │ ├── Mod.h │ │ ├── MultiplicativeInverse.h │ │ ├── NativeTypes.h │ │ ├── Packed.h │ │ ├── PackedDouble.h │ │ ├── PackedFloat.h │ │ ├── PackedInt16.h │ │ ├── PackedInt32.h │ │ ├── PackedInt64.h │ │ ├── PackedInt8.h │ │ ├── Power.h │ │ ├── Round.h │ │ ├── Select.h │ │ ├── Sign.h │ │ ├── SignNonZero.h │ │ ├── Sin.h │ │ ├── SinCos.h │ │ ├── Sqrt.h │ │ ├── Tan.h │ │ └── Truncate.h │ ├── WorldCoordinate.h │ ├── WorldCoordinate │ │ ├── Abs.h │ │ ├── Max.h │ │ ├── Min.h │ │ ├── Mod.h │ │ └── SignNonZero.h │ └── Wrap.h │ ├── Memory │ ├── AddressOf.h │ ├── Align.h │ ├── Allocators │ │ ├── Allocate.h │ │ ├── DynamicAllocator.h │ │ ├── DynamicInlineStorageAllocator.h │ │ ├── FixedAllocator.h │ │ ├── ForwardDeclarations │ │ │ ├── DynamicAllocator.h │ │ │ ├── DynamicInlineStorageAllocator.h │ │ │ └── FixedAllocator.h │ │ └── Pool.h │ ├── Any.h │ ├── AnyBase.h │ ├── AnyView.h │ ├── AtomicBitset.h │ ├── BitCast.h │ ├── Bitset.h │ ├── BitsetBase.h │ ├── CachedFunctionInvocationQueue.h │ ├── CallFunctionWithTuple.h │ ├── CallMemberFunctionWithTuple.h │ ├── CallbackResult.h │ ├── CheckedCast.h │ ├── Compare.h │ ├── CompressedBitset.h │ ├── Compression │ │ └── Bitset.h │ ├── Containers │ │ ├── Array.h │ │ ├── ArrayView.h │ │ ├── ArrayViewIterator.h │ │ ├── BitView.h │ │ ├── ByteView.h │ │ ├── CircularBuffer.h │ │ ├── Compression │ │ │ ├── ArrayView.h │ │ │ └── Vector.h │ │ ├── ContainerCommon.h │ │ ├── DoubleLinkedList.h │ │ ├── FixedArrayView.h │ │ ├── FlatString.h │ │ ├── FlatVector.h │ │ ├── Format │ │ │ ├── String.h │ │ │ └── StringView.h │ │ ├── ForwardDeclarations │ │ │ ├── Array.h │ │ │ ├── ArrayView.h │ │ │ ├── BitView.h │ │ │ ├── ByteView.h │ │ │ ├── FixedArrayView.h │ │ │ ├── FlatString.h │ │ │ ├── FlatVector.h │ │ │ ├── InlineVector.h │ │ │ ├── String.h │ │ │ ├── StringBase.h │ │ │ ├── StringView.h │ │ │ ├── UnorderedMap.h │ │ │ ├── Vector.h │ │ │ ├── VectorBase.h │ │ │ └── ZeroTerminatedStringView.h │ │ ├── HashTable.h │ │ ├── InlineVector.h │ │ ├── MultiArrayView.h │ │ ├── OrderedMap.h │ │ ├── OrderedSet.h │ │ ├── PriorityQueue.h │ │ ├── RestrictedArrayView.h │ │ ├── Serialization │ │ │ ├── ArrayView.h │ │ │ ├── DoubleLinkedList.h │ │ │ ├── FixedArrayView.h │ │ │ ├── UnorderedMap.h │ │ │ ├── UnorderedSet.h │ │ │ └── Vector.h │ │ ├── String.h │ │ ├── StringBase.h │ │ ├── StringView.h │ │ ├── Trees │ │ │ └── QuadTree.h │ │ ├── UnorderedMap.h │ │ ├── UnorderedSet.h │ │ ├── Vector.h │ │ ├── VectorBase.h │ │ ├── VectorFlags.h │ │ └── ZeroTerminatedStringView.h │ ├── Copy.h │ ├── CopyablePtr.h │ ├── CountBits.h │ ├── DynamicBitset.h │ ├── Endian.h │ ├── FlatAny.h │ ├── Forward.h │ ├── ForwardDeclarations │ │ ├── Any.h │ │ ├── AnyBase.h │ │ ├── AnyView.h │ │ ├── Bitset.h │ │ ├── BitsetBase.h │ │ ├── DynamicBitset.h │ │ ├── FlatAny.h │ │ ├── InlineDynamicBitset.h │ │ ├── Optional.h │ │ ├── ReferenceWrapper.h │ │ ├── Tuple.h │ │ ├── UniquePtr.h │ │ ├── UniqueRef.h │ │ └── Variant.h │ ├── GetAlignment.h │ ├── GetIntegerType.h │ ├── GetNumericSize.h │ ├── InlineDynamicBitset.h │ ├── Invalid.h │ ├── IsAligned.h │ ├── Iterator.h │ ├── MemorySize.h │ ├── Move.h │ ├── NativeCharType.h │ ├── New.h │ ├── OffsetOf.h │ ├── Optional.h │ ├── OptionalIterator.h │ ├── Pair.h │ ├── Prefetch.h │ ├── ReferenceWrapper.h │ ├── Sentinel.h │ ├── Serialization │ │ ├── CopyablePtr.h │ │ ├── Optional.h │ │ ├── ReferenceWrapper.h │ │ ├── UniquePtr.h │ │ └── Variant.h │ ├── Set.h │ ├── SharedPtr.h │ ├── Swap.h │ ├── Tuple.h │ ├── UnicodeCharType.h │ ├── UniquePtr.h │ ├── UniquePtrView.h │ ├── UniqueRef.h │ └── Variant.h │ ├── Network │ ├── Address.h │ ├── Format │ │ ├── Address.h │ │ └── Port.h │ └── Port.h │ ├── Platform │ ├── Assume.h │ ├── CodeSection.h │ ├── Cold.h │ ├── CompilerWarnings.h │ ├── ConfigureArchitecture.h │ ├── ConfigureCompiler.h │ ├── ConfigurePlatform.h │ ├── ConfigureVectorization.h │ ├── Console.h │ ├── CppVersion.h │ ├── Distribution.h │ ├── DllExport.h │ ├── Environment.h │ ├── ForceInline.h │ ├── GetBuildConfigurations.h │ ├── GetDeviceModel.h │ ├── GetName.h │ ├── GetPlatformTypes.h │ ├── GetProcessorCoreTypes.h │ ├── InternalLinkage.h │ ├── IsConstant.h │ ├── IsConstantEvaluated.h │ ├── IsDebuggerAttached.h │ ├── LifetimeBound.h │ ├── Likely.h │ ├── MustTail.h │ ├── NoDebug.h │ ├── NoInline.h │ ├── NoReturn.h │ ├── NoUniqueAddress.h │ ├── OffsetOf.h │ ├── OpenInFileBrowser.h │ ├── Pasteboard.h │ ├── Pure.h │ ├── RaiseException.h │ ├── StartProcess.h │ ├── StaticUnreachable.h │ ├── TrivialABI.h │ ├── Type.h │ ├── UndefineWindowsMacros.h │ ├── UnderlyingType.h │ ├── Unreachable.h │ ├── Unused.h │ ├── Used.h │ └── Windows.h │ ├── Plugin │ └── Plugin.h │ ├── PrecompiledHeaders.h │ ├── Project System │ ├── EngineAssetFormat.h │ ├── EngineDatabase.h │ ├── EngineInfo.h │ ├── FindEngine.h │ ├── PackagedBundle.h │ ├── PluginAssetFormat.h │ ├── PluginDatabase.h │ ├── PluginInfo.h │ ├── ProjectAssetFormat.h │ ├── ProjectDatabase.h │ ├── ProjectInfo.h │ └── Settings.h │ ├── Reflection │ ├── CoreTypes.h │ ├── DynamicObject.h │ ├── DynamicPropertyInfo.h │ ├── DynamicPropertyInstance.h │ ├── DynamicTypeDefinition.h │ ├── EnumTypeExtension.h │ ├── EnumTypeInterface.h │ ├── Event.h │ ├── EventFlags.h │ ├── EventInfo.h │ ├── Extension.h │ ├── ForwardDeclarations │ │ └── Type.h │ ├── Function.h │ ├── FunctionArgument.h │ ├── FunctionFlags.h │ ├── FunctionInfo.h │ ├── GenericType.h │ ├── GetType.h │ ├── IsReflected.h │ ├── Property.h │ ├── PropertyBinder.h │ ├── PropertyFlags.h │ ├── PropertyInfo.h │ ├── PropertyOwner.h │ ├── Registry.h │ ├── Registry.inl │ ├── Serialization │ │ ├── Property.h │ │ └── Type.h │ ├── Tag.h │ ├── Type.h │ ├── TypeCloner.h │ ├── TypeDefinition.h │ ├── TypeDeserializer.h │ ├── TypeInitializer.h │ └── TypeInterface.h │ ├── Scripting │ └── VirtualMachine │ │ ├── DynamicFunction │ │ ├── DynamicDelegate.h │ │ ├── DynamicEvent.h │ │ ├── DynamicFunction.h │ │ ├── DynamicInvoke.h │ │ ├── NativeDelegate.h │ │ ├── NativeEvent.h │ │ ├── NativeFunction.h │ │ ├── Register.h │ │ └── Registers.h │ │ └── FunctionIdentifier.h │ ├── Serialization │ ├── Array.h │ ├── CanRead.h │ ├── CanWrite.h │ ├── Common.h │ ├── Context.h │ ├── Deserialize.h │ ├── DeserializeElement.h │ ├── Duplicate.h │ ├── ForwardDeclarations │ │ ├── Reader.h │ │ ├── SerializedData.h │ │ └── Writer.h │ ├── Guid.h │ ├── MergedReader.h │ ├── Object.h │ ├── RawPointer.h │ ├── Reader.h │ ├── SavingFlags.h │ ├── Serialize.h │ ├── SerializeElement.h │ ├── SerializedData.h │ ├── Value.h │ ├── Version.h │ └── Writer.h │ ├── SourceLocation.h │ ├── Storage │ ├── AtomicIdentifierMask.h │ ├── Compression │ │ └── Identifier.h │ ├── FixedIdentifierArrayView.h │ ├── ForwardDeclarations │ │ ├── AtomicIdentifierMask.h │ │ ├── FixedIdentifierArrayView.h │ │ ├── Identifier.h │ │ ├── IdentifierArray.h │ │ ├── IdentifierArrayView.h │ │ └── IdentifierMask.h │ ├── Identifier.h │ ├── IdentifierArray.h │ ├── IdentifierArrayView.h │ ├── IdentifierMask.h │ ├── PersistentIdentifierStorage.h │ └── SaltedIdentifierStorage.h │ ├── System │ ├── Query.h │ └── SystemType.h │ ├── Tag │ └── TagGuid.h │ ├── Tests │ └── UnitTest.h │ ├── Threading │ ├── AtomicBase.h │ ├── AtomicBool.h │ ├── AtomicEnum.h │ ├── AtomicInteger.h │ ├── AtomicPtr.h │ ├── AtomicUint128.h │ ├── Atomics │ │ ├── AtomicView.h │ │ ├── CompareExchangeStrong.h │ │ ├── CompareExchangeWeak.h │ │ ├── Exchange.h │ │ ├── FetchAdd.h │ │ ├── FetchAnd.h │ │ ├── FetchDecrement.h │ │ ├── FetchIncrement.h │ │ ├── FetchOr.h │ │ ├── FetchSubtract.h │ │ ├── FetchXor.h │ │ ├── Load.h │ │ └── Store.h │ ├── ForwardDeclarations │ │ ├── Atomic.h │ │ └── WebWorkerIdentifier.h │ ├── Jobs │ │ ├── AsyncEvent.h │ │ ├── AsyncJob.h │ │ ├── CallbackResult.h │ │ ├── IntermediateStage.h │ │ ├── Job.h │ │ ├── JobBatch.h │ │ ├── JobManager.h │ │ ├── JobPriority.h │ │ ├── JobRunnerMask.h │ │ ├── JobRunnerThread.h │ │ ├── JobRunnerThread.inl │ │ ├── RecurringAsyncJob.h │ │ ├── StageBase.h │ │ ├── TimerHandle.h │ │ └── TimersJob.h │ ├── Mutexes │ │ ├── AdoptLock.h │ │ ├── ConditionVariable.h │ │ ├── Mutex.h │ │ ├── RecursiveMutex.h │ │ ├── SharedLock.h │ │ ├── SharedMutex.h │ │ ├── SharedRecursiveMutex.h │ │ ├── TryLock.h │ │ └── UniqueLock.h │ ├── Sleep.h │ ├── Thread.h │ ├── ThreadId.h │ ├── WebWorker.h │ └── WebWorkerPool.h │ ├── Time │ ├── Duration.h │ ├── Format │ │ └── Timestamp.h │ ├── Formatter.h │ ├── ForwardDeclarations │ │ └── Duration.h │ ├── FrameTime.h │ ├── Stopwatch.h │ └── Timestamp.h │ ├── TypeTraits │ ├── AddConst.h │ ├── AddReference.h │ ├── All.h │ ├── Any.h │ ├── ConditionalType.h │ ├── ConstMemberVariablePointer.h │ ├── Decay.h │ ├── DeclareValue.h │ ├── EnableIf.h │ ├── EnforceConvertibleTo.h │ ├── GetFunctionSignature.h │ ├── GetParameterTypes.h │ ├── HasBitwiseAssignments.h │ ├── HasConstructor.h │ ├── HasFunctionCallOperator.h │ ├── HasMemberFunction.h │ ├── HasMemberVariable.h │ ├── InnermostType.h │ ├── IntegerSequence.h │ ├── IsAbstract.h │ ├── IsArithmetic.h │ ├── IsBaseOf.h │ ├── IsConst.h │ ├── IsConstructible.h │ ├── IsConvertibleTo.h │ ├── IsCopyAssignable.h │ ├── IsCopyConstructible.h │ ├── IsDefaultConstructible.h │ ├── IsDetected.h │ ├── IsEmpty.h │ ├── IsEnum.h │ ├── IsEqualityComparable.h │ ├── IsFinal.h │ ├── IsFloatingPoint.h │ ├── IsFunction.h │ ├── IsFunctionPointer.h │ ├── IsIntegral.h │ ├── IsInvocable.h │ ├── IsMemberFunction.h │ ├── IsMemberPointer.h │ ├── IsMemberVariable.h │ ├── IsMoveAssignable.h │ ├── IsMoveConstructible.h │ ├── IsPointer.h │ ├── IsPointerComparable.h │ ├── IsPrimitive.h │ ├── IsReference.h │ ├── IsSame.h │ ├── IsSigned.h │ ├── IsStringLiteral.h │ ├── IsTriviallyAssignable.h │ ├── IsTriviallyConstructible.h │ ├── IsTriviallyCopyable.h │ ├── IsTriviallyDestructible.h │ ├── IsValidDefinition.h │ ├── IsVolatile.h │ ├── MakeSigned.h │ ├── MakeUnsigned.h │ ├── MemberOwnerType.h │ ├── MemberType.h │ ├── Nonesuch.h │ ├── ReturnType.h │ ├── Select.h │ ├── SmallestIntegerType.h │ ├── TypeConstant.h │ ├── TypeName.h │ ├── UnderlyingType.h │ ├── Void.h │ ├── WithConst.h │ ├── WithPointer.h │ ├── WithoutConst.h │ ├── WithoutConstOrVolatile.h │ ├── WithoutMoveReference.h │ ├── WithoutPointer.h │ ├── WithoutReference.h │ └── WithoutVolatile.h │ ├── Undo │ └── UndoHistory.h │ └── Version.h ├── README.md ├── UnitTests └── Private │ ├── Common │ └── EnumFlagsTests.cpp │ ├── Compression │ └── Compression.cpp │ ├── Containers │ ├── AllocatorTests.cpp │ ├── AnyTests.cpp │ ├── ArrayTests.cpp │ ├── ArrayViewTests.cpp │ ├── BitViewTests.cpp │ ├── BitsetTests.cpp │ ├── HashTableTests.cpp │ ├── MapTests.cpp │ ├── PoolTests.cpp │ ├── PriorityQueueTests.cpp │ ├── SaltedStorageTests.cpp │ ├── SetTests.cpp │ ├── StringTests.cpp │ └── VectorTests.cpp │ ├── Format │ └── Format.cpp │ ├── IO │ ├── PathTests.cpp │ └── URITests.cpp │ ├── Math │ ├── BoundingBox.cpp │ ├── CompressedDirectionAndSignTests.cpp │ ├── GuidTests.cpp │ ├── MathTests.cpp │ ├── QuaternionTests.cpp │ ├── TransformTests.cpp │ └── VectorTests.cpp │ ├── Memory │ ├── Allocate.cpp │ └── SharedPtr.cpp │ ├── Reflection │ └── DynamicTypeDefinition.cpp │ ├── Serialization │ └── Serialization.cpp │ ├── Threading │ └── Atomics.cpp │ ├── Time │ └── Timestamp.cpp │ ├── Timeout.h │ └── main.cpp ├── cmake ├── AddTargetOptions.cmake ├── Apple │ ├── .gitignore │ ├── ExportOptions.plist.in │ ├── ExportOptions_Upload.plist.in │ ├── SetupTarget.cmake │ └── Toolchain_iOS.cmake ├── DeployBinaryDependencies.cmake ├── InitialConfiguration.cmake ├── InitialSettings.cmake ├── LinkPlugin.cmake ├── LinkStaticLibrary.cmake ├── MakeConsole.cmake ├── MakeDynamicLibrary.cmake ├── MakeExecutable.cmake ├── MakeInterfaceLibrary.cmake ├── MakeLauncher.cmake ├── MakeObjectLibrary.cmake ├── MakePlugin.cmake ├── MakeStaticLibrary.cmake ├── MakeStaticModule.cmake ├── MakeTests.cmake ├── Windows │ └── Application.manifest ├── json-cmake │ ├── JSONParser.cmake │ ├── LICENSE │ └── r.html ├── launch-c-xcode.in ├── launch-c.in ├── launch-cxx-xcode.in └── launch-cxx.in └── tools ├── format └── bin │ ├── MacOS │ └── clang-format │ └── Windows │ ├── FormatAll.exe │ ├── RunFormatAll.bat │ └── clang-format.exe └── ninja ├── Linux └── ninja ├── MacOS └── ninja └── Windows └── ninja.exe /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | bin/ 3 | lib/ 4 | bld/ 5 | build-*/ 6 | Intermediate*/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.gitmodules -------------------------------------------------------------------------------- /.lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.lldbinit -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CommonLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/CommonLibrary.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/LICENSE -------------------------------------------------------------------------------- /Private/3rdparty/absl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/absl/LICENSE.txt -------------------------------------------------------------------------------- /Private/3rdparty/absl/internal/city.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/absl/internal/city.cc -------------------------------------------------------------------------------- /Private/3rdparty/absl/internal/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/absl/internal/hash.cc -------------------------------------------------------------------------------- /Private/3rdparty/cpp-base64/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/cpp-base64/LICENSE.txt -------------------------------------------------------------------------------- /Private/3rdparty/cpp-base64/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/cpp-base64/base64.cpp -------------------------------------------------------------------------------- /Private/3rdparty/cpp-base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/cpp-base64/base64.h -------------------------------------------------------------------------------- /Private/3rdparty/fmt/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/fmt/format.cc -------------------------------------------------------------------------------- /Private/3rdparty/fmt/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/fmt/os.cc -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/LICENSE.txt -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/alloc-aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/alloc-aligned.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/alloc-posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/alloc-posix.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/alloc.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/arena.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/bitmap.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/heap.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/init.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/options.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/os.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/page.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/prim/prim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/prim/prim.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/prim/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/prim/readme.md -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/random.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/segment-map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/segment-map.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/segment.cpp -------------------------------------------------------------------------------- /Private/3rdparty/mimalloc/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/3rdparty/mimalloc/stats.cpp -------------------------------------------------------------------------------- /Private/Application/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Application/Application.cpp -------------------------------------------------------------------------------- /Private/Assert/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Assert/Assert.cpp -------------------------------------------------------------------------------- /Private/Asset/Asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Asset/Asset.cpp -------------------------------------------------------------------------------- /Private/Asset/AssetDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Asset/AssetDatabase.cpp -------------------------------------------------------------------------------- /Private/Asset/AssetOwners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Asset/AssetOwners.cpp -------------------------------------------------------------------------------- /Private/CommandLine/CommandLineArguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/CommandLine/CommandLineArguments.cpp -------------------------------------------------------------------------------- /Private/IO/AsyncLoadFromDiskJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/AsyncLoadFromDiskJob.cpp -------------------------------------------------------------------------------- /Private/IO/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/File.cpp -------------------------------------------------------------------------------- /Private/IO/FileChangeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/FileChangeListener.cpp -------------------------------------------------------------------------------- /Private/IO/FileIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/FileIterator.cpp -------------------------------------------------------------------------------- /Private/IO/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/Library.cpp -------------------------------------------------------------------------------- /Private/IO/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/Log.cpp -------------------------------------------------------------------------------- /Private/IO/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/IO/Path.cpp -------------------------------------------------------------------------------- /Private/Identifiers/Guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Identifiers/Guid.cpp -------------------------------------------------------------------------------- /Private/Math/CoreNumericTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/CoreNumericTypes.cpp -------------------------------------------------------------------------------- /Private/Math/Matrices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Matrices.cpp -------------------------------------------------------------------------------- /Private/Math/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Quaternion.cpp -------------------------------------------------------------------------------- /Private/Math/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Random.cpp -------------------------------------------------------------------------------- /Private/Math/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Serialization.cpp -------------------------------------------------------------------------------- /Private/Math/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Transform.cpp -------------------------------------------------------------------------------- /Private/Math/Vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Math/Vectors.cpp -------------------------------------------------------------------------------- /Private/Memory/Any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Memory/Any.cpp -------------------------------------------------------------------------------- /Private/Memory/Containers/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Memory/Containers/String.cpp -------------------------------------------------------------------------------- /Private/Memory/Containers/StringView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Memory/Containers/StringView.cpp -------------------------------------------------------------------------------- /Private/Memory/New.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Memory/New.cpp -------------------------------------------------------------------------------- /Private/Memory/Optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Memory/Optional.cpp -------------------------------------------------------------------------------- /Private/Network/Address.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Network/Address.cpp -------------------------------------------------------------------------------- /Private/Platform/ApplePlatform.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Platform/ApplePlatform.mm -------------------------------------------------------------------------------- /Private/Platform/IsDebuggerAttached.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Platform/IsDebuggerAttached.cpp -------------------------------------------------------------------------------- /Private/Platform/Pasteboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Platform/Pasteboard.cpp -------------------------------------------------------------------------------- /Private/Platform/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Platform/Type.cpp -------------------------------------------------------------------------------- /Private/Project System/EngineDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/EngineDatabase.cpp -------------------------------------------------------------------------------- /Private/Project System/EngineInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/EngineInfo.cpp -------------------------------------------------------------------------------- /Private/Project System/PackagedBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/PackagedBundle.cpp -------------------------------------------------------------------------------- /Private/Project System/PluginDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/PluginDatabase.cpp -------------------------------------------------------------------------------- /Private/Project System/PluginInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/PluginInfo.cpp -------------------------------------------------------------------------------- /Private/Project System/ProjectDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/ProjectDatabase.cpp -------------------------------------------------------------------------------- /Private/Project System/ProjectInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Project System/ProjectInfo.cpp -------------------------------------------------------------------------------- /Private/Reflection/CoreTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Reflection/CoreTypes.cpp -------------------------------------------------------------------------------- /Private/Reflection/DynamicTypeDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Reflection/DynamicTypeDefinition.cpp -------------------------------------------------------------------------------- /Private/Reflection/PropertyBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Reflection/PropertyBinder.cpp -------------------------------------------------------------------------------- /Private/Reflection/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Reflection/Registry.cpp -------------------------------------------------------------------------------- /Private/Reflection/TypeDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Reflection/TypeDefinition.cpp -------------------------------------------------------------------------------- /Private/Serialization/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Serialization/Serialization.cpp -------------------------------------------------------------------------------- /Private/System/Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/System/Query.cpp -------------------------------------------------------------------------------- /Private/Threading/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Atomic.cpp -------------------------------------------------------------------------------- /Private/Threading/Jobs/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Jobs/Job.cpp -------------------------------------------------------------------------------- /Private/Threading/Jobs/JobManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Jobs/JobManager.cpp -------------------------------------------------------------------------------- /Private/Threading/Jobs/JobRunnerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Jobs/JobRunnerThread.cpp -------------------------------------------------------------------------------- /Private/Threading/Jobs/TimersJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Jobs/TimersJob.cpp -------------------------------------------------------------------------------- /Private/Threading/Sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Sleep.cpp -------------------------------------------------------------------------------- /Private/Threading/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/Thread.cpp -------------------------------------------------------------------------------- /Private/Threading/ThreadId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Threading/ThreadId.cpp -------------------------------------------------------------------------------- /Private/Time/Duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Time/Duration.cpp -------------------------------------------------------------------------------- /Private/Time/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Private/Time/Timestamp.cpp -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/CMakeLists.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/LICENSE.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/attributes.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/call_once.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/casts.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/config.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/const_init.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/macros.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/options.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/base/port.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/copts/copts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/copts/copts.py -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/config.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/declare.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/flag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/flag.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/flag.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/parse.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/parse.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/usage.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/flags/usage.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/hash/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/hash/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/hash/hash.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/hash/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/hash/hash_test.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/memory/memory.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/meta/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/meta/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/numeric/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/numeric/int128.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/numeric/int128.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/random/random.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/status/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/status/status.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/status/status.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/status/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/status/statusor.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/ascii.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/ascii.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/cord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/cord.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/cord.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/match.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/match.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/numbers.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/str_cat.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/strings/strip.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/civil_time.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/clock.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/clock.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/duration.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/format.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2020a 2 | -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/time.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/time.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/time/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/time/time_test.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/BUILD.bazel -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/any.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/any_test.cc -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/compare.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/optional.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/span.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/types/variant.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/absl/utility/utility.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/LICENSE.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/chrono_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/chrono_io.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/date.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/ios.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/islamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/islamic.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/iso_week.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/iso_week.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/julian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/julian.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/ptz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/ptz.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/tz.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/date/tz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/date/tz_private.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/Include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/Include.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/LICENSE.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/args.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/base.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/chrono.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/color.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/compile.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/core.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/format-inl.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/format.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/os.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/ostream.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/printf.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/ranges.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/std.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/fmt/xchar.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/mimalloc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/mimalloc/LICENSE.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/mimalloc/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/mimalloc/bitmap.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/mimalloc/mimalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/mimalloc/mimalloc.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/mimalloc/page-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/mimalloc/page-queue.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/allocators.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/document.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/encodings.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/error/en.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/fwd.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/license.txt -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/pointer.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/reader.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/schema.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/stream.h -------------------------------------------------------------------------------- /Public/Common/3rdparty/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/3rdparty/rapidjson/writer.h -------------------------------------------------------------------------------- /Public/Common/Algorithms/GenerateUniqueName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Algorithms/GenerateUniqueName.h -------------------------------------------------------------------------------- /Public/Common/Algorithms/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Algorithms/Sort.h -------------------------------------------------------------------------------- /Public/Common/Application/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Application/Application.h -------------------------------------------------------------------------------- /Public/Common/Application/PluginInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Application/PluginInstance.h -------------------------------------------------------------------------------- /Public/Common/Assert/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Assert/Assert.h -------------------------------------------------------------------------------- /Public/Common/Assert/Validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Assert/Validate.h -------------------------------------------------------------------------------- /Public/Common/Asset/Asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Asset.h -------------------------------------------------------------------------------- /Public/Common/Asset/AssetDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/AssetDatabase.h -------------------------------------------------------------------------------- /Public/Common/Asset/AssetDatabaseEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/AssetDatabaseEntry.h -------------------------------------------------------------------------------- /Public/Common/Asset/AssetFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/AssetFormat.h -------------------------------------------------------------------------------- /Public/Common/Asset/AssetOwners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/AssetOwners.h -------------------------------------------------------------------------------- /Public/Common/Asset/AssetTypeTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/AssetTypeTag.h -------------------------------------------------------------------------------- /Public/Common/Asset/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Context.h -------------------------------------------------------------------------------- /Public/Common/Asset/FolderAssetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/FolderAssetType.h -------------------------------------------------------------------------------- /Public/Common/Asset/Format/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Format/Guid.h -------------------------------------------------------------------------------- /Public/Common/Asset/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Guid.h -------------------------------------------------------------------------------- /Public/Common/Asset/LocalAssetDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/LocalAssetDatabase.h -------------------------------------------------------------------------------- /Public/Common/Asset/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/MetaData.h -------------------------------------------------------------------------------- /Public/Common/Asset/Picker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Picker.h -------------------------------------------------------------------------------- /Public/Common/Asset/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Reference.h -------------------------------------------------------------------------------- /Public/Common/Asset/Serialization/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Serialization/MetaData.h -------------------------------------------------------------------------------- /Public/Common/Asset/TagAssetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/TagAssetType.h -------------------------------------------------------------------------------- /Public/Common/Asset/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/Types.h -------------------------------------------------------------------------------- /Public/Common/Asset/VirtualAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Asset/VirtualAsset.h -------------------------------------------------------------------------------- /Public/Common/AtomicEnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/AtomicEnumFlags.h -------------------------------------------------------------------------------- /Public/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Common.h -------------------------------------------------------------------------------- /Public/Common/Common.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Common.natvis -------------------------------------------------------------------------------- /Public/Common/CommonLLDBFormatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/CommonLLDBFormatters.py -------------------------------------------------------------------------------- /Public/Common/Compression/Bool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Bool.h -------------------------------------------------------------------------------- /Public/Common/Compression/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Compress.h -------------------------------------------------------------------------------- /Public/Common/Compression/Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Compressor.h -------------------------------------------------------------------------------- /Public/Common/Compression/Decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Decompress.h -------------------------------------------------------------------------------- /Public/Common/Compression/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Enum.h -------------------------------------------------------------------------------- /Public/Common/Compression/Float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Compression/Float.h -------------------------------------------------------------------------------- /Public/Common/EnumFlagOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/EnumFlagOperators.h -------------------------------------------------------------------------------- /Public/Common/EnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/EnumFlags.h -------------------------------------------------------------------------------- /Public/Common/Format/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Format/Guid.h -------------------------------------------------------------------------------- /Public/Common/ForwardDeclarations/EnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/ForwardDeclarations/EnumFlags.h -------------------------------------------------------------------------------- /Public/Common/Function/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/Callback.h -------------------------------------------------------------------------------- /Public/Common/Function/CopyableFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/CopyableFunction.h -------------------------------------------------------------------------------- /Public/Common/Function/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/Event.h -------------------------------------------------------------------------------- /Public/Common/Function/EventCallbackResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/EventCallbackResult.h -------------------------------------------------------------------------------- /Public/Common/Function/FlatFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/FlatFunction.h -------------------------------------------------------------------------------- /Public/Common/Function/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/Function.h -------------------------------------------------------------------------------- /Public/Common/Function/FunctionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/FunctionBase.h -------------------------------------------------------------------------------- /Public/Common/Function/FunctionPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/FunctionPointer.h -------------------------------------------------------------------------------- /Public/Common/Function/ThreadSafeEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Function/ThreadSafeEvent.h -------------------------------------------------------------------------------- /Public/Common/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Guid.h -------------------------------------------------------------------------------- /Public/Common/IO/AccessModeFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/AccessModeFlags.h -------------------------------------------------------------------------------- /Public/Common/IO/AsyncLoadCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/AsyncLoadCallback.h -------------------------------------------------------------------------------- /Public/Common/IO/AsyncLoadFromDiskJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/AsyncLoadFromDiskJob.h -------------------------------------------------------------------------------- /Public/Common/IO/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/File.h -------------------------------------------------------------------------------- /Public/Common/IO/FileChangeListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/FileChangeListener.h -------------------------------------------------------------------------------- /Public/Common/IO/FileIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/FileIterator.h -------------------------------------------------------------------------------- /Public/Common/IO/FileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/FileView.h -------------------------------------------------------------------------------- /Public/Common/IO/Format/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/Format/Path.h -------------------------------------------------------------------------------- /Public/Common/IO/Format/URI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/Format/URI.h -------------------------------------------------------------------------------- /Public/Common/IO/ForwardDeclarations/Path.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ngine::IO 4 | { 5 | struct Path; 6 | } 7 | -------------------------------------------------------------------------------- /Public/Common/IO/ForwardDeclarations/URI.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ngine::IO 4 | { 5 | struct URI; 6 | } 7 | -------------------------------------------------------------------------------- /Public/Common/IO/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/Library.h -------------------------------------------------------------------------------- /Public/Common/IO/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/Log.h -------------------------------------------------------------------------------- /Public/Common/IO/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/Path.h -------------------------------------------------------------------------------- /Public/Common/IO/PathCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/PathCharType.h -------------------------------------------------------------------------------- /Public/Common/IO/PathConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/PathConstants.h -------------------------------------------------------------------------------- /Public/Common/IO/PathFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/PathFlags.h -------------------------------------------------------------------------------- /Public/Common/IO/PathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/PathView.h -------------------------------------------------------------------------------- /Public/Common/IO/SharingFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/SharingFlags.h -------------------------------------------------------------------------------- /Public/Common/IO/TPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/TPath.h -------------------------------------------------------------------------------- /Public/Common/IO/TPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/TPathView.h -------------------------------------------------------------------------------- /Public/Common/IO/URI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/URI.h -------------------------------------------------------------------------------- /Public/Common/IO/URICharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/URICharType.h -------------------------------------------------------------------------------- /Public/Common/IO/URIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/URIView.h -------------------------------------------------------------------------------- /Public/Common/IO/ZeroTerminatedPathView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/ZeroTerminatedPathView.h -------------------------------------------------------------------------------- /Public/Common/IO/ZeroTerminatedURIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/ZeroTerminatedURIView.h -------------------------------------------------------------------------------- /Public/Common/IO/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/IO/rapidjson.h -------------------------------------------------------------------------------- /Public/Common/Math/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/Acceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Acceleration.h -------------------------------------------------------------------------------- /Public/Common/Math/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Acos.h -------------------------------------------------------------------------------- /Public/Common/Math/Angle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Angle.h -------------------------------------------------------------------------------- /Public/Common/Math/Angle/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Angle/Random.h -------------------------------------------------------------------------------- /Public/Common/Math/Angle3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Angle3.h -------------------------------------------------------------------------------- /Public/Common/Math/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Asin.h -------------------------------------------------------------------------------- /Public/Common/Math/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Atan.h -------------------------------------------------------------------------------- /Public/Common/Math/Atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Atan2.h -------------------------------------------------------------------------------- /Public/Common/Math/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Ceil.h -------------------------------------------------------------------------------- /Public/Common/Math/Clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Clamp.h -------------------------------------------------------------------------------- /Public/Common/Math/ClampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/ClampedValue.h -------------------------------------------------------------------------------- /Public/Common/Math/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Color.h -------------------------------------------------------------------------------- /Public/Common/Math/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Constants.h -------------------------------------------------------------------------------- /Public/Common/Math/CoreNumericTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/CoreNumericTypes.h -------------------------------------------------------------------------------- /Public/Common/Math/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Cos.h -------------------------------------------------------------------------------- /Public/Common/Math/CubicRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/CubicRoot.h -------------------------------------------------------------------------------- /Public/Common/Math/Damping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Damping.h -------------------------------------------------------------------------------- /Public/Common/Math/Density.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Density.h -------------------------------------------------------------------------------- /Public/Common/Math/Epsilon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Epsilon.h -------------------------------------------------------------------------------- /Public/Common/Math/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Floor.h -------------------------------------------------------------------------------- /Public/Common/Math/Format/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Format/Color.h -------------------------------------------------------------------------------- /Public/Common/Math/Format/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Format/Vector2.h -------------------------------------------------------------------------------- /Public/Common/Math/Format/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Format/Vector3.h -------------------------------------------------------------------------------- /Public/Common/Math/Format/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Format/Vector4.h -------------------------------------------------------------------------------- /Public/Common/Math/ForwardDeclarations/Mass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/ForwardDeclarations/Mass.h -------------------------------------------------------------------------------- /Public/Common/Math/Fract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Fract.h -------------------------------------------------------------------------------- /Public/Common/Math/Frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Frequency.h -------------------------------------------------------------------------------- /Public/Common/Math/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Half.h -------------------------------------------------------------------------------- /Public/Common/Math/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Hash.h -------------------------------------------------------------------------------- /Public/Common/Math/HashedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/HashedObject.h -------------------------------------------------------------------------------- /Public/Common/Math/Hexagon/Hexagon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Hexagon/Hexagon.h -------------------------------------------------------------------------------- /Public/Common/Math/Hexagon/HexagonWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Hexagon/HexagonWorld.h -------------------------------------------------------------------------------- /Public/Common/Math/ISqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/ISqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/IsEquivalentTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/IsEquivalentTo.h -------------------------------------------------------------------------------- /Public/Common/Math/IsNearlyZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/IsNearlyZero.h -------------------------------------------------------------------------------- /Public/Common/Math/IsNegative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/IsNegative.h -------------------------------------------------------------------------------- /Public/Common/Math/Length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Length.h -------------------------------------------------------------------------------- /Public/Common/Math/LinearGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/LinearGradient.h -------------------------------------------------------------------------------- /Public/Common/Math/LinearInterpolate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/LinearInterpolate.h -------------------------------------------------------------------------------- /Public/Common/Math/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Log.h -------------------------------------------------------------------------------- /Public/Common/Math/Log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Log10.h -------------------------------------------------------------------------------- /Public/Common/Math/Log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Log2.h -------------------------------------------------------------------------------- /Public/Common/Math/Mass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Mass.h -------------------------------------------------------------------------------- /Public/Common/Math/MathAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/MathAssert.h -------------------------------------------------------------------------------- /Public/Common/Math/Matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Matrix3x3.h -------------------------------------------------------------------------------- /Public/Common/Math/Matrix3x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Matrix3x4.h -------------------------------------------------------------------------------- /Public/Common/Math/Matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Matrix4x4.h -------------------------------------------------------------------------------- /Public/Common/Math/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/MultiplicativeInverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/MultiplicativeInverse.h -------------------------------------------------------------------------------- /Public/Common/Math/NumericLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/NumericLimits.h -------------------------------------------------------------------------------- /Public/Common/Math/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Power.h -------------------------------------------------------------------------------- /Public/Common/Math/PowerOfTwo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/PowerOfTwo.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/BoundingBox.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Circle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Circle.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/InfinitePlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/InfinitePlane.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Intersect.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Line.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Overlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Overlap.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Plane.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Rectangle.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Sphere.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Spline.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Sweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Sweep.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Sweep/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Sweep/Result.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/Triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/Triangle.h -------------------------------------------------------------------------------- /Public/Common/Math/Primitives/WorldLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Primitives/WorldLine.h -------------------------------------------------------------------------------- /Public/Common/Math/Quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Quantize.h -------------------------------------------------------------------------------- /Public/Common/Math/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Quaternion.h -------------------------------------------------------------------------------- /Public/Common/Math/Radius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Radius.h -------------------------------------------------------------------------------- /Public/Common/Math/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Random.h -------------------------------------------------------------------------------- /Public/Common/Math/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Range.h -------------------------------------------------------------------------------- /Public/Common/Math/Ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Ratio.h -------------------------------------------------------------------------------- /Public/Common/Math/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Rotation2D.h -------------------------------------------------------------------------------- /Public/Common/Math/RotationalSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/RotationalSpeed.h -------------------------------------------------------------------------------- /Public/Common/Math/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Round.h -------------------------------------------------------------------------------- /Public/Common/Math/Scale3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Scale3.h -------------------------------------------------------------------------------- /Public/Common/Math/ScaledQuaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/ScaledQuaternion.h -------------------------------------------------------------------------------- /Public/Common/Math/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Select.h -------------------------------------------------------------------------------- /Public/Common/Math/Serialization/Angle3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Serialization/Angle3.h -------------------------------------------------------------------------------- /Public/Common/Math/Serialization/Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Serialization/Range.h -------------------------------------------------------------------------------- /Public/Common/Math/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Sign.h -------------------------------------------------------------------------------- /Public/Common/Math/SignNonZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/SignNonZero.h -------------------------------------------------------------------------------- /Public/Common/Math/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Sin.h -------------------------------------------------------------------------------- /Public/Common/Math/SinCos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/SinCos.h -------------------------------------------------------------------------------- /Public/Common/Math/SmoothStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/SmoothStep.h -------------------------------------------------------------------------------- /Public/Common/Math/Speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Speed.h -------------------------------------------------------------------------------- /Public/Common/Math/Split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Split.h -------------------------------------------------------------------------------- /Public/Common/Math/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Sqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Step.h -------------------------------------------------------------------------------- /Public/Common/Math/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Tan.h -------------------------------------------------------------------------------- /Public/Common/Math/Tangents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Tangents.h -------------------------------------------------------------------------------- /Public/Common/Math/Torque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Torque.h -------------------------------------------------------------------------------- /Public/Common/Math/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Transform.h -------------------------------------------------------------------------------- /Public/Common/Math/Transform2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Transform2D.h -------------------------------------------------------------------------------- /Public/Common/Math/Truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Truncate.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Ceil.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Exponential.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Floor.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Hash.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/IsEquivalentTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/IsEquivalentTo.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Quantize.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Round.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Select.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Sign.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/SignNonZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/SignNonZero.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector2/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector2/Sqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Ceil.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Cos.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Floor.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/IsEquivalentTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/IsEquivalentTo.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Power.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Quantize.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Random.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Round.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Select.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Sign.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/SignNonZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/SignNonZero.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Sin.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/SinCos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/SinCos.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Sqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Tan.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3/Truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3/Truncate.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector3ToFrom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector3ToFrom2.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/IsEquivalentTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/IsEquivalentTo.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Power.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Quantize.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Random.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Round.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Select.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Sign.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/SignNonZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/SignNonZero.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Sqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Vector4/Truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vector4/Truncate.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Acos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Acos.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Asin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Asin.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Atan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Atan.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Atan2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Atan2.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Ceil.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Cos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Cos.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/CubicRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/CubicRoot.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Floor.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Fract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Fract.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/ISqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/ISqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Log.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Log10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Log10.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Log2.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Packed.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/PackedInt8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/PackedInt8.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Power.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Round.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Select.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Sign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Sign.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Sin.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/SinCos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/SinCos.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Sqrt.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Tan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Tan.h -------------------------------------------------------------------------------- /Public/Common/Math/Vectorization/Truncate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Vectorization/Truncate.h -------------------------------------------------------------------------------- /Public/Common/Math/WorldCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/WorldCoordinate.h -------------------------------------------------------------------------------- /Public/Common/Math/WorldCoordinate/Abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/WorldCoordinate/Abs.h -------------------------------------------------------------------------------- /Public/Common/Math/WorldCoordinate/Max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/WorldCoordinate/Max.h -------------------------------------------------------------------------------- /Public/Common/Math/WorldCoordinate/Min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/WorldCoordinate/Min.h -------------------------------------------------------------------------------- /Public/Common/Math/WorldCoordinate/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/WorldCoordinate/Mod.h -------------------------------------------------------------------------------- /Public/Common/Math/Wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Math/Wrap.h -------------------------------------------------------------------------------- /Public/Common/Memory/AddressOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/AddressOf.h -------------------------------------------------------------------------------- /Public/Common/Memory/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Align.h -------------------------------------------------------------------------------- /Public/Common/Memory/Allocators/Allocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Allocators/Allocate.h -------------------------------------------------------------------------------- /Public/Common/Memory/Allocators/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Allocators/Pool.h -------------------------------------------------------------------------------- /Public/Common/Memory/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Any.h -------------------------------------------------------------------------------- /Public/Common/Memory/AnyBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/AnyBase.h -------------------------------------------------------------------------------- /Public/Common/Memory/AnyView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/AnyView.h -------------------------------------------------------------------------------- /Public/Common/Memory/AtomicBitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/AtomicBitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/BitCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/BitCast.h -------------------------------------------------------------------------------- /Public/Common/Memory/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Bitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/BitsetBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/BitsetBase.h -------------------------------------------------------------------------------- /Public/Common/Memory/CallFunctionWithTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CallFunctionWithTuple.h -------------------------------------------------------------------------------- /Public/Common/Memory/CallbackResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CallbackResult.h -------------------------------------------------------------------------------- /Public/Common/Memory/CheckedCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CheckedCast.h -------------------------------------------------------------------------------- /Public/Common/Memory/Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Compare.h -------------------------------------------------------------------------------- /Public/Common/Memory/CompressedBitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CompressedBitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/Compression/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Compression/Bitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/Array.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/ArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/ArrayView.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/BitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/BitView.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/ByteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/ByteView.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/FlatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/FlatString.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/FlatVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/FlatVector.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/HashTable.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/OrderedMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/OrderedMap.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/OrderedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/OrderedSet.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/String.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/StringBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/StringBase.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/StringView.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/Vector.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/VectorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/VectorBase.h -------------------------------------------------------------------------------- /Public/Common/Memory/Containers/VectorFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Containers/VectorFlags.h -------------------------------------------------------------------------------- /Public/Common/Memory/Copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Copy.h -------------------------------------------------------------------------------- /Public/Common/Memory/CopyablePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CopyablePtr.h -------------------------------------------------------------------------------- /Public/Common/Memory/CountBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/CountBits.h -------------------------------------------------------------------------------- /Public/Common/Memory/DynamicBitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/DynamicBitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Endian.h -------------------------------------------------------------------------------- /Public/Common/Memory/FlatAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/FlatAny.h -------------------------------------------------------------------------------- /Public/Common/Memory/Forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Forward.h -------------------------------------------------------------------------------- /Public/Common/Memory/GetAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/GetAlignment.h -------------------------------------------------------------------------------- /Public/Common/Memory/GetIntegerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/GetIntegerType.h -------------------------------------------------------------------------------- /Public/Common/Memory/GetNumericSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/GetNumericSize.h -------------------------------------------------------------------------------- /Public/Common/Memory/InlineDynamicBitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/InlineDynamicBitset.h -------------------------------------------------------------------------------- /Public/Common/Memory/Invalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Invalid.h -------------------------------------------------------------------------------- /Public/Common/Memory/IsAligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/IsAligned.h -------------------------------------------------------------------------------- /Public/Common/Memory/Iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Iterator.h -------------------------------------------------------------------------------- /Public/Common/Memory/MemorySize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/MemorySize.h -------------------------------------------------------------------------------- /Public/Common/Memory/Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Move.h -------------------------------------------------------------------------------- /Public/Common/Memory/NativeCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/NativeCharType.h -------------------------------------------------------------------------------- /Public/Common/Memory/New.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/New.h -------------------------------------------------------------------------------- /Public/Common/Memory/OffsetOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/OffsetOf.h -------------------------------------------------------------------------------- /Public/Common/Memory/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Optional.h -------------------------------------------------------------------------------- /Public/Common/Memory/OptionalIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/OptionalIterator.h -------------------------------------------------------------------------------- /Public/Common/Memory/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Pair.h -------------------------------------------------------------------------------- /Public/Common/Memory/Prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Prefetch.h -------------------------------------------------------------------------------- /Public/Common/Memory/ReferenceWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/ReferenceWrapper.h -------------------------------------------------------------------------------- /Public/Common/Memory/Sentinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Sentinel.h -------------------------------------------------------------------------------- /Public/Common/Memory/Serialization/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Serialization/Optional.h -------------------------------------------------------------------------------- /Public/Common/Memory/Serialization/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Serialization/Variant.h -------------------------------------------------------------------------------- /Public/Common/Memory/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Set.h -------------------------------------------------------------------------------- /Public/Common/Memory/SharedPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/SharedPtr.h -------------------------------------------------------------------------------- /Public/Common/Memory/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Swap.h -------------------------------------------------------------------------------- /Public/Common/Memory/Tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Tuple.h -------------------------------------------------------------------------------- /Public/Common/Memory/UnicodeCharType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/UnicodeCharType.h -------------------------------------------------------------------------------- /Public/Common/Memory/UniquePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/UniquePtr.h -------------------------------------------------------------------------------- /Public/Common/Memory/UniquePtrView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/UniquePtrView.h -------------------------------------------------------------------------------- /Public/Common/Memory/UniqueRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/UniqueRef.h -------------------------------------------------------------------------------- /Public/Common/Memory/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Memory/Variant.h -------------------------------------------------------------------------------- /Public/Common/Network/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Network/Address.h -------------------------------------------------------------------------------- /Public/Common/Network/Format/Address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Network/Format/Address.h -------------------------------------------------------------------------------- /Public/Common/Network/Format/Port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Network/Format/Port.h -------------------------------------------------------------------------------- /Public/Common/Network/Port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Network/Port.h -------------------------------------------------------------------------------- /Public/Common/Platform/Assume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Assume.h -------------------------------------------------------------------------------- /Public/Common/Platform/CodeSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/CodeSection.h -------------------------------------------------------------------------------- /Public/Common/Platform/Cold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Cold.h -------------------------------------------------------------------------------- /Public/Common/Platform/CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/CompilerWarnings.h -------------------------------------------------------------------------------- /Public/Common/Platform/ConfigureCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/ConfigureCompiler.h -------------------------------------------------------------------------------- /Public/Common/Platform/ConfigurePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/ConfigurePlatform.h -------------------------------------------------------------------------------- /Public/Common/Platform/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Console.h -------------------------------------------------------------------------------- /Public/Common/Platform/CppVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/CppVersion.h -------------------------------------------------------------------------------- /Public/Common/Platform/Distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Distribution.h -------------------------------------------------------------------------------- /Public/Common/Platform/DllExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/DllExport.h -------------------------------------------------------------------------------- /Public/Common/Platform/Environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Environment.h -------------------------------------------------------------------------------- /Public/Common/Platform/ForceInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/ForceInline.h -------------------------------------------------------------------------------- /Public/Common/Platform/GetDeviceModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/GetDeviceModel.h -------------------------------------------------------------------------------- /Public/Common/Platform/GetName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/GetName.h -------------------------------------------------------------------------------- /Public/Common/Platform/GetPlatformTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/GetPlatformTypes.h -------------------------------------------------------------------------------- /Public/Common/Platform/InternalLinkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/InternalLinkage.h -------------------------------------------------------------------------------- /Public/Common/Platform/IsConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/IsConstant.h -------------------------------------------------------------------------------- /Public/Common/Platform/IsConstantEvaluated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/IsConstantEvaluated.h -------------------------------------------------------------------------------- /Public/Common/Platform/IsDebuggerAttached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/IsDebuggerAttached.h -------------------------------------------------------------------------------- /Public/Common/Platform/LifetimeBound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/LifetimeBound.h -------------------------------------------------------------------------------- /Public/Common/Platform/Likely.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Likely.h -------------------------------------------------------------------------------- /Public/Common/Platform/MustTail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/MustTail.h -------------------------------------------------------------------------------- /Public/Common/Platform/NoDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/NoDebug.h -------------------------------------------------------------------------------- /Public/Common/Platform/NoInline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/NoInline.h -------------------------------------------------------------------------------- /Public/Common/Platform/NoReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/NoReturn.h -------------------------------------------------------------------------------- /Public/Common/Platform/NoUniqueAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/NoUniqueAddress.h -------------------------------------------------------------------------------- /Public/Common/Platform/OffsetOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/OffsetOf.h -------------------------------------------------------------------------------- /Public/Common/Platform/OpenInFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/OpenInFileBrowser.h -------------------------------------------------------------------------------- /Public/Common/Platform/Pasteboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Pasteboard.h -------------------------------------------------------------------------------- /Public/Common/Platform/Pure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Pure.h -------------------------------------------------------------------------------- /Public/Common/Platform/RaiseException.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ngine 4 | { 5 | extern void RaiseException(); 6 | } 7 | -------------------------------------------------------------------------------- /Public/Common/Platform/StartProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/StartProcess.h -------------------------------------------------------------------------------- /Public/Common/Platform/StaticUnreachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/StaticUnreachable.h -------------------------------------------------------------------------------- /Public/Common/Platform/TrivialABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/TrivialABI.h -------------------------------------------------------------------------------- /Public/Common/Platform/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Type.h -------------------------------------------------------------------------------- /Public/Common/Platform/UnderlyingType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/UnderlyingType.h -------------------------------------------------------------------------------- /Public/Common/Platform/Unreachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Unreachable.h -------------------------------------------------------------------------------- /Public/Common/Platform/Unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Unused.h -------------------------------------------------------------------------------- /Public/Common/Platform/Used.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Used.h -------------------------------------------------------------------------------- /Public/Common/Platform/Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Platform/Windows.h -------------------------------------------------------------------------------- /Public/Common/Plugin/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Plugin/Plugin.h -------------------------------------------------------------------------------- /Public/Common/PrecompiledHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/PrecompiledHeaders.h -------------------------------------------------------------------------------- /Public/Common/Project System/EngineDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/EngineDatabase.h -------------------------------------------------------------------------------- /Public/Common/Project System/EngineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/EngineInfo.h -------------------------------------------------------------------------------- /Public/Common/Project System/FindEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/FindEngine.h -------------------------------------------------------------------------------- /Public/Common/Project System/PackagedBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/PackagedBundle.h -------------------------------------------------------------------------------- /Public/Common/Project System/PluginDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/PluginDatabase.h -------------------------------------------------------------------------------- /Public/Common/Project System/PluginInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/PluginInfo.h -------------------------------------------------------------------------------- /Public/Common/Project System/ProjectInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/ProjectInfo.h -------------------------------------------------------------------------------- /Public/Common/Project System/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Project System/Settings.h -------------------------------------------------------------------------------- /Public/Common/Reflection/CoreTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/CoreTypes.h -------------------------------------------------------------------------------- /Public/Common/Reflection/DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/DynamicObject.h -------------------------------------------------------------------------------- /Public/Common/Reflection/EnumTypeExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/EnumTypeExtension.h -------------------------------------------------------------------------------- /Public/Common/Reflection/EnumTypeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/EnumTypeInterface.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Event.h -------------------------------------------------------------------------------- /Public/Common/Reflection/EventFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/EventFlags.h -------------------------------------------------------------------------------- /Public/Common/Reflection/EventInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/EventInfo.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Extension.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Function.h -------------------------------------------------------------------------------- /Public/Common/Reflection/FunctionArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/FunctionArgument.h -------------------------------------------------------------------------------- /Public/Common/Reflection/FunctionFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/FunctionFlags.h -------------------------------------------------------------------------------- /Public/Common/Reflection/FunctionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/FunctionInfo.h -------------------------------------------------------------------------------- /Public/Common/Reflection/GenericType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/GenericType.h -------------------------------------------------------------------------------- /Public/Common/Reflection/GetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/GetType.h -------------------------------------------------------------------------------- /Public/Common/Reflection/IsReflected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/IsReflected.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Property.h -------------------------------------------------------------------------------- /Public/Common/Reflection/PropertyBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/PropertyBinder.h -------------------------------------------------------------------------------- /Public/Common/Reflection/PropertyFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/PropertyFlags.h -------------------------------------------------------------------------------- /Public/Common/Reflection/PropertyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/PropertyInfo.h -------------------------------------------------------------------------------- /Public/Common/Reflection/PropertyOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/PropertyOwner.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Registry.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Registry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Registry.inl -------------------------------------------------------------------------------- /Public/Common/Reflection/Serialization/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Serialization/Type.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Tag.h -------------------------------------------------------------------------------- /Public/Common/Reflection/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/Type.h -------------------------------------------------------------------------------- /Public/Common/Reflection/TypeCloner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/TypeCloner.h -------------------------------------------------------------------------------- /Public/Common/Reflection/TypeDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/TypeDefinition.h -------------------------------------------------------------------------------- /Public/Common/Reflection/TypeDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/TypeDeserializer.h -------------------------------------------------------------------------------- /Public/Common/Reflection/TypeInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/TypeInitializer.h -------------------------------------------------------------------------------- /Public/Common/Reflection/TypeInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Reflection/TypeInterface.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Array.h -------------------------------------------------------------------------------- /Public/Common/Serialization/CanRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/CanRead.h -------------------------------------------------------------------------------- /Public/Common/Serialization/CanWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/CanWrite.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Common.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Context.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Deserialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Deserialize.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Duplicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Duplicate.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Guid.h -------------------------------------------------------------------------------- /Public/Common/Serialization/MergedReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/MergedReader.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Object.h -------------------------------------------------------------------------------- /Public/Common/Serialization/RawPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/RawPointer.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Reader.h -------------------------------------------------------------------------------- /Public/Common/Serialization/SavingFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/SavingFlags.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Serialize.h -------------------------------------------------------------------------------- /Public/Common/Serialization/SerializedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/SerializedData.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Value.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Version.h -------------------------------------------------------------------------------- /Public/Common/Serialization/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Serialization/Writer.h -------------------------------------------------------------------------------- /Public/Common/SourceLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/SourceLocation.h -------------------------------------------------------------------------------- /Public/Common/Storage/AtomicIdentifierMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Storage/AtomicIdentifierMask.h -------------------------------------------------------------------------------- /Public/Common/Storage/Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Storage/Identifier.h -------------------------------------------------------------------------------- /Public/Common/Storage/IdentifierArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Storage/IdentifierArray.h -------------------------------------------------------------------------------- /Public/Common/Storage/IdentifierArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Storage/IdentifierArrayView.h -------------------------------------------------------------------------------- /Public/Common/Storage/IdentifierMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Storage/IdentifierMask.h -------------------------------------------------------------------------------- /Public/Common/System/Query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/System/Query.h -------------------------------------------------------------------------------- /Public/Common/System/SystemType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/System/SystemType.h -------------------------------------------------------------------------------- /Public/Common/Tag/TagGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Tag/TagGuid.h -------------------------------------------------------------------------------- /Public/Common/Tests/UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Tests/UnitTest.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicBase.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicBool.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicEnum.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicInteger.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicPtr.h -------------------------------------------------------------------------------- /Public/Common/Threading/AtomicUint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/AtomicUint128.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/AtomicView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/AtomicView.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/Exchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/Exchange.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/FetchAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/FetchAdd.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/FetchAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/FetchAnd.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/FetchOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/FetchOr.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/FetchXor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/FetchXor.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/Load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/Load.h -------------------------------------------------------------------------------- /Public/Common/Threading/Atomics/Store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Atomics/Store.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/AsyncEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/AsyncEvent.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/AsyncJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/AsyncJob.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/CallbackResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/CallbackResult.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/Job.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/JobBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/JobBatch.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/JobManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/JobManager.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/JobPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/JobPriority.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/JobRunnerMask.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace ngine::Threading 4 | { 5 | using JobRunnerMask = uint64; 6 | } 7 | -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/StageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/StageBase.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/TimerHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/TimerHandle.h -------------------------------------------------------------------------------- /Public/Common/Threading/Jobs/TimersJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Jobs/TimersJob.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/AdoptLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/AdoptLock.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/Mutex.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/SharedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/SharedLock.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/SharedMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/SharedMutex.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/TryLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/TryLock.h -------------------------------------------------------------------------------- /Public/Common/Threading/Mutexes/UniqueLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Mutexes/UniqueLock.h -------------------------------------------------------------------------------- /Public/Common/Threading/Sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Sleep.h -------------------------------------------------------------------------------- /Public/Common/Threading/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/Thread.h -------------------------------------------------------------------------------- /Public/Common/Threading/ThreadId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/ThreadId.h -------------------------------------------------------------------------------- /Public/Common/Threading/WebWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/WebWorker.h -------------------------------------------------------------------------------- /Public/Common/Threading/WebWorkerPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Threading/WebWorkerPool.h -------------------------------------------------------------------------------- /Public/Common/Time/Duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/Duration.h -------------------------------------------------------------------------------- /Public/Common/Time/Format/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/Format/Timestamp.h -------------------------------------------------------------------------------- /Public/Common/Time/Formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/Formatter.h -------------------------------------------------------------------------------- /Public/Common/Time/FrameTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/FrameTime.h -------------------------------------------------------------------------------- /Public/Common/Time/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/Stopwatch.h -------------------------------------------------------------------------------- /Public/Common/Time/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Time/Timestamp.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/AddConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/AddConst.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/AddReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/AddReference.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/All.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/Any.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/ConditionalType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/ConditionalType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/Decay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/Decay.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/DeclareValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/DeclareValue.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/EnableIf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/EnableIf.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/GetParameterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/GetParameterTypes.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/HasConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/HasConstructor.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/HasMemberFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/HasMemberFunction.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/HasMemberVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/HasMemberVariable.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/InnermostType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/InnermostType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IntegerSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IntegerSequence.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsAbstract.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsArithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsArithmetic.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsBaseOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsBaseOf.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsConst.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsConstructible.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsConstructible.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsConvertibleTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsConvertibleTo.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsCopyAssignable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsCopyAssignable.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsDetected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsDetected.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsEmpty.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsEnum.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsFinal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsFinal.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsFloatingPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsFloatingPoint.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsFunction.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsFunctionPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsFunctionPointer.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsIntegral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsIntegral.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsInvocable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsInvocable.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsMemberFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsMemberFunction.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsMemberPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsMemberPointer.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsMemberVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsMemberVariable.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsMoveAssignable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsMoveAssignable.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsPointer.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsPrimitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsPrimitive.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsReference.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsSame.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsSigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsSigned.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsStringLiteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsStringLiteral.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsValidDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsValidDefinition.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/IsVolatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/IsVolatile.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/MakeSigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/MakeSigned.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/MakeUnsigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/MakeUnsigned.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/MemberOwnerType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/MemberOwnerType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/MemberType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/MemberType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/Nonesuch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/Nonesuch.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/ReturnType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/ReturnType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/Select.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/TypeConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/TypeConstant.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/TypeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/TypeName.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/UnderlyingType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/UnderlyingType.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/Void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/Void.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithConst.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithPointer.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithoutConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithoutConst.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithoutPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithoutPointer.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithoutReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithoutReference.h -------------------------------------------------------------------------------- /Public/Common/TypeTraits/WithoutVolatile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/TypeTraits/WithoutVolatile.h -------------------------------------------------------------------------------- /Public/Common/Undo/UndoHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Undo/UndoHistory.h -------------------------------------------------------------------------------- /Public/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/Public/Common/Version.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/README.md -------------------------------------------------------------------------------- /UnitTests/Private/Common/EnumFlagsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Common/EnumFlagsTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Compression/Compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Compression/Compression.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/AnyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/AnyTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/ArrayTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/ArrayTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/BitViewTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/BitViewTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/BitsetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/BitsetTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/MapTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/MapTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/PoolTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/PoolTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/SetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/SetTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/StringTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/StringTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Containers/VectorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Containers/VectorTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Format/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Format/Format.cpp -------------------------------------------------------------------------------- /UnitTests/Private/IO/PathTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/IO/PathTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/IO/URITests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/IO/URITests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/BoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/BoundingBox.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/GuidTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/GuidTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/MathTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/MathTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/QuaternionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/QuaternionTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/TransformTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/TransformTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Math/VectorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Math/VectorTests.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Memory/Allocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Memory/Allocate.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Memory/SharedPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Memory/SharedPtr.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Threading/Atomics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Threading/Atomics.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Time/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Time/Timestamp.cpp -------------------------------------------------------------------------------- /UnitTests/Private/Timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/Timeout.h -------------------------------------------------------------------------------- /UnitTests/Private/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/UnitTests/Private/main.cpp -------------------------------------------------------------------------------- /cmake/AddTargetOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/AddTargetOptions.cmake -------------------------------------------------------------------------------- /cmake/Apple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Apple/.gitignore -------------------------------------------------------------------------------- /cmake/Apple/ExportOptions.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Apple/ExportOptions.plist.in -------------------------------------------------------------------------------- /cmake/Apple/ExportOptions_Upload.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Apple/ExportOptions_Upload.plist.in -------------------------------------------------------------------------------- /cmake/Apple/SetupTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Apple/SetupTarget.cmake -------------------------------------------------------------------------------- /cmake/Apple/Toolchain_iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Apple/Toolchain_iOS.cmake -------------------------------------------------------------------------------- /cmake/DeployBinaryDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/DeployBinaryDependencies.cmake -------------------------------------------------------------------------------- /cmake/InitialConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/InitialConfiguration.cmake -------------------------------------------------------------------------------- /cmake/InitialSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/InitialSettings.cmake -------------------------------------------------------------------------------- /cmake/LinkPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/LinkPlugin.cmake -------------------------------------------------------------------------------- /cmake/LinkStaticLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/LinkStaticLibrary.cmake -------------------------------------------------------------------------------- /cmake/MakeConsole.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeConsole.cmake -------------------------------------------------------------------------------- /cmake/MakeDynamicLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeDynamicLibrary.cmake -------------------------------------------------------------------------------- /cmake/MakeExecutable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeExecutable.cmake -------------------------------------------------------------------------------- /cmake/MakeInterfaceLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeInterfaceLibrary.cmake -------------------------------------------------------------------------------- /cmake/MakeLauncher.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeLauncher.cmake -------------------------------------------------------------------------------- /cmake/MakeObjectLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeObjectLibrary.cmake -------------------------------------------------------------------------------- /cmake/MakePlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakePlugin.cmake -------------------------------------------------------------------------------- /cmake/MakeStaticLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeStaticLibrary.cmake -------------------------------------------------------------------------------- /cmake/MakeStaticModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeStaticModule.cmake -------------------------------------------------------------------------------- /cmake/MakeTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/MakeTests.cmake -------------------------------------------------------------------------------- /cmake/Windows/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/Windows/Application.manifest -------------------------------------------------------------------------------- /cmake/json-cmake/JSONParser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/json-cmake/JSONParser.cmake -------------------------------------------------------------------------------- /cmake/json-cmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/json-cmake/LICENSE -------------------------------------------------------------------------------- /cmake/json-cmake/r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/json-cmake/r.html -------------------------------------------------------------------------------- /cmake/launch-c-xcode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/launch-c-xcode.in -------------------------------------------------------------------------------- /cmake/launch-c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/launch-c.in -------------------------------------------------------------------------------- /cmake/launch-cxx-xcode.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/launch-cxx-xcode.in -------------------------------------------------------------------------------- /cmake/launch-cxx.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/cmake/launch-cxx.in -------------------------------------------------------------------------------- /tools/format/bin/MacOS/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/format/bin/MacOS/clang-format -------------------------------------------------------------------------------- /tools/format/bin/Windows/FormatAll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/format/bin/Windows/FormatAll.exe -------------------------------------------------------------------------------- /tools/format/bin/Windows/RunFormatAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/format/bin/Windows/RunFormatAll.bat -------------------------------------------------------------------------------- /tools/format/bin/Windows/clang-format.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/format/bin/Windows/clang-format.exe -------------------------------------------------------------------------------- /tools/ninja/Linux/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/ninja/Linux/ninja -------------------------------------------------------------------------------- /tools/ninja/MacOS/ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/ninja/MacOS/ninja -------------------------------------------------------------------------------- /tools/ninja/Windows/ninja.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginetechnologies/sceneri-common/HEAD/tools/ninja/Windows/ninja.exe --------------------------------------------------------------------------------