├── .gitignore ├── LICENSE ├── README.md └── src ├── CDataFile.cpp ├── CDataFile.h ├── CameraPathData.cpp ├── CameraPathData.h ├── CameraToolsConnector.cpp ├── CameraToolsConnector.h ├── CameraToolsData.h ├── ConstantsEnums.h ├── DepthOfFieldController.cpp ├── DepthOfFieldController.h ├── EffectState.cpp ├── EffectState.h ├── IgcsConnector.rc ├── IgcsConnector.sln ├── IgcsConnector.vcxproj ├── IgcsConnector.vcxproj.filters ├── Include ├── imgui.h ├── reshade.hpp ├── reshade_api.hpp ├── reshade_api_device.hpp ├── reshade_api_format.hpp ├── reshade_api_pipeline.hpp ├── reshade_api_resource.hpp ├── reshade_events.hpp └── reshade_overlay.hpp ├── Main.cpp ├── OverlayControl.cpp ├── OverlayControl.h ├── ReshadeStateController.cpp ├── ReshadeStateController.h ├── ReshadeStateSnapshot.cpp ├── ReshadeStateSnapshot.h ├── ScreenshotController.cpp ├── ScreenshotController.h ├── ScreenshotSettings.h ├── Shader ├── IgcsDof.fx └── IgcsSourceTester.fx ├── ThreadSafeQueue.h ├── Utils.cpp ├── Utils.h ├── WorkItem.h ├── fpng.cpp ├── fpng.h ├── resource.h ├── std_image_write.h └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/README.md -------------------------------------------------------------------------------- /src/CDataFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CDataFile.cpp -------------------------------------------------------------------------------- /src/CDataFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CDataFile.h -------------------------------------------------------------------------------- /src/CameraPathData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CameraPathData.cpp -------------------------------------------------------------------------------- /src/CameraPathData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CameraPathData.h -------------------------------------------------------------------------------- /src/CameraToolsConnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CameraToolsConnector.cpp -------------------------------------------------------------------------------- /src/CameraToolsConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CameraToolsConnector.h -------------------------------------------------------------------------------- /src/CameraToolsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/CameraToolsData.h -------------------------------------------------------------------------------- /src/ConstantsEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ConstantsEnums.h -------------------------------------------------------------------------------- /src/DepthOfFieldController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/DepthOfFieldController.cpp -------------------------------------------------------------------------------- /src/DepthOfFieldController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/DepthOfFieldController.h -------------------------------------------------------------------------------- /src/EffectState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/EffectState.cpp -------------------------------------------------------------------------------- /src/EffectState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/EffectState.h -------------------------------------------------------------------------------- /src/IgcsConnector.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/IgcsConnector.rc -------------------------------------------------------------------------------- /src/IgcsConnector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/IgcsConnector.sln -------------------------------------------------------------------------------- /src/IgcsConnector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/IgcsConnector.vcxproj -------------------------------------------------------------------------------- /src/IgcsConnector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/IgcsConnector.vcxproj.filters -------------------------------------------------------------------------------- /src/Include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/imgui.h -------------------------------------------------------------------------------- /src/Include/reshade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade.hpp -------------------------------------------------------------------------------- /src/Include/reshade_api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_api.hpp -------------------------------------------------------------------------------- /src/Include/reshade_api_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_api_device.hpp -------------------------------------------------------------------------------- /src/Include/reshade_api_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_api_format.hpp -------------------------------------------------------------------------------- /src/Include/reshade_api_pipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_api_pipeline.hpp -------------------------------------------------------------------------------- /src/Include/reshade_api_resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_api_resource.hpp -------------------------------------------------------------------------------- /src/Include/reshade_events.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_events.hpp -------------------------------------------------------------------------------- /src/Include/reshade_overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Include/reshade_overlay.hpp -------------------------------------------------------------------------------- /src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Main.cpp -------------------------------------------------------------------------------- /src/OverlayControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/OverlayControl.cpp -------------------------------------------------------------------------------- /src/OverlayControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/OverlayControl.h -------------------------------------------------------------------------------- /src/ReshadeStateController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ReshadeStateController.cpp -------------------------------------------------------------------------------- /src/ReshadeStateController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ReshadeStateController.h -------------------------------------------------------------------------------- /src/ReshadeStateSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ReshadeStateSnapshot.cpp -------------------------------------------------------------------------------- /src/ReshadeStateSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ReshadeStateSnapshot.h -------------------------------------------------------------------------------- /src/ScreenshotController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ScreenshotController.cpp -------------------------------------------------------------------------------- /src/ScreenshotController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ScreenshotController.h -------------------------------------------------------------------------------- /src/ScreenshotSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ScreenshotSettings.h -------------------------------------------------------------------------------- /src/Shader/IgcsDof.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Shader/IgcsDof.fx -------------------------------------------------------------------------------- /src/Shader/IgcsSourceTester.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Shader/IgcsSourceTester.fx -------------------------------------------------------------------------------- /src/ThreadSafeQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/ThreadSafeQueue.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/WorkItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/WorkItem.h -------------------------------------------------------------------------------- /src/fpng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/fpng.cpp -------------------------------------------------------------------------------- /src/fpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/fpng.h -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/resource.h -------------------------------------------------------------------------------- /src/std_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/std_image_write.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FransBouma/IgcsConnector/HEAD/src/stdafx.h --------------------------------------------------------------------------------