├── .gitignore ├── Debug ├── EngineFixesVR.log ├── EngineFixesVR.tlog │ ├── CL.command.1.tlog │ ├── EngineFixesVR.lastbuildstate │ └── unsuccessfulbuild ├── vc142.idb └── vc142.pdb ├── EngineFixesVR.sln ├── EngineFixesVR.vcxproj ├── EngineFixesVR.vcxproj.filters ├── EngineFixesVR.vcxproj.user ├── LICENSE ├── README.md ├── Release ├── EngineFixesVR.log ├── EngineFixesVR.tlog │ ├── CL.command.1.tlog │ ├── EngineFixesVR.lastbuildstate │ └── unsuccessfulbuild └── vc142.pdb ├── config.cpp ├── exports.def ├── fixes.cpp ├── fixes ├── doubleperkapply.cpp ├── miscfixes.cpp ├── savescreenshots.cpp └── shaderfixes.cpp ├── include ├── BGSDistantTreeBlock_VR.h ├── INIReader.h ├── TESObjectREFR_VR.h ├── TreeLOD.h ├── config.h ├── fixes.h ├── offsets.h ├── oneapi │ ├── tbb.h │ └── tbb │ │ ├── blocked_range.h │ │ ├── blocked_range2d.h │ │ ├── blocked_range3d.h │ │ ├── blocked_rangeNd.h │ │ ├── cache_aligned_allocator.h │ │ ├── combinable.h │ │ ├── concurrent_hash_map.h │ │ ├── concurrent_lru_cache.h │ │ ├── concurrent_map.h │ │ ├── concurrent_priority_queue.h │ │ ├── concurrent_queue.h │ │ ├── concurrent_set.h │ │ ├── concurrent_unordered_map.h │ │ ├── concurrent_unordered_set.h │ │ ├── concurrent_vector.h │ │ ├── detail │ │ ├── _aggregator.h │ │ ├── _aligned_space.h │ │ ├── _allocator_traits.h │ │ ├── _assert.h │ │ ├── _concurrent_queue_base.h │ │ ├── _concurrent_skip_list.h │ │ ├── _concurrent_unordered_base.h │ │ ├── _config.h │ │ ├── _containers_helpers.h │ │ ├── _exception.h │ │ ├── _flow_graph_body_impl.h │ │ ├── _flow_graph_cache_impl.h │ │ ├── _flow_graph_impl.h │ │ ├── _flow_graph_indexer_impl.h │ │ ├── _flow_graph_item_buffer_impl.h │ │ ├── _flow_graph_join_impl.h │ │ ├── _flow_graph_node_impl.h │ │ ├── _flow_graph_node_set_impl.h │ │ ├── _flow_graph_nodes_deduction.h │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ ├── _flow_graph_trace_impl.h │ │ ├── _flow_graph_types_impl.h │ │ ├── _hash_compare.h │ │ ├── _machine.h │ │ ├── _namespace_injection.h │ │ ├── _node_handle.h │ │ ├── _pipeline_filters.h │ │ ├── _pipeline_filters_deduction.h │ │ ├── _range_common.h │ │ ├── _rtm_mutex.h │ │ ├── _rtm_rw_mutex.h │ │ ├── _segment_table.h │ │ ├── _small_object_pool.h │ │ ├── _string_resource.h │ │ ├── _task.h │ │ ├── _template_helpers.h │ │ └── _utils.h │ │ ├── enumerable_thread_specific.h │ │ ├── flow_graph.h │ │ ├── flow_graph_abstractions.h │ │ ├── global_control.h │ │ ├── info.h │ │ ├── memory_pool.h │ │ ├── null_mutex.h │ │ ├── null_rw_mutex.h │ │ ├── parallel_for.h │ │ ├── parallel_for_each.h │ │ ├── parallel_invoke.h │ │ ├── parallel_pipeline.h │ │ ├── parallel_reduce.h │ │ ├── parallel_scan.h │ │ ├── parallel_sort.h │ │ ├── partitioner.h │ │ ├── profiling.h │ │ ├── queuing_mutex.h │ │ ├── queuing_rw_mutex.h │ │ ├── scalable_allocator.h │ │ ├── spin_mutex.h │ │ ├── spin_rw_mutex.h │ │ ├── task.h │ │ ├── task_arena.h │ │ ├── task_group.h │ │ ├── task_scheduler_observer.h │ │ ├── tbb_allocator.h │ │ ├── tbbmalloc_proxy.h │ │ ├── tick_count.h │ │ └── version.h ├── patches.h ├── tbb │ ├── blocked_range.h │ ├── blocked_range2d.h │ ├── blocked_range3d.h │ ├── blocked_rangeNd.h │ ├── cache_aligned_allocator.h │ ├── combinable.h │ ├── concurrent_hash_map.h │ ├── concurrent_lru_cache.h │ ├── concurrent_map.h │ ├── concurrent_priority_queue.h │ ├── concurrent_queue.h │ ├── concurrent_set.h │ ├── concurrent_unordered_map.h │ ├── concurrent_unordered_set.h │ ├── concurrent_vector.h │ ├── enumerable_thread_specific.h │ ├── flow_graph.h │ ├── flow_graph_abstractions.h │ ├── global_control.h │ ├── info.h │ ├── memory_pool.h │ ├── null_mutex.h │ ├── null_rw_mutex.h │ ├── parallel_for.h │ ├── parallel_for_each.h │ ├── parallel_invoke.h │ ├── parallel_pipeline.h │ ├── parallel_reduce.h │ ├── parallel_scan.h │ ├── parallel_sort.h │ ├── partitioner.h │ ├── profiling.h │ ├── queuing_mutex.h │ ├── queuing_rw_mutex.h │ ├── scalable_allocator.h │ ├── spin_mutex.h │ ├── spin_rw_mutex.h │ ├── task.h │ ├── task_arena.h │ ├── task_group.h │ ├── task_scheduler_observer.h │ ├── tbb.h │ ├── tbb_allocator.h │ ├── tbbmalloc_proxy.h │ ├── tick_count.h │ └── version.h ├── tomlplusplus │ └── toml.hpp ├── utils.h ├── version.h └── warnings.h ├── lib ├── INIReader.h └── Simpleini.h ├── main.cpp ├── memorymanager.cpp ├── miscpatches.cpp ├── patches.cpp ├── patches ├── formcaching.cpp ├── miscpatches.cpp ├── saveaddedsoundcategories.cpp └── treelodreferencecaching.cpp ├── savedAddedSoundCategories.cpp ├── treelodreferencecaching.h ├── utils.cpp ├── warnings.cpp ├── warnings └── miscwarnings.cpp ├── x64 ├── Debug │ ├── EngineFixesVR.Build.CppClean.log │ ├── EngineFixesVR.exp │ ├── EngineFixesVR.log │ ├── EngineFixesVR.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── EngineFixesVR.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── EngineFixesVR.vcxproj.FileListAbsolute.txt │ ├── config.obj │ ├── fixes.obj │ ├── formcaching.obj │ ├── main.obj │ ├── miscfixes.obj │ ├── miscpatches.obj │ ├── patches.obj │ ├── treelodreferencecaching.obj │ ├── utils.obj │ └── vc142.pdb └── Release │ ├── EngineFixesVR.Build.CppClean.log │ ├── EngineFixesVR.dll │ ├── EngineFixesVR.exp │ ├── EngineFixesVR.iobj │ ├── EngineFixesVR.ipdb │ ├── EngineFixesVR.log │ ├── EngineFixesVR.pdb │ ├── EngineFixesVR.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── EngineFixesVR.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── EngineFixesVR.vcxproj.FileListAbsolute.txt │ ├── config.obj │ ├── fixes.obj │ ├── formcaching.obj │ ├── main.obj │ ├── miscfixes.obj │ ├── miscpatches.obj │ ├── patches.obj │ ├── treelodreferencecaching.obj │ └── utils.obj └── xbyak ├── COPYRIGHT ├── xbyak.h ├── xbyak_bin2hex.h ├── xbyak_mnemonic.h └── xbyak_util.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.lib 3 | Release/ 4 | x64*/ 5 | .vscode/ -------------------------------------------------------------------------------- /Debug/EngineFixesVR.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Debug/EngineFixesVR.log -------------------------------------------------------------------------------- /Debug/EngineFixesVR.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Debug/EngineFixesVR.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Debug/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Debug/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate -------------------------------------------------------------------------------- /Debug/EngineFixesVR.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Debug/vc142.idb -------------------------------------------------------------------------------- /Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Debug/vc142.pdb -------------------------------------------------------------------------------- /EngineFixesVR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/EngineFixesVR.sln -------------------------------------------------------------------------------- /EngineFixesVR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/EngineFixesVR.vcxproj -------------------------------------------------------------------------------- /EngineFixesVR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/EngineFixesVR.vcxproj.filters -------------------------------------------------------------------------------- /EngineFixesVR.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/EngineFixesVR.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/README.md -------------------------------------------------------------------------------- /Release/EngineFixesVR.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Release/EngineFixesVR.log -------------------------------------------------------------------------------- /Release/EngineFixesVR.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Release/EngineFixesVR.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Release/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Release/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate -------------------------------------------------------------------------------- /Release/EngineFixesVR.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/Release/vc142.pdb -------------------------------------------------------------------------------- /config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/config.cpp -------------------------------------------------------------------------------- /exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/exports.def -------------------------------------------------------------------------------- /fixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/fixes.cpp -------------------------------------------------------------------------------- /fixes/doubleperkapply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/fixes/doubleperkapply.cpp -------------------------------------------------------------------------------- /fixes/miscfixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/fixes/miscfixes.cpp -------------------------------------------------------------------------------- /fixes/savescreenshots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/fixes/savescreenshots.cpp -------------------------------------------------------------------------------- /fixes/shaderfixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/fixes/shaderfixes.cpp -------------------------------------------------------------------------------- /include/BGSDistantTreeBlock_VR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/BGSDistantTreeBlock_VR.h -------------------------------------------------------------------------------- /include/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/INIReader.h -------------------------------------------------------------------------------- /include/TESObjectREFR_VR.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /include/TreeLOD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/TreeLOD.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/config.h -------------------------------------------------------------------------------- /include/fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/fixes.h -------------------------------------------------------------------------------- /include/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/offsets.h -------------------------------------------------------------------------------- /include/oneapi/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb.h -------------------------------------------------------------------------------- /include/oneapi/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/blocked_range.h -------------------------------------------------------------------------------- /include/oneapi/tbb/blocked_range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/blocked_range2d.h -------------------------------------------------------------------------------- /include/oneapi/tbb/blocked_range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/blocked_range3d.h -------------------------------------------------------------------------------- /include/oneapi/tbb/blocked_rangeNd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/blocked_rangeNd.h -------------------------------------------------------------------------------- /include/oneapi/tbb/cache_aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/cache_aligned_allocator.h -------------------------------------------------------------------------------- /include/oneapi/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/combinable.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_hash_map.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_lru_cache.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_map.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_priority_queue.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_queue.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_set.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_unordered_map.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_unordered_set.h -------------------------------------------------------------------------------- /include/oneapi/tbb/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/concurrent_vector.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_aggregator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_aggregator.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_aligned_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_aligned_space.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_allocator_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_allocator_traits.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_assert.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_concurrent_queue_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_concurrent_queue_base.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_concurrent_skip_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_concurrent_skip_list.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_concurrent_unordered_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_concurrent_unordered_base.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_config.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_containers_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_containers_helpers.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_exception.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_body_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_body_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_cache_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_cache_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_indexer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_indexer_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_item_buffer_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_join_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_join_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_node_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_node_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_node_set_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_node_set_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_nodes_deduction.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_tagged_buffer_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_trace_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_trace_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_flow_graph_types_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_flow_graph_types_impl.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_hash_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_hash_compare.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_machine.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_namespace_injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_namespace_injection.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_node_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_node_handle.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_pipeline_filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_pipeline_filters.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_pipeline_filters_deduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_pipeline_filters_deduction.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_range_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_range_common.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_rtm_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_rtm_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_rtm_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_rtm_rw_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_segment_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_segment_table.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_small_object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_small_object_pool.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_string_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_string_resource.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_task.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_template_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_template_helpers.h -------------------------------------------------------------------------------- /include/oneapi/tbb/detail/_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/detail/_utils.h -------------------------------------------------------------------------------- /include/oneapi/tbb/enumerable_thread_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/enumerable_thread_specific.h -------------------------------------------------------------------------------- /include/oneapi/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/flow_graph.h -------------------------------------------------------------------------------- /include/oneapi/tbb/flow_graph_abstractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/flow_graph_abstractions.h -------------------------------------------------------------------------------- /include/oneapi/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/global_control.h -------------------------------------------------------------------------------- /include/oneapi/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/info.h -------------------------------------------------------------------------------- /include/oneapi/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/memory_pool.h -------------------------------------------------------------------------------- /include/oneapi/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/null_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_for.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_for_each.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_invoke.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_pipeline.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_reduce.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_scan.h -------------------------------------------------------------------------------- /include/oneapi/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/parallel_sort.h -------------------------------------------------------------------------------- /include/oneapi/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/partitioner.h -------------------------------------------------------------------------------- /include/oneapi/tbb/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/profiling.h -------------------------------------------------------------------------------- /include/oneapi/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/queuing_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/queuing_rw_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/scalable_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/scalable_allocator.h -------------------------------------------------------------------------------- /include/oneapi/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/spin_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /include/oneapi/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/task.h -------------------------------------------------------------------------------- /include/oneapi/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/task_arena.h -------------------------------------------------------------------------------- /include/oneapi/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/task_group.h -------------------------------------------------------------------------------- /include/oneapi/tbb/task_scheduler_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/task_scheduler_observer.h -------------------------------------------------------------------------------- /include/oneapi/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /include/oneapi/tbb/tbbmalloc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/tbbmalloc_proxy.h -------------------------------------------------------------------------------- /include/oneapi/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/tick_count.h -------------------------------------------------------------------------------- /include/oneapi/tbb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/oneapi/tbb/version.h -------------------------------------------------------------------------------- /include/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/patches.h -------------------------------------------------------------------------------- /include/tbb/blocked_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/blocked_range.h -------------------------------------------------------------------------------- /include/tbb/blocked_range2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/blocked_range2d.h -------------------------------------------------------------------------------- /include/tbb/blocked_range3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/blocked_range3d.h -------------------------------------------------------------------------------- /include/tbb/blocked_rangeNd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/blocked_rangeNd.h -------------------------------------------------------------------------------- /include/tbb/cache_aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/cache_aligned_allocator.h -------------------------------------------------------------------------------- /include/tbb/combinable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/combinable.h -------------------------------------------------------------------------------- /include/tbb/concurrent_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_hash_map.h -------------------------------------------------------------------------------- /include/tbb/concurrent_lru_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_lru_cache.h -------------------------------------------------------------------------------- /include/tbb/concurrent_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_map.h -------------------------------------------------------------------------------- /include/tbb/concurrent_priority_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_priority_queue.h -------------------------------------------------------------------------------- /include/tbb/concurrent_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_queue.h -------------------------------------------------------------------------------- /include/tbb/concurrent_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_set.h -------------------------------------------------------------------------------- /include/tbb/concurrent_unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_unordered_map.h -------------------------------------------------------------------------------- /include/tbb/concurrent_unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_unordered_set.h -------------------------------------------------------------------------------- /include/tbb/concurrent_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/concurrent_vector.h -------------------------------------------------------------------------------- /include/tbb/enumerable_thread_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/enumerable_thread_specific.h -------------------------------------------------------------------------------- /include/tbb/flow_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/flow_graph.h -------------------------------------------------------------------------------- /include/tbb/flow_graph_abstractions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/flow_graph_abstractions.h -------------------------------------------------------------------------------- /include/tbb/global_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/global_control.h -------------------------------------------------------------------------------- /include/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/info.h -------------------------------------------------------------------------------- /include/tbb/memory_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/memory_pool.h -------------------------------------------------------------------------------- /include/tbb/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/null_mutex.h -------------------------------------------------------------------------------- /include/tbb/null_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/null_rw_mutex.h -------------------------------------------------------------------------------- /include/tbb/parallel_for.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_for.h -------------------------------------------------------------------------------- /include/tbb/parallel_for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_for_each.h -------------------------------------------------------------------------------- /include/tbb/parallel_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_invoke.h -------------------------------------------------------------------------------- /include/tbb/parallel_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_pipeline.h -------------------------------------------------------------------------------- /include/tbb/parallel_reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_reduce.h -------------------------------------------------------------------------------- /include/tbb/parallel_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_scan.h -------------------------------------------------------------------------------- /include/tbb/parallel_sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/parallel_sort.h -------------------------------------------------------------------------------- /include/tbb/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/partitioner.h -------------------------------------------------------------------------------- /include/tbb/profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/profiling.h -------------------------------------------------------------------------------- /include/tbb/queuing_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/queuing_mutex.h -------------------------------------------------------------------------------- /include/tbb/queuing_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/queuing_rw_mutex.h -------------------------------------------------------------------------------- /include/tbb/scalable_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/scalable_allocator.h -------------------------------------------------------------------------------- /include/tbb/spin_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/spin_mutex.h -------------------------------------------------------------------------------- /include/tbb/spin_rw_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/spin_rw_mutex.h -------------------------------------------------------------------------------- /include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/task.h -------------------------------------------------------------------------------- /include/tbb/task_arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/task_arena.h -------------------------------------------------------------------------------- /include/tbb/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/task_group.h -------------------------------------------------------------------------------- /include/tbb/task_scheduler_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/task_scheduler_observer.h -------------------------------------------------------------------------------- /include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/tbb.h -------------------------------------------------------------------------------- /include/tbb/tbb_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/tbb_allocator.h -------------------------------------------------------------------------------- /include/tbb/tbbmalloc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/tbbmalloc_proxy.h -------------------------------------------------------------------------------- /include/tbb/tick_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/tick_count.h -------------------------------------------------------------------------------- /include/tbb/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tbb/version.h -------------------------------------------------------------------------------- /include/tomlplusplus/toml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/tomlplusplus/toml.hpp -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/version.h -------------------------------------------------------------------------------- /include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/include/warnings.h -------------------------------------------------------------------------------- /lib/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/lib/INIReader.h -------------------------------------------------------------------------------- /lib/Simpleini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/lib/Simpleini.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/main.cpp -------------------------------------------------------------------------------- /memorymanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/memorymanager.cpp -------------------------------------------------------------------------------- /miscpatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/miscpatches.cpp -------------------------------------------------------------------------------- /patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/patches.cpp -------------------------------------------------------------------------------- /patches/formcaching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/patches/formcaching.cpp -------------------------------------------------------------------------------- /patches/miscpatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/patches/miscpatches.cpp -------------------------------------------------------------------------------- /patches/saveaddedsoundcategories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/patches/saveaddedsoundcategories.cpp -------------------------------------------------------------------------------- /patches/treelodreferencecaching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/patches/treelodreferencecaching.cpp -------------------------------------------------------------------------------- /savedAddedSoundCategories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/savedAddedSoundCategories.cpp -------------------------------------------------------------------------------- /treelodreferencecaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/treelodreferencecaching.h -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/utils.cpp -------------------------------------------------------------------------------- /warnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/warnings.cpp -------------------------------------------------------------------------------- /warnings/miscwarnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/warnings/miscwarnings.cpp -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.Build.CppClean.log -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.exp -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.log -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/EngineFixesVR.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/EngineFixesVR.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /x64/Debug/config.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/config.obj -------------------------------------------------------------------------------- /x64/Debug/fixes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/fixes.obj -------------------------------------------------------------------------------- /x64/Debug/formcaching.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/formcaching.obj -------------------------------------------------------------------------------- /x64/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/main.obj -------------------------------------------------------------------------------- /x64/Debug/miscfixes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/miscfixes.obj -------------------------------------------------------------------------------- /x64/Debug/miscpatches.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/miscpatches.obj -------------------------------------------------------------------------------- /x64/Debug/patches.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/patches.obj -------------------------------------------------------------------------------- /x64/Debug/treelodreferencecaching.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/treelodreferencecaching.obj -------------------------------------------------------------------------------- /x64/Debug/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/utils.obj -------------------------------------------------------------------------------- /x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.Build.CppClean.log -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.dll -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.exp -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.iobj -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.ipdb -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.log -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.pdb -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/EngineFixesVR.lastbuildstate -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Release/EngineFixesVR.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/EngineFixesVR.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /x64/Release/config.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/config.obj -------------------------------------------------------------------------------- /x64/Release/fixes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/fixes.obj -------------------------------------------------------------------------------- /x64/Release/formcaching.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/formcaching.obj -------------------------------------------------------------------------------- /x64/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/main.obj -------------------------------------------------------------------------------- /x64/Release/miscfixes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/miscfixes.obj -------------------------------------------------------------------------------- /x64/Release/miscpatches.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/miscpatches.obj -------------------------------------------------------------------------------- /x64/Release/patches.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/patches.obj -------------------------------------------------------------------------------- /x64/Release/treelodreferencecaching.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/treelodreferencecaching.obj -------------------------------------------------------------------------------- /x64/Release/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/x64/Release/utils.obj -------------------------------------------------------------------------------- /xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/xbyak/xbyak.h -------------------------------------------------------------------------------- /xbyak/xbyak_bin2hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/xbyak/xbyak_bin2hex.h -------------------------------------------------------------------------------- /xbyak/xbyak_mnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/xbyak/xbyak_mnemonic.h -------------------------------------------------------------------------------- /xbyak/xbyak_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollingrock/EngineFixesVR/HEAD/xbyak/xbyak_util.h --------------------------------------------------------------------------------