├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── include └── InGameOverlay │ ├── RendererDetector.h │ ├── RendererHook.h │ └── RendererResource.h ├── src ├── BaseHook.cpp ├── BaseHook.h ├── Internal.cpp ├── InternalIncludes.h ├── Linux │ ├── OpenGLXHook.cpp │ ├── OpenGLXHook.h │ ├── RendererDetector.cpp │ ├── VulkanHook.cpp │ ├── VulkanHook.h │ ├── X11Hook.cpp │ └── X11Hook.h ├── MacOSX │ ├── MetalHook.h │ ├── MetalHook.mm │ ├── NSViewHook.h │ ├── NSViewHook.mm │ ├── OpenGLHook.h │ ├── OpenGLHook.mm │ └── RendererDetector.mm ├── RendererHookInternal.cpp ├── RendererHookInternal.h ├── RendererResourceInternal.cpp ├── RendererResourceInternal.h ├── VulkanHelpers.h ├── VulkanSDK │ └── include │ │ ├── vk_video │ │ ├── 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 │ │ ├── utility │ │ └── vk_format_utils.h │ │ ├── vk_enum_string_helper.h │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_platform.h │ │ ├── vulkan.cppm │ │ ├── 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_metal.h │ │ ├── vulkan_profiles.hpp │ │ ├── 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 ├── Windows │ ├── DX10Hook.cpp │ ├── DX10Hook.h │ ├── DX11Hook.cpp │ ├── DX11Hook.h │ ├── DX12Hook.cpp │ ├── DX12Hook.h │ ├── DX9Hook.cpp │ ├── DX9Hook.h │ ├── DXVKDetector.h │ ├── DirectXVTables.h │ ├── OpenGLHook.cpp │ ├── OpenGLHook.h │ ├── RendererDetector.cpp │ ├── SimpleWindowsGamingInput.cpp │ ├── SimpleWindowsGamingInput.h │ ├── VulkanHook.cpp │ ├── VulkanHook.h │ ├── WindowsGamingInputVTables.h │ ├── WindowsHook.cpp │ └── WindowsHook.h ├── glad2 │ └── include │ │ └── glad │ │ └── gl.h └── mpmc_bounded_queue.h └── tests ├── common ├── glfw │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── Info.plist.in │ │ ├── cmake_uninstall.cmake.in │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── i686-w64-mingw32-clang.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEpollShim.cmake │ │ │ └── FindOSMesa.cmake │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── deps │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad │ │ │ ├── gl.h │ │ │ ├── gles2.h │ │ │ └── vulkan.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ └── wayland │ │ │ ├── fractional-scale-v1.xml │ │ │ ├── idle-inhibit-unstable-v1.xml │ │ │ ├── pointer-constraints-unstable-v1.xml │ │ │ ├── relative-pointer-unstable-v1.xml │ │ │ ├── viewporter.xml │ │ │ ├── wayland.xml │ │ │ ├── xdg-activation-v1.xml │ │ │ ├── xdg-decoration-unstable-v1.xml │ │ │ └── xdg-shell.xml │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_time.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── glfw.rc.in │ │ ├── glx_context.c │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── platform.c │ │ ├── platform.h │ │ ├── posix_module.c │ │ ├── posix_poll.c │ │ ├── posix_poll.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_module.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_thread.h │ │ ├── win32_time.c │ │ ├── win32_time.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h ├── imgui_impl_dx12.cpp ├── imgui_impl_dx12.h ├── imgui_impl_osx.h ├── imgui_impl_osx.mm ├── imgui_impl_vulkan.cpp ├── imgui_impl_vulkan.h ├── ingameoverlay_imconfig.h ├── right_facing_fist.h ├── stb_image.h ├── thumbs_down.h ├── thumbs_down_small.h ├── thumbs_up.h └── vulkansdk │ ├── include │ ├── dxc │ │ ├── WinAdapter.h │ │ └── dxcapi.h │ ├── glslang │ │ ├── Include │ │ │ ├── ResourceLimits.h │ │ │ ├── glslang_c_interface.h │ │ │ └── glslang_c_shader_types.h │ │ ├── MachineIndependent │ │ │ └── Versions.h │ │ ├── Public │ │ │ ├── ResourceLimits.h │ │ │ ├── ShaderLang.h │ │ │ └── resource_limits_c.h │ │ └── SPIRV │ │ │ ├── GlslangToSpv.h │ │ │ ├── Logger.h │ │ │ ├── SPVRemapper.h │ │ │ └── spirv.hpp │ ├── shaderc │ │ ├── env.h │ │ ├── shaderc.h │ │ ├── shaderc.hpp │ │ ├── status.h │ │ └── visibility.h │ ├── spirv-headers │ │ ├── GLSL.std.450.h │ │ ├── spirv.h │ │ ├── spirv.hpp │ │ ├── spirv.hpp11 │ │ ├── spirv.json │ │ ├── spirv.lua │ │ └── spirv.py │ ├── spirv-tools │ │ ├── libspirv.h │ │ ├── libspirv.hpp │ │ ├── linker.hpp │ │ └── optimizer.hpp │ ├── spirv_cross │ │ ├── GLSL.std.450.h │ │ ├── spirv.h │ │ ├── spirv.hpp │ │ ├── spirv_cfg.hpp │ │ ├── spirv_common.hpp │ │ ├── spirv_cross.hpp │ │ ├── spirv_cross_c.h │ │ ├── spirv_cross_containers.hpp │ │ ├── spirv_cross_error_handling.hpp │ │ ├── spirv_cross_parsed_ir.hpp │ │ ├── spirv_glsl.hpp │ │ ├── spirv_hlsl.hpp │ │ ├── spirv_msl.hpp │ │ ├── spirv_parser.hpp │ │ └── spirv_reflect.hpp │ ├── vk_video │ │ ├── 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 │ │ ├── utility │ │ └── vk_format_utils.h │ │ ├── vk_enum_string_helper.h │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_platform.h │ │ ├── vulkan.cppm │ │ ├── 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_metal.h │ │ ├── vulkan_profiles.hpp │ │ ├── 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 │ └── lib │ ├── libvulkan.so.1.3.290 │ └── vulkan-1.lib ├── dx10 └── main.cpp ├── dx11 └── main.cpp ├── dx12 └── main.cpp ├── dx9 └── main.cpp ├── linux_opengl ├── build.sh └── main.cpp ├── linux_vulkan ├── build.sh └── main.cpp ├── macos_metal ├── build.sh ├── macOS │ └── Info-macOS.plist └── main.mm ├── macos_opengl2 ├── build.sh └── main.mm ├── macos_opengl3 ├── build.sh └── main.mm ├── overlay_example └── library_main.cpp ├── test_overlay └── library_main.cpp ├── windows_opengl3 └── main.cpp ├── windows_shaders_precompile ├── dx10_shaders.cpp ├── dx11_shaders.cpp ├── dx12_shaders.cpp ├── dx9_shaders.cpp ├── main.cpp ├── sha256.cpp ├── sha256.h └── shaders.h └── windows_vulkan └── main.cpp /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/LICENSE -------------------------------------------------------------------------------- /include/InGameOverlay/RendererDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/include/InGameOverlay/RendererDetector.h -------------------------------------------------------------------------------- /include/InGameOverlay/RendererHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/include/InGameOverlay/RendererHook.h -------------------------------------------------------------------------------- /include/InGameOverlay/RendererResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/include/InGameOverlay/RendererResource.h -------------------------------------------------------------------------------- /src/BaseHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/BaseHook.cpp -------------------------------------------------------------------------------- /src/BaseHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/BaseHook.h -------------------------------------------------------------------------------- /src/Internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Internal.cpp -------------------------------------------------------------------------------- /src/InternalIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/InternalIncludes.h -------------------------------------------------------------------------------- /src/Linux/OpenGLXHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/OpenGLXHook.cpp -------------------------------------------------------------------------------- /src/Linux/OpenGLXHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/OpenGLXHook.h -------------------------------------------------------------------------------- /src/Linux/RendererDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/RendererDetector.cpp -------------------------------------------------------------------------------- /src/Linux/VulkanHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/VulkanHook.cpp -------------------------------------------------------------------------------- /src/Linux/VulkanHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/VulkanHook.h -------------------------------------------------------------------------------- /src/Linux/X11Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/X11Hook.cpp -------------------------------------------------------------------------------- /src/Linux/X11Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Linux/X11Hook.h -------------------------------------------------------------------------------- /src/MacOSX/MetalHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/MetalHook.h -------------------------------------------------------------------------------- /src/MacOSX/MetalHook.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/MetalHook.mm -------------------------------------------------------------------------------- /src/MacOSX/NSViewHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/NSViewHook.h -------------------------------------------------------------------------------- /src/MacOSX/NSViewHook.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/NSViewHook.mm -------------------------------------------------------------------------------- /src/MacOSX/OpenGLHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/OpenGLHook.h -------------------------------------------------------------------------------- /src/MacOSX/OpenGLHook.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/OpenGLHook.mm -------------------------------------------------------------------------------- /src/MacOSX/RendererDetector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/MacOSX/RendererDetector.mm -------------------------------------------------------------------------------- /src/RendererHookInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/RendererHookInternal.cpp -------------------------------------------------------------------------------- /src/RendererHookInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/RendererHookInternal.h -------------------------------------------------------------------------------- /src/RendererResourceInternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/RendererResourceInternal.cpp -------------------------------------------------------------------------------- /src/RendererResourceInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/RendererResourceInternal.h -------------------------------------------------------------------------------- /src/VulkanHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanHelpers.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std_decode.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h264std_encode.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std_decode.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codec_h265std_encode.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vk_video/vulkan_video_codecs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vk_video/vulkan_video_codecs_common.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/utility/vk_format_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/utility/vk_format_utils.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vk_enum_string_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vk_enum_string_helper.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vk_icd.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vk_layer.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vk_platform.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan.cppm -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_android.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_beta.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_directfb.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_enums.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_extension_inspection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_extension_inspection.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_format_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_format_traits.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_fuchsia.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_funcs.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_handles.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_hash.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_hpp_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_hpp_macros.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_macos.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_metal.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_profiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_profiles.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_raii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_raii.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_screen.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_shared.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_static_assertions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_static_assertions.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_structs.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_to_string.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_video.hpp -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_wayland.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_win32.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_xlib.h -------------------------------------------------------------------------------- /src/VulkanSDK/include/vulkan/vulkan_xlib_xrandr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/VulkanSDK/include/vulkan/vulkan_xlib_xrandr.h -------------------------------------------------------------------------------- /src/Windows/DX10Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX10Hook.cpp -------------------------------------------------------------------------------- /src/Windows/DX10Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX10Hook.h -------------------------------------------------------------------------------- /src/Windows/DX11Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX11Hook.cpp -------------------------------------------------------------------------------- /src/Windows/DX11Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX11Hook.h -------------------------------------------------------------------------------- /src/Windows/DX12Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX12Hook.cpp -------------------------------------------------------------------------------- /src/Windows/DX12Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX12Hook.h -------------------------------------------------------------------------------- /src/Windows/DX9Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX9Hook.cpp -------------------------------------------------------------------------------- /src/Windows/DX9Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DX9Hook.h -------------------------------------------------------------------------------- /src/Windows/DXVKDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DXVKDetector.h -------------------------------------------------------------------------------- /src/Windows/DirectXVTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/DirectXVTables.h -------------------------------------------------------------------------------- /src/Windows/OpenGLHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/OpenGLHook.cpp -------------------------------------------------------------------------------- /src/Windows/OpenGLHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/OpenGLHook.h -------------------------------------------------------------------------------- /src/Windows/RendererDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/RendererDetector.cpp -------------------------------------------------------------------------------- /src/Windows/SimpleWindowsGamingInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/SimpleWindowsGamingInput.cpp -------------------------------------------------------------------------------- /src/Windows/SimpleWindowsGamingInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/SimpleWindowsGamingInput.h -------------------------------------------------------------------------------- /src/Windows/VulkanHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/VulkanHook.cpp -------------------------------------------------------------------------------- /src/Windows/VulkanHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/VulkanHook.h -------------------------------------------------------------------------------- /src/Windows/WindowsGamingInputVTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/WindowsGamingInputVTables.h -------------------------------------------------------------------------------- /src/Windows/WindowsHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/WindowsHook.cpp -------------------------------------------------------------------------------- /src/Windows/WindowsHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/Windows/WindowsHook.h -------------------------------------------------------------------------------- /src/glad2/include/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/glad2/include/glad/gl.h -------------------------------------------------------------------------------- /src/mpmc_bounded_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/src/mpmc_bounded_queue.h -------------------------------------------------------------------------------- /tests/common/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /tests/common/glfw/CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /tests/common/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /tests/common/glfw/CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /tests/common/glfw/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /tests/common/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/getopt.c -------------------------------------------------------------------------------- /tests/common/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/getopt.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/linmath.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /tests/common/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/fractional-scale-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/fractional-scale-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/idle-inhibit-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/idle-inhibit-unstable-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/pointer-constraints-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/pointer-constraints-unstable-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/relative-pointer-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/relative-pointer-unstable-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/viewporter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/viewporter.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/wayland.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/wayland.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/xdg-activation-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/xdg-activation-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/xdg-decoration-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/xdg-decoration-unstable-v1.xml -------------------------------------------------------------------------------- /tests/common/glfw/deps/wayland/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/deps/wayland/xdg-shell.xml -------------------------------------------------------------------------------- /tests/common/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /tests/common/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /tests/common/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /tests/common/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /tests/common/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/context.c -------------------------------------------------------------------------------- /tests/common/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/egl_context.c -------------------------------------------------------------------------------- /tests/common/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /tests/common/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/glx_context.c -------------------------------------------------------------------------------- /tests/common/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/init.c -------------------------------------------------------------------------------- /tests/common/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/input.c -------------------------------------------------------------------------------- /tests/common/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/internal.h -------------------------------------------------------------------------------- /tests/common/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /tests/common/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /tests/common/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/mappings.h -------------------------------------------------------------------------------- /tests/common/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /tests/common/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/monitor.c -------------------------------------------------------------------------------- /tests/common/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /tests/common/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_init.c -------------------------------------------------------------------------------- /tests/common/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /tests/common/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /tests/common/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /tests/common/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/null_window.c -------------------------------------------------------------------------------- /tests/common/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /tests/common/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/platform.c -------------------------------------------------------------------------------- /tests/common/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_module.c -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_poll.c -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_poll.h -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_time.c -------------------------------------------------------------------------------- /tests/common/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/posix_time.h -------------------------------------------------------------------------------- /tests/common/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/vulkan.c -------------------------------------------------------------------------------- /tests/common/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_init.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_module.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_time.c -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_time.h -------------------------------------------------------------------------------- /tests/common/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/win32_window.c -------------------------------------------------------------------------------- /tests/common/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/window.c -------------------------------------------------------------------------------- /tests/common/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/wl_init.c -------------------------------------------------------------------------------- /tests/common/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /tests/common/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/wl_window.c -------------------------------------------------------------------------------- /tests/common/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/x11_init.c -------------------------------------------------------------------------------- /tests/common/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /tests/common/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /tests/common/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/x11_window.c -------------------------------------------------------------------------------- /tests/common/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /tests/common/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /tests/common/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /tests/common/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_dx12.h -------------------------------------------------------------------------------- /tests/common/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_osx.h -------------------------------------------------------------------------------- /tests/common/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_osx.mm -------------------------------------------------------------------------------- /tests/common/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /tests/common/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /tests/common/ingameoverlay_imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/ingameoverlay_imconfig.h -------------------------------------------------------------------------------- /tests/common/right_facing_fist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/right_facing_fist.h -------------------------------------------------------------------------------- /tests/common/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/stb_image.h -------------------------------------------------------------------------------- /tests/common/thumbs_down.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/thumbs_down.h -------------------------------------------------------------------------------- /tests/common/thumbs_down_small.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/thumbs_down_small.h -------------------------------------------------------------------------------- /tests/common/thumbs_up.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/thumbs_up.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/dxc/WinAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/dxc/WinAdapter.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/dxc/dxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/dxc/dxcapi.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Include/ResourceLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Include/ResourceLimits.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Include/glslang_c_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Include/glslang_c_interface.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Include/glslang_c_shader_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Include/glslang_c_shader_types.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/MachineIndependent/Versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/MachineIndependent/Versions.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Public/ResourceLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Public/ResourceLimits.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Public/ShaderLang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Public/ShaderLang.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/Public/resource_limits_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/Public/resource_limits_c.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/SPIRV/GlslangToSpv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/SPIRV/GlslangToSpv.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/SPIRV/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/SPIRV/Logger.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/SPIRV/SPVRemapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/SPIRV/SPVRemapper.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/glslang/SPIRV/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/glslang/SPIRV/spirv.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/shaderc/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/shaderc/env.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/shaderc/shaderc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/shaderc/shaderc.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/shaderc/shaderc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/shaderc/shaderc.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/shaderc/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/shaderc/status.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/shaderc/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/shaderc/visibility.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/GLSL.std.450.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.hpp11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.hpp11 -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.json -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.lua -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-headers/spirv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-headers/spirv.py -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-tools/libspirv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-tools/libspirv.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-tools/libspirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-tools/libspirv.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-tools/linker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-tools/linker.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv-tools/optimizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv-tools/optimizer.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/GLSL.std.450.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cfg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cfg.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_common.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cross.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cross.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cross_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cross_c.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cross_containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cross_containers.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cross_error_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cross_error_handling.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_cross_parsed_ir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_cross_parsed_ir.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_glsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_glsl.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_hlsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_hlsl.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_msl.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_parser.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/spirv_cross/spirv_reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/spirv_cross/spirv_reflect.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std_decode.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h264std_encode.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std_decode.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codec_h265std_encode.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vk_video/vulkan_video_codecs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vk_video/vulkan_video_codecs_common.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/utility/vk_format_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/utility/vk_format_utils.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vk_enum_string_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vk_enum_string_helper.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vk_icd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vk_icd.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vk_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vk_layer.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vk_platform.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan.cppm -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_android.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_beta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_beta.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_core.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_directfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_directfb.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_enums.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_extension_inspection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_extension_inspection.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_format_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_format_traits.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_fuchsia.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_funcs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_funcs.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_ggp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_ggp.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_handles.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_hash.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_hpp_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_hpp_macros.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_ios.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_macos.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_metal.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_profiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_profiles.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_raii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_raii.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_screen.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_shared.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_static_assertions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_static_assertions.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_structs.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_to_string.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_vi.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_video.hpp -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_wayland.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_win32.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_xcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_xcb.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_xlib.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/include/vulkan/vulkan_xlib_xrandr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/include/vulkan/vulkan_xlib_xrandr.h -------------------------------------------------------------------------------- /tests/common/vulkansdk/lib/libvulkan.so.1.3.290: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/lib/libvulkan.so.1.3.290 -------------------------------------------------------------------------------- /tests/common/vulkansdk/lib/vulkan-1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/common/vulkansdk/lib/vulkan-1.lib -------------------------------------------------------------------------------- /tests/dx10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/dx10/main.cpp -------------------------------------------------------------------------------- /tests/dx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/dx11/main.cpp -------------------------------------------------------------------------------- /tests/dx12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/dx12/main.cpp -------------------------------------------------------------------------------- /tests/dx9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/dx9/main.cpp -------------------------------------------------------------------------------- /tests/linux_opengl/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/linux_opengl/build.sh -------------------------------------------------------------------------------- /tests/linux_opengl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/linux_opengl/main.cpp -------------------------------------------------------------------------------- /tests/linux_vulkan/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/linux_vulkan/build.sh -------------------------------------------------------------------------------- /tests/linux_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/linux_vulkan/main.cpp -------------------------------------------------------------------------------- /tests/macos_metal/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_metal/build.sh -------------------------------------------------------------------------------- /tests/macos_metal/macOS/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_metal/macOS/Info-macOS.plist -------------------------------------------------------------------------------- /tests/macos_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_metal/main.mm -------------------------------------------------------------------------------- /tests/macos_opengl2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_opengl2/build.sh -------------------------------------------------------------------------------- /tests/macos_opengl2/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_opengl2/main.mm -------------------------------------------------------------------------------- /tests/macos_opengl3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_opengl3/build.sh -------------------------------------------------------------------------------- /tests/macos_opengl3/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/macos_opengl3/main.mm -------------------------------------------------------------------------------- /tests/overlay_example/library_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/overlay_example/library_main.cpp -------------------------------------------------------------------------------- /tests/test_overlay/library_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/test_overlay/library_main.cpp -------------------------------------------------------------------------------- /tests/windows_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_opengl3/main.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/dx10_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/dx10_shaders.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/dx11_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/dx11_shaders.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/dx12_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/dx12_shaders.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/dx9_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/dx9_shaders.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/main.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/sha256.cpp -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/sha256.h -------------------------------------------------------------------------------- /tests/windows_shaders_precompile/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_shaders_precompile/shaders.h -------------------------------------------------------------------------------- /tests/windows_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nemirtingas/ingame_overlay/HEAD/tests/windows_vulkan/main.cpp --------------------------------------------------------------------------------