├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE.md ├── README.md ├── XRmonitors.sln ├── XRmonitorsCamera ├── CMakeLists.txt ├── msvc │ ├── XRmonitorsCamera.rc │ ├── XRmonitorsCamera.vcxproj │ ├── XRmonitorsCamera.vcxproj.filters │ └── resource.h └── src │ └── implant_main.cpp ├── XRmonitorsHologram ├── ApplicationSettings.cpp ├── ApplicationSettings.hpp ├── CameraCalibration.cpp ├── CameraCalibration.hpp ├── CameraImager.cpp ├── CameraImager.hpp ├── CameraRenderer.cpp ├── CameraRenderer.hpp ├── D3D11CrossAdapterDuplication.cpp ├── D3D11CrossAdapterDuplication.hpp ├── D3D11DuplicationCommon.cpp ├── D3D11DuplicationCommon.hpp ├── D3D11SameAdapterDuplication.cpp ├── D3D11SameAdapterDuplication.hpp ├── D3D11Tools.cpp ├── D3D11Tools.hpp ├── HolographicInputBanner.cpp ├── HolographicInputBanner.hpp ├── InputWindow.cpp ├── InputWindow.hpp ├── KeyboardInput.cpp ├── KeyboardInput.hpp ├── Main.cpp ├── Main.hpp ├── MonitorChangeWatcher.cpp ├── MonitorChangeWatcher.hpp ├── MonitorEnumerator.cpp ├── MonitorEnumerator.hpp ├── MonitorRenderController.cpp ├── MonitorRenderController.hpp ├── MonitorRenderModel.cpp ├── MonitorRenderModel.hpp ├── MonitorRenderView.cpp ├── MonitorRenderView.hpp ├── MonitorTools.cpp ├── MonitorTools.hpp ├── MsXrLoader │ ├── CMakeLists.txt │ ├── Directory.Build.props │ ├── api_layer_interface.cpp │ ├── api_layer_interface.hpp │ ├── common_cmake_config.h │ ├── exception_handling.hpp │ ├── extra_algorithms.h │ ├── filesystem_utils.cpp │ ├── filesystem_utils.hpp │ ├── hex_and_handles.h │ ├── json │ │ ├── json-forwards.h │ │ └── json.h │ ├── jsoncpp.cpp │ ├── loader.rc │ ├── loader_core.cpp │ ├── loader_instance.cpp │ ├── loader_instance.hpp │ ├── loader_interfaces.h │ ├── loader_logger.cpp │ ├── loader_logger.hpp │ ├── loader_logger_recorders.cpp │ ├── loader_logger_recorders.hpp │ ├── loader_platform.hpp │ ├── manifest_file.cpp │ ├── manifest_file.hpp │ ├── object_info.cpp │ ├── object_info.h │ ├── openxr-loader.def │ ├── openxr-loader.map │ ├── openxr.pc.in │ ├── openxr_loader_uwp.vcxproj │ ├── openxr_loader_win32.vcxproj │ ├── openxr_platform_defines.h │ ├── platform_utils.hpp │ ├── runtime_interface.cpp │ ├── runtime_interface.hpp │ ├── xr_dependencies.h │ ├── xr_generated_dispatch_table.c │ ├── xr_generated_dispatch_table.h │ ├── xr_generated_loader.cpp │ ├── xr_generated_loader.hpp │ └── xr_linear.h ├── OpenXrD3D11.cpp ├── OpenXrD3D11.hpp ├── OpenXrD3D11Swapchains.cpp ├── OpenXrD3D11Swapchains.hpp ├── Plugins.cpp ├── Plugins.hpp ├── Resource.h ├── WindowsHolographic.cpp ├── WindowsHolographic.hpp ├── XRmonitorsHologram.vcxproj ├── XRmonitorsHologram.vcxproj.filters ├── XRmonitorsHologram1.rc ├── XRmonitors_SQUAREICON.ico ├── XrUtility │ ├── XrError.cpp │ ├── XrError.h │ ├── XrHandle.h │ └── XrMath.h ├── _attic_ │ ├── AppMain.cpp │ ├── AppMain.h │ ├── BezelRenderer.cpp │ ├── BezelRenderer.hpp │ ├── Common │ │ ├── CameraResources.cpp │ │ ├── CameraResources.h │ │ ├── DeviceResources.cpp │ │ ├── DeviceResources.h │ │ ├── DirectXHelper.h │ │ └── StepTimer.h │ ├── DesktopRender.cpp │ ├── DesktopRender.hpp │ ├── GlobalRenderState.cpp │ ├── GlobalRenderState.hpp │ ├── MonitorHologramMain.cpp │ ├── MonitorHologramMain.h │ ├── OpenXrGraphics.cpp │ ├── OpenXrGraphics.hpp │ ├── OpenXrProgram.hpp │ ├── QuadLayersTracker.cpp │ ├── QuadLayersTracker.hpp │ ├── SpatialInputHandler.cpp │ ├── SpatialInputHandler.h │ ├── pch.cpp │ ├── pch.h │ ├── render_bezels │ │ ├── BezelPixelShader.hlsl │ │ ├── BezelPixelShader.inl │ │ ├── BezelVPRTVertexShader.hlsl │ │ ├── BezelVPRTVertexShader.inl │ │ ├── BezelVertexShader.hlsl │ │ ├── BezelVertexShader.inl │ │ ├── BezelVertexShaderShared.hlsl │ │ ├── ShaderBezelRenderer.cpp │ │ ├── ShaderBezelRenderer.h │ │ └── ShaderBezelStructures.h │ ├── render_cameras │ │ ├── CameraPixelShader.hlsl │ │ ├── CameraPixelShader.inl │ │ ├── CameraVPRTVertexShader.hlsl │ │ ├── CameraVPRTVertexShader.inl │ │ ├── CameraVertexShader.hlsl │ │ ├── CameraVertexShader.inl │ │ ├── CameraVertexShaderShared.hlsl │ │ ├── ShaderCameraRenderer.cpp │ │ ├── ShaderCameraRenderer.h │ │ ├── ShaderCameraStructures.h │ │ └── ShaderMonitorStructures.h │ └── render_monitors │ │ ├── MonitorPixelShader.hlsl │ │ ├── MonitorPixelShader.inl │ │ ├── MonitorVPRTVertexShader.hlsl │ │ ├── MonitorVPRTVertexShader.inl │ │ ├── MonitorVertexShader.hlsl │ │ ├── MonitorVertexShader.inl │ │ ├── MonitorVertexShaderShared.hlsl │ │ ├── ShaderMonitorRenderer.cpp │ │ ├── ShaderMonitorRenderer.h │ │ └── ShaderMonitorStructures.h ├── camera_calibration.ini ├── openxr │ ├── openxr.h │ ├── openxr_platform.h │ ├── openxr_platform_defines.h │ └── openxr_reflection.h ├── stdafx.cpp ├── stdafx.h └── thirdparty │ ├── DirectXTK │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── Audio │ │ ├── AudioEngine.cpp │ │ ├── DirectXTKAudio_Desktop_2015_DXSDK.vcxproj │ │ ├── DirectXTKAudio_Desktop_2015_DXSDK.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2015_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2015_Win8.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_DXSDK.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2017_Win8.vcxproj.filters │ │ ├── DirectXTKAudio_Desktop_2019_Win8.vcxproj │ │ ├── DirectXTKAudio_Desktop_2019_Win8.vcxproj.filters │ │ ├── DynamicSoundEffectInstance.cpp │ │ ├── SoundCommon.cpp │ │ ├── SoundCommon.h │ │ ├── SoundEffect.cpp │ │ ├── SoundEffectInstance.cpp │ │ ├── WAVFileReader.cpp │ │ ├── WAVFileReader.h │ │ ├── WaveBank.cpp │ │ ├── WaveBankReader.cpp │ │ └── WaveBankReader.h │ ├── DirectXTK_Desktop_2015.sln │ ├── DirectXTK_Desktop_2015.vcxproj │ ├── DirectXTK_Desktop_2015.vcxproj.filters │ ├── DirectXTK_Desktop_2015_DXSDK.sln │ ├── DirectXTK_Desktop_2015_Win10.sln │ ├── DirectXTK_Desktop_2015_Win10.vcxproj │ ├── DirectXTK_Desktop_2015_Win10.vcxproj.filters │ ├── DirectXTK_Desktop_2017.sln │ ├── DirectXTK_Desktop_2017.vcxproj │ ├── DirectXTK_Desktop_2017.vcxproj.filters │ ├── DirectXTK_Desktop_2017_DXSDK.sln │ ├── DirectXTK_Desktop_2017_Win10.sln │ ├── DirectXTK_Desktop_2017_Win10.vcxproj │ ├── DirectXTK_Desktop_2017_Win10.vcxproj.filters │ ├── DirectXTK_Desktop_2019.sln │ ├── DirectXTK_Desktop_2019.vcxproj │ ├── DirectXTK_Desktop_2019.vcxproj.filters │ ├── DirectXTK_Desktop_2019_Win10.sln │ ├── DirectXTK_Desktop_2019_Win10.vcxproj │ ├── DirectXTK_Desktop_2019_Win10.vcxproj.filters │ ├── DirectXTK_Windows10.sln │ ├── DirectXTK_Windows10.vcxproj │ ├── DirectXTK_Windows10.vcxproj.filters │ ├── DirectXTK_Windows10_2015.sln │ ├── DirectXTK_Windows10_2015.vcxproj │ ├── DirectXTK_Windows10_2015.vcxproj.filters │ ├── DirectXTK_XboxOneXDK_2015.sln │ ├── DirectXTK_XboxOneXDK_2015.vcxproj │ ├── DirectXTK_XboxOneXDK_2015.vcxproj.filters │ ├── DirectXTK_XboxOneXDK_2017.sln │ ├── DirectXTK_XboxOneXDK_2017.vcxproj │ ├── DirectXTK_XboxOneXDK_2017.vcxproj.filters │ ├── Inc │ │ ├── Audio.h │ │ ├── CommonStates.h │ │ ├── DDSTextureLoader.h │ │ ├── DirectXHelpers.h │ │ ├── Effects.h │ │ ├── GamePad.h │ │ ├── GeometricPrimitive.h │ │ ├── GraphicsMemory.h │ │ ├── Keyboard.h │ │ ├── Model.h │ │ ├── Mouse.h │ │ ├── PostProcess.h │ │ ├── PrimitiveBatch.h │ │ ├── ScreenGrab.h │ │ ├── SimpleMath.h │ │ ├── SimpleMath.inl │ │ ├── SpriteBatch.h │ │ ├── SpriteFont.h │ │ ├── VertexTypes.h │ │ ├── WICTextureLoader.h │ │ └── XboxDDSTextureLoader.h │ ├── LICENSE │ ├── MakeSpriteFont │ │ ├── BitmapImporter.cs │ │ ├── BitmapUtils.cs │ │ ├── CharacterRegion.cs │ │ ├── CommandLineOptions.cs │ │ ├── CommandLineParser.cs │ │ ├── Glyph.cs │ │ ├── GlyphCropper.cs │ │ ├── GlyphPacker.cs │ │ ├── IFontImporter.cs │ │ ├── MakeSpriteFont.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SpriteFontWriter.cs │ │ └── TrueTypeImporter.cs │ ├── Readme.txt │ ├── Src │ │ ├── AlignedNew.h │ │ ├── AlphaTestEffect.cpp │ │ ├── BasicEffect.cpp │ │ ├── BasicPostProcess.cpp │ │ ├── Bezier.h │ │ ├── BinaryReader.cpp │ │ ├── BinaryReader.h │ │ ├── CommonStates.cpp │ │ ├── ConstantBuffer.h │ │ ├── DDSTextureLoader.cpp │ │ ├── DGSLEffect.cpp │ │ ├── DGSLEffectFactory.cpp │ │ ├── DebugEffect.cpp │ │ ├── DemandCreate.h │ │ ├── DualPostProcess.cpp │ │ ├── DualTextureEffect.cpp │ │ ├── EffectCommon.cpp │ │ ├── EffectCommon.h │ │ ├── EffectFactory.cpp │ │ ├── EnvironmentMapEffect.cpp │ │ ├── GamePad.cpp │ │ ├── GeometricPrimitive.cpp │ │ ├── Geometry.cpp │ │ ├── Geometry.h │ │ ├── GraphicsMemory.cpp │ │ ├── Keyboard.cpp │ │ ├── LoaderHelpers.h │ │ ├── Model.cpp │ │ ├── ModelLoadCMO.cpp │ │ ├── ModelLoadSDKMESH.cpp │ │ ├── ModelLoadVBO.cpp │ │ ├── Mouse.cpp │ │ ├── NormalMapEffect.cpp │ │ ├── PBREffect.cpp │ │ ├── PBREffectFactory.cpp │ │ ├── PlatformHelpers.h │ │ ├── PrimitiveBatch.cpp │ │ ├── SDKMesh.h │ │ ├── ScreenGrab.cpp │ │ ├── Shaders │ │ │ ├── AlphaTestEffect.fx │ │ │ ├── BasicEffect.fx │ │ │ ├── Common.fxh │ │ │ ├── CompileShaders.cmd │ │ │ ├── DGSLEffect.fx │ │ │ ├── DGSLLambert.hlsl │ │ │ ├── DGSLPhong.hlsl │ │ │ ├── DGSLUnlit.hlsl │ │ │ ├── DebugEffect.fx │ │ │ ├── DualTextureEffect.fx │ │ │ ├── EnvironmentMapEffect.fx │ │ │ ├── Lighting.fxh │ │ │ ├── NormalMapEffect.fx │ │ │ ├── PBRCommon.fxh │ │ │ ├── PBREffect.fx │ │ │ ├── PixelPacking_Velocity.hlsli │ │ │ ├── PostProcess.fx │ │ │ ├── SkinnedEffect.fx │ │ │ ├── SpriteEffect.fx │ │ │ ├── Structures.fxh │ │ │ ├── ToneMap.fx │ │ │ └── Utilities.fxh │ │ ├── SharedResourcePool.h │ │ ├── SimpleMath.cpp │ │ ├── SkinnedEffect.cpp │ │ ├── SpriteBatch.cpp │ │ ├── SpriteFont.cpp │ │ ├── TeapotData.inc │ │ ├── ToneMapPostProcess.cpp │ │ ├── VertexTypes.cpp │ │ ├── WICTextureLoader.cpp │ │ ├── XboxDDSTextureLoader.cpp │ │ ├── dds.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── vbo.h │ └── XWBTool │ │ ├── xwbtool.cpp │ │ ├── xwbtool_Desktop_2015.vcxproj │ │ ├── xwbtool_Desktop_2015.vcxproj.filters │ │ ├── xwbtool_Desktop_2017.vcxproj │ │ ├── xwbtool_Desktop_2017.vcxproj.filters │ │ ├── xwbtool_Desktop_2019.vcxproj │ │ └── xwbtool_Desktop_2019.vcxproj.filters │ ├── INI.h │ ├── IncludeAsio.h │ ├── WinReg.hpp │ ├── asio.hpp │ ├── asio │ ├── associated_allocator.hpp │ ├── associated_executor.hpp │ ├── async_result.hpp │ ├── basic_datagram_socket.hpp │ ├── basic_deadline_timer.hpp │ ├── basic_io_object.hpp │ ├── basic_raw_socket.hpp │ ├── basic_seq_packet_socket.hpp │ ├── basic_serial_port.hpp │ ├── basic_signal_set.hpp │ ├── basic_socket.hpp │ ├── basic_socket_acceptor.hpp │ ├── basic_socket_iostream.hpp │ ├── basic_socket_streambuf.hpp │ ├── basic_stream_socket.hpp │ ├── basic_streambuf.hpp │ ├── basic_streambuf_fwd.hpp │ ├── basic_waitable_timer.hpp │ ├── bind_executor.hpp │ ├── buffer.hpp │ ├── buffered_read_stream.hpp │ ├── buffered_read_stream_fwd.hpp │ ├── buffered_stream.hpp │ ├── buffered_stream_fwd.hpp │ ├── buffered_write_stream.hpp │ ├── buffered_write_stream_fwd.hpp │ ├── buffers_iterator.hpp │ ├── completion_condition.hpp │ ├── connect.hpp │ ├── coroutine.hpp │ ├── datagram_socket_service.hpp │ ├── deadline_timer.hpp │ ├── deadline_timer_service.hpp │ ├── defer.hpp │ ├── detail │ │ ├── array.hpp │ │ ├── array_fwd.hpp │ │ ├── assert.hpp │ │ ├── atomic_count.hpp │ │ ├── base_from_completion_cond.hpp │ │ ├── bind_handler.hpp │ │ ├── buffer_resize_guard.hpp │ │ ├── buffer_sequence_adapter.hpp │ │ ├── buffered_stream_storage.hpp │ │ ├── call_stack.hpp │ │ ├── chrono.hpp │ │ ├── chrono_time_traits.hpp │ │ ├── completion_handler.hpp │ │ ├── config.hpp │ │ ├── consuming_buffers.hpp │ │ ├── cstddef.hpp │ │ ├── cstdint.hpp │ │ ├── date_time_fwd.hpp │ │ ├── deadline_timer_service.hpp │ │ ├── dependent_type.hpp │ │ ├── descriptor_ops.hpp │ │ ├── descriptor_read_op.hpp │ │ ├── descriptor_write_op.hpp │ │ ├── dev_poll_reactor.hpp │ │ ├── epoll_reactor.hpp │ │ ├── event.hpp │ │ ├── eventfd_select_interrupter.hpp │ │ ├── executor_op.hpp │ │ ├── fd_set_adapter.hpp │ │ ├── fenced_block.hpp │ │ ├── functional.hpp │ │ ├── gcc_arm_fenced_block.hpp │ │ ├── gcc_hppa_fenced_block.hpp │ │ ├── gcc_sync_fenced_block.hpp │ │ ├── gcc_x86_fenced_block.hpp │ │ ├── global.hpp │ │ ├── handler_alloc_helpers.hpp │ │ ├── handler_cont_helpers.hpp │ │ ├── handler_invoke_helpers.hpp │ │ ├── handler_tracking.hpp │ │ ├── handler_type_requirements.hpp │ │ ├── handler_work.hpp │ │ ├── hash_map.hpp │ │ ├── impl │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ ├── descriptor_ops.ipp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── dev_poll_reactor.ipp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── epoll_reactor.ipp │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ ├── handler_tracking.ipp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── kqueue_reactor.ipp │ │ │ ├── pipe_select_interrupter.ipp │ │ │ ├── posix_event.ipp │ │ │ ├── posix_mutex.ipp │ │ │ ├── posix_thread.ipp │ │ │ ├── posix_tss_ptr.ipp │ │ │ ├── reactive_descriptor_service.ipp │ │ │ ├── reactive_serial_port_service.ipp │ │ │ ├── reactive_socket_service_base.ipp │ │ │ ├── resolver_service_base.ipp │ │ │ ├── scheduler.ipp │ │ │ ├── select_reactor.hpp │ │ │ ├── select_reactor.ipp │ │ │ ├── service_registry.hpp │ │ │ ├── service_registry.ipp │ │ │ ├── signal_set_service.ipp │ │ │ ├── socket_ops.ipp │ │ │ ├── socket_select_interrupter.ipp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_executor_service.ipp │ │ │ ├── strand_service.hpp │ │ │ ├── strand_service.ipp │ │ │ ├── throw_error.ipp │ │ │ ├── timer_queue_ptime.ipp │ │ │ ├── timer_queue_set.ipp │ │ │ ├── win_event.ipp │ │ │ ├── win_iocp_handle_service.ipp │ │ │ ├── win_iocp_io_context.hpp │ │ │ ├── win_iocp_io_context.ipp │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ ├── win_mutex.ipp │ │ │ ├── win_object_handle_service.ipp │ │ │ ├── win_static_mutex.ipp │ │ │ ├── win_thread.ipp │ │ │ ├── win_tss_ptr.ipp │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ └── winsock_init.ipp │ │ ├── io_control.hpp │ │ ├── is_buffer_sequence.hpp │ │ ├── keyword_tss_ptr.hpp │ │ ├── kqueue_reactor.hpp │ │ ├── limits.hpp │ │ ├── local_free_on_block_exit.hpp │ │ ├── macos_fenced_block.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── noncopyable.hpp │ │ ├── null_event.hpp │ │ ├── null_fenced_block.hpp │ │ ├── null_global.hpp │ │ ├── null_mutex.hpp │ │ ├── null_reactor.hpp │ │ ├── null_signal_blocker.hpp │ │ ├── null_socket_service.hpp │ │ ├── null_static_mutex.hpp │ │ ├── null_thread.hpp │ │ ├── null_tss_ptr.hpp │ │ ├── object_pool.hpp │ │ ├── old_win_sdk_compat.hpp │ │ ├── op_queue.hpp │ │ ├── operation.hpp │ │ ├── pipe_select_interrupter.hpp │ │ ├── pop_options.hpp │ │ ├── posix_event.hpp │ │ ├── posix_fd_set_adapter.hpp │ │ ├── posix_global.hpp │ │ ├── posix_mutex.hpp │ │ ├── posix_signal_blocker.hpp │ │ ├── posix_static_mutex.hpp │ │ ├── posix_thread.hpp │ │ ├── posix_tss_ptr.hpp │ │ ├── push_options.hpp │ │ ├── reactive_descriptor_service.hpp │ │ ├── reactive_null_buffers_op.hpp │ │ ├── reactive_serial_port_service.hpp │ │ ├── reactive_socket_accept_op.hpp │ │ ├── reactive_socket_connect_op.hpp │ │ ├── reactive_socket_recv_op.hpp │ │ ├── reactive_socket_recvfrom_op.hpp │ │ ├── reactive_socket_recvmsg_op.hpp │ │ ├── reactive_socket_send_op.hpp │ │ ├── reactive_socket_sendto_op.hpp │ │ ├── reactive_socket_service.hpp │ │ ├── reactive_socket_service_base.hpp │ │ ├── reactive_wait_op.hpp │ │ ├── reactor.hpp │ │ ├── reactor_fwd.hpp │ │ ├── reactor_op.hpp │ │ ├── reactor_op_queue.hpp │ │ ├── recycling_allocator.hpp │ │ ├── regex_fwd.hpp │ │ ├── resolve_endpoint_op.hpp │ │ ├── resolve_op.hpp │ │ ├── resolver_service.hpp │ │ ├── resolver_service_base.hpp │ │ ├── scheduler.hpp │ │ ├── scheduler_operation.hpp │ │ ├── scheduler_thread_info.hpp │ │ ├── scoped_lock.hpp │ │ ├── scoped_ptr.hpp │ │ ├── select_interrupter.hpp │ │ ├── select_reactor.hpp │ │ ├── service_registry.hpp │ │ ├── signal_blocker.hpp │ │ ├── signal_handler.hpp │ │ ├── signal_init.hpp │ │ ├── signal_op.hpp │ │ ├── signal_set_service.hpp │ │ ├── socket_holder.hpp │ │ ├── socket_ops.hpp │ │ ├── socket_option.hpp │ │ ├── socket_select_interrupter.hpp │ │ ├── socket_types.hpp │ │ ├── solaris_fenced_block.hpp │ │ ├── static_mutex.hpp │ │ ├── std_event.hpp │ │ ├── std_global.hpp │ │ ├── std_mutex.hpp │ │ ├── std_static_mutex.hpp │ │ ├── std_thread.hpp │ │ ├── strand_executor_service.hpp │ │ ├── strand_service.hpp │ │ ├── thread.hpp │ │ ├── thread_context.hpp │ │ ├── thread_group.hpp │ │ ├── thread_info_base.hpp │ │ ├── throw_error.hpp │ │ ├── throw_exception.hpp │ │ ├── timer_queue.hpp │ │ ├── timer_queue_base.hpp │ │ ├── timer_queue_ptime.hpp │ │ ├── timer_queue_set.hpp │ │ ├── timer_scheduler.hpp │ │ ├── timer_scheduler_fwd.hpp │ │ ├── tss_ptr.hpp │ │ ├── type_traits.hpp │ │ ├── variadic_templates.hpp │ │ ├── wait_handler.hpp │ │ ├── wait_op.hpp │ │ ├── win_event.hpp │ │ ├── win_fd_set_adapter.hpp │ │ ├── win_fenced_block.hpp │ │ ├── win_global.hpp │ │ ├── win_iocp_handle_read_op.hpp │ │ ├── win_iocp_handle_service.hpp │ │ ├── win_iocp_handle_write_op.hpp │ │ ├── win_iocp_io_context.hpp │ │ ├── win_iocp_null_buffers_op.hpp │ │ ├── win_iocp_operation.hpp │ │ ├── win_iocp_overlapped_op.hpp │ │ ├── win_iocp_overlapped_ptr.hpp │ │ ├── win_iocp_serial_port_service.hpp │ │ ├── win_iocp_socket_accept_op.hpp │ │ ├── win_iocp_socket_connect_op.hpp │ │ ├── win_iocp_socket_recv_op.hpp │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ ├── win_iocp_socket_send_op.hpp │ │ ├── win_iocp_socket_service.hpp │ │ ├── win_iocp_socket_service_base.hpp │ │ ├── win_iocp_thread_info.hpp │ │ ├── win_iocp_wait_op.hpp │ │ ├── win_mutex.hpp │ │ ├── win_object_handle_service.hpp │ │ ├── win_static_mutex.hpp │ │ ├── win_thread.hpp │ │ ├── win_tss_ptr.hpp │ │ ├── winapp_thread.hpp │ │ ├── wince_thread.hpp │ │ ├── winrt_async_manager.hpp │ │ ├── winrt_async_op.hpp │ │ ├── winrt_resolve_op.hpp │ │ ├── winrt_resolver_service.hpp │ │ ├── winrt_socket_connect_op.hpp │ │ ├── winrt_socket_recv_op.hpp │ │ ├── winrt_socket_send_op.hpp │ │ ├── winrt_ssocket_service.hpp │ │ ├── winrt_ssocket_service_base.hpp │ │ ├── winrt_timer_scheduler.hpp │ │ ├── winrt_utils.hpp │ │ ├── winsock_init.hpp │ │ ├── work_dispatcher.hpp │ │ └── wrapped_handler.hpp │ ├── dispatch.hpp │ ├── error.hpp │ ├── error_code.hpp │ ├── execution_context.hpp │ ├── executor.hpp │ ├── executor_work_guard.hpp │ ├── generic │ │ ├── basic_endpoint.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ ├── raw_protocol.hpp │ │ ├── seq_packet_protocol.hpp │ │ └── stream_protocol.hpp │ ├── handler_alloc_hook.hpp │ ├── handler_continuation_hook.hpp │ ├── handler_invoke_hook.hpp │ ├── handler_type.hpp │ ├── high_resolution_timer.hpp │ ├── impl │ │ ├── buffered_read_stream.hpp │ │ ├── buffered_write_stream.hpp │ │ ├── connect.hpp │ │ ├── defer.hpp │ │ ├── dispatch.hpp │ │ ├── error.ipp │ │ ├── error_code.ipp │ │ ├── execution_context.hpp │ │ ├── execution_context.ipp │ │ ├── executor.hpp │ │ ├── executor.ipp │ │ ├── handler_alloc_hook.ipp │ │ ├── io_context.hpp │ │ ├── io_context.ipp │ │ ├── post.hpp │ │ ├── read.hpp │ │ ├── read_at.hpp │ │ ├── read_until.hpp │ │ ├── serial_port_base.hpp │ │ ├── serial_port_base.ipp │ │ ├── spawn.hpp │ │ ├── src.cpp │ │ ├── src.hpp │ │ ├── system_executor.hpp │ │ ├── system_executor.ipp │ │ ├── thread_pool.hpp │ │ ├── thread_pool.ipp │ │ ├── use_future.hpp │ │ ├── write.hpp │ │ └── write_at.hpp │ ├── io_context.hpp │ ├── io_context_strand.hpp │ ├── io_service.hpp │ ├── io_service_strand.hpp │ ├── ip │ │ ├── address.hpp │ │ ├── address_v4.hpp │ │ ├── address_v4_iterator.hpp │ │ ├── address_v4_range.hpp │ │ ├── address_v6.hpp │ │ ├── address_v6_iterator.hpp │ │ ├── address_v6_range.hpp │ │ ├── bad_address_cast.hpp │ │ ├── basic_endpoint.hpp │ │ ├── basic_resolver.hpp │ │ ├── basic_resolver_entry.hpp │ │ ├── basic_resolver_iterator.hpp │ │ ├── basic_resolver_query.hpp │ │ ├── basic_resolver_results.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ ├── impl │ │ │ │ └── endpoint.ipp │ │ │ └── socket_option.hpp │ │ ├── host_name.hpp │ │ ├── icmp.hpp │ │ ├── impl │ │ │ ├── address.hpp │ │ │ ├── address.ipp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4.ipp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6.ipp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── host_name.ipp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v4.ipp │ │ │ ├── network_v6.hpp │ │ │ └── network_v6.ipp │ │ ├── multicast.hpp │ │ ├── network_v4.hpp │ │ ├── network_v6.hpp │ │ ├── resolver_base.hpp │ │ ├── resolver_query_base.hpp │ │ ├── resolver_service.hpp │ │ ├── tcp.hpp │ │ ├── udp.hpp │ │ ├── unicast.hpp │ │ └── v6_only.hpp │ ├── is_executor.hpp │ ├── is_read_buffered.hpp │ ├── is_write_buffered.hpp │ ├── local │ │ ├── basic_endpoint.hpp │ │ ├── connect_pair.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ └── stream_protocol.hpp │ ├── package.hpp │ ├── placeholders.hpp │ ├── posix │ │ ├── basic_descriptor.hpp │ │ ├── basic_stream_descriptor.hpp │ │ ├── descriptor_base.hpp │ │ ├── stream_descriptor.hpp │ │ └── stream_descriptor_service.hpp │ ├── post.hpp │ ├── raw_socket_service.hpp │ ├── read.hpp │ ├── read_at.hpp │ ├── read_until.hpp │ ├── seq_packet_socket_service.hpp │ ├── serial_port.hpp │ ├── serial_port_base.hpp │ ├── serial_port_service.hpp │ ├── signal_set.hpp │ ├── signal_set_service.hpp │ ├── socket_acceptor_service.hpp │ ├── socket_base.hpp │ ├── spawn.hpp │ ├── ssl.hpp │ ├── ssl │ │ ├── context.hpp │ │ ├── context_base.hpp │ │ ├── detail │ │ │ ├── buffered_handshake_op.hpp │ │ │ ├── engine.hpp │ │ │ ├── handshake_op.hpp │ │ │ ├── impl │ │ │ │ ├── engine.ipp │ │ │ │ └── openssl_init.ipp │ │ │ ├── io.hpp │ │ │ ├── openssl_init.hpp │ │ │ ├── openssl_types.hpp │ │ │ ├── password_callback.hpp │ │ │ ├── read_op.hpp │ │ │ ├── shutdown_op.hpp │ │ │ ├── stream_core.hpp │ │ │ ├── verify_callback.hpp │ │ │ └── write_op.hpp │ │ ├── error.hpp │ │ ├── impl │ │ │ ├── context.hpp │ │ │ ├── context.ipp │ │ │ ├── error.ipp │ │ │ ├── rfc2818_verification.ipp │ │ │ └── src.hpp │ │ ├── rfc2818_verification.hpp │ │ ├── stream.hpp │ │ ├── stream_base.hpp │ │ ├── verify_context.hpp │ │ └── verify_mode.hpp │ ├── steady_timer.hpp │ ├── strand.hpp │ ├── stream_socket_service.hpp │ ├── streambuf.hpp │ ├── system_error.hpp │ ├── system_executor.hpp │ ├── system_timer.hpp │ ├── thread.hpp │ ├── thread_pool.hpp │ ├── time_traits.hpp │ ├── ts │ │ ├── buffer.hpp │ │ ├── executor.hpp │ │ ├── internet.hpp │ │ ├── io_context.hpp │ │ ├── networking.hpp │ │ ├── socket.hpp │ │ ├── thread_pool.hpp │ │ └── timer.hpp │ ├── unyield.hpp │ ├── use_future.hpp │ ├── uses_executor.hpp │ ├── version.hpp │ ├── wait_traits.hpp │ ├── waitable_timer_service.hpp │ ├── windows │ │ ├── basic_handle.hpp │ │ ├── basic_object_handle.hpp │ │ ├── basic_random_access_handle.hpp │ │ ├── basic_stream_handle.hpp │ │ ├── object_handle.hpp │ │ ├── object_handle_service.hpp │ │ ├── overlapped_ptr.hpp │ │ ├── random_access_handle.hpp │ │ ├── random_access_handle_service.hpp │ │ ├── stream_handle.hpp │ │ └── stream_handle_service.hpp │ ├── write.hpp │ ├── write_at.hpp │ └── yield.hpp │ └── json.hpp ├── XRmonitorsService ├── CMakeLists.txt ├── msvc │ ├── MrCamService.vcxproj │ ├── MrCamService.vcxproj.filters │ ├── XRmonitorsService.rc │ └── resource.h └── src │ ├── CameraServer.cpp │ ├── CameraServer.hpp │ ├── RemoteProcess.cpp │ ├── RemoteProcess.hpp │ ├── UsbHubPowerFix.cpp │ ├── UsbHubPowerFix.hpp │ └── server_main.cpp ├── XRmonitorsSetup ├── XRmonitorsInstaller │ ├── 00_WelcomePanel.Designer.cs │ ├── 00_WelcomePanel.cs │ ├── 00_WelcomePanel.resx │ ├── 01_LegalPanel.Designer.cs │ ├── 01_LegalPanel.cs │ ├── 01_LegalPanel.resx │ ├── 03_InstallPanel.Designer.cs │ ├── 03_InstallPanel.cs │ ├── 03_InstallPanel.resx │ ├── 04_ProgressPanel.Designer.cs │ ├── 04_ProgressPanel.cs │ ├── 04_ProgressPanel.resx │ ├── 05_CompletePanel.Designer.cs │ ├── 05_CompletePanel.cs │ ├── 05_CompletePanel.resx │ ├── 06_FailedPanel.Designer.cs │ ├── 06_FailedPanel.cs │ ├── 06_FailedPanel.resx │ ├── 10_RemovePanel.Designer.cs │ ├── 10_RemovePanel.cs │ ├── 10_RemovePanel.resx │ ├── 11_RemoveProgressPanel.Designer.cs │ ├── 11_RemoveProgressPanel.cs │ ├── 11_RemoveProgressPanel.resx │ ├── 12_RemoveDonePanel.Designer.cs │ ├── 12_RemoveDonePanel.cs │ ├── 12_RemoveDonePanel.resx │ ├── 13_RemoveFailedPanel.Designer.cs │ ├── 13_RemoveFailedPanel.cs │ ├── 13_RemoveFailedPanel.resx │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── 160x160_FAVICON.png │ │ ├── 400x400_FAVICON.png │ │ ├── 400x400_SQUARE ICON.png │ │ └── screencap1.png │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── XRmonitorsInstaller.csproj │ ├── XRmonitors_SQUAREICON.ico │ ├── app.manifest │ └── packages.config ├── XRmonitorsSetup.sln └── XRmonitorsSetup │ ├── App.config │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── Resources │ ├── Microsoft.VisualStudio.Utilities.dll │ ├── Newtonsoft.Json.dll │ ├── PublicCertificate.cer │ └── camera_calibration.ini │ ├── XRmonitorsSetup.csproj │ ├── XRmonitors_SQUAREICON.ico │ └── app.manifest ├── XRmonitorsUI ├── DarkUI │ ├── Collections │ │ ├── ObservableList.cs │ │ └── ObservableListModified.cs │ ├── Config │ │ ├── Colors.cs │ │ └── Consts.cs │ ├── Controls │ │ ├── DarkButton.cs │ │ ├── DarkButtonStyle.cs │ │ ├── DarkCheckBox.cs │ │ ├── DarkContentAlignment.cs │ │ ├── DarkContextMenu.cs │ │ ├── DarkControlState.cs │ │ ├── DarkLabel.cs │ │ ├── DarkListItem.cs │ │ ├── DarkListView.cs │ │ ├── DarkMenuStrip.cs │ │ ├── DarkRadioButton.cs │ │ ├── DarkScrollBar.cs │ │ ├── DarkScrollBase.cs │ │ ├── DarkScrollOrientation.cs │ │ ├── DarkScrollView.cs │ │ ├── DarkSectionPanel.cs │ │ ├── DarkSeparator.cs │ │ ├── DarkStatusStrip.cs │ │ ├── DarkTextBox.cs │ │ ├── DarkTitle.cs │ │ ├── DarkToolStrip.cs │ │ ├── DarkTreeNode.cs │ │ ├── DarkTreeView.cs │ │ └── ScrollValueEventArgs.cs │ ├── DarkUI.csproj │ ├── Docking │ │ ├── DarkDockArea.cs │ │ ├── DarkDockContent.cs │ │ ├── DarkDockGroup.cs │ │ ├── DarkDockPanel.cs │ │ ├── DarkDockRegion.cs │ │ ├── DarkDockSplitter.cs │ │ ├── DarkDockTab.cs │ │ ├── DarkDockTabArea.cs │ │ ├── DarkDocument.cs │ │ ├── DarkSplitterType.cs │ │ ├── DarkToolWindow.cs │ │ ├── DockContentEventArgs.cs │ │ ├── DockDropArea.cs │ │ ├── DockDropCollection.cs │ │ ├── DockGroupState.cs │ │ ├── DockInsertType.cs │ │ ├── DockPanelState.cs │ │ └── DockRegionState.cs │ ├── Extensions │ │ ├── BitmapExtensions.cs │ │ └── IEnumerableExtensions.cs │ ├── Forms │ │ ├── DarkDialog.Designer.cs │ │ ├── DarkDialog.cs │ │ ├── DarkDialog.resx │ │ ├── DarkDialogButton.cs │ │ ├── DarkForm.cs │ │ ├── DarkMessageBox.Designer.cs │ │ ├── DarkMessageBox.cs │ │ ├── DarkMessageBox.resx │ │ ├── DarkMessageBoxIcon.cs │ │ └── DarkTranslucentForm.cs │ ├── Icons │ │ ├── DockIcons.Designer.cs │ │ ├── DockIcons.resx │ │ ├── MenuIcons.Designer.cs │ │ ├── MenuIcons.resx │ │ ├── MessageBoxIcons.Designer.cs │ │ ├── MessageBoxIcons.resx │ │ ├── ScrollIcons.Designer.cs │ │ ├── ScrollIcons.resx │ │ ├── TreeViewIcons.Designer.cs │ │ └── TreeViewIcons.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ ├── DarkMenuRenderer.cs │ │ └── DarkToolStripRenderer.cs │ ├── Resources │ │ ├── active-inactive-close.png │ │ ├── arrow.png │ │ ├── close-selected.png │ │ ├── close.png │ │ ├── error.png │ │ ├── grip.png │ │ ├── inactive-close-selected.png │ │ ├── inactive-close.png │ │ ├── info.png │ │ ├── node_closed_empty.png │ │ ├── node_closed_full.png │ │ ├── node_open.png │ │ ├── node_open_empty.png │ │ ├── scrollbar_arrow.png │ │ ├── scrollbar_arrow_clicked.png │ │ ├── scrollbar_arrow_hot.png │ │ ├── scrollbar_arrow_standard.png │ │ ├── tick.png │ │ ├── tw_active_close.png │ │ ├── tw_active_close_selected.png │ │ ├── tw_close.png │ │ ├── tw_close_selected.png │ │ └── warning.png │ └── Win32 │ │ ├── ControlScrollFilter.cs │ │ ├── DockContentDragFilter.cs │ │ ├── DockResizeFilter.cs │ │ ├── Native.cs │ │ └── WindowsMessages.cs ├── ToggleSwitch │ ├── GraphicsExtensionMethods.cs │ ├── ImageHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RendererChangedEventArgs.cs │ ├── Renderers │ │ ├── ToggleSwitchAndroidRenderer.cs │ │ ├── ToggleSwitchBrushedMetalRenderer.cs │ │ ├── ToggleSwitchCarbonRenderer.cs │ │ ├── ToggleSwitchFancyRenderer.cs │ │ ├── ToggleSwitchIOS5Renderer.cs │ │ ├── ToggleSwitchIphoneRenderer.cs │ │ ├── ToggleSwitchMetroRenderer.cs │ │ ├── ToggleSwitchModernRenderer.cs │ │ ├── ToggleSwitchOSXRenderer.cs │ │ ├── ToggleSwitchPlainAndSimpleRenderer.cs │ │ └── ToggleSwitchRendererBase.cs │ ├── ToggleSwitch.cs │ ├── ToggleSwitch.csproj │ ├── VersionHistory.txt │ └── XRmonitors_SQUAREICON.ico └── XRmonitorsUI │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── App.config │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── OpenXrNeeded.Designer.cs │ ├── OpenXrNeeded.cs │ ├── OpenXrNeeded.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Registration.Designer.cs │ ├── Registration.cs │ ├── Registration.resx │ ├── ReportIssue.Designer.cs │ ├── ReportIssue.cs │ ├── ReportIssue.resx │ ├── Resources │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 400x400_FAVICON.png │ ├── 400x400_SQUARE ICON.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── Decimal.png │ ├── NumPad0.png │ ├── NumPad1.png │ ├── NumPad2.png │ ├── NumPad3.png │ ├── NumPad4.png │ ├── NumPad5.png │ ├── NumPad6.png │ ├── NumPad7.png │ ├── NumPad8.png │ ├── NumPad9.png │ ├── OpenXR_logo.png │ ├── a.png │ ├── add.png │ ├── alt-right.png │ ├── alt.png │ ├── apostroph.png │ ├── apps.png │ ├── b.png │ ├── backslash.png │ ├── backspace.png │ ├── bracket-close.png │ ├── bracket-open.png │ ├── c.png │ ├── capslock.png │ ├── comma-lt.png │ ├── comma.png │ ├── ctrl-2.png │ ├── ctrl.png │ ├── cursor-down.png │ ├── cursor-left.png │ ├── cursor-right.png │ ├── cursor-up.png │ ├── d.png │ ├── delete.png │ ├── divide.png │ ├── e.png │ ├── end.png │ ├── enter.png │ ├── equals-plus.png │ ├── esc.png │ ├── f.png │ ├── f1.png │ ├── f10.png │ ├── f11.png │ ├── f12.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── f5.png │ ├── f6.png │ ├── f7.png │ ├── f8.png │ ├── f9.png │ ├── g.png │ ├── h.png │ ├── home.png │ ├── i.png │ ├── insert.png │ ├── j.png │ ├── k.png │ ├── keypad-0.png │ ├── keypad-1.png │ ├── keypad-2.png │ ├── keypad-3.png │ ├── keypad-4.png │ ├── keypad-5.png │ ├── keypad-6.png │ ├── keypad-7.png │ ├── keypad-8.png │ ├── keypad-9.png │ ├── keypad-asterix.png │ ├── keypad-enter.png │ ├── keypad-minus.png │ ├── keypad-period.png │ ├── keypad-plus.png │ ├── keypad-slash.png │ ├── l.png │ ├── love_key.png │ ├── m.png │ ├── minus.png │ ├── multiply.png │ ├── n.png │ ├── num-lock.png │ ├── o.png │ ├── p.png │ ├── page-down.png │ ├── page-up.png │ ├── pause.png │ ├── period-gt.png │ ├── plus.png │ ├── print.png │ ├── q.png │ ├── r.png │ ├── right_arrow.png │ ├── s.png │ ├── scroll-lock.png │ ├── semicolon-dble.png │ ├── shift-right.png │ ├── shift.png │ ├── slash-questionmark.png │ ├── spacebar.png │ ├── subtract.png │ ├── t.png │ ├── tab.png │ ├── u.png │ ├── v.png │ ├── w.png │ ├── x.png │ ├── y.png │ └── z.png │ ├── XRmonitorsUI.csproj │ ├── XRmonitors_SQUAREICON.ico │ ├── app.manifest │ └── packages.config ├── art ├── OpenXR_logo.png ├── OpenXR_logo.svg ├── XRmonitorsLogo │ ├── 1000w │ │ ├── 1000w_LOGO VERTICAL@1000x.png │ │ └── 1000x277_LOGO HORIZONTAL.png │ ├── 160w │ │ ├── 160x160_CIRCLE.png │ │ ├── 160x160_FAVICON.png │ │ └── 160x160_SQUARE ICON.png │ ├── 16w │ │ ├── 16x16_CIRCLE.png │ │ ├── 16x16_FAVICON.png │ │ └── 16x16_SQUARE ICON.png │ ├── 256w │ │ ├── 256x256_CIRCLE.png │ │ ├── 256x256_FAVICON.png │ │ └── 256x256_SQUARE ICON.png │ ├── 32w │ │ ├── 32x32_CIRCLE.png │ │ ├── 32x32_FAVICON.png │ │ └── 32x32_SQUARE ICON.png │ ├── 400w │ │ ├── 400x400_CIRCLE_TWITTER.png │ │ ├── 400x400_FAVICON.png │ │ └── 400x400_SQUARE ICON.png │ ├── 48w │ │ ├── 48x48_CIRCLE.png │ │ ├── 48x48_FAVICON.png │ │ └── 48x48_SQUARE ICON.png │ ├── 64w │ │ ├── 64x64_CIRCLE.png │ │ ├── 64x64_FAVICON.png │ │ └── 64x64_SQUARE ICON.png │ ├── LOGO LAYOUT.pdf │ └── SVG │ │ ├── CIRCLE ICON.svg │ │ ├── FAVICON.svg │ │ ├── LOGO HORIZONTAL.svg │ │ ├── LOGO VERTICAL.svg │ │ ├── SQUARE ICON.svg │ │ └── WHITE_LOGO HORIZONTAL.svg ├── XRmonitors_CIRCLE.ico ├── XRmonitors_SQUAREICON.ico └── XRmonitors_favicon.ico ├── camera_tester ├── CMakeLists.txt └── src │ └── CameraTester.cpp ├── core ├── CMakeLists.txt ├── include │ ├── core.hpp │ ├── core_bit_math.hpp │ ├── core_counter_math.hpp │ ├── core_logger.hpp │ ├── core_mmap.hpp │ ├── core_serializer.hpp │ ├── core_string.hpp │ ├── core_win32.hpp │ └── core_win32_pipe.hpp ├── msvc │ ├── CoreLib.vcxproj │ └── CoreLib.vcxproj.filters └── src │ ├── core.cpp │ ├── core_logger.cpp │ ├── core_mmap.cpp │ ├── core_serializer.cpp │ ├── core_string.cpp │ ├── core_win32.cpp │ └── core_win32_pipe.cpp ├── detours ├── CMakeLists.txt ├── include │ ├── detours.h │ └── detver.h ├── msvc │ ├── Detours.vcxproj │ └── Detours.vcxproj.filters └── src │ ├── creatwth.cpp │ ├── detours.cpp │ ├── disasm.cpp │ ├── disolarm.cpp │ ├── disolarm64.cpp │ ├── disolia64.cpp │ ├── disolx64.cpp │ ├── disolx86.cpp │ ├── image.cpp │ ├── modules.cpp │ └── uimports.cpp ├── fmt ├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.rst ├── LICENSE.rst ├── README.rst ├── doc │ ├── CMakeLists.txt │ ├── _static │ │ ├── bootstrap.min.js │ │ ├── breathe.css │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── _templates │ │ ├── layout.html │ │ └── search.html │ ├── api.rst │ ├── basic-bootstrap │ │ ├── README │ │ ├── layout.html │ │ └── theme.conf │ ├── bootstrap │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── build.py │ ├── conf.py │ ├── contents.rst │ ├── fmt.less │ ├── index.rst │ ├── python-license.txt │ ├── syntax.rst │ └── usage.rst ├── include │ ├── fmt │ │ ├── chrono.h │ │ ├── color.h │ │ ├── core.h │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── ostream.h │ │ ├── posix.h │ │ ├── prepare.h │ │ ├── printf.h │ │ ├── ranges.h │ │ └── time.h │ └── format ├── src │ ├── format.cc │ └── posix.cc ├── support │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── C++.sublime-syntax │ ├── README │ ├── appveyor-build.py │ ├── appveyor.yml │ ├── build.gradle │ ├── cmake │ │ ├── FindSetEnv.cmake │ │ ├── cxx14.cmake │ │ ├── fmt-config.cmake.in │ │ ├── fmt.pc.in │ │ └── run-cmake.bat │ ├── compute-powers.py │ ├── docopt.py │ ├── fmt.pro │ ├── manage.py │ ├── rst2md.py │ ├── rtd │ │ ├── conf.py │ │ ├── index.rst │ │ └── theme │ │ │ ├── layout.html │ │ │ └── theme.conf │ ├── travis-build.py │ └── update-coverity-branch.py └── test │ ├── CMakeLists.txt │ ├── add-subdirectory-test │ ├── CMakeLists.txt │ └── main.cc │ ├── assert-test.cc │ ├── chrono-test.cc │ ├── color-test.cc │ ├── compile-test │ └── CMakeLists.txt │ ├── core-test.cc │ ├── custom-formatter-test.cc │ ├── find-package-test │ ├── CMakeLists.txt │ └── main.cc │ ├── format-impl-test.cc │ ├── format-test.cc │ ├── gmock-gtest-all.cc │ ├── gmock │ └── gmock.h │ ├── grisu-test.cc │ ├── gtest-extra-test.cc │ ├── gtest-extra.cc │ ├── gtest-extra.h │ ├── gtest │ ├── gtest-spi.h │ └── gtest.h │ ├── header-only-test.cc │ ├── header-only-test2.cc │ ├── locale-test.cc │ ├── mock-allocator.h │ ├── ostream-test.cc │ ├── posix-mock-test.cc │ ├── posix-mock.h │ ├── posix-test.cc │ ├── prepare-test.cc │ ├── printf-test.cc │ ├── ranges-test.cc │ ├── test-assert.h │ ├── test-main.cc │ ├── util.cc │ └── util.h ├── mrcam_client ├── CMakeLists.txt ├── include │ └── CameraClient.hpp ├── msvc │ ├── MrCamClient.vcxproj │ └── MrCamClient.vcxproj.filters └── src │ └── CameraClient.cpp ├── preview.png ├── protocols ├── CMakeLists.txt ├── include │ ├── implant_abi.hpp │ ├── xrm_plugins_abi.hpp │ └── xrm_ui_abi.hpp ├── msvc │ ├── Protocols.vcxproj │ └── Protocols.vcxproj.filters └── src │ ├── implant_abi.cpp │ ├── xrm_plugins_abi.cpp │ └── xrm_ui_abi.cpp └── signing ├── PublicCertificate.cer └── signtool.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/README.md -------------------------------------------------------------------------------- /XRmonitors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitors.sln -------------------------------------------------------------------------------- /XRmonitorsCamera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/CMakeLists.txt -------------------------------------------------------------------------------- /XRmonitorsCamera/msvc/XRmonitorsCamera.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/msvc/XRmonitorsCamera.rc -------------------------------------------------------------------------------- /XRmonitorsCamera/msvc/XRmonitorsCamera.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/msvc/XRmonitorsCamera.vcxproj -------------------------------------------------------------------------------- /XRmonitorsCamera/msvc/XRmonitorsCamera.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/msvc/XRmonitorsCamera.vcxproj.filters -------------------------------------------------------------------------------- /XRmonitorsCamera/msvc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/msvc/resource.h -------------------------------------------------------------------------------- /XRmonitorsCamera/src/implant_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsCamera/src/implant_main.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/ApplicationSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/ApplicationSettings.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/ApplicationSettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/ApplicationSettings.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraCalibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraCalibration.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraCalibration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraCalibration.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraImager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraImager.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraImager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraImager.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraRenderer.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/CameraRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/CameraRenderer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11CrossAdapterDuplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11CrossAdapterDuplication.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11CrossAdapterDuplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11CrossAdapterDuplication.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11DuplicationCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11DuplicationCommon.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11DuplicationCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11DuplicationCommon.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11SameAdapterDuplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11SameAdapterDuplication.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11SameAdapterDuplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11SameAdapterDuplication.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11Tools.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/D3D11Tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/D3D11Tools.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/HolographicInputBanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/HolographicInputBanner.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/HolographicInputBanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/HolographicInputBanner.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/InputWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/InputWindow.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/InputWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/InputWindow.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/KeyboardInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/KeyboardInput.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/KeyboardInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/KeyboardInput.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/Main.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/Main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/Main.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorChangeWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorChangeWatcher.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorChangeWatcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorChangeWatcher.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorEnumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorEnumerator.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorEnumerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorEnumerator.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderController.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderController.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderController.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderModel.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderModel.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderView.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorRenderView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorRenderView.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorTools.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MonitorTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MonitorTools.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/CMakeLists.txt -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/Directory.Build.props -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/api_layer_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/api_layer_interface.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/api_layer_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/api_layer_interface.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/common_cmake_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/common_cmake_config.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/exception_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/exception_handling.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/extra_algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/extra_algorithms.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/filesystem_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/filesystem_utils.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/filesystem_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/filesystem_utils.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/hex_and_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/hex_and_handles.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/json/json-forwards.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/json/json.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/jsoncpp.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader.rc -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_core.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_instance.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_instance.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_interfaces.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_logger.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_logger.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/loader_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/loader_platform.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/manifest_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/manifest_file.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/manifest_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/manifest_file.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/object_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/object_info.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/object_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/object_info.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/openxr-loader.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/openxr-loader.def -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/openxr-loader.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/openxr-loader.map -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/openxr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/openxr.pc.in -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/openxr_loader_uwp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/openxr_loader_uwp.vcxproj -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/openxr_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/openxr_platform_defines.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/platform_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/platform_utils.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/runtime_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/runtime_interface.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/runtime_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/runtime_interface.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/xr_dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/xr_dependencies.h -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/xr_generated_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/xr_generated_loader.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/xr_generated_loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/xr_generated_loader.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/MsXrLoader/xr_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/MsXrLoader/xr_linear.h -------------------------------------------------------------------------------- /XRmonitorsHologram/OpenXrD3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/OpenXrD3D11.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/OpenXrD3D11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/OpenXrD3D11.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/OpenXrD3D11Swapchains.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/OpenXrD3D11Swapchains.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/OpenXrD3D11Swapchains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/OpenXrD3D11Swapchains.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/Plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/Plugins.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/Plugins.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/Plugins.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/Resource.h -------------------------------------------------------------------------------- /XRmonitorsHologram/WindowsHolographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/WindowsHolographic.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/WindowsHolographic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/WindowsHolographic.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/XRmonitorsHologram.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XRmonitorsHologram.vcxproj -------------------------------------------------------------------------------- /XRmonitorsHologram/XRmonitorsHologram.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XRmonitorsHologram.vcxproj.filters -------------------------------------------------------------------------------- /XRmonitorsHologram/XRmonitorsHologram1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XRmonitorsHologram1.rc -------------------------------------------------------------------------------- /XRmonitorsHologram/XRmonitors_SQUAREICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XRmonitors_SQUAREICON.ico -------------------------------------------------------------------------------- /XRmonitorsHologram/XrUtility/XrError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XrUtility/XrError.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/XrUtility/XrError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XrUtility/XrError.h -------------------------------------------------------------------------------- /XRmonitorsHologram/XrUtility/XrHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XrUtility/XrHandle.h -------------------------------------------------------------------------------- /XRmonitorsHologram/XrUtility/XrMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/XrUtility/XrMath.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/AppMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/AppMain.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/AppMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/AppMain.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/BezelRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/BezelRenderer.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/BezelRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/BezelRenderer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/CameraResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/CameraResources.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/CameraResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/CameraResources.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/DeviceResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/DeviceResources.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/DeviceResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/DeviceResources.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/DirectXHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/DirectXHelper.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/Common/StepTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/Common/StepTimer.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/DesktopRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/DesktopRender.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/DesktopRender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/DesktopRender.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/GlobalRenderState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/GlobalRenderState.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/GlobalRenderState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/GlobalRenderState.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/MonitorHologramMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/MonitorHologramMain.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/MonitorHologramMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/MonitorHologramMain.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/OpenXrGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/OpenXrGraphics.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/OpenXrGraphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/OpenXrGraphics.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/OpenXrProgram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/OpenXrProgram.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/QuadLayersTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/QuadLayersTracker.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/QuadLayersTracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/QuadLayersTracker.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/SpatialInputHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/SpatialInputHandler.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/SpatialInputHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/SpatialInputHandler.h -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/pch.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/_attic_/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/_attic_/pch.h -------------------------------------------------------------------------------- /XRmonitorsHologram/camera_calibration.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/camera_calibration.ini -------------------------------------------------------------------------------- /XRmonitorsHologram/openxr/openxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/openxr/openxr.h -------------------------------------------------------------------------------- /XRmonitorsHologram/openxr/openxr_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/openxr/openxr_platform.h -------------------------------------------------------------------------------- /XRmonitorsHologram/openxr/openxr_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/openxr/openxr_platform_defines.h -------------------------------------------------------------------------------- /XRmonitorsHologram/openxr/openxr_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/openxr/openxr_reflection.h -------------------------------------------------------------------------------- /XRmonitorsHologram/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/stdafx.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/stdafx.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/.editorconfig -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/.gitattributes -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/.gitignore -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/Audio.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/Effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/Effects.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/GamePad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/GamePad.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/Keyboard.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/Model.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Inc/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Inc/Mouse.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/LICENSE -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Readme.txt -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/Bezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/Bezier.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/GamePad.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/Geometry.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/Model.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/Mouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/Mouse.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/SDKMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/SDKMesh.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/dds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/dds.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/pch.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/pch.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/DirectXTK/Src/vbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/DirectXTK/Src/vbo.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/INI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/INI.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/IncludeAsio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/IncludeAsio.h -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/WinReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/WinReg.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/async_result.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/basic_io_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/basic_io_object.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/basic_raw_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/basic_raw_socket.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/basic_signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/basic_signal_set.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/basic_socket.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/basic_streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/basic_streambuf.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/bind_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/bind_executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/buffer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/buffered_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/buffered_stream.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/buffers_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/buffers_iterator.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/connect.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/coroutine.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/deadline_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/deadline_timer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/defer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/array.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/array_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/array_fwd.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/assert.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/chrono.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/config.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/cstddef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/cstddef.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/cstdint.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/event.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/global.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/hash_map.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/limits.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/memory.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/op_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/op_queue.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/operation.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/reactor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/reactor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/regex_fwd.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/scheduler.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/signal_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/signal_op.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/std_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/std_event.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/std_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/std_mutex.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/thread.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/tss_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/tss_ptr.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/wait_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/wait_op.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/win_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/win_event.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/detail/win_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/detail/win_mutex.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/dispatch.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/error.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/error_code.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/handler_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/handler_type.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/connect.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/defer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/dispatch.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/error.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/error_code.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/error_code.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/executor.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/executor.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/io_context.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/io_context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/io_context.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/post.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/read.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/read_until.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/src.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/src.cpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/src.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/thread_pool.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/thread_pool.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/thread_pool.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/use_future.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/write.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/impl/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/impl/write_at.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/io_context.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/io_service.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/address.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/address_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/address_v4.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/address_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/address_v6.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/impl/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/impl/address.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/impl/address.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/impl/address.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/network_v4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/network_v4.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/network_v6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/network_v6.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/resolver_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/resolver_base.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/udp.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/is_executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/is_read_buffered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/is_read_buffered.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/package.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/package.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/placeholders.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/post.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/read.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/read_at.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/read_until.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/serial_port.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/serial_port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/serial_port_base.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/signal_set.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/socket_base.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/spawn.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/context.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/context_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/context_base.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/detail/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/detail/io.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/error.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/impl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/impl/context.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/impl/context.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/impl/context.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/impl/error.ipp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ssl/stream_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ssl/stream_base.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/steady_timer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/strand.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/streambuf.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/system_error.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/system_timer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/thread.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/thread_pool.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/time_traits.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/internet.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/io_context.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/networking.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/socket.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/thread_pool.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/ts/timer.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/unyield.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/use_future.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/uses_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/uses_executor.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/version.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/wait_traits.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/write.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/write_at.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/asio/yield.hpp -------------------------------------------------------------------------------- /XRmonitorsHologram/thirdparty/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsHologram/thirdparty/json.hpp -------------------------------------------------------------------------------- /XRmonitorsService/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/CMakeLists.txt -------------------------------------------------------------------------------- /XRmonitorsService/msvc/MrCamService.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/msvc/MrCamService.vcxproj -------------------------------------------------------------------------------- /XRmonitorsService/msvc/MrCamService.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/msvc/MrCamService.vcxproj.filters -------------------------------------------------------------------------------- /XRmonitorsService/msvc/XRmonitorsService.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/msvc/XRmonitorsService.rc -------------------------------------------------------------------------------- /XRmonitorsService/msvc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/msvc/resource.h -------------------------------------------------------------------------------- /XRmonitorsService/src/CameraServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/CameraServer.cpp -------------------------------------------------------------------------------- /XRmonitorsService/src/CameraServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/CameraServer.hpp -------------------------------------------------------------------------------- /XRmonitorsService/src/RemoteProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/RemoteProcess.cpp -------------------------------------------------------------------------------- /XRmonitorsService/src/RemoteProcess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/RemoteProcess.hpp -------------------------------------------------------------------------------- /XRmonitorsService/src/UsbHubPowerFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/UsbHubPowerFix.cpp -------------------------------------------------------------------------------- /XRmonitorsService/src/UsbHubPowerFix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/UsbHubPowerFix.hpp -------------------------------------------------------------------------------- /XRmonitorsService/src/server_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsService/src/server_main.cpp -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/01_LegalPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/01_LegalPanel.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/06_FailedPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/06_FailedPanel.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/10_RemovePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/10_RemovePanel.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/App.config -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/Program.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/SetupForm.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/SetupForm.resx -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/app.manifest -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsInstaller/packages.config -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsSetup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsSetup.sln -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsSetup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsSetup/App.config -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsSetup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsSetup/Program.cs -------------------------------------------------------------------------------- /XRmonitorsSetup/XRmonitorsSetup/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsSetup/XRmonitorsSetup/app.manifest -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Collections/ObservableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Collections/ObservableList.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Config/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Config/Colors.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Config/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Config/Consts.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkButton.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkButtonStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkButtonStyle.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkCheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkCheckBox.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkContentAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkContentAlignment.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkContextMenu.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkControlState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkControlState.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkLabel.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkListItem.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkListView.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkMenuStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkMenuStrip.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkRadioButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkRadioButton.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkScrollBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkScrollBar.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkScrollBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkScrollBase.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkScrollOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkScrollOrientation.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkScrollView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkScrollView.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkSectionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkSectionPanel.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkSeparator.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkStatusStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkStatusStrip.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkTextBox.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkTitle.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkToolStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkToolStrip.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkTreeNode.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/DarkTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/DarkTreeView.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Controls/ScrollValueEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Controls/ScrollValueEventArgs.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/DarkUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/DarkUI.csproj -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockArea.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockContent.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockGroup.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockPanel.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockRegion.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockSplitter.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockTab.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDockTabArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDockTabArea.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkDocument.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkSplitterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkSplitterType.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DarkToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DarkToolWindow.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockContentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockContentEventArgs.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockDropArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockDropArea.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockDropCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockDropCollection.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockGroupState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockGroupState.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockInsertType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockInsertType.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockPanelState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockPanelState.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Docking/DockRegionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Docking/DockRegionState.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Extensions/BitmapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Extensions/BitmapExtensions.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkDialog.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkDialog.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkDialog.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkDialogButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkDialogButton.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkForm.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkMessageBox.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkMessageBox.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkMessageBox.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkMessageBoxIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkMessageBoxIcon.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Forms/DarkTranslucentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Forms/DarkTranslucentForm.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/DockIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/DockIcons.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/DockIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/DockIcons.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/MenuIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/MenuIcons.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/MenuIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/MenuIcons.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/MessageBoxIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/MessageBoxIcons.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/MessageBoxIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/MessageBoxIcons.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/ScrollIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/ScrollIcons.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/ScrollIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/ScrollIcons.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/TreeViewIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/TreeViewIcons.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Icons/TreeViewIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Icons/TreeViewIcons.resx -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Renderers/DarkMenuRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Renderers/DarkMenuRenderer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/arrow.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/close-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/close-selected.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/close.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/error.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/grip.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/inactive-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/inactive-close.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/info.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/node_closed_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/node_closed_empty.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/node_closed_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/node_closed_full.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/node_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/node_open.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/node_open_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/node_open_empty.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/scrollbar_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/scrollbar_arrow.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/scrollbar_arrow_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/scrollbar_arrow_hot.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/tick.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/tw_active_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/tw_active_close.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/tw_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/tw_close.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/tw_close_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/tw_close_selected.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Resources/warning.png -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Win32/ControlScrollFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Win32/ControlScrollFilter.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Win32/DockContentDragFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Win32/DockContentDragFilter.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Win32/DockResizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Win32/DockResizeFilter.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Win32/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Win32/Native.cs -------------------------------------------------------------------------------- /XRmonitorsUI/DarkUI/Win32/WindowsMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/DarkUI/Win32/WindowsMessages.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/GraphicsExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/GraphicsExtensionMethods.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/ImageHelper.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/RendererChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/RendererChangedEventArgs.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/ToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/ToggleSwitch.cs -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/ToggleSwitch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/ToggleSwitch.csproj -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/VersionHistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/VersionHistory.txt -------------------------------------------------------------------------------- /XRmonitorsUI/ToggleSwitch/XRmonitors_SQUAREICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/ToggleSwitch/XRmonitors_SQUAREICON.ico -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/AboutBox.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/AboutBox.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/AboutBox.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/App.config -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/MainForm.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/MainForm.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/OpenXrNeeded.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Program.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Properties/Resources.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Registration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Registration.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Registration.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Registration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Registration.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/ReportIssue.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/ReportIssue.Designer.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/ReportIssue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/ReportIssue.cs -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/ReportIssue.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/ReportIssue.resx -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/0.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/1.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/2.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/3.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/4.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/5.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/6.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/7.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/8.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/9.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/Decimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/Decimal.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad0.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad1.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad2.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad3.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad4.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad5.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad6.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad7.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad8.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/NumPad9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/NumPad9.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/OpenXR_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/OpenXR_logo.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/a.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/add.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/alt-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/alt-right.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/alt.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/apostroph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/apostroph.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/apps.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/b.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/backslash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/backslash.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/backspace.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/bracket-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/bracket-close.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/bracket-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/bracket-open.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/c.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/capslock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/capslock.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/comma-lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/comma-lt.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/comma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/comma.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/ctrl-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/ctrl-2.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/ctrl.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/cursor-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/cursor-down.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/cursor-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/cursor-left.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/cursor-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/cursor-right.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/cursor-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/cursor-up.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/d.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/delete.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/divide.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/e.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/end.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/enter.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/equals-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/equals-plus.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/esc.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f1.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f10.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f11.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f12.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f2.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f3.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f4.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f5.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f6.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f7.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f8.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/f9.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/g.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/h.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/home.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/i.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/insert.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/j.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/k.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-0.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-1.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-2.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-3.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-4.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-5.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-6.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-7.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-8.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-9.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-enter.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-minus.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-period.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-period.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-plus.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/keypad-slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/keypad-slash.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/l.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/love_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/love_key.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/m.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/minus.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/multiply.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/n.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/num-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/num-lock.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/o.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/p.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/page-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/page-down.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/page-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/page-up.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/pause.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/period-gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/period-gt.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/plus.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/print.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/q.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/r.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/right_arrow.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/s.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/scroll-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/scroll-lock.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/shift-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/shift-right.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/shift.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/spacebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/spacebar.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/subtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/subtract.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/t.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/tab.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/u.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/v.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/w.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/x.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/y.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/Resources/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/Resources/z.png -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/XRmonitorsUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/XRmonitorsUI.csproj -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/XRmonitors_SQUAREICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/XRmonitors_SQUAREICON.ico -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/app.manifest -------------------------------------------------------------------------------- /XRmonitorsUI/XRmonitorsUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/XRmonitorsUI/XRmonitorsUI/packages.config -------------------------------------------------------------------------------- /art/OpenXR_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/OpenXR_logo.png -------------------------------------------------------------------------------- /art/OpenXR_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/OpenXR_logo.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/1000w/1000x277_LOGO HORIZONTAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/1000w/1000x277_LOGO HORIZONTAL.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/160w/160x160_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/160w/160x160_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/160w/160x160_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/160w/160x160_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/160w/160x160_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/160w/160x160_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/16w/16x16_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/16w/16x16_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/16w/16x16_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/16w/16x16_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/16w/16x16_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/16w/16x16_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/256w/256x256_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/256w/256x256_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/256w/256x256_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/256w/256x256_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/256w/256x256_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/256w/256x256_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/32w/32x32_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/32w/32x32_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/32w/32x32_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/32w/32x32_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/32w/32x32_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/32w/32x32_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/400w/400x400_CIRCLE_TWITTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/400w/400x400_CIRCLE_TWITTER.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/400w/400x400_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/400w/400x400_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/400w/400x400_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/400w/400x400_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/48w/48x48_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/48w/48x48_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/48w/48x48_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/48w/48x48_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/48w/48x48_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/48w/48x48_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/64w/64x64_CIRCLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/64w/64x64_CIRCLE.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/64w/64x64_FAVICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/64w/64x64_FAVICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/64w/64x64_SQUARE ICON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/64w/64x64_SQUARE ICON.png -------------------------------------------------------------------------------- /art/XRmonitorsLogo/LOGO LAYOUT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/LOGO LAYOUT.pdf -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/CIRCLE ICON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/CIRCLE ICON.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/FAVICON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/FAVICON.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/LOGO HORIZONTAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/LOGO HORIZONTAL.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/LOGO VERTICAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/LOGO VERTICAL.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/SQUARE ICON.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/SQUARE ICON.svg -------------------------------------------------------------------------------- /art/XRmonitorsLogo/SVG/WHITE_LOGO HORIZONTAL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitorsLogo/SVG/WHITE_LOGO HORIZONTAL.svg -------------------------------------------------------------------------------- /art/XRmonitors_CIRCLE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitors_CIRCLE.ico -------------------------------------------------------------------------------- /art/XRmonitors_SQUAREICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitors_SQUAREICON.ico -------------------------------------------------------------------------------- /art/XRmonitors_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/art/XRmonitors_favicon.ico -------------------------------------------------------------------------------- /camera_tester/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/camera_tester/CMakeLists.txt -------------------------------------------------------------------------------- /camera_tester/src/CameraTester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/camera_tester/src/CameraTester.cpp -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/include/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core.hpp -------------------------------------------------------------------------------- /core/include/core_bit_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_bit_math.hpp -------------------------------------------------------------------------------- /core/include/core_counter_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_counter_math.hpp -------------------------------------------------------------------------------- /core/include/core_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_logger.hpp -------------------------------------------------------------------------------- /core/include/core_mmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_mmap.hpp -------------------------------------------------------------------------------- /core/include/core_serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_serializer.hpp -------------------------------------------------------------------------------- /core/include/core_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_string.hpp -------------------------------------------------------------------------------- /core/include/core_win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_win32.hpp -------------------------------------------------------------------------------- /core/include/core_win32_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/include/core_win32_pipe.hpp -------------------------------------------------------------------------------- /core/msvc/CoreLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/msvc/CoreLib.vcxproj -------------------------------------------------------------------------------- /core/msvc/CoreLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/msvc/CoreLib.vcxproj.filters -------------------------------------------------------------------------------- /core/src/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core.cpp -------------------------------------------------------------------------------- /core/src/core_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_logger.cpp -------------------------------------------------------------------------------- /core/src/core_mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_mmap.cpp -------------------------------------------------------------------------------- /core/src/core_serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_serializer.cpp -------------------------------------------------------------------------------- /core/src/core_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_string.cpp -------------------------------------------------------------------------------- /core/src/core_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_win32.cpp -------------------------------------------------------------------------------- /core/src/core_win32_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/core/src/core_win32_pipe.cpp -------------------------------------------------------------------------------- /detours/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/CMakeLists.txt -------------------------------------------------------------------------------- /detours/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/include/detours.h -------------------------------------------------------------------------------- /detours/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/include/detver.h -------------------------------------------------------------------------------- /detours/msvc/Detours.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/msvc/Detours.vcxproj -------------------------------------------------------------------------------- /detours/msvc/Detours.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/msvc/Detours.vcxproj.filters -------------------------------------------------------------------------------- /detours/src/creatwth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/creatwth.cpp -------------------------------------------------------------------------------- /detours/src/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/detours.cpp -------------------------------------------------------------------------------- /detours/src/disasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/disasm.cpp -------------------------------------------------------------------------------- /detours/src/disolarm.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /detours/src/disolarm64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_ARM64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /detours/src/disolia64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_IA64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /detours/src/disolx64.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X64_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /detours/src/disolx86.cpp: -------------------------------------------------------------------------------- 1 | #define DETOURS_X86_OFFLINE_LIBRARY 2 | #include "disasm.cpp" 3 | -------------------------------------------------------------------------------- /detours/src/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/image.cpp -------------------------------------------------------------------------------- /detours/src/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/modules.cpp -------------------------------------------------------------------------------- /detours/src/uimports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/detours/src/uimports.cpp -------------------------------------------------------------------------------- /fmt/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/.clang-format -------------------------------------------------------------------------------- /fmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/.gitignore -------------------------------------------------------------------------------- /fmt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/.travis.yml -------------------------------------------------------------------------------- /fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/CONTRIBUTING.md -------------------------------------------------------------------------------- /fmt/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/ChangeLog.rst -------------------------------------------------------------------------------- /fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/LICENSE.rst -------------------------------------------------------------------------------- /fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/README.rst -------------------------------------------------------------------------------- /fmt/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/doc/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/_static/bootstrap.min.js -------------------------------------------------------------------------------- /fmt/doc/_static/breathe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/_static/breathe.css -------------------------------------------------------------------------------- /fmt/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/_templates/layout.html -------------------------------------------------------------------------------- /fmt/doc/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/_templates/search.html -------------------------------------------------------------------------------- /fmt/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/api.rst -------------------------------------------------------------------------------- /fmt/doc/basic-bootstrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/basic-bootstrap/README -------------------------------------------------------------------------------- /fmt/doc/basic-bootstrap/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/basic-bootstrap/layout.html -------------------------------------------------------------------------------- /fmt/doc/basic-bootstrap/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /fmt/doc/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/alerts.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/badges.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/button-groups.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/buttons.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/carousel.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/close.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/code.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/component-animations.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/forms.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/grid.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/input-groups.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/labels.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/list-group.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/media.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/modals.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/navbar.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/navs.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/normalize.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/pager.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/pagination.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/panels.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/popovers.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/print.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/tables.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/theme.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/tooltip.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/type.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/utilities.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/variables.less -------------------------------------------------------------------------------- /fmt/doc/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/bootstrap/wells.less -------------------------------------------------------------------------------- /fmt/doc/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/build.py -------------------------------------------------------------------------------- /fmt/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/conf.py -------------------------------------------------------------------------------- /fmt/doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/contents.rst -------------------------------------------------------------------------------- /fmt/doc/fmt.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/fmt.less -------------------------------------------------------------------------------- /fmt/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/index.rst -------------------------------------------------------------------------------- /fmt/doc/python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/python-license.txt -------------------------------------------------------------------------------- /fmt/doc/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/syntax.rst -------------------------------------------------------------------------------- /fmt/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/doc/usage.rst -------------------------------------------------------------------------------- /fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /fmt/include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/locale.h -------------------------------------------------------------------------------- /fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /fmt/include/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/posix.h -------------------------------------------------------------------------------- /fmt/include/fmt/prepare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/prepare.h -------------------------------------------------------------------------------- /fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /fmt/include/fmt/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/fmt/time.h -------------------------------------------------------------------------------- /fmt/include/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/include/format -------------------------------------------------------------------------------- /fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/src/format.cc -------------------------------------------------------------------------------- /fmt/src/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/src/posix.cc -------------------------------------------------------------------------------- /fmt/support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/Android.mk -------------------------------------------------------------------------------- /fmt/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fmt/support/C++.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/C++.sublime-syntax -------------------------------------------------------------------------------- /fmt/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/README -------------------------------------------------------------------------------- /fmt/support/appveyor-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/appveyor-build.py -------------------------------------------------------------------------------- /fmt/support/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/appveyor.yml -------------------------------------------------------------------------------- /fmt/support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/build.gradle -------------------------------------------------------------------------------- /fmt/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /fmt/support/cmake/cxx14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/cmake/cxx14.cmake -------------------------------------------------------------------------------- /fmt/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /fmt/support/cmake/run-cmake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/cmake/run-cmake.bat -------------------------------------------------------------------------------- /fmt/support/compute-powers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/compute-powers.py -------------------------------------------------------------------------------- /fmt/support/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/docopt.py -------------------------------------------------------------------------------- /fmt/support/fmt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/fmt.pro -------------------------------------------------------------------------------- /fmt/support/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/manage.py -------------------------------------------------------------------------------- /fmt/support/rst2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/rst2md.py -------------------------------------------------------------------------------- /fmt/support/rtd/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/rtd/conf.py -------------------------------------------------------------------------------- /fmt/support/rtd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/rtd/index.rst -------------------------------------------------------------------------------- /fmt/support/rtd/theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/rtd/theme/layout.html -------------------------------------------------------------------------------- /fmt/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /fmt/support/travis-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/travis-build.py -------------------------------------------------------------------------------- /fmt/support/update-coverity-branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/support/update-coverity-branch.py -------------------------------------------------------------------------------- /fmt/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/test/add-subdirectory-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/add-subdirectory-test/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/test/add-subdirectory-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/add-subdirectory-test/main.cc -------------------------------------------------------------------------------- /fmt/test/assert-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/assert-test.cc -------------------------------------------------------------------------------- /fmt/test/chrono-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/chrono-test.cc -------------------------------------------------------------------------------- /fmt/test/color-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/color-test.cc -------------------------------------------------------------------------------- /fmt/test/compile-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/compile-test/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/test/core-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/core-test.cc -------------------------------------------------------------------------------- /fmt/test/custom-formatter-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/custom-formatter-test.cc -------------------------------------------------------------------------------- /fmt/test/find-package-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/find-package-test/CMakeLists.txt -------------------------------------------------------------------------------- /fmt/test/find-package-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/find-package-test/main.cc -------------------------------------------------------------------------------- /fmt/test/format-impl-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/format-impl-test.cc -------------------------------------------------------------------------------- /fmt/test/format-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/format-test.cc -------------------------------------------------------------------------------- /fmt/test/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gmock-gtest-all.cc -------------------------------------------------------------------------------- /fmt/test/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gmock/gmock.h -------------------------------------------------------------------------------- /fmt/test/grisu-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/grisu-test.cc -------------------------------------------------------------------------------- /fmt/test/gtest-extra-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gtest-extra-test.cc -------------------------------------------------------------------------------- /fmt/test/gtest-extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gtest-extra.cc -------------------------------------------------------------------------------- /fmt/test/gtest-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gtest-extra.h -------------------------------------------------------------------------------- /fmt/test/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gtest/gtest-spi.h -------------------------------------------------------------------------------- /fmt/test/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/gtest/gtest.h -------------------------------------------------------------------------------- /fmt/test/header-only-test.cc: -------------------------------------------------------------------------------- 1 | // Header-only configuration test 2 | 3 | #include "fmt/core.h" 4 | -------------------------------------------------------------------------------- /fmt/test/header-only-test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/header-only-test2.cc -------------------------------------------------------------------------------- /fmt/test/locale-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/locale-test.cc -------------------------------------------------------------------------------- /fmt/test/mock-allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/mock-allocator.h -------------------------------------------------------------------------------- /fmt/test/ostream-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/ostream-test.cc -------------------------------------------------------------------------------- /fmt/test/posix-mock-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/posix-mock-test.cc -------------------------------------------------------------------------------- /fmt/test/posix-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/posix-mock.h -------------------------------------------------------------------------------- /fmt/test/posix-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/posix-test.cc -------------------------------------------------------------------------------- /fmt/test/prepare-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/prepare-test.cc -------------------------------------------------------------------------------- /fmt/test/printf-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/printf-test.cc -------------------------------------------------------------------------------- /fmt/test/ranges-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/ranges-test.cc -------------------------------------------------------------------------------- /fmt/test/test-assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/test-assert.h -------------------------------------------------------------------------------- /fmt/test/test-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/test-main.cc -------------------------------------------------------------------------------- /fmt/test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/util.cc -------------------------------------------------------------------------------- /fmt/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/fmt/test/util.h -------------------------------------------------------------------------------- /mrcam_client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/mrcam_client/CMakeLists.txt -------------------------------------------------------------------------------- /mrcam_client/include/CameraClient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/mrcam_client/include/CameraClient.hpp -------------------------------------------------------------------------------- /mrcam_client/msvc/MrCamClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/mrcam_client/msvc/MrCamClient.vcxproj -------------------------------------------------------------------------------- /mrcam_client/msvc/MrCamClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/mrcam_client/msvc/MrCamClient.vcxproj.filters -------------------------------------------------------------------------------- /mrcam_client/src/CameraClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/mrcam_client/src/CameraClient.cpp -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/preview.png -------------------------------------------------------------------------------- /protocols/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/CMakeLists.txt -------------------------------------------------------------------------------- /protocols/include/implant_abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/include/implant_abi.hpp -------------------------------------------------------------------------------- /protocols/include/xrm_plugins_abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/include/xrm_plugins_abi.hpp -------------------------------------------------------------------------------- /protocols/include/xrm_ui_abi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/include/xrm_ui_abi.hpp -------------------------------------------------------------------------------- /protocols/msvc/Protocols.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/msvc/Protocols.vcxproj -------------------------------------------------------------------------------- /protocols/msvc/Protocols.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/msvc/Protocols.vcxproj.filters -------------------------------------------------------------------------------- /protocols/src/implant_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/src/implant_abi.cpp -------------------------------------------------------------------------------- /protocols/src/xrm_plugins_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/src/xrm_plugins_abi.cpp -------------------------------------------------------------------------------- /protocols/src/xrm_ui_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/protocols/src/xrm_ui_abi.cpp -------------------------------------------------------------------------------- /signing/PublicCertificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/signing/PublicCertificate.cer -------------------------------------------------------------------------------- /signing/signtool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catid/XRmonitors/HEAD/signing/signtool.exe --------------------------------------------------------------------------------