├── .PVS-Studio ├── MSBuildAnalyzerConfig.jsonc └── State │ ├── ReportState.json │ └── WindowState.json ├── .editorconfig ├── .github └── workflows │ ├── build-windows.yml │ ├── codeql-analysis.yml │ └── linter.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.txt ├── LICENSE ├── README.md ├── SpecialK.def ├── SpecialK.ruleset ├── SpecialK.sln ├── SpecialK.suppress ├── SpecialK.vcxproj ├── SpecialK.vcxproj.filters ├── depends ├── derivative │ └── SKinHook │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ └── build │ │ ├── SKinHook.sln │ │ ├── libSKinHook.vcxproj │ │ └── libSKinHook.vcxproj.filters ├── include │ ├── DirectXTex │ │ ├── BC.h │ │ ├── BCDirectCompute.h │ │ ├── DDS.h │ │ ├── DirectXTex.h │ │ ├── DirectXTex.inl │ │ ├── DirectXTexP.h │ │ ├── Filters.h │ │ ├── d3dx12.h │ │ └── scoped.h │ ├── EOS │ │ ├── eos_achievements.h │ │ ├── eos_achievements_types.h │ │ ├── eos_achievements_types_deprecated.inl │ │ ├── eos_anticheatclient.h │ │ ├── eos_anticheatclient_types.h │ │ ├── eos_anticheatcommon_types.h │ │ ├── eos_anticheatserver.h │ │ ├── eos_anticheatserver_types.h │ │ ├── eos_auth.h │ │ ├── eos_auth_types.h │ │ ├── eos_base.h │ │ ├── eos_common.h │ │ ├── eos_connect.h │ │ ├── eos_connect_types.h │ │ ├── eos_custominvites.h │ │ ├── eos_custominvites_types.h │ │ ├── eos_ecom.h │ │ ├── eos_ecom_types.h │ │ ├── eos_friends.h │ │ ├── eos_friends_types.h │ │ ├── eos_init.h │ │ ├── eos_kws.h │ │ ├── eos_kws_types.h │ │ ├── eos_leaderboards.h │ │ ├── eos_leaderboards_types.h │ │ ├── eos_leaderboards_types_deprecated.inl │ │ ├── eos_lobby.h │ │ ├── eos_lobby_types.h │ │ ├── eos_logging.h │ │ ├── eos_metrics.h │ │ ├── eos_metrics_types.h │ │ ├── eos_mods.h │ │ ├── eos_mods_types.h │ │ ├── eos_p2p.h │ │ ├── eos_p2p_types.h │ │ ├── eos_platform_prereqs.h │ │ ├── eos_playerdatastorage.h │ │ ├── eos_playerdatastorage_types.h │ │ ├── eos_presence.h │ │ ├── eos_presence_types.h │ │ ├── eos_progressionsnapshot.h │ │ ├── eos_progressionsnapshot_types.h │ │ ├── eos_reports.h │ │ ├── eos_reports_types.h │ │ ├── eos_result.h │ │ ├── eos_rtc.h │ │ ├── eos_rtc_admin.h │ │ ├── eos_rtc_admin_types.h │ │ ├── eos_rtc_audio.h │ │ ├── eos_rtc_audio_types.h │ │ ├── eos_rtc_types.h │ │ ├── eos_sanctions.h │ │ ├── eos_sanctions_types.h │ │ ├── eos_sdk.h │ │ ├── eos_sessions.h │ │ ├── eos_sessions_types.h │ │ ├── eos_stats.h │ │ ├── eos_stats_types.h │ │ ├── eos_titlestorage.h │ │ ├── eos_titlestorage_types.h │ │ ├── eos_types.h │ │ ├── eos_ui.h │ │ ├── eos_ui_keys.h │ │ ├── eos_ui_types.h │ │ ├── eos_userinfo.h │ │ ├── eos_userinfo_types.h │ │ └── eos_version.h │ ├── GL │ │ ├── glew.h │ │ ├── glfw.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── MinHook │ │ └── MinHook.h │ ├── ReShade │ │ ├── reshade.hpp │ │ ├── reshade_api.hpp │ │ ├── reshade_api_device.hpp │ │ ├── reshade_api_display.hpp │ │ ├── reshade_api_format.hpp │ │ ├── reshade_api_pipeline.hpp │ │ ├── reshade_api_resource.hpp │ │ ├── reshade_events.hpp │ │ └── reshade_overlay.hpp │ ├── WinRing0 │ │ ├── Driver.h │ │ ├── OlsApi.h │ │ ├── OlsApiInit.h │ │ ├── OlsApiInitDef.h │ │ ├── OlsApiInitExt.h │ │ ├── OlsDef.h │ │ ├── OlsDll.h │ │ ├── OlsIoctl.h │ │ ├── dll │ │ │ └── OpenLibSys.h │ │ ├── resource.h │ │ ├── stdafx.h │ │ └── vxd │ │ │ └── OpenLS.h │ ├── Zydis │ │ └── Zydis.h │ ├── adl │ │ ├── adl_defines.h │ │ ├── adl_sdk.h │ │ └── adl_structures.h │ ├── aetherim │ │ ├── api.hpp │ │ ├── class.hpp │ │ ├── field.hpp │ │ ├── image.hpp │ │ ├── method.hpp │ │ ├── table_defs.h │ │ ├── type.hpp │ │ └── wrapper.hpp │ ├── avif │ │ ├── avif.h │ │ └── internal.h │ ├── boost │ │ ├── assert.hpp │ │ ├── config.hpp │ │ ├── config │ │ │ ├── abi │ │ │ │ ├── borland_prefix.hpp │ │ │ │ ├── borland_suffix.hpp │ │ │ │ ├── msvc_prefix.hpp │ │ │ │ └── msvc_suffix.hpp │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── auto_link.hpp │ │ │ ├── compiler │ │ │ │ ├── borland.hpp │ │ │ │ ├── clang.hpp │ │ │ │ ├── codegear.hpp │ │ │ │ ├── comeau.hpp │ │ │ │ ├── common_edg.hpp │ │ │ │ ├── compaq_cxx.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── diab.hpp │ │ │ │ ├── digitalmars.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gcc_xml.hpp │ │ │ │ ├── greenhills.hpp │ │ │ │ ├── hp_acc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── kai.hpp │ │ │ │ ├── metrowerks.hpp │ │ │ │ ├── mpw.hpp │ │ │ │ ├── nvcc.hpp │ │ │ │ ├── pathscale.hpp │ │ │ │ ├── pgi.hpp │ │ │ │ ├── sgi_mipspro.hpp │ │ │ │ ├── sunpro_cc.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ ├── visualc.hpp │ │ │ │ ├── xlcpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── detail │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ └── suffix.hpp │ │ │ ├── header_deprecated.hpp │ │ │ ├── helper_macros.hpp │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cloudabi.hpp │ │ │ │ ├── cray.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── haiku.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ ├── win32.hpp │ │ │ │ └── zos.hpp │ │ │ ├── pragma_message.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ ├── vacpp.hpp │ │ │ │ └── xlcpp_zos.hpp │ │ │ ├── user.hpp │ │ │ ├── warning_disable.hpp │ │ │ └── workaround.hpp │ │ ├── container │ │ │ ├── adaptive_pool.hpp │ │ │ ├── allocator.hpp │ │ │ ├── allocator_traits.hpp │ │ │ ├── container_fwd.hpp │ │ │ ├── deque.hpp │ │ │ ├── detail │ │ │ │ ├── adaptive_node_pool.hpp │ │ │ │ ├── adaptive_node_pool_impl.hpp │ │ │ │ ├── addressof.hpp │ │ │ │ ├── advanced_insert_int.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── alloc_helpers.hpp │ │ │ │ ├── alloc_lib.h │ │ │ │ ├── allocation_type.hpp │ │ │ │ ├── allocator_version_traits.hpp │ │ │ │ ├── auto_link.hpp │ │ │ │ ├── block_list.hpp │ │ │ │ ├── block_slist.hpp │ │ │ │ ├── compare_functors.hpp │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── construct_in_place.hpp │ │ │ │ ├── container_or_allocator_rebind.hpp │ │ │ │ ├── container_rebind.hpp │ │ │ │ ├── copy_move_algo.hpp │ │ │ │ ├── destroyers.hpp │ │ │ │ ├── dispatch_uses_allocator.hpp │ │ │ │ ├── dlmalloc.hpp │ │ │ │ ├── flat_tree.hpp │ │ │ │ ├── function_detector.hpp │ │ │ │ ├── is_container.hpp │ │ │ │ ├── is_contiguous_container.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ ├── iterators.hpp │ │ │ │ ├── math_functions.hpp │ │ │ │ ├── min_max.hpp │ │ │ │ ├── minimal_char_traits_header.hpp │ │ │ │ ├── mpl.hpp │ │ │ │ ├── multiallocation_chain.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── next_capacity.hpp │ │ │ │ ├── node_alloc_holder.hpp │ │ │ │ ├── node_pool.hpp │ │ │ │ ├── node_pool_impl.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── pair_key_mapped_of_value.hpp │ │ │ │ ├── placement_new.hpp │ │ │ │ ├── pool_common.hpp │ │ │ │ ├── pool_common_alloc.hpp │ │ │ │ ├── pool_resource.hpp │ │ │ │ ├── singleton.hpp │ │ │ │ ├── std_fwd.hpp │ │ │ │ ├── thread_mutex.hpp │ │ │ │ ├── transform_iterator.hpp │ │ │ │ ├── tree.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── value_functors.hpp │ │ │ │ ├── value_init.hpp │ │ │ │ ├── variadic_templates_tools.hpp │ │ │ │ ├── version_type.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── flat_map.hpp │ │ │ ├── flat_set.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── new_allocator.hpp │ │ │ ├── node_allocator.hpp │ │ │ ├── node_handle.hpp │ │ │ ├── options.hpp │ │ │ ├── pmr │ │ │ │ ├── deque.hpp │ │ │ │ ├── flat_map.hpp │ │ │ │ ├── flat_set.hpp │ │ │ │ ├── global_resource.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── memory_resource.hpp │ │ │ │ ├── monotonic_buffer_resource.hpp │ │ │ │ ├── polymorphic_allocator.hpp │ │ │ │ ├── pool_options.hpp │ │ │ │ ├── resource_adaptor.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── slist.hpp │ │ │ │ ├── small_vector.hpp │ │ │ │ ├── stable_vector.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── synchronized_pool_resource.hpp │ │ │ │ ├── unsynchronized_pool_resource.hpp │ │ │ │ └── vector.hpp │ │ │ ├── scoped_allocator.hpp │ │ │ ├── scoped_allocator_fwd.hpp │ │ │ ├── set.hpp │ │ │ ├── slist.hpp │ │ │ ├── small_vector.hpp │ │ │ ├── stable_vector.hpp │ │ │ ├── static_vector.hpp │ │ │ ├── string.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── uses_allocator.hpp │ │ │ ├── uses_allocator_fwd.hpp │ │ │ └── vector.hpp │ │ ├── core │ │ │ ├── addressof.hpp │ │ │ ├── checked_delete.hpp │ │ │ ├── demangle.hpp │ │ │ ├── empty_value.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── exchange.hpp │ │ │ ├── explicit_operator_bool.hpp │ │ │ ├── ignore_unused.hpp │ │ │ ├── is_same.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_trait.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── noncopyable.hpp │ │ │ ├── null_deleter.hpp │ │ │ ├── pointer_traits.hpp │ │ │ ├── quick_exit.hpp │ │ │ ├── ref.hpp │ │ │ ├── scoped_enum.hpp │ │ │ ├── swap.hpp │ │ │ ├── typeinfo.hpp │ │ │ ├── uncaught_exceptions.hpp │ │ │ ├── underlying_type.hpp │ │ │ └── use_default.hpp │ │ ├── cstdint.hpp │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── allocator_utilities.hpp │ │ │ ├── atomic_count.hpp │ │ │ ├── basic_pointerbuf.hpp │ │ │ ├── binary_search.hpp │ │ │ ├── bitmask.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── catch_exceptions.hpp │ │ │ ├── compressed_pair.hpp │ │ │ ├── container_fwd.hpp │ │ │ ├── endian.hpp │ │ │ ├── fenv.hpp │ │ │ ├── has_default_constructor.hpp │ │ │ ├── identifier.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── is_incrementable.hpp │ │ │ ├── is_sorted.hpp │ │ │ ├── is_xxx.hpp │ │ │ ├── iterator.hpp │ │ │ ├── lcast_precision.hpp │ │ │ ├── lightweight_main.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── lightweight_test.hpp │ │ │ ├── lightweight_test_report.hpp │ │ │ ├── lightweight_thread.hpp │ │ │ ├── named_template_params.hpp │ │ │ ├── no_exceptions_support.hpp │ │ │ ├── numeric_traits.hpp │ │ │ ├── ob_compressed_pair.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── reference_content.hpp │ │ │ ├── scoped_enum_emulation.hpp │ │ │ ├── select_type.hpp │ │ │ ├── sp_typeinfo.hpp │ │ │ ├── templated_streams.hpp │ │ │ ├── utf8_codecvt_facet.hpp │ │ │ ├── utf8_codecvt_facet.ipp │ │ │ ├── winapi │ │ │ │ ├── access_rights.hpp │ │ │ │ ├── apc.hpp │ │ │ │ ├── basic_types.hpp │ │ │ │ ├── bcrypt.hpp │ │ │ │ ├── character_code_conversion.hpp │ │ │ │ ├── condition_variable.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── critical_section.hpp │ │ │ │ ├── crypt.hpp │ │ │ │ ├── dbghelp.hpp │ │ │ │ ├── debugapi.hpp │ │ │ │ ├── detail │ │ │ │ │ └── deprecated_namespace.hpp │ │ │ │ ├── directory_management.hpp │ │ │ │ ├── dll.hpp │ │ │ │ ├── environment.hpp │ │ │ │ ├── error_codes.hpp │ │ │ │ ├── error_handling.hpp │ │ │ │ ├── event.hpp │ │ │ │ ├── file_management.hpp │ │ │ │ ├── file_mapping.hpp │ │ │ │ ├── get_current_process.hpp │ │ │ │ ├── get_current_process_id.hpp │ │ │ │ ├── get_current_thread.hpp │ │ │ │ ├── get_current_thread_id.hpp │ │ │ │ ├── get_last_error.hpp │ │ │ │ ├── get_process_times.hpp │ │ │ │ ├── get_system_directory.hpp │ │ │ │ ├── get_thread_times.hpp │ │ │ │ ├── handle_info.hpp │ │ │ │ ├── handles.hpp │ │ │ │ ├── heap_memory.hpp │ │ │ │ ├── init_once.hpp │ │ │ │ ├── jobs.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── local_memory.hpp │ │ │ │ ├── memory.hpp │ │ │ │ ├── mutex.hpp │ │ │ │ ├── overlapped.hpp │ │ │ │ ├── page_protection_flags.hpp │ │ │ │ ├── pipes.hpp │ │ │ │ ├── priority_class.hpp │ │ │ │ ├── process.hpp │ │ │ │ ├── security.hpp │ │ │ │ ├── semaphore.hpp │ │ │ │ ├── shell.hpp │ │ │ │ ├── show_window.hpp │ │ │ │ ├── srw_lock.hpp │ │ │ │ ├── stack_backtrace.hpp │ │ │ │ ├── synchronization.hpp │ │ │ │ ├── system.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── thread_pool.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── timers.hpp │ │ │ │ ├── tls.hpp │ │ │ │ ├── wait.hpp │ │ │ │ └── waitable_timer.hpp │ │ │ └── workaround.hpp │ │ ├── intrusive │ │ │ ├── any_hook.hpp │ │ │ ├── avl_set.hpp │ │ │ ├── avl_set_hook.hpp │ │ │ ├── avltree.hpp │ │ │ ├── avltree_algorithms.hpp │ │ │ ├── bs_set.hpp │ │ │ ├── bs_set_hook.hpp │ │ │ ├── bstree.hpp │ │ │ ├── bstree_algorithms.hpp │ │ │ ├── circular_list_algorithms.hpp │ │ │ ├── circular_slist_algorithms.hpp │ │ │ ├── derivation_value_traits.hpp │ │ │ ├── detail │ │ │ │ ├── algo_type.hpp │ │ │ │ ├── algorithm.hpp │ │ │ │ ├── any_node_and_algorithms.hpp │ │ │ │ ├── array_initializer.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── avltree_node.hpp │ │ │ │ ├── bstree_algorithms_base.hpp │ │ │ │ ├── common_slist_algorithms.hpp │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── default_header_holder.hpp │ │ │ │ ├── ebo_functor_holder.hpp │ │ │ │ ├── empty_node_checker.hpp │ │ │ │ ├── equal_to_value.hpp │ │ │ │ ├── exception_disposer.hpp │ │ │ │ ├── function_detector.hpp │ │ │ │ ├── generic_hook.hpp │ │ │ │ ├── get_value_traits.hpp │ │ │ │ ├── has_member_function_callable_with.hpp │ │ │ │ ├── hashtable_node.hpp │ │ │ │ ├── hook_traits.hpp │ │ │ │ ├── iiterator.hpp │ │ │ │ ├── is_stateful_value_traits.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_nodeptr_comp.hpp │ │ │ │ ├── list_iterator.hpp │ │ │ │ ├── list_node.hpp │ │ │ │ ├── math.hpp │ │ │ │ ├── minimal_less_equal_header.hpp │ │ │ │ ├── minimal_pair_header.hpp │ │ │ │ ├── mpl.hpp │ │ │ │ ├── node_cloner_disposer.hpp │ │ │ │ ├── node_holder.hpp │ │ │ │ ├── node_to_value.hpp │ │ │ │ ├── parent_from_member.hpp │ │ │ │ ├── rbtree_node.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── simple_disposers.hpp │ │ │ │ ├── size_holder.hpp │ │ │ │ ├── slist_iterator.hpp │ │ │ │ ├── slist_node.hpp │ │ │ │ ├── std_fwd.hpp │ │ │ │ ├── transform_iterator.hpp │ │ │ │ ├── tree_iterator.hpp │ │ │ │ ├── tree_node.hpp │ │ │ │ ├── tree_value_compare.hpp │ │ │ │ ├── uncast.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── hashtable.hpp │ │ │ ├── intrusive_fwd.hpp │ │ │ ├── linear_slist_algorithms.hpp │ │ │ ├── link_mode.hpp │ │ │ ├── list.hpp │ │ │ ├── list_hook.hpp │ │ │ ├── member_value_traits.hpp │ │ │ ├── options.hpp │ │ │ ├── pack_options.hpp │ │ │ ├── parent_from_member.hpp │ │ │ ├── pointer_plus_bits.hpp │ │ │ ├── pointer_rebind.hpp │ │ │ ├── pointer_traits.hpp │ │ │ ├── priority_compare.hpp │ │ │ ├── rbtree.hpp │ │ │ ├── rbtree_algorithms.hpp │ │ │ ├── set.hpp │ │ │ ├── set_hook.hpp │ │ │ ├── sg_set.hpp │ │ │ ├── sgtree.hpp │ │ │ ├── sgtree_algorithms.hpp │ │ │ ├── slist.hpp │ │ │ ├── slist_hook.hpp │ │ │ ├── splay_set.hpp │ │ │ ├── splaytree.hpp │ │ │ ├── splaytree_algorithms.hpp │ │ │ ├── treap.hpp │ │ │ ├── treap_algorithms.hpp │ │ │ ├── treap_set.hpp │ │ │ ├── trivial_value_traits.hpp │ │ │ ├── unordered_set.hpp │ │ │ └── unordered_set_hook.hpp │ │ ├── limits.hpp │ │ ├── move │ │ │ ├── adl_move_swap.hpp │ │ │ ├── algo │ │ │ │ ├── adaptive_merge.hpp │ │ │ │ ├── adaptive_sort.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── adaptive_sort_merge.hpp │ │ │ │ │ ├── basic_op.hpp │ │ │ │ │ ├── heap_sort.hpp │ │ │ │ │ ├── insertion_sort.hpp │ │ │ │ │ ├── is_sorted.hpp │ │ │ │ │ ├── merge.hpp │ │ │ │ │ ├── merge_sort.hpp │ │ │ │ │ ├── pdqsort.hpp │ │ │ │ │ └── set_difference.hpp │ │ │ │ ├── move.hpp │ │ │ │ ├── predicate.hpp │ │ │ │ └── unique.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── core.hpp │ │ │ ├── default_delete.hpp │ │ │ ├── detail │ │ │ │ ├── config_begin.hpp │ │ │ │ ├── config_end.hpp │ │ │ │ ├── destruct_n.hpp │ │ │ │ ├── fwd_macros.hpp │ │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── meta_utils.hpp │ │ │ │ ├── meta_utils_core.hpp │ │ │ │ ├── move_helpers.hpp │ │ │ │ ├── placement_new.hpp │ │ │ │ ├── pointer_element.hpp │ │ │ │ ├── reverse_iterator.hpp │ │ │ │ ├── std_ns_begin.hpp │ │ │ │ ├── std_ns_end.hpp │ │ │ │ ├── to_raw_pointer.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── iterator.hpp │ │ │ ├── make_unique.hpp │ │ │ ├── move.hpp │ │ │ ├── traits.hpp │ │ │ ├── unique_ptr.hpp │ │ │ ├── utility.hpp │ │ │ └── utility_core.hpp │ │ ├── sort │ │ │ ├── common │ │ │ │ ├── deque_cnc.hpp │ │ │ │ ├── file_vector.hpp │ │ │ │ ├── indirect.hpp │ │ │ │ ├── int_array.hpp │ │ │ │ ├── merge_block.hpp │ │ │ │ ├── merge_four.hpp │ │ │ │ ├── merge_vector.hpp │ │ │ │ ├── pivot.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── rearrange.hpp │ │ │ │ ├── scheduler.hpp │ │ │ │ ├── sort_basic.hpp │ │ │ │ ├── spinlock.hpp │ │ │ │ ├── stack_cnc.hpp │ │ │ │ ├── time_measure.hpp │ │ │ │ └── util │ │ │ │ │ ├── algorithm.hpp │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── circular_buffer.hpp │ │ │ │ │ ├── insert.hpp │ │ │ │ │ ├── merge.hpp │ │ │ │ │ ├── search.hpp │ │ │ │ │ └── traits.hpp │ │ │ ├── pdqsort │ │ │ │ └── pdqsort.hpp │ │ │ └── sort.hpp │ │ ├── static_assert.hpp │ │ ├── type_traits.hpp │ │ ├── type_traits │ │ │ ├── add_const.hpp │ │ │ ├── add_cv.hpp │ │ │ ├── add_lvalue_reference.hpp │ │ │ ├── add_pointer.hpp │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── add_volatile.hpp │ │ │ ├── aligned_storage.hpp │ │ │ ├── alignment_of.hpp │ │ │ ├── alignment_traits.hpp │ │ │ ├── arithmetic_traits.hpp │ │ │ ├── array_traits.hpp │ │ │ ├── broken_compiler_spec.hpp │ │ │ ├── common_type.hpp │ │ │ ├── composite_traits.hpp │ │ │ ├── conditional.hpp │ │ │ ├── config.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── copy_cv.hpp │ │ │ ├── copy_cv_ref.hpp │ │ │ ├── copy_reference.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── decay.hpp │ │ │ ├── declval.hpp │ │ │ ├── detail │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ ├── common_arithmetic_type.hpp │ │ │ │ ├── common_type_impl.hpp │ │ │ │ ├── composite_member_pointer_type.hpp │ │ │ │ ├── composite_pointer_type.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── detector.hpp │ │ │ │ ├── has_binary_operator.hpp │ │ │ │ ├── has_postfix_operator.hpp │ │ │ │ ├── has_prefix_operator.hpp │ │ │ │ ├── ice_and.hpp │ │ │ │ ├── ice_eq.hpp │ │ │ │ ├── ice_not.hpp │ │ │ │ ├── ice_or.hpp │ │ │ │ ├── is_function_cxx_03.hpp │ │ │ │ ├── is_function_cxx_11.hpp │ │ │ │ ├── is_function_msvc10_fix.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_likely_lambda.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ │ │ ├── mp_defer.hpp │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── detected.hpp │ │ │ ├── detected_or.hpp │ │ │ ├── enable_if.hpp │ │ │ ├── extent.hpp │ │ │ ├── floating_point_promotion.hpp │ │ │ ├── function_traits.hpp │ │ │ ├── has_bit_and.hpp │ │ │ ├── has_bit_and_assign.hpp │ │ │ ├── has_bit_or.hpp │ │ │ ├── has_bit_or_assign.hpp │ │ │ ├── has_bit_xor.hpp │ │ │ ├── has_bit_xor_assign.hpp │ │ │ ├── has_complement.hpp │ │ │ ├── has_dereference.hpp │ │ │ ├── has_divides.hpp │ │ │ ├── has_divides_assign.hpp │ │ │ ├── has_equal_to.hpp │ │ │ ├── has_greater.hpp │ │ │ ├── has_greater_equal.hpp │ │ │ ├── has_left_shift.hpp │ │ │ ├── has_left_shift_assign.hpp │ │ │ ├── has_less.hpp │ │ │ ├── has_less_equal.hpp │ │ │ ├── has_logical_and.hpp │ │ │ ├── has_logical_not.hpp │ │ │ ├── has_logical_or.hpp │ │ │ ├── has_minus.hpp │ │ │ ├── has_minus_assign.hpp │ │ │ ├── has_modulus.hpp │ │ │ ├── has_modulus_assign.hpp │ │ │ ├── has_multiplies.hpp │ │ │ ├── has_multiplies_assign.hpp │ │ │ ├── has_negate.hpp │ │ │ ├── has_new_operator.hpp │ │ │ ├── has_not_equal_to.hpp │ │ │ ├── has_nothrow_assign.hpp │ │ │ ├── has_nothrow_constructor.hpp │ │ │ ├── has_nothrow_copy.hpp │ │ │ ├── has_nothrow_destructor.hpp │ │ │ ├── has_operator.hpp │ │ │ ├── has_plus.hpp │ │ │ ├── has_plus_assign.hpp │ │ │ ├── has_post_decrement.hpp │ │ │ ├── has_post_increment.hpp │ │ │ ├── has_pre_decrement.hpp │ │ │ ├── has_pre_increment.hpp │ │ │ ├── has_right_shift.hpp │ │ │ ├── has_right_shift_assign.hpp │ │ │ ├── has_trivial_assign.hpp │ │ │ ├── has_trivial_constructor.hpp │ │ │ ├── has_trivial_copy.hpp │ │ │ ├── has_trivial_destructor.hpp │ │ │ ├── has_trivial_move_assign.hpp │ │ │ ├── has_trivial_move_constructor.hpp │ │ │ ├── has_unary_minus.hpp │ │ │ ├── has_unary_plus.hpp │ │ │ ├── has_virtual_destructor.hpp │ │ │ ├── ice.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── integral_promotion.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_assignable.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_base_of.hpp │ │ │ ├── is_base_of_tr1.hpp │ │ │ ├── is_bounded_array.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_complete.hpp │ │ │ ├── is_complex.hpp │ │ │ ├── is_compound.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_constructible.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_copy_assignable.hpp │ │ │ ├── is_copy_constructible.hpp │ │ │ ├── is_default_constructible.hpp │ │ │ ├── is_destructible.hpp │ │ │ ├── is_detected.hpp │ │ │ ├── is_detected_convertible.hpp │ │ │ ├── is_detected_exact.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_final.hpp │ │ │ ├── is_float.hpp │ │ │ ├── is_floating_point.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_fundamental.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_list_constructible.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_object_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_noncopyable.hpp │ │ │ ├── is_nothrow_move_assignable.hpp │ │ │ ├── is_nothrow_move_constructible.hpp │ │ │ ├── is_nothrow_swappable.hpp │ │ │ ├── is_object.hpp │ │ │ ├── is_pod.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_signed.hpp │ │ │ ├── is_stateless.hpp │ │ │ ├── is_unbounded_array.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_unsigned.hpp │ │ │ ├── is_virtual_base_of.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── make_signed.hpp │ │ │ ├── make_unsigned.hpp │ │ │ ├── make_void.hpp │ │ │ ├── nonesuch.hpp │ │ │ ├── object_traits.hpp │ │ │ ├── promote.hpp │ │ │ ├── rank.hpp │ │ │ ├── reference_traits.hpp │ │ │ ├── remove_all_extents.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_cv_ref.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── remove_pointer.hpp │ │ │ ├── remove_reference.hpp │ │ │ ├── remove_volatile.hpp │ │ │ ├── same_traits.hpp │ │ │ ├── transform_traits.hpp │ │ │ ├── type_identity.hpp │ │ │ └── type_with_alignment.hpp │ │ └── version.hpp │ ├── galaxy │ │ ├── 1_121_2 │ │ │ └── InitOptions.h │ │ ├── 1_151_0 │ │ │ └── IUser.h │ │ ├── 1_152_1 │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── 1_152_10 │ │ │ ├── IStats.h │ │ │ └── IUser.h │ │ ├── Errors.h │ │ ├── GalaxyAllocator.h │ │ ├── GalaxyExport.h │ │ ├── GalaxyFactory.h │ │ ├── GalaxyID.h │ │ ├── GalaxyThread.h │ │ ├── IFriends.h │ │ ├── IGalaxy.h │ │ ├── IListenerRegistrar.h │ │ ├── IStats.h │ │ ├── IUser.h │ │ └── IUtils.h │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_precision.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_precision.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_precision.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_precision.hpp │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_precision.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_precision.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_precision.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_precision.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── implot │ │ ├── implot.h │ │ └── implot_internal.h │ ├── jxl │ │ ├── cms.h │ │ ├── cms_interface.h │ │ ├── codestream_header.h │ │ ├── color_encoding.h │ │ ├── compressed_icc.h │ │ ├── decode.h │ │ ├── decode_cxx.h │ │ ├── encode.h │ │ ├── encode_cxx.h │ │ ├── gain_map.h │ │ ├── memory_manager.h │ │ ├── parallel_runner.h │ │ ├── resizable_parallel_runner.h │ │ ├── resizable_parallel_runner_cxx.h │ │ ├── stats.h │ │ ├── thread_parallel_runner.h │ │ ├── thread_parallel_runner_cxx.h │ │ └── types.h │ ├── lzma │ │ ├── 7z.h │ │ ├── 7zAlloc.h │ │ ├── 7zBuf.h │ │ ├── 7zCrc.h │ │ ├── 7zFile.h │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── 7zVersion.rc │ │ ├── Aes.h │ │ ├── Alloc.h │ │ ├── Bcj2.h │ │ ├── Bra.h │ │ ├── Compiler.h │ │ ├── CpuArch.h │ │ ├── Delta.h │ │ ├── LzFind.h │ │ ├── LzFindMt.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.h │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.h │ │ ├── MtCoder.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.h │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.h │ │ ├── Sort.h │ │ ├── Threads.h │ │ ├── Xz.h │ │ ├── XzCrc64.h │ │ └── XzEnc.h │ ├── nvapi │ │ ├── NvApiDriverSettings.c │ │ ├── NvApiDriverSettings.h │ │ ├── nvHLSLExtns.h │ │ ├── nvHLSLExtnsInternal.h │ │ ├── nvShaderExtnEnums.h │ │ ├── nvapi.h │ │ ├── nvapi_interface.h │ │ ├── nvapi_lite_common.h │ │ ├── nvapi_lite_d3dext.h │ │ ├── nvapi_lite_salend.h │ │ ├── nvapi_lite_salstart.h │ │ ├── nvapi_lite_sli.h │ │ ├── nvapi_lite_stereo.h │ │ └── nvapi_lite_surround.h │ ├── reflex │ │ └── pclstats.h │ ├── safetyhook │ │ └── safetyhook.hpp │ ├── steamapi │ │ ├── isteamapplist.h │ │ ├── isteamapps.h │ │ ├── isteamappticket.h │ │ ├── isteamclient.h │ │ ├── isteamcontroller.h │ │ ├── isteamfriends.h │ │ ├── isteamgamecoordinator.h │ │ ├── isteamgameserver.h │ │ ├── isteamgameserverstats.h │ │ ├── isteamhtmlsurface.h │ │ ├── isteamhttp.h │ │ ├── isteaminput.h │ │ ├── isteaminventory.h │ │ ├── isteammasterserverupdater.h │ │ ├── isteammatchmaking.h │ │ ├── isteammusic.h │ │ ├── isteammusicremote.h │ │ ├── isteamnetworking.h │ │ ├── isteamparentalsettings.h │ │ ├── isteamps3overlayrenderer.h │ │ ├── isteamremotestorage.h │ │ ├── isteamscreenshots.h │ │ ├── isteamugc.h │ │ ├── isteamunifiedmessages.h │ │ ├── isteamuser.h │ │ ├── isteamuserstats.h │ │ ├── isteamutils.h │ │ ├── isteamvideo.h │ │ ├── matchmakingtypes.h │ │ ├── steam_api.h │ │ ├── steam_api_flat.h │ │ ├── steam_gameserver.h │ │ ├── steamclientpublic.h │ │ ├── steamencryptedappticket.h │ │ ├── steamhttpenums.h │ │ ├── steamps3params.h │ │ ├── steamtypes.h │ │ └── steamuniverse.h │ └── tobii │ │ ├── tobii.h │ │ ├── tobii_engine.h │ │ ├── tobii_streams.h │ │ └── tobii_wearable.h ├── lib │ ├── .gitignore │ ├── WinRing0 │ │ ├── Win32 │ │ │ ├── WinRing0.dll │ │ │ ├── WinRing0.exp │ │ │ └── WinRing0.sys │ │ └── x64 │ │ │ ├── WinRing0x64.dll │ │ │ ├── WinRing0x64.exp │ │ │ └── WinRing0x64.sys │ ├── glew │ │ ├── Win32 │ │ │ └── glew.lib │ │ └── x64 │ │ │ └── glew.lib │ ├── nvapi │ │ ├── Win32 │ │ │ └── nvapi.lib │ │ └── x64 │ │ │ └── nvapi64.lib │ └── tobii │ │ ├── Win32 │ │ ├── tobii_stream_engine_sk32.def │ │ ├── tobii_stream_engine_sk32.exp │ │ └── tobii_stream_engine_sk32.lib │ │ └── x64 │ │ ├── tobii_stream_engine_sk64.def │ │ ├── tobii_stream_engine_sk64.exp │ │ └── tobii_stream_engine_sk64.lib └── src │ ├── DirectXTex │ ├── BC.cpp │ ├── BC4BC5.cpp │ ├── BC6HBC7.cpp │ ├── BCDirectCompute.cpp │ ├── DirectXTex.inl │ ├── DirectXTexCompress.cpp │ ├── DirectXTexCompressGPU.cpp │ ├── DirectXTexConvert.cpp │ ├── DirectXTexD3D11.cpp │ ├── DirectXTexD3D12.cpp │ ├── DirectXTexDDS.cpp │ ├── DirectXTexFlipRotate.cpp │ ├── DirectXTexHDR.cpp │ ├── DirectXTexImage.cpp │ ├── DirectXTexMipmaps.cpp │ ├── DirectXTexMisc.cpp │ ├── DirectXTexNormalMaps.cpp │ ├── DirectXTexPMAlpha.cpp │ ├── DirectXTexResize.cpp │ ├── DirectXTexTGA.cpp │ ├── DirectXTexUtil.cpp │ ├── DirectXTexWIC.cpp │ ├── DirectXTex_Desktop_2013.vcxproj │ ├── DirectXTex_Desktop_2013.vcxproj.filters │ ├── DirectXTex_Desktop_2015.suppress │ ├── DirectXTex_Desktop_2015.vcxproj │ ├── DirectXTex_Desktop_2015.vcxproj.filters │ ├── DirectXTex_Desktop_2015_Win10.vcxproj │ ├── DirectXTex_Desktop_2015_Win10.vcxproj.filters │ ├── DirectXTex_Windows10.vcxproj │ ├── DirectXTex_Windows10.vcxproj.filters │ ├── DirectXTex_Windows81.vcxproj │ ├── DirectXTex_Windows81.vcxproj.filters │ ├── DirectXTex_WindowsPhone81.vcxproj │ ├── DirectXTex_WindowsPhone81.vcxproj.filters │ ├── DirectXTex_XboxOneXDK_2015.vcxproj │ ├── DirectXTex_XboxOneXDK_2015.vcxproj.filters │ └── Shaders │ │ ├── BC6HEncode.hlsl │ │ ├── BC7Encode.hlsl │ │ ├── CompileShaders.cmd │ │ └── Compiled │ │ ├── BC6HEncode_EncodeBlockCS.inc │ │ ├── BC6HEncode_TryModeG10CS.inc │ │ ├── BC6HEncode_TryModeLE10CS.inc │ │ ├── BC7Encode_EncodeBlockCS.inc │ │ ├── BC7Encode_TryMode02CS.inc │ │ ├── BC7Encode_TryMode137CS.inc │ │ └── BC7Encode_TryMode456CS.inc │ ├── SKinHook │ ├── buffer.c │ ├── buffer.h │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── trampoline.c │ └── trampoline.h │ ├── Zydis │ └── Zydis.c │ ├── glew │ └── src │ │ └── src │ │ └── visualinfo.c │ ├── implot │ ├── implot.cpp │ ├── implot_demo.cpp │ └── implot_items.cpp │ ├── lzma │ ├── 7zAlloc.c │ ├── 7zArcIn.c │ ├── 7zBuf.c │ ├── 7zBuf2.c │ ├── 7zCrc.c │ ├── 7zCrcOpt.c │ ├── 7zDec.c │ ├── 7zFile.c │ ├── 7zStream.c │ ├── Aes.c │ ├── AesOpt.c │ ├── Alloc.c │ ├── Bcj2.c │ ├── Bcj2Enc.c │ ├── Bra.c │ ├── Bra86.c │ ├── BraIA64.c │ ├── CpuArch.c │ ├── Delta.c │ ├── LzFind.c │ ├── LzFindMt.c │ ├── Lzma2Dec.c │ ├── Lzma2Enc.c │ ├── Lzma86Dec.c │ ├── Lzma86Enc.c │ ├── LzmaDec.c │ ├── LzmaEnc.c │ ├── LzmaLib.c │ ├── MtCoder.c │ ├── Ppmd7.c │ ├── Ppmd7Dec.c │ ├── Ppmd7Enc.c │ ├── Sha256.c │ ├── Sort.c │ ├── Threads.c │ ├── Xz.c │ ├── XzCrc64.c │ ├── XzCrc64Opt.c │ ├── XzDec.c │ ├── XzEnc.c │ ├── XzIn.c │ └── libzma │ │ ├── ReadMe.txt │ │ ├── libzma.sln │ │ ├── libzma.vcxproj │ │ └── libzma.vcxproj.filters │ └── safetyhook │ └── safetyhook.cpp ├── include ├── SpecialK │ ├── DLL_VERSION.H │ ├── SpecialK.h │ ├── adl.h │ ├── ansel.h │ ├── com_util.h │ ├── command.h │ ├── commands │ │ ├── limit_reset.inl │ │ ├── mem.inl │ │ └── update.inl │ ├── compatibility │ │ └── game_traits.h │ ├── config.h │ ├── console.h │ ├── control_panel.h │ ├── control_panel │ │ ├── compatibility.h │ │ ├── d3d11.h │ │ ├── d3d9.h │ │ ├── epic.h │ │ ├── galaxy.h │ │ ├── input.h │ │ ├── notifications.h │ │ ├── opengl.h │ │ ├── osd.h │ │ ├── platform.h │ │ ├── plugins.h │ │ ├── sound.h │ │ ├── steam.h │ │ └── window.h │ ├── core.h │ ├── crc32.h │ ├── diagnostics │ │ ├── compatibility.h │ │ ├── cpu.h │ │ ├── crash_handler.h │ │ ├── debug_utils.h │ │ ├── file.h │ │ ├── load_library.h │ │ ├── memory.h │ │ ├── modules.h │ │ └── network.h │ ├── framerate.h │ ├── hash.h │ ├── hooks.h │ ├── import.h │ ├── ini.h │ ├── injection │ │ ├── blacklist.h │ │ └── injection.h │ ├── input │ │ ├── dinput7_backend.h │ │ ├── dinput8_backend.h │ │ ├── game_input.h │ │ ├── input.h │ │ ├── sce_pad.h │ │ ├── steam.h │ │ ├── windows.gaming.input.h │ │ ├── xinput.h │ │ └── xinput_hotplug.h │ ├── log.h │ ├── nvapi.h │ ├── osd │ │ ├── popup.h │ │ └── text.h │ ├── parameter.h │ ├── performance │ │ ├── gpu_monitor.h │ │ └── io_monitor.h │ ├── plugin │ │ ├── nier.h │ │ ├── plugin_mgr.h │ │ └── reshade.h │ ├── popups │ │ └── popup.h │ ├── render │ │ ├── backend.h │ │ ├── d3d11 │ │ │ ├── d3d11_core.h │ │ │ ├── d3d11_interfaces.h │ │ │ ├── d3d11_screenshot.h │ │ │ ├── d3d11_shader.h │ │ │ ├── d3d11_state_tracker.h │ │ │ ├── d3d11_tex_mgr.h │ │ │ └── utility │ │ │ │ └── d3d11_texture.h │ │ ├── d3d12 │ │ │ ├── d3d12_command_queue.h │ │ │ ├── d3d12_device.h │ │ │ ├── d3d12_dxil_shader.h │ │ │ ├── d3d12_interfaces.h │ │ │ ├── d3d12_pipeline_library.h │ │ │ └── d3d12_screenshot.h │ │ ├── d3d8 │ │ │ └── d3d8_backend.h │ │ ├── d3d9 │ │ │ ├── d3d9_backend.h │ │ │ ├── d3d9_device.h │ │ │ ├── d3d9_screenshot.h │ │ │ ├── d3d9_swapchain.h │ │ │ └── d3d9_texmgr.h │ │ ├── d3dkmt │ │ │ └── d3dkmt.h │ │ ├── ddraw │ │ │ └── ddraw_backend.h │ │ ├── dstorage │ │ │ ├── dstorage.h │ │ │ ├── dstorage_factory.h │ │ │ ├── dstorage_queue.h │ │ │ └── dstorageerr.h │ │ ├── dxgi │ │ │ ├── dxgi_backend.h │ │ │ ├── dxgi_hdr.h │ │ │ ├── dxgi_interfaces.h │ │ │ ├── dxgi_swapchain.h │ │ │ └── dxgi_util.h │ │ ├── gl │ │ │ ├── opengl_backend.h │ │ │ └── opengl_screenshot.h │ │ ├── ngx │ │ │ ├── ngx.h │ │ │ ├── ngx_defs.h │ │ │ ├── ngx_dlss.h │ │ │ └── streamline.h │ │ ├── present_mon │ │ │ ├── Debug.hpp │ │ │ ├── ETW │ │ │ │ ├── Microsoft_Windows_D3D9.h │ │ │ │ ├── Microsoft_Windows_DXGI.h │ │ │ │ ├── Microsoft_Windows_Dwm_Core.h │ │ │ │ ├── Microsoft_Windows_DxgKrnl.h │ │ │ │ ├── Microsoft_Windows_EventMetadata.h │ │ │ │ ├── Microsoft_Windows_Win32k.h │ │ │ │ └── NT_Process.h │ │ │ ├── LateStageReprojectionData.hpp │ │ │ ├── MixedRealityTraceConsumer.hpp │ │ │ ├── PresentMon.hpp │ │ │ ├── PresentMonTraceConsumer.hpp │ │ │ ├── TraceConsumer.hpp │ │ │ └── TraceSession.hpp │ │ ├── screenshot.h │ │ └── vk │ │ │ └── vulkan_backend.h │ ├── resource.h │ ├── sha1.h │ ├── sound.h │ ├── stdafx.h │ ├── steam_api.h │ ├── storefront │ │ ├── achievements.h │ │ ├── epic.h │ │ ├── gog.h │ │ └── xbox.h │ ├── targetver.h │ ├── thread.h │ ├── tls.h │ ├── update │ │ ├── archive.h │ │ ├── network.h │ │ └── version.h │ ├── utility.h │ ├── utility │ │ ├── bidirectional_map.h │ │ └── lazy_global.h │ ├── widgets │ │ └── widget.h │ └── window.h ├── gsl │ ├── gsl │ ├── gsl_algorithm │ ├── gsl_assert │ ├── gsl_byte │ ├── gsl_util │ ├── multi_span │ ├── pointers │ ├── span │ └── string_span ├── imgui │ ├── backends │ │ ├── imgui_d3d11.h │ │ ├── imgui_d3d12.h │ │ ├── imgui_d3d9.h │ │ ├── imgui_gl3.h │ │ └── imgui_vk.h │ ├── fa_brands_400.ttf.h │ ├── fa_solid_900.ttf.h │ ├── font_awesome.h │ ├── imconfig.h │ ├── imfilebrowser.h │ ├── imgui.h │ ├── imgui_internal.h │ ├── imgui_user.inl │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── intel │ └── HybridDetect.h ├── json │ └── json.hpp ├── mono │ ├── metadata │ │ ├── appdomain.h │ │ ├── assembly.h │ │ ├── blob.h │ │ ├── class.h │ │ ├── image.h │ │ ├── loader.h │ │ ├── metadata.h │ │ ├── object-forward.h │ │ ├── object.h │ │ ├── reflection.h │ │ ├── row-indexes.h │ │ └── threads.h │ └── utils │ │ ├── mono-error.h │ │ ├── mono-forward.h │ │ └── mono-publib.h ├── msvc │ └── UserMarks.h ├── stb │ ├── rect_pack.h │ ├── textedit.h │ └── truetype.h ├── ultrahdr │ ├── dsp │ │ └── arm │ │ │ └── mem_neon.h │ ├── editorhelper.h │ ├── gainmapmath.h │ ├── gainmapmetadata.h │ ├── icc.h │ ├── jpegdecoderhelper.h │ ├── jpegencoderhelper.h │ ├── jpegr.h │ ├── jpegrutils.h │ ├── multipictureformat.h │ ├── ultrahdr.h │ ├── ultrahdr_api.h │ └── ultrahdrcommon.h ├── vk_video │ ├── vulkan_video_codec_av1std.h │ ├── vulkan_video_codec_av1std_decode.h │ ├── vulkan_video_codec_av1std_encode.h │ ├── vulkan_video_codec_h264std.h │ ├── vulkan_video_codec_h264std_decode.h │ ├── vulkan_video_codec_h264std_encode.h │ ├── vulkan_video_codec_h265std.h │ ├── vulkan_video_codec_h265std_decode.h │ ├── vulkan_video_codec_h265std_encode.h │ └── vulkan_video_codecs_common.h └── vulkan │ ├── vk_icd.h │ ├── vk_layer.h │ ├── vk_platform.h │ ├── vulkan.h │ ├── vulkan.hpp │ ├── vulkan_android.h │ ├── vulkan_beta.h │ ├── vulkan_core.h │ ├── vulkan_directfb.h │ ├── vulkan_enums.hpp │ ├── vulkan_extension_inspection.hpp │ ├── vulkan_format_traits.hpp │ ├── vulkan_fuchsia.h │ ├── vulkan_funcs.hpp │ ├── vulkan_ggp.h │ ├── vulkan_handles.hpp │ ├── vulkan_hash.hpp │ ├── vulkan_hpp_macros.hpp │ ├── vulkan_ios.h │ ├── vulkan_macos.h │ ├── vulkan_raii.hpp │ ├── vulkan_screen.h │ ├── vulkan_shared.hpp │ ├── vulkan_static_assertions.hpp │ ├── vulkan_structs.hpp │ ├── vulkan_to_string.hpp │ ├── vulkan_vi.h │ ├── vulkan_video.hpp │ ├── vulkan_wayland.h │ ├── vulkan_win32.h │ ├── vulkan_xcb.h │ ├── vulkan_xlib.h │ └── vulkan_xlib_xrandr.h ├── resource ├── Resource.rc ├── crash.wav ├── cursors │ ├── ovr_horz.cur │ └── ovr_ptr.cur ├── licenses │ ├── 7zip.txt │ ├── ADL.txt │ ├── Aetherim.txt │ ├── DirectXTex.txt │ ├── FreeType2.txt │ ├── GLM_0_9_4_5.txt │ ├── ImGui.txt │ ├── ImPlot │ ├── MinHook.txt │ ├── OpenLibSys.txt │ ├── Overview.txt │ ├── SpecialK.txt │ ├── Vulkan.txt │ ├── Zydis.txt │ ├── fontawesome.txt │ ├── imgui-filebrowser.txt │ ├── libjxl.txt │ ├── nlohmann-json.txt │ ├── nvapi.txt │ ├── safetyhook.txt │ ├── stb.txt │ └── tobii.txt ├── shaders │ ├── .editorconfig │ ├── HDR │ │ ├── HDR10 │ │ │ └── Rec2020_PQ_10bit-fixed.hlsl │ │ ├── basic_hdr_shader_ps.hlsl │ │ ├── common_defs.hlsl │ │ ├── cs_luminance_analysis.hlsl │ │ ├── dlssg_ui_fix_ps.hlsl │ │ ├── hdr_merge_cs.hlsl │ │ ├── hdr_response_cs.hlsl │ │ ├── ps_gl_dx_interop.hlsl │ │ ├── scRGB │ │ │ └── Rec709_Linear_16bit-fp.hlsl │ │ ├── uber_hdr_shader_ps.hlsl │ │ ├── vs_colorutil.hlsl │ │ └── vs_gl_dx_interop.hlsl │ ├── blt_copy_cs.hlsl │ ├── cs_histogram.hlsl │ ├── discord_d3d11_ps.hlsl │ ├── discord_d3d11_vs.hlsl │ ├── epic_d3d11_vs.hlsl │ ├── galaxy_d3d11_ps.hlsl │ ├── galaxy_d3d11_vs.hlsl │ ├── imgui_d3d11_ps.hlsl │ ├── imgui_d3d11_vs.hlsl │ ├── rtss_d3d11_vs.hlsl │ ├── sRGB_codec_ps.hlsl │ ├── steam_d3d11_ps.hlsl │ ├── steam_d3d11_vs.hlsl │ ├── uplay_d3d11_ps.hlsl │ └── uplay_d3d11_vs.hlsl └── textures │ └── HDR │ ├── cie_1931_filled.png │ ├── cie_1931_outline.png │ ├── heatmap_scale.png │ └── histogram_scale.png └── src ├── SpecialK.cpp ├── adl.cpp ├── ansel.cpp ├── com_util.cpp ├── command.cpp ├── config.cpp ├── console.cpp ├── control_panel.cpp ├── control_panel ├── cfg_compatibility.cpp ├── cfg_d3d11.cpp ├── cfg_d3d9.cpp ├── cfg_epic.cpp ├── cfg_galaxy.cpp ├── cfg_input.cpp ├── cfg_notifications.cpp ├── cfg_opengl.cpp ├── cfg_osd.cpp ├── cfg_platform.cpp ├── cfg_plugins.cpp ├── cfg_sound.cpp ├── cfg_steam.cpp └── cfg_window.cpp ├── core.cpp ├── crc32.cpp ├── diagnostics ├── compatibility.cpp ├── cpu.cpp ├── crash_handler.cpp ├── debug_utils.cpp ├── file.cpp ├── load_library.cpp ├── memory.cpp └── net.cpp ├── framerate.cpp ├── hash.cpp ├── hooks.cpp ├── imgui ├── EULA.cpp ├── LICENSE ├── backends │ ├── imgui_d3d11.cpp │ ├── imgui_d3d12.cpp │ ├── imgui_d3d9.cpp │ ├── imgui_gl3.cpp │ └── imgui_vk.cpp ├── imgui.cpp ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_tables.cpp └── imgui_widgets.cpp ├── import.cpp ├── ini.cpp ├── injection └── injection.cpp ├── input ├── bluetooth.cpp ├── cursor.cpp ├── dinput7.cpp ├── dinput8.cpp ├── game_input.cpp ├── hid.cpp ├── hid_reports │ ├── dualsense.cpp │ ├── dualshock4.cpp │ └── playstation.cpp ├── input.cpp ├── keyboard.cpp ├── raw_input.cpp ├── sce_pad.cpp ├── steam.cpp ├── windows.gaming.input.cpp ├── winhook_input.cpp ├── winmm_joystick.cpp ├── xinput_core.cpp └── xinput_hotplug.cpp ├── lazy_global.cpp ├── log.cpp ├── nvapi.cpp ├── osd ├── popup.cpp └── text.cpp ├── parameter.cpp ├── performance ├── gpu_monitor.cpp └── io_monitor.cpp ├── plugins ├── armoredcore6.cpp ├── assassins_creed_shadows.cpp ├── bethesda.cpp ├── blue_reflection.cpp ├── chrono_cross.cpp ├── dothack_gu.cpp ├── dragon_quest_xi.cpp ├── ds3.cpp ├── elden_ring.cpp ├── ff7_remake.cpp ├── ffxvi.cpp ├── lego_marvel2.cpp ├── lords_of_the_fallen2.cpp ├── monster_hunter_world.cpp ├── nier.cpp ├── nier_√1.5.cpp ├── ninokuni2.cpp ├── octopath_traveler.cpp ├── okami.cpp ├── persona4.cpp ├── plugin_mgr.cpp ├── reshade.cpp ├── secret_of_mana.cpp ├── sekiro.cpp ├── tales_of_graces_f.cpp ├── tales_of_vesperia.cpp ├── unclassified.cpp ├── unity.cpp ├── watch_dogs.cpp ├── yakuza0.cpp └── ys8.cpp ├── popups └── achievement.cpp ├── process.cpp ├── render ├── d3d11 │ ├── d3d11.cpp │ ├── d3d11_debug.cpp │ ├── d3d11_dev_ctx.cpp │ ├── d3d11_screenshot.cpp │ ├── d3d11_shader.cpp │ ├── d3d11_state_tracker.cpp │ ├── d3d11_stateblock.cpp │ ├── d3d11_texwrap.cpp │ ├── d3d11_utility.cpp │ ├── hdr │ │ └── d3d11_hdr.cpp │ ├── hooks │ │ ├── d3d11_devctx_vftable.cpp │ │ ├── d3d11_devctx_wrapped.cpp │ │ └── d3d11_device.cpp │ ├── mod_tools │ │ ├── d3d11_shader_mods.cpp │ │ └── d3d11_texture_mods.cpp │ ├── tex_mgr │ │ ├── d3d11_tex_mgr.cpp │ │ └── d3d11_tex_resampler.cpp │ └── utility │ │ ├── d3d11_map.cpp │ │ ├── d3d11_tex_util.cpp │ │ └── pipeline_stats.cpp ├── d3d12 │ ├── d3d11on12_shader_restitution.cpp │ ├── d3d12.cpp │ ├── d3d12_command_queue.cpp │ ├── d3d12_debug.cpp │ ├── d3d12_device.cpp │ ├── d3d12_pipeline_library.cpp │ ├── d3d12_pipeline_stats.cpp │ └── d3d12_screenshot.cpp ├── d3d8 │ └── d3d8.cpp ├── d3d9 │ ├── d3d9.cpp │ ├── d3d9_device.cpp │ ├── d3d9_screenshot.cpp │ ├── d3d9_swapchain.cpp │ └── d3d9_texmgr.cpp ├── d3dkmt │ └── d3dkmt.cpp ├── ddraw │ └── ddraw.cpp ├── dstorage │ ├── dstorage.cpp │ ├── dstorage_factory.cpp │ └── dstorage_queue.cpp ├── dxgi │ ├── dxgi.cpp │ ├── dxgi_debug.cpp │ ├── dxgi_swapchain.cpp │ └── dxgi_util.cpp ├── gl │ ├── opengl.cpp │ └── opengl_screenshot.cpp ├── ngx │ ├── ngx.cpp │ ├── ngx_d3d11.cpp │ ├── ngx_d3d12.cpp │ └── ngx_vulkan.cpp ├── present_mon │ ├── CommandLine.cpp │ ├── ConsumerThread.cpp │ ├── CsvOutput.cpp │ ├── LateStageReprojectionData.cpp │ ├── LateStageReprojectionData.hpp │ ├── MainThread.cpp │ ├── MixedRealityTraceConsumer.cpp │ ├── OutputThread.cpp │ ├── PD_TraceSession.cpp │ ├── PM_Console.cpp │ ├── PM_Debug.cpp │ ├── PM_TraceSession.cpp │ ├── PresentMonTraceConsumer.cpp │ ├── Privilege.cpp │ └── TraceConsumer.cpp ├── reflex │ ├── pclstats.cpp │ └── reflex.cpp ├── render_backend.cpp ├── screenshot.cpp ├── streamline │ └── streamline.cpp └── vulkan │ └── vulkan.cpp ├── scheduler.cpp ├── sha1.cpp ├── sound.cpp ├── stdafx.cpp ├── steam ├── client.cpp ├── steam_api.cpp ├── steam_tier0.cpp ├── user.cpp └── utils.cpp ├── storefront ├── achievements.cpp ├── epic.cpp ├── gog.cpp ├── platform.cpp └── xbox.cpp ├── thread.cpp ├── tls.cpp ├── update ├── archive.cpp ├── network.cpp └── version.cpp ├── utility.cpp ├── widgets ├── achievement_tracker.cpp ├── cpu_widget.cpp ├── d3d11_pipeline_widget.cpp ├── denuvo.cpp ├── frame_pacing.cpp ├── gpu_widget.cpp ├── hdr.cpp ├── latency.cpp ├── threads.cpp ├── tobii.cpp ├── volume_control.cpp └── widget.cpp ├── win32_isolation.cpp └── window.cpp /.PVS-Studio/MSBuildAnalyzerConfig.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.PVS-Studio/MSBuildAnalyzerConfig.jsonc -------------------------------------------------------------------------------- /.PVS-Studio/State/ReportState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.PVS-Studio/State/ReportState.json -------------------------------------------------------------------------------- /.PVS-Studio/State/WindowState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.PVS-Studio/State/WindowState.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/README.md -------------------------------------------------------------------------------- /SpecialK.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.def -------------------------------------------------------------------------------- /SpecialK.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.ruleset -------------------------------------------------------------------------------- /SpecialK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.sln -------------------------------------------------------------------------------- /SpecialK.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.suppress -------------------------------------------------------------------------------- /SpecialK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.vcxproj -------------------------------------------------------------------------------- /SpecialK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/SpecialK.vcxproj.filters -------------------------------------------------------------------------------- /depends/derivative/SKinHook/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/derivative/SKinHook/AUTHORS.txt -------------------------------------------------------------------------------- /depends/derivative/SKinHook/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/derivative/SKinHook/LICENSE.txt -------------------------------------------------------------------------------- /depends/derivative/SKinHook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/derivative/SKinHook/README.md -------------------------------------------------------------------------------- /depends/include/DirectXTex/BC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/BC.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/DDS.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/DirectXTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/DirectXTex.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/DirectXTex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/DirectXTex.inl -------------------------------------------------------------------------------- /depends/include/DirectXTex/DirectXTexP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/DirectXTexP.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/Filters.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/d3dx12.h -------------------------------------------------------------------------------- /depends/include/DirectXTex/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/DirectXTex/scoped.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_achievements.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_anticheatclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_anticheatclient.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_anticheatserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_anticheatserver.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_auth.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_auth_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_auth_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_base.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_common.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_connect.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_connect_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_connect_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_custominvites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_custominvites.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_ecom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_ecom.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_ecom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_ecom_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_friends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_friends.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_friends_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_friends_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_init.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_kws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_kws.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_kws_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_kws_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_leaderboards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_leaderboards.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_lobby.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_lobby_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_lobby_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_logging.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_metrics.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_metrics_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_metrics_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_mods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_mods.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_mods_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_mods_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_p2p.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_p2p_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_p2p_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_platform_prereqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_platform_prereqs.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_presence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_presence.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_presence_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_presence_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_reports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_reports.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_reports_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_reports_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_result.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc_admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc_admin.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc_admin_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc_admin_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc_audio.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc_audio_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc_audio_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_rtc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_rtc_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_sanctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_sanctions.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_sanctions_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_sanctions_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_sdk.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_sessions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_sessions.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_sessions_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_sessions_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_stats.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_stats_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_stats_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_titlestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_titlestorage.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_ui.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_ui_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_ui_keys.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_ui_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_ui_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_userinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_userinfo.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_userinfo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_userinfo_types.h -------------------------------------------------------------------------------- /depends/include/EOS/eos_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/EOS/eos_version.h -------------------------------------------------------------------------------- /depends/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/GL/glew.h -------------------------------------------------------------------------------- /depends/include/GL/glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/GL/glfw.h -------------------------------------------------------------------------------- /depends/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/GL/glxew.h -------------------------------------------------------------------------------- /depends/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/GL/wglew.h -------------------------------------------------------------------------------- /depends/include/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/MinHook/MinHook.h -------------------------------------------------------------------------------- /depends/include/ReShade/reshade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/ReShade/reshade.hpp -------------------------------------------------------------------------------- /depends/include/ReShade/reshade_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/ReShade/reshade_api.hpp -------------------------------------------------------------------------------- /depends/include/ReShade/reshade_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/ReShade/reshade_events.hpp -------------------------------------------------------------------------------- /depends/include/WinRing0/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/Driver.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsApi.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsApiInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsApiInit.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsApiInitDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsApiInitDef.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsApiInitExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsApiInitExt.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsDef.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsDll.h -------------------------------------------------------------------------------- /depends/include/WinRing0/OlsIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/OlsIoctl.h -------------------------------------------------------------------------------- /depends/include/WinRing0/dll/OpenLibSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/dll/OpenLibSys.h -------------------------------------------------------------------------------- /depends/include/WinRing0/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/resource.h -------------------------------------------------------------------------------- /depends/include/WinRing0/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/stdafx.h -------------------------------------------------------------------------------- /depends/include/WinRing0/vxd/OpenLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/WinRing0/vxd/OpenLS.h -------------------------------------------------------------------------------- /depends/include/Zydis/Zydis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/Zydis/Zydis.h -------------------------------------------------------------------------------- /depends/include/adl/adl_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/adl/adl_defines.h -------------------------------------------------------------------------------- /depends/include/adl/adl_sdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/adl/adl_sdk.h -------------------------------------------------------------------------------- /depends/include/adl/adl_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/adl/adl_structures.h -------------------------------------------------------------------------------- /depends/include/aetherim/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/api.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/class.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/field.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/image.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/method.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/table_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/table_defs.h -------------------------------------------------------------------------------- /depends/include/aetherim/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/type.hpp -------------------------------------------------------------------------------- /depends/include/aetherim/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/aetherim/wrapper.hpp -------------------------------------------------------------------------------- /depends/include/avif/avif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/avif/avif.h -------------------------------------------------------------------------------- /depends/include/avif/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/avif/internal.h -------------------------------------------------------------------------------- /depends/include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/assert.hpp -------------------------------------------------------------------------------- /depends/include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/config.hpp -------------------------------------------------------------------------------- /depends/include/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /depends/include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/config/user.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/deque.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/list.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/map.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/set.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/slist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/slist.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/string.hpp -------------------------------------------------------------------------------- /depends/include/boost/container/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/container/vector.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/addressof.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/demangle.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/empty_value.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/exchange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/exchange.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/is_same.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/quick_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/quick_exit.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/ref.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/swap.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /depends/include/boost/core/use_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/core/use_default.hpp -------------------------------------------------------------------------------- /depends/include/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/cstdint.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/bitmask.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/endian.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/is_sorted.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /depends/include/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/bs_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/bs_set.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/bstree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/bstree.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/list.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/rbtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/rbtree.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/set.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/sg_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/sg_set.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/sgtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/sgtree.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/slist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/slist.hpp -------------------------------------------------------------------------------- /depends/include/boost/intrusive/treap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/intrusive/treap.hpp -------------------------------------------------------------------------------- /depends/include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/limits.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/algo/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/algo/unique.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/core.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/iterator.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/make_unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/make_unique.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/move.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/traits.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/unique_ptr.hpp -------------------------------------------------------------------------------- /depends/include/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/move/utility.hpp -------------------------------------------------------------------------------- /depends/include/boost/sort/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/sort/sort.hpp -------------------------------------------------------------------------------- /depends/include/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/static_assert.hpp -------------------------------------------------------------------------------- /depends/include/boost/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/type_traits.hpp -------------------------------------------------------------------------------- /depends/include/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /depends/include/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /depends/include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/boost/version.hpp -------------------------------------------------------------------------------- /depends/include/galaxy/1_151_0/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/1_151_0/IUser.h -------------------------------------------------------------------------------- /depends/include/galaxy/1_152_1/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/1_152_1/IStats.h -------------------------------------------------------------------------------- /depends/include/galaxy/1_152_1/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/1_152_1/IUser.h -------------------------------------------------------------------------------- /depends/include/galaxy/1_152_10/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/1_152_10/IUser.h -------------------------------------------------------------------------------- /depends/include/galaxy/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/Errors.h -------------------------------------------------------------------------------- /depends/include/galaxy/GalaxyExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/GalaxyExport.h -------------------------------------------------------------------------------- /depends/include/galaxy/GalaxyFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/GalaxyFactory.h -------------------------------------------------------------------------------- /depends/include/galaxy/GalaxyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/GalaxyID.h -------------------------------------------------------------------------------- /depends/include/galaxy/GalaxyThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/GalaxyThread.h -------------------------------------------------------------------------------- /depends/include/galaxy/IFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/IFriends.h -------------------------------------------------------------------------------- /depends/include/galaxy/IGalaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/IGalaxy.h -------------------------------------------------------------------------------- /depends/include/galaxy/IStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/IStats.h -------------------------------------------------------------------------------- /depends/include/galaxy/IUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/IUser.h -------------------------------------------------------------------------------- /depends/include/galaxy/IUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/galaxy/IUtils.h -------------------------------------------------------------------------------- /depends/include/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/CMakeLists.txt -------------------------------------------------------------------------------- /depends/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/common.hpp -------------------------------------------------------------------------------- /depends/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /depends/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /depends/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /depends/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /depends/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /depends/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/exponential.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /depends/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /depends/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/fwd.hpp -------------------------------------------------------------------------------- /depends/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/geometric.hpp -------------------------------------------------------------------------------- /depends/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/glm.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /depends/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /depends/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /depends/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /depends/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /depends/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /depends/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /depends/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /depends/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /depends/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /depends/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /depends/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/integer.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /depends/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /depends/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/matrix.hpp -------------------------------------------------------------------------------- /depends/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/packing.hpp -------------------------------------------------------------------------------- /depends/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/common.h -------------------------------------------------------------------------------- /depends/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /depends/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /depends/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/integer.h -------------------------------------------------------------------------------- /depends/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /depends/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/packing.h -------------------------------------------------------------------------------- /depends/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/simd/platform.h -------------------------------------------------------------------------------- /depends/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /depends/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/vec2.hpp -------------------------------------------------------------------------------- /depends/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/vec3.hpp -------------------------------------------------------------------------------- /depends/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/glm/vec4.hpp -------------------------------------------------------------------------------- /depends/include/implot/implot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/implot/implot.h -------------------------------------------------------------------------------- /depends/include/jxl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/cms.h -------------------------------------------------------------------------------- /depends/include/jxl/cms_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/cms_interface.h -------------------------------------------------------------------------------- /depends/include/jxl/codestream_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/codestream_header.h -------------------------------------------------------------------------------- /depends/include/jxl/color_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/color_encoding.h -------------------------------------------------------------------------------- /depends/include/jxl/compressed_icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/compressed_icc.h -------------------------------------------------------------------------------- /depends/include/jxl/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/decode.h -------------------------------------------------------------------------------- /depends/include/jxl/decode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/decode_cxx.h -------------------------------------------------------------------------------- /depends/include/jxl/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/encode.h -------------------------------------------------------------------------------- /depends/include/jxl/encode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/encode_cxx.h -------------------------------------------------------------------------------- /depends/include/jxl/gain_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/gain_map.h -------------------------------------------------------------------------------- /depends/include/jxl/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/memory_manager.h -------------------------------------------------------------------------------- /depends/include/jxl/parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/parallel_runner.h -------------------------------------------------------------------------------- /depends/include/jxl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/stats.h -------------------------------------------------------------------------------- /depends/include/jxl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/jxl/types.h -------------------------------------------------------------------------------- /depends/include/lzma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7z.h -------------------------------------------------------------------------------- /depends/include/lzma/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zAlloc.h -------------------------------------------------------------------------------- /depends/include/lzma/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zBuf.h -------------------------------------------------------------------------------- /depends/include/lzma/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zCrc.h -------------------------------------------------------------------------------- /depends/include/lzma/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zFile.h -------------------------------------------------------------------------------- /depends/include/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zTypes.h -------------------------------------------------------------------------------- /depends/include/lzma/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zVersion.h -------------------------------------------------------------------------------- /depends/include/lzma/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/7zVersion.rc -------------------------------------------------------------------------------- /depends/include/lzma/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Aes.h -------------------------------------------------------------------------------- /depends/include/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Alloc.h -------------------------------------------------------------------------------- /depends/include/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Bcj2.h -------------------------------------------------------------------------------- /depends/include/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Bra.h -------------------------------------------------------------------------------- /depends/include/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Compiler.h -------------------------------------------------------------------------------- /depends/include/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/CpuArch.h -------------------------------------------------------------------------------- /depends/include/lzma/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Delta.h -------------------------------------------------------------------------------- /depends/include/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzFind.h -------------------------------------------------------------------------------- /depends/include/lzma/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzFindMt.h -------------------------------------------------------------------------------- /depends/include/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzHash.h -------------------------------------------------------------------------------- /depends/include/lzma/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Lzma2Dec.h -------------------------------------------------------------------------------- /depends/include/lzma/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Lzma2Enc.h -------------------------------------------------------------------------------- /depends/include/lzma/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Lzma86.h -------------------------------------------------------------------------------- /depends/include/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzmaDec.h -------------------------------------------------------------------------------- /depends/include/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /depends/include/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/LzmaLib.h -------------------------------------------------------------------------------- /depends/include/lzma/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/MtCoder.h -------------------------------------------------------------------------------- /depends/include/lzma/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Ppmd.h -------------------------------------------------------------------------------- /depends/include/lzma/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Ppmd7.h -------------------------------------------------------------------------------- /depends/include/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Precomp.h -------------------------------------------------------------------------------- /depends/include/lzma/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/RotateDefs.h -------------------------------------------------------------------------------- /depends/include/lzma/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Sha256.h -------------------------------------------------------------------------------- /depends/include/lzma/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Sort.h -------------------------------------------------------------------------------- /depends/include/lzma/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Threads.h -------------------------------------------------------------------------------- /depends/include/lzma/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/Xz.h -------------------------------------------------------------------------------- /depends/include/lzma/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/XzCrc64.h -------------------------------------------------------------------------------- /depends/include/lzma/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/lzma/XzEnc.h -------------------------------------------------------------------------------- /depends/include/nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /depends/include/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/nvapi/nvapi.h -------------------------------------------------------------------------------- /depends/include/nvapi/nvapi_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/nvapi/nvapi_interface.h -------------------------------------------------------------------------------- /depends/include/nvapi/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/nvapi/nvapi_lite_sli.h -------------------------------------------------------------------------------- /depends/include/reflex/pclstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/reflex/pclstats.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamapps.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamclient.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamhttp.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteaminput.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /depends/include/steamapi/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteammusic.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamugc.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamuser.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamutils.h -------------------------------------------------------------------------------- /depends/include/steamapi/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/isteamvideo.h -------------------------------------------------------------------------------- /depends/include/steamapi/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/steam_api.h -------------------------------------------------------------------------------- /depends/include/steamapi/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/steamapi/steamtypes.h -------------------------------------------------------------------------------- /depends/include/tobii/tobii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/tobii/tobii.h -------------------------------------------------------------------------------- /depends/include/tobii/tobii_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/tobii/tobii_engine.h -------------------------------------------------------------------------------- /depends/include/tobii/tobii_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/tobii/tobii_streams.h -------------------------------------------------------------------------------- /depends/include/tobii/tobii_wearable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/include/tobii/tobii_wearable.h -------------------------------------------------------------------------------- /depends/lib/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.lib 3 | -------------------------------------------------------------------------------- /depends/lib/WinRing0/Win32/WinRing0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/WinRing0/Win32/WinRing0.dll -------------------------------------------------------------------------------- /depends/lib/WinRing0/Win32/WinRing0.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/WinRing0/Win32/WinRing0.exp -------------------------------------------------------------------------------- /depends/lib/WinRing0/Win32/WinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/WinRing0/Win32/WinRing0.sys -------------------------------------------------------------------------------- /depends/lib/glew/Win32/glew.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/glew/Win32/glew.lib -------------------------------------------------------------------------------- /depends/lib/glew/x64/glew.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/glew/x64/glew.lib -------------------------------------------------------------------------------- /depends/lib/nvapi/Win32/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/nvapi/Win32/nvapi.lib -------------------------------------------------------------------------------- /depends/lib/nvapi/x64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/lib/nvapi/x64/nvapi64.lib -------------------------------------------------------------------------------- /depends/src/DirectXTex/BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/DirectXTex/BC.cpp -------------------------------------------------------------------------------- /depends/src/DirectXTex/BC4BC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/DirectXTex/BC4BC5.cpp -------------------------------------------------------------------------------- /depends/src/DirectXTex/BC6HBC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/DirectXTex/BC6HBC7.cpp -------------------------------------------------------------------------------- /depends/src/DirectXTex/DirectXTex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/DirectXTex/DirectXTex.inl -------------------------------------------------------------------------------- /depends/src/SKinHook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/buffer.c -------------------------------------------------------------------------------- /depends/src/SKinHook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/buffer.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/hde32.c -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/hde32.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/hde64.c -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/hde64.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/pstdint.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/table32.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hde/table64.h -------------------------------------------------------------------------------- /depends/src/SKinHook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/hook.c -------------------------------------------------------------------------------- /depends/src/SKinHook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/trampoline.c -------------------------------------------------------------------------------- /depends/src/SKinHook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/SKinHook/trampoline.h -------------------------------------------------------------------------------- /depends/src/Zydis/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/Zydis/Zydis.c -------------------------------------------------------------------------------- /depends/src/glew/src/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/glew/src/src/visualinfo.c -------------------------------------------------------------------------------- /depends/src/implot/implot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/implot/implot.cpp -------------------------------------------------------------------------------- /depends/src/implot/implot_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/implot/implot_demo.cpp -------------------------------------------------------------------------------- /depends/src/implot/implot_items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/implot/implot_items.cpp -------------------------------------------------------------------------------- /depends/src/lzma/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zAlloc.c -------------------------------------------------------------------------------- /depends/src/lzma/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zArcIn.c -------------------------------------------------------------------------------- /depends/src/lzma/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zBuf.c -------------------------------------------------------------------------------- /depends/src/lzma/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zBuf2.c -------------------------------------------------------------------------------- /depends/src/lzma/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zCrc.c -------------------------------------------------------------------------------- /depends/src/lzma/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zCrcOpt.c -------------------------------------------------------------------------------- /depends/src/lzma/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zDec.c -------------------------------------------------------------------------------- /depends/src/lzma/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zFile.c -------------------------------------------------------------------------------- /depends/src/lzma/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/7zStream.c -------------------------------------------------------------------------------- /depends/src/lzma/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Aes.c -------------------------------------------------------------------------------- /depends/src/lzma/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/AesOpt.c -------------------------------------------------------------------------------- /depends/src/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Alloc.c -------------------------------------------------------------------------------- /depends/src/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Bcj2.c -------------------------------------------------------------------------------- /depends/src/lzma/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Bcj2Enc.c -------------------------------------------------------------------------------- /depends/src/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Bra.c -------------------------------------------------------------------------------- /depends/src/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Bra86.c -------------------------------------------------------------------------------- /depends/src/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/BraIA64.c -------------------------------------------------------------------------------- /depends/src/lzma/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/CpuArch.c -------------------------------------------------------------------------------- /depends/src/lzma/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Delta.c -------------------------------------------------------------------------------- /depends/src/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/LzFind.c -------------------------------------------------------------------------------- /depends/src/lzma/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/LzFindMt.c -------------------------------------------------------------------------------- /depends/src/lzma/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Lzma2Dec.c -------------------------------------------------------------------------------- /depends/src/lzma/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Lzma2Enc.c -------------------------------------------------------------------------------- /depends/src/lzma/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Lzma86Dec.c -------------------------------------------------------------------------------- /depends/src/lzma/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Lzma86Enc.c -------------------------------------------------------------------------------- /depends/src/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/LzmaDec.c -------------------------------------------------------------------------------- /depends/src/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /depends/src/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/LzmaLib.c -------------------------------------------------------------------------------- /depends/src/lzma/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/MtCoder.c -------------------------------------------------------------------------------- /depends/src/lzma/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Ppmd7.c -------------------------------------------------------------------------------- /depends/src/lzma/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Ppmd7Dec.c -------------------------------------------------------------------------------- /depends/src/lzma/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Ppmd7Enc.c -------------------------------------------------------------------------------- /depends/src/lzma/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Sha256.c -------------------------------------------------------------------------------- /depends/src/lzma/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Sort.c -------------------------------------------------------------------------------- /depends/src/lzma/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Threads.c -------------------------------------------------------------------------------- /depends/src/lzma/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/Xz.c -------------------------------------------------------------------------------- /depends/src/lzma/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/XzCrc64.c -------------------------------------------------------------------------------- /depends/src/lzma/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/XzCrc64Opt.c -------------------------------------------------------------------------------- /depends/src/lzma/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/XzDec.c -------------------------------------------------------------------------------- /depends/src/lzma/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/XzEnc.c -------------------------------------------------------------------------------- /depends/src/lzma/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/XzIn.c -------------------------------------------------------------------------------- /depends/src/lzma/libzma/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/libzma/ReadMe.txt -------------------------------------------------------------------------------- /depends/src/lzma/libzma/libzma.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/libzma/libzma.sln -------------------------------------------------------------------------------- /depends/src/lzma/libzma/libzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/lzma/libzma/libzma.vcxproj -------------------------------------------------------------------------------- /depends/src/safetyhook/safetyhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/depends/src/safetyhook/safetyhook.cpp -------------------------------------------------------------------------------- /include/SpecialK/DLL_VERSION.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/DLL_VERSION.H -------------------------------------------------------------------------------- /include/SpecialK/SpecialK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/SpecialK.h -------------------------------------------------------------------------------- /include/SpecialK/adl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/adl.h -------------------------------------------------------------------------------- /include/SpecialK/ansel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/ansel.h -------------------------------------------------------------------------------- /include/SpecialK/com_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/com_util.h -------------------------------------------------------------------------------- /include/SpecialK/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/command.h -------------------------------------------------------------------------------- /include/SpecialK/commands/mem.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/commands/mem.inl -------------------------------------------------------------------------------- /include/SpecialK/commands/update.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/commands/update.inl -------------------------------------------------------------------------------- /include/SpecialK/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/config.h -------------------------------------------------------------------------------- /include/SpecialK/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/console.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/d3d11.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/d3d9.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/epic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/epic.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/galaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/galaxy.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/input.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/opengl.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/osd.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/sound.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/steam.h -------------------------------------------------------------------------------- /include/SpecialK/control_panel/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/control_panel/window.h -------------------------------------------------------------------------------- /include/SpecialK/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/core.h -------------------------------------------------------------------------------- /include/SpecialK/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/crc32.h -------------------------------------------------------------------------------- /include/SpecialK/diagnostics/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/diagnostics/cpu.h -------------------------------------------------------------------------------- /include/SpecialK/diagnostics/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/diagnostics/file.h -------------------------------------------------------------------------------- /include/SpecialK/diagnostics/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/diagnostics/memory.h -------------------------------------------------------------------------------- /include/SpecialK/diagnostics/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/diagnostics/modules.h -------------------------------------------------------------------------------- /include/SpecialK/diagnostics/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/diagnostics/network.h -------------------------------------------------------------------------------- /include/SpecialK/framerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/framerate.h -------------------------------------------------------------------------------- /include/SpecialK/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/hash.h -------------------------------------------------------------------------------- /include/SpecialK/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/hooks.h -------------------------------------------------------------------------------- /include/SpecialK/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/import.h -------------------------------------------------------------------------------- /include/SpecialK/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/ini.h -------------------------------------------------------------------------------- /include/SpecialK/injection/blacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/injection/blacklist.h -------------------------------------------------------------------------------- /include/SpecialK/injection/injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/injection/injection.h -------------------------------------------------------------------------------- /include/SpecialK/input/game_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/game_input.h -------------------------------------------------------------------------------- /include/SpecialK/input/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/input.h -------------------------------------------------------------------------------- /include/SpecialK/input/sce_pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/sce_pad.h -------------------------------------------------------------------------------- /include/SpecialK/input/steam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/steam.h -------------------------------------------------------------------------------- /include/SpecialK/input/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/xinput.h -------------------------------------------------------------------------------- /include/SpecialK/input/xinput_hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/input/xinput_hotplug.h -------------------------------------------------------------------------------- /include/SpecialK/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/log.h -------------------------------------------------------------------------------- /include/SpecialK/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/nvapi.h -------------------------------------------------------------------------------- /include/SpecialK/osd/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/osd/popup.h -------------------------------------------------------------------------------- /include/SpecialK/osd/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/osd/text.h -------------------------------------------------------------------------------- /include/SpecialK/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/parameter.h -------------------------------------------------------------------------------- /include/SpecialK/plugin/nier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/plugin/nier.h -------------------------------------------------------------------------------- /include/SpecialK/plugin/plugin_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/plugin/plugin_mgr.h -------------------------------------------------------------------------------- /include/SpecialK/plugin/reshade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/plugin/reshade.h -------------------------------------------------------------------------------- /include/SpecialK/popups/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/popups/popup.h -------------------------------------------------------------------------------- /include/SpecialK/render/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/backend.h -------------------------------------------------------------------------------- /include/SpecialK/render/d3dkmt/d3dkmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/d3dkmt/d3dkmt.h -------------------------------------------------------------------------------- /include/SpecialK/render/dxgi/dxgi_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/dxgi/dxgi_hdr.h -------------------------------------------------------------------------------- /include/SpecialK/render/ngx/ngx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/ngx/ngx.h -------------------------------------------------------------------------------- /include/SpecialK/render/ngx/ngx_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/ngx/ngx_defs.h -------------------------------------------------------------------------------- /include/SpecialK/render/ngx/ngx_dlss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/ngx/ngx_dlss.h -------------------------------------------------------------------------------- /include/SpecialK/render/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/render/screenshot.h -------------------------------------------------------------------------------- /include/SpecialK/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/resource.h -------------------------------------------------------------------------------- /include/SpecialK/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/sha1.h -------------------------------------------------------------------------------- /include/SpecialK/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/sound.h -------------------------------------------------------------------------------- /include/SpecialK/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/stdafx.h -------------------------------------------------------------------------------- /include/SpecialK/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/steam_api.h -------------------------------------------------------------------------------- /include/SpecialK/storefront/epic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/storefront/epic.h -------------------------------------------------------------------------------- /include/SpecialK/storefront/gog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/storefront/gog.h -------------------------------------------------------------------------------- /include/SpecialK/storefront/xbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/storefront/xbox.h -------------------------------------------------------------------------------- /include/SpecialK/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/targetver.h -------------------------------------------------------------------------------- /include/SpecialK/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/thread.h -------------------------------------------------------------------------------- /include/SpecialK/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/tls.h -------------------------------------------------------------------------------- /include/SpecialK/update/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/update/archive.h -------------------------------------------------------------------------------- /include/SpecialK/update/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/update/network.h -------------------------------------------------------------------------------- /include/SpecialK/update/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/update/version.h -------------------------------------------------------------------------------- /include/SpecialK/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/utility.h -------------------------------------------------------------------------------- /include/SpecialK/utility/lazy_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/utility/lazy_global.h -------------------------------------------------------------------------------- /include/SpecialK/widgets/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/widgets/widget.h -------------------------------------------------------------------------------- /include/SpecialK/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/SpecialK/window.h -------------------------------------------------------------------------------- /include/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/gsl -------------------------------------------------------------------------------- /include/gsl/gsl_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/gsl_algorithm -------------------------------------------------------------------------------- /include/gsl/gsl_assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/gsl_assert -------------------------------------------------------------------------------- /include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/gsl_byte -------------------------------------------------------------------------------- /include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/gsl_util -------------------------------------------------------------------------------- /include/gsl/multi_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/multi_span -------------------------------------------------------------------------------- /include/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/pointers -------------------------------------------------------------------------------- /include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/span -------------------------------------------------------------------------------- /include/gsl/string_span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/gsl/string_span -------------------------------------------------------------------------------- /include/imgui/backends/imgui_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/backends/imgui_d3d11.h -------------------------------------------------------------------------------- /include/imgui/backends/imgui_d3d12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/backends/imgui_d3d12.h -------------------------------------------------------------------------------- /include/imgui/backends/imgui_d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/backends/imgui_d3d9.h -------------------------------------------------------------------------------- /include/imgui/backends/imgui_gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/backends/imgui_gl3.h -------------------------------------------------------------------------------- /include/imgui/backends/imgui_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/backends/imgui_vk.h -------------------------------------------------------------------------------- /include/imgui/fa_brands_400.ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/fa_brands_400.ttf.h -------------------------------------------------------------------------------- /include/imgui/fa_solid_900.ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/fa_solid_900.ttf.h -------------------------------------------------------------------------------- /include/imgui/font_awesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/font_awesome.h -------------------------------------------------------------------------------- /include/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imconfig.h -------------------------------------------------------------------------------- /include/imgui/imfilebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imfilebrowser.h -------------------------------------------------------------------------------- /include/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imgui.h -------------------------------------------------------------------------------- /include/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imgui_internal.h -------------------------------------------------------------------------------- /include/imgui/imgui_user.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imgui_user.inl -------------------------------------------------------------------------------- /include/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /include/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /include/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /include/intel/HybridDetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/intel/HybridDetect.h -------------------------------------------------------------------------------- /include/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/json/json.hpp -------------------------------------------------------------------------------- /include/mono/metadata/appdomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/appdomain.h -------------------------------------------------------------------------------- /include/mono/metadata/assembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/assembly.h -------------------------------------------------------------------------------- /include/mono/metadata/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/blob.h -------------------------------------------------------------------------------- /include/mono/metadata/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/class.h -------------------------------------------------------------------------------- /include/mono/metadata/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/image.h -------------------------------------------------------------------------------- /include/mono/metadata/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/loader.h -------------------------------------------------------------------------------- /include/mono/metadata/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/metadata.h -------------------------------------------------------------------------------- /include/mono/metadata/object-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/object-forward.h -------------------------------------------------------------------------------- /include/mono/metadata/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/object.h -------------------------------------------------------------------------------- /include/mono/metadata/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/reflection.h -------------------------------------------------------------------------------- /include/mono/metadata/row-indexes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/row-indexes.h -------------------------------------------------------------------------------- /include/mono/metadata/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/metadata/threads.h -------------------------------------------------------------------------------- /include/mono/utils/mono-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/utils/mono-error.h -------------------------------------------------------------------------------- /include/mono/utils/mono-forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/utils/mono-forward.h -------------------------------------------------------------------------------- /include/mono/utils/mono-publib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/mono/utils/mono-publib.h -------------------------------------------------------------------------------- /include/msvc/UserMarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/msvc/UserMarks.h -------------------------------------------------------------------------------- /include/stb/rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/stb/rect_pack.h -------------------------------------------------------------------------------- /include/stb/textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/stb/textedit.h -------------------------------------------------------------------------------- /include/stb/truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/stb/truetype.h -------------------------------------------------------------------------------- /include/ultrahdr/dsp/arm/mem_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/dsp/arm/mem_neon.h -------------------------------------------------------------------------------- /include/ultrahdr/editorhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/editorhelper.h -------------------------------------------------------------------------------- /include/ultrahdr/gainmapmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/gainmapmath.h -------------------------------------------------------------------------------- /include/ultrahdr/gainmapmetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/gainmapmetadata.h -------------------------------------------------------------------------------- /include/ultrahdr/icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/icc.h -------------------------------------------------------------------------------- /include/ultrahdr/jpegdecoderhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/jpegdecoderhelper.h -------------------------------------------------------------------------------- /include/ultrahdr/jpegencoderhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/jpegencoderhelper.h -------------------------------------------------------------------------------- /include/ultrahdr/jpegr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/jpegr.h -------------------------------------------------------------------------------- /include/ultrahdr/jpegrutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/jpegrutils.h -------------------------------------------------------------------------------- /include/ultrahdr/multipictureformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/multipictureformat.h -------------------------------------------------------------------------------- /include/ultrahdr/ultrahdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/ultrahdr.h -------------------------------------------------------------------------------- /include/ultrahdr/ultrahdr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/ultrahdr_api.h -------------------------------------------------------------------------------- /include/ultrahdr/ultrahdrcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/ultrahdr/ultrahdrcommon.h -------------------------------------------------------------------------------- /include/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vk_icd.h -------------------------------------------------------------------------------- /include/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vk_layer.h -------------------------------------------------------------------------------- /include/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vk_platform.h -------------------------------------------------------------------------------- /include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /include/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_android.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_beta.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_directfb.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_enums.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_format_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_format_traits.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_fuchsia.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_funcs.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_handles.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_hash.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_hpp_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_hpp_macros.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_macos.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_raii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_raii.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_screen.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_shared.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_structs.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_to_string.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_video.hpp -------------------------------------------------------------------------------- /include/vulkan/vulkan_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_wayland.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_win32.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_xlib.h -------------------------------------------------------------------------------- /include/vulkan/vulkan_xlib_xrandr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/include/vulkan/vulkan_xlib_xrandr.h -------------------------------------------------------------------------------- /resource/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/Resource.rc -------------------------------------------------------------------------------- /resource/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/crash.wav -------------------------------------------------------------------------------- /resource/cursors/ovr_horz.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/cursors/ovr_horz.cur -------------------------------------------------------------------------------- /resource/cursors/ovr_ptr.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/cursors/ovr_ptr.cur -------------------------------------------------------------------------------- /resource/licenses/7zip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/7zip.txt -------------------------------------------------------------------------------- /resource/licenses/ADL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/ADL.txt -------------------------------------------------------------------------------- /resource/licenses/Aetherim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/Aetherim.txt -------------------------------------------------------------------------------- /resource/licenses/DirectXTex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/DirectXTex.txt -------------------------------------------------------------------------------- /resource/licenses/FreeType2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/FreeType2.txt -------------------------------------------------------------------------------- /resource/licenses/GLM_0_9_4_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/GLM_0_9_4_5.txt -------------------------------------------------------------------------------- /resource/licenses/ImGui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/ImGui.txt -------------------------------------------------------------------------------- /resource/licenses/ImPlot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/ImPlot -------------------------------------------------------------------------------- /resource/licenses/MinHook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/MinHook.txt -------------------------------------------------------------------------------- /resource/licenses/OpenLibSys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/OpenLibSys.txt -------------------------------------------------------------------------------- /resource/licenses/Overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/Overview.txt -------------------------------------------------------------------------------- /resource/licenses/SpecialK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/SpecialK.txt -------------------------------------------------------------------------------- /resource/licenses/Vulkan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/Vulkan.txt -------------------------------------------------------------------------------- /resource/licenses/Zydis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/Zydis.txt -------------------------------------------------------------------------------- /resource/licenses/fontawesome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/fontawesome.txt -------------------------------------------------------------------------------- /resource/licenses/imgui-filebrowser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/imgui-filebrowser.txt -------------------------------------------------------------------------------- /resource/licenses/libjxl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/libjxl.txt -------------------------------------------------------------------------------- /resource/licenses/nlohmann-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/nlohmann-json.txt -------------------------------------------------------------------------------- /resource/licenses/nvapi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/nvapi.txt -------------------------------------------------------------------------------- /resource/licenses/safetyhook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/safetyhook.txt -------------------------------------------------------------------------------- /resource/licenses/stb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/stb.txt -------------------------------------------------------------------------------- /resource/licenses/tobii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/licenses/tobii.txt -------------------------------------------------------------------------------- /resource/shaders/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/.editorconfig -------------------------------------------------------------------------------- /resource/shaders/HDR/common_defs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/HDR/common_defs.hlsl -------------------------------------------------------------------------------- /resource/shaders/HDR/hdr_merge_cs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/HDR/hdr_merge_cs.hlsl -------------------------------------------------------------------------------- /resource/shaders/HDR/vs_colorutil.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/HDR/vs_colorutil.hlsl -------------------------------------------------------------------------------- /resource/shaders/blt_copy_cs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/blt_copy_cs.hlsl -------------------------------------------------------------------------------- /resource/shaders/cs_histogram.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/cs_histogram.hlsl -------------------------------------------------------------------------------- /resource/shaders/discord_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/discord_d3d11_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/discord_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/discord_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/epic_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/epic_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/galaxy_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/galaxy_d3d11_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/galaxy_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/galaxy_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/imgui_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/imgui_d3d11_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/imgui_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/imgui_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/rtss_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/rtss_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/sRGB_codec_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/sRGB_codec_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/steam_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/steam_d3d11_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/steam_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/steam_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/shaders/uplay_d3d11_ps.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/uplay_d3d11_ps.hlsl -------------------------------------------------------------------------------- /resource/shaders/uplay_d3d11_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/shaders/uplay_d3d11_vs.hlsl -------------------------------------------------------------------------------- /resource/textures/HDR/heatmap_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/resource/textures/HDR/heatmap_scale.png -------------------------------------------------------------------------------- /src/SpecialK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/SpecialK.cpp -------------------------------------------------------------------------------- /src/adl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/adl.cpp -------------------------------------------------------------------------------- /src/ansel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/ansel.cpp -------------------------------------------------------------------------------- /src/com_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/com_util.cpp -------------------------------------------------------------------------------- /src/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/command.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/control_panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_compatibility.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_d3d11.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_d3d9.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_epic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_epic.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_galaxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_galaxy.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_input.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_notifications.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_opengl.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_osd.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_platform.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_plugins.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_sound.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_steam.cpp -------------------------------------------------------------------------------- /src/control_panel/cfg_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/control_panel/cfg_window.cpp -------------------------------------------------------------------------------- /src/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/core.cpp -------------------------------------------------------------------------------- /src/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/crc32.cpp -------------------------------------------------------------------------------- /src/diagnostics/compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/compatibility.cpp -------------------------------------------------------------------------------- /src/diagnostics/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/cpu.cpp -------------------------------------------------------------------------------- /src/diagnostics/crash_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/crash_handler.cpp -------------------------------------------------------------------------------- /src/diagnostics/debug_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/debug_utils.cpp -------------------------------------------------------------------------------- /src/diagnostics/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/file.cpp -------------------------------------------------------------------------------- /src/diagnostics/load_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/load_library.cpp -------------------------------------------------------------------------------- /src/diagnostics/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/memory.cpp -------------------------------------------------------------------------------- /src/diagnostics/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/diagnostics/net.cpp -------------------------------------------------------------------------------- /src/framerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/framerate.cpp -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/hooks.cpp -------------------------------------------------------------------------------- /src/imgui/EULA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/EULA.cpp -------------------------------------------------------------------------------- /src/imgui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/LICENSE -------------------------------------------------------------------------------- /src/imgui/backends/imgui_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/backends/imgui_d3d11.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_d3d12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/backends/imgui_d3d12.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/backends/imgui_d3d9.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_gl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/backends/imgui_gl3.cpp -------------------------------------------------------------------------------- /src/imgui/backends/imgui_vk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/backends/imgui_vk.cpp -------------------------------------------------------------------------------- /src/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/imgui.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /src/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /src/import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/import.cpp -------------------------------------------------------------------------------- /src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/ini.cpp -------------------------------------------------------------------------------- /src/injection/injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/injection/injection.cpp -------------------------------------------------------------------------------- /src/input/bluetooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/bluetooth.cpp -------------------------------------------------------------------------------- /src/input/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/cursor.cpp -------------------------------------------------------------------------------- /src/input/dinput7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/dinput7.cpp -------------------------------------------------------------------------------- /src/input/dinput8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/dinput8.cpp -------------------------------------------------------------------------------- /src/input/game_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/game_input.cpp -------------------------------------------------------------------------------- /src/input/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/hid.cpp -------------------------------------------------------------------------------- /src/input/hid_reports/dualsense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/hid_reports/dualsense.cpp -------------------------------------------------------------------------------- /src/input/hid_reports/dualshock4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/hid_reports/dualshock4.cpp -------------------------------------------------------------------------------- /src/input/hid_reports/playstation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/hid_reports/playstation.cpp -------------------------------------------------------------------------------- /src/input/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/input.cpp -------------------------------------------------------------------------------- /src/input/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/keyboard.cpp -------------------------------------------------------------------------------- /src/input/raw_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/raw_input.cpp -------------------------------------------------------------------------------- /src/input/sce_pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/sce_pad.cpp -------------------------------------------------------------------------------- /src/input/steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/steam.cpp -------------------------------------------------------------------------------- /src/input/windows.gaming.input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/windows.gaming.input.cpp -------------------------------------------------------------------------------- /src/input/winhook_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/winhook_input.cpp -------------------------------------------------------------------------------- /src/input/winmm_joystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/winmm_joystick.cpp -------------------------------------------------------------------------------- /src/input/xinput_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/xinput_core.cpp -------------------------------------------------------------------------------- /src/input/xinput_hotplug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/input/xinput_hotplug.cpp -------------------------------------------------------------------------------- /src/lazy_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/lazy_global.cpp -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/nvapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/nvapi.cpp -------------------------------------------------------------------------------- /src/osd/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/osd/popup.cpp -------------------------------------------------------------------------------- /src/osd/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/osd/text.cpp -------------------------------------------------------------------------------- /src/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/parameter.cpp -------------------------------------------------------------------------------- /src/performance/gpu_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/performance/gpu_monitor.cpp -------------------------------------------------------------------------------- /src/performance/io_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/performance/io_monitor.cpp -------------------------------------------------------------------------------- /src/plugins/armoredcore6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/armoredcore6.cpp -------------------------------------------------------------------------------- /src/plugins/assassins_creed_shadows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/assassins_creed_shadows.cpp -------------------------------------------------------------------------------- /src/plugins/bethesda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/bethesda.cpp -------------------------------------------------------------------------------- /src/plugins/blue_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/blue_reflection.cpp -------------------------------------------------------------------------------- /src/plugins/chrono_cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/chrono_cross.cpp -------------------------------------------------------------------------------- /src/plugins/dothack_gu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/dothack_gu.cpp -------------------------------------------------------------------------------- /src/plugins/dragon_quest_xi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/dragon_quest_xi.cpp -------------------------------------------------------------------------------- /src/plugins/ds3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/ds3.cpp -------------------------------------------------------------------------------- /src/plugins/elden_ring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/elden_ring.cpp -------------------------------------------------------------------------------- /src/plugins/ff7_remake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/ff7_remake.cpp -------------------------------------------------------------------------------- /src/plugins/ffxvi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/ffxvi.cpp -------------------------------------------------------------------------------- /src/plugins/lego_marvel2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/lego_marvel2.cpp -------------------------------------------------------------------------------- /src/plugins/lords_of_the_fallen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/lords_of_the_fallen2.cpp -------------------------------------------------------------------------------- /src/plugins/monster_hunter_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/monster_hunter_world.cpp -------------------------------------------------------------------------------- /src/plugins/nier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/nier.cpp -------------------------------------------------------------------------------- /src/plugins/nier_√1.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/nier_√1.5.cpp -------------------------------------------------------------------------------- /src/plugins/ninokuni2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/ninokuni2.cpp -------------------------------------------------------------------------------- /src/plugins/octopath_traveler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/octopath_traveler.cpp -------------------------------------------------------------------------------- /src/plugins/okami.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/okami.cpp -------------------------------------------------------------------------------- /src/plugins/persona4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/persona4.cpp -------------------------------------------------------------------------------- /src/plugins/plugin_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/plugin_mgr.cpp -------------------------------------------------------------------------------- /src/plugins/reshade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/reshade.cpp -------------------------------------------------------------------------------- /src/plugins/secret_of_mana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/secret_of_mana.cpp -------------------------------------------------------------------------------- /src/plugins/sekiro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/sekiro.cpp -------------------------------------------------------------------------------- /src/plugins/tales_of_graces_f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/tales_of_graces_f.cpp -------------------------------------------------------------------------------- /src/plugins/tales_of_vesperia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/tales_of_vesperia.cpp -------------------------------------------------------------------------------- /src/plugins/unclassified.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/unclassified.cpp -------------------------------------------------------------------------------- /src/plugins/unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/unity.cpp -------------------------------------------------------------------------------- /src/plugins/watch_dogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/watch_dogs.cpp -------------------------------------------------------------------------------- /src/plugins/yakuza0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/yakuza0.cpp -------------------------------------------------------------------------------- /src/plugins/ys8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/plugins/ys8.cpp -------------------------------------------------------------------------------- /src/popups/achievement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/popups/achievement.cpp -------------------------------------------------------------------------------- /src/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/process.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_debug.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_dev_ctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_dev_ctx.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_screenshot.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_shader.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_stateblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_stateblock.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_texwrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_texwrap.cpp -------------------------------------------------------------------------------- /src/render/d3d11/d3d11_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/d3d11_utility.cpp -------------------------------------------------------------------------------- /src/render/d3d11/hdr/d3d11_hdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/hdr/d3d11_hdr.cpp -------------------------------------------------------------------------------- /src/render/d3d11/hooks/d3d11_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/hooks/d3d11_device.cpp -------------------------------------------------------------------------------- /src/render/d3d11/utility/d3d11_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d11/utility/d3d11_map.cpp -------------------------------------------------------------------------------- /src/render/d3d12/d3d12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d12/d3d12.cpp -------------------------------------------------------------------------------- /src/render/d3d12/d3d12_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d12/d3d12_debug.cpp -------------------------------------------------------------------------------- /src/render/d3d12/d3d12_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d12/d3d12_device.cpp -------------------------------------------------------------------------------- /src/render/d3d12/d3d12_screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d12/d3d12_screenshot.cpp -------------------------------------------------------------------------------- /src/render/d3d8/d3d8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d8/d3d8.cpp -------------------------------------------------------------------------------- /src/render/d3d9/d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d9/d3d9.cpp -------------------------------------------------------------------------------- /src/render/d3d9/d3d9_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d9/d3d9_device.cpp -------------------------------------------------------------------------------- /src/render/d3d9/d3d9_screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d9/d3d9_screenshot.cpp -------------------------------------------------------------------------------- /src/render/d3d9/d3d9_swapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d9/d3d9_swapchain.cpp -------------------------------------------------------------------------------- /src/render/d3d9/d3d9_texmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3d9/d3d9_texmgr.cpp -------------------------------------------------------------------------------- /src/render/d3dkmt/d3dkmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/d3dkmt/d3dkmt.cpp -------------------------------------------------------------------------------- /src/render/ddraw/ddraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/ddraw/ddraw.cpp -------------------------------------------------------------------------------- /src/render/dstorage/dstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dstorage/dstorage.cpp -------------------------------------------------------------------------------- /src/render/dstorage/dstorage_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dstorage/dstorage_queue.cpp -------------------------------------------------------------------------------- /src/render/dxgi/dxgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dxgi/dxgi.cpp -------------------------------------------------------------------------------- /src/render/dxgi/dxgi_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dxgi/dxgi_debug.cpp -------------------------------------------------------------------------------- /src/render/dxgi/dxgi_swapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dxgi/dxgi_swapchain.cpp -------------------------------------------------------------------------------- /src/render/dxgi/dxgi_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/dxgi/dxgi_util.cpp -------------------------------------------------------------------------------- /src/render/gl/opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/gl/opengl.cpp -------------------------------------------------------------------------------- /src/render/gl/opengl_screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/gl/opengl_screenshot.cpp -------------------------------------------------------------------------------- /src/render/ngx/ngx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/ngx/ngx.cpp -------------------------------------------------------------------------------- /src/render/ngx/ngx_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/ngx/ngx_d3d11.cpp -------------------------------------------------------------------------------- /src/render/ngx/ngx_d3d12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/ngx/ngx_d3d12.cpp -------------------------------------------------------------------------------- /src/render/ngx/ngx_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/ngx/ngx_vulkan.cpp -------------------------------------------------------------------------------- /src/render/present_mon/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/CommandLine.cpp -------------------------------------------------------------------------------- /src/render/present_mon/CsvOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/CsvOutput.cpp -------------------------------------------------------------------------------- /src/render/present_mon/MainThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/MainThread.cpp -------------------------------------------------------------------------------- /src/render/present_mon/OutputThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/OutputThread.cpp -------------------------------------------------------------------------------- /src/render/present_mon/PM_Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/PM_Console.cpp -------------------------------------------------------------------------------- /src/render/present_mon/PM_Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/PM_Debug.cpp -------------------------------------------------------------------------------- /src/render/present_mon/Privilege.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/present_mon/Privilege.cpp -------------------------------------------------------------------------------- /src/render/reflex/pclstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/reflex/pclstats.cpp -------------------------------------------------------------------------------- /src/render/reflex/reflex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/reflex/reflex.cpp -------------------------------------------------------------------------------- /src/render/render_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/render_backend.cpp -------------------------------------------------------------------------------- /src/render/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/screenshot.cpp -------------------------------------------------------------------------------- /src/render/streamline/streamline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/streamline/streamline.cpp -------------------------------------------------------------------------------- /src/render/vulkan/vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/render/vulkan/vulkan.cpp -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/sha1.cpp -------------------------------------------------------------------------------- /src/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/sound.cpp -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/stdafx.cpp -------------------------------------------------------------------------------- /src/steam/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/steam/client.cpp -------------------------------------------------------------------------------- /src/steam/steam_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/steam/steam_api.cpp -------------------------------------------------------------------------------- /src/steam/steam_tier0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/steam/steam_tier0.cpp -------------------------------------------------------------------------------- /src/steam/user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/steam/user.cpp -------------------------------------------------------------------------------- /src/steam/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/steam/utils.cpp -------------------------------------------------------------------------------- /src/storefront/achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/storefront/achievements.cpp -------------------------------------------------------------------------------- /src/storefront/epic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/storefront/epic.cpp -------------------------------------------------------------------------------- /src/storefront/gog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/storefront/gog.cpp -------------------------------------------------------------------------------- /src/storefront/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/storefront/platform.cpp -------------------------------------------------------------------------------- /src/storefront/xbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/storefront/xbox.cpp -------------------------------------------------------------------------------- /src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/thread.cpp -------------------------------------------------------------------------------- /src/tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/tls.cpp -------------------------------------------------------------------------------- /src/update/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/update/archive.cpp -------------------------------------------------------------------------------- /src/update/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/update/network.cpp -------------------------------------------------------------------------------- /src/update/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/update/version.cpp -------------------------------------------------------------------------------- /src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/utility.cpp -------------------------------------------------------------------------------- /src/widgets/achievement_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/achievement_tracker.cpp -------------------------------------------------------------------------------- /src/widgets/cpu_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/cpu_widget.cpp -------------------------------------------------------------------------------- /src/widgets/d3d11_pipeline_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/d3d11_pipeline_widget.cpp -------------------------------------------------------------------------------- /src/widgets/denuvo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/denuvo.cpp -------------------------------------------------------------------------------- /src/widgets/frame_pacing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/frame_pacing.cpp -------------------------------------------------------------------------------- /src/widgets/gpu_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/gpu_widget.cpp -------------------------------------------------------------------------------- /src/widgets/hdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/hdr.cpp -------------------------------------------------------------------------------- /src/widgets/latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/latency.cpp -------------------------------------------------------------------------------- /src/widgets/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/threads.cpp -------------------------------------------------------------------------------- /src/widgets/tobii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/tobii.cpp -------------------------------------------------------------------------------- /src/widgets/volume_control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/volume_control.cpp -------------------------------------------------------------------------------- /src/widgets/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/widgets/widget.cpp -------------------------------------------------------------------------------- /src/win32_isolation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/win32_isolation.cpp -------------------------------------------------------------------------------- /src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpecialKO/SpecialK/HEAD/src/window.cpp --------------------------------------------------------------------------------