├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── Linux.yml │ ├── Osx.yml │ ├── Win.yml │ └── gh-pages.yml ├── .gitignore ├── .gitmodules ├── .jenkins ├── Jenkinsfile_LINUX └── Jenkinsfile_WINDOWS ├── 3rdparty ├── BuildInc │ ├── BuildInc.c │ ├── CMakeLists.txt │ ├── LICENSE │ └── README.md └── NVApi_R470 │ ├── NvApiDriverSettings.c │ ├── NvApiDriverSettings.h │ ├── Sample_Code │ ├── CustomTiming │ │ ├── CustomTiming.cpp │ │ └── targetver.h │ ├── DisplayColorControl │ │ ├── DisplayColorControl.cpp │ │ ├── NVHelper.cpp │ │ └── NVHelper.h │ ├── DisplayConfiguration │ │ ├── DisplayConfiguration.cpp │ │ └── targetver.h │ ├── QSYNC_Event_Registration │ │ └── QSYNC_Event_Registration.cpp │ ├── Sync_Configuration │ │ ├── Sync_Configuration.cpp │ │ └── targetver.h │ └── i2c │ │ ├── i2c.cpp │ │ └── targetver.h │ ├── amd64 │ └── nvapi64.lib │ ├── docs │ ├── NVAPI_R470_Public_SDK_RelNotes_v01.pdf │ ├── NVAPI_Reference_Developer.chm │ ├── NVAPI_Reference_html_R470.nvzip │ └── NVAPI_SDKs_Samples_and_Tools_License_Agreement(Public).pdf │ ├── nvHLSLExtns.h │ ├── nvHLSLExtnsInternal.h │ ├── nvShaderExtnEnums.h │ ├── nvapi.h │ ├── nvapi_lite_common.h │ ├── nvapi_lite_d3dext.h │ ├── nvapi_lite_salend.h │ ├── nvapi_lite_salstart.h │ ├── nvapi_lite_sli.h │ ├── nvapi_lite_stereo.h │ ├── nvapi_lite_surround.h │ ├── readme.md │ └── x86 │ └── nvapi.lib ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── cmake ├── 3rdparty.cmake ├── nvapi.cmake └── soglsl.cmake ├── doc ├── Build_Debian_Release_x32.sh ├── Build_Debian_Release_x64.sh ├── images │ ├── NoodlesPlate_MSVC_x64_Release_2019-07-14_05-54-36.png │ ├── NoodlesPlate_MSVC_x64_Release_2019-07-14_05-55-13.png │ ├── NoodlesPlate_Msvc_x64_N69aImL27C.png │ ├── NoodlesPlate_Msvc_x64_UXpK9TMq4S.png │ ├── NoodlesPlate_Msvc_x64_ldzPsKLqlK.png │ ├── NoodlesPlate_Msvc_x64_wPe36WwlZX.png │ └── vlc_SNqaS5IBxD.jpg └── samples │ ├── FluidHeightMap │ ├── Readme.md │ ├── fluid.conf │ ├── fluid.glsl │ ├── main.conf │ ├── main.glsl │ ├── pic0.png │ ├── pic1.png │ ├── pic2.png │ ├── pic3.png │ ├── pic4.png │ ├── pic5.png │ ├── pic6.png │ ├── pic7.png │ ├── variante.conf │ └── variante.glsl │ ├── FluidSimu │ ├── Readme.md │ ├── fluid.conf │ ├── fluid.glsl │ ├── pict0.png │ ├── pict1.png │ ├── pict2.png │ └── pict3.png │ ├── ProteanCloud │ ├── ProteanClouds.conf │ ├── ProteanClouds.glsl │ ├── Readme.md │ ├── pic.png │ └── video.mp4 │ ├── SdfInstancing │ ├── Readme.md │ ├── SdfInstancingl.conf │ ├── SdfInstancingl.glsl │ ├── cone.obj │ ├── cube.obj │ ├── cyl.obj │ ├── ico.obj │ ├── monk.obj │ ├── pict0.png │ ├── pict1.png │ ├── pict2.png │ ├── pict3.png │ ├── pict4.png │ └── torus.obj │ └── Tesselation │ ├── Pics.glsl │ ├── Readme.md │ ├── ico.obj │ ├── msaa_x2_enabled.gif │ └── tesselation_enable_uniform_tuning.gif ├── libraryCppFile.h ├── res ├── appicon.bmp ├── appicon.ico ├── appicon.png ├── appicon.rc └── shadow.png ├── src ├── Backends │ ├── MainBackend.cpp │ └── MainBackend.h ├── Config │ ├── SettingsDlg.cpp │ ├── SettingsDlg.h │ ├── StaticConfig.cpp │ └── StaticConfig.h ├── Generator │ ├── CodeGenerator.cpp │ └── CodeGenerator.h ├── Gui │ ├── ImGuiThemes.cpp │ ├── MainFrame.cpp │ ├── MainFrame.h │ ├── MainToolBar.cpp │ └── MainToolBar.h ├── Headers │ ├── CustomImGuiFileDialogConfig.h │ ├── CustomImWidgetsConfig.h │ ├── CustomInAppGpuProfiler.h │ ├── CustomSoGLSLConfig.h │ ├── Globals.h │ └── NoodlesPlateBuild.h ├── Helper │ ├── FrameActionSystem.cpp │ └── FrameActionSystem.h ├── Impl │ └── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h ├── Metrics │ ├── MetricSystem.cpp │ ├── MetricSystem.h │ └── Win │ │ ├── KGpuMon.cpp │ │ └── KGpuMon.h ├── Panes │ ├── BufferPreview.cpp │ ├── BufferPreview.h │ ├── CodePane.cpp │ ├── CodePane.h │ ├── ConfigPane.cpp │ ├── ConfigPane.h │ ├── ConfigSwitcherPane.cpp │ ├── ConfigSwitcherPane.h │ ├── ConsolePane.cpp │ ├── ConsolePane.h │ ├── HelpPane.cpp │ ├── HelpPane.h │ ├── InfosPane.cpp │ ├── InfosPane.h │ ├── InspectorPane.cpp │ ├── InspectorPane.h │ ├── MessagePane.cpp │ ├── MessagePane.h │ ├── NodesPane.cpp │ ├── NodesPane.h │ ├── ProfilerPane.cpp │ ├── ProfilerPane.h │ ├── TimeLinePane.cpp │ ├── TimeLinePane.h │ ├── UniformsPane.cpp │ ├── UniformsPane.h │ ├── VRPane.cpp │ └── VRPane.h ├── PixelDebug │ ├── Abtract │ │ └── PixelDebugAbstract.h │ ├── Modules │ │ ├── PixelDebugDistanceField.cpp │ │ ├── PixelDebugDistanceField.h │ │ ├── PixelDebugGizmo.cpp │ │ ├── PixelDebugGizmo.h │ │ ├── PixelDebugHeader.h │ │ ├── PixelDebugLine.cpp │ │ ├── PixelDebugLine.h │ │ ├── PixelDebugNormal.cpp │ │ ├── PixelDebugNormal.h │ │ ├── PixelDebugPoint.cpp │ │ └── PixelDebugPoint.h │ ├── PixelDebug.cpp │ └── PixelDebug.h ├── Project │ ├── ProjectFile.cpp │ └── ProjectFile.h ├── Systems │ ├── PathSystem.cpp │ ├── PathSystem.h │ ├── PictureExportSystem.cpp │ ├── PictureExportSystem.h │ ├── TemplateSystem.cpp │ ├── TemplateSystem.h │ ├── UrlLibrarySystem.cpp │ ├── UrlLibrarySystem.h │ ├── VersionSystem.cpp │ └── VersionSystem.h └── main.cpp └── submodules.init.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aiekick 2 | -------------------------------------------------------------------------------- /.github/workflows/Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.github/workflows/Linux.yml -------------------------------------------------------------------------------- /.github/workflows/Osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.github/workflows/Osx.yml -------------------------------------------------------------------------------- /.github/workflows/Win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.github/workflows/Win.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jenkins/Jenkinsfile_LINUX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.jenkins/Jenkinsfile_LINUX -------------------------------------------------------------------------------- /.jenkins/Jenkinsfile_WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/.jenkins/Jenkinsfile_WINDOWS -------------------------------------------------------------------------------- /3rdparty/BuildInc/BuildInc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/BuildInc/BuildInc.c -------------------------------------------------------------------------------- /3rdparty/BuildInc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/BuildInc/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/BuildInc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/BuildInc/LICENSE -------------------------------------------------------------------------------- /3rdparty/BuildInc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/BuildInc/README.md -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/NvApiDriverSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/NvApiDriverSettings.c -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/NvApiDriverSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/NvApiDriverSettings.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/CustomTiming/CustomTiming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/CustomTiming/CustomTiming.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/CustomTiming/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/CustomTiming/targetver.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/DisplayColorControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/DisplayColorControl.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/NVHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/NVHelper.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/NVHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/DisplayColorControl/NVHelper.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/DisplayConfiguration/DisplayConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/DisplayConfiguration/DisplayConfiguration.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/DisplayConfiguration/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/DisplayConfiguration/targetver.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/QSYNC_Event_Registration/QSYNC_Event_Registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/QSYNC_Event_Registration/QSYNC_Event_Registration.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/Sync_Configuration/Sync_Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/Sync_Configuration/Sync_Configuration.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/Sync_Configuration/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/Sync_Configuration/targetver.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/i2c/i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/i2c/i2c.cpp -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/Sample_Code/i2c/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/Sample_Code/i2c/targetver.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/amd64/nvapi64.lib -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/docs/NVAPI_R470_Public_SDK_RelNotes_v01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/docs/NVAPI_R470_Public_SDK_RelNotes_v01.pdf -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/docs/NVAPI_Reference_Developer.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/docs/NVAPI_Reference_Developer.chm -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/docs/NVAPI_Reference_html_R470.nvzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/docs/NVAPI_Reference_html_R470.nvzip -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/docs/NVAPI_SDKs_Samples_and_Tools_License_Agreement(Public).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/docs/NVAPI_SDKs_Samples_and_Tools_License_Agreement(Public).pdf -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvHLSLExtns.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_common.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_salend.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_sli.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/nvapi_lite_surround.h -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/readme.md: -------------------------------------------------------------------------------- 1 | https://developer.nvidia.com/gameworksdownload#?search=nvapi -------------------------------------------------------------------------------- /3rdparty/NVApi_R470/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/3rdparty/NVApi_R470/x86/nvapi.lib -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | NoodlesPlate_Windows_Release_x64_v0.7.852 2 | -------------------------------------------------------------------------------- /cmake/3rdparty.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/cmake/3rdparty.cmake -------------------------------------------------------------------------------- /cmake/nvapi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/cmake/nvapi.cmake -------------------------------------------------------------------------------- /cmake/soglsl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/cmake/soglsl.cmake -------------------------------------------------------------------------------- /doc/Build_Debian_Release_x32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/Build_Debian_Release_x32.sh -------------------------------------------------------------------------------- /doc/Build_Debian_Release_x64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/Build_Debian_Release_x64.sh -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_MSVC_x64_Release_2019-07-14_05-54-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_MSVC_x64_Release_2019-07-14_05-54-36.png -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_MSVC_x64_Release_2019-07-14_05-55-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_MSVC_x64_Release_2019-07-14_05-55-13.png -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_Msvc_x64_N69aImL27C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_Msvc_x64_N69aImL27C.png -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_Msvc_x64_UXpK9TMq4S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_Msvc_x64_UXpK9TMq4S.png -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_Msvc_x64_ldzPsKLqlK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_Msvc_x64_ldzPsKLqlK.png -------------------------------------------------------------------------------- /doc/images/NoodlesPlate_Msvc_x64_wPe36WwlZX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/NoodlesPlate_Msvc_x64_wPe36WwlZX.png -------------------------------------------------------------------------------- /doc/images/vlc_SNqaS5IBxD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/images/vlc_SNqaS5IBxD.jpg -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/Readme.md -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/fluid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/fluid.conf -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/fluid.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/fluid.glsl -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/main.conf -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/main.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/main.glsl -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic0.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic1.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic2.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic3.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic4.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic5.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic6.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/pic7.png -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/variante.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/variante.conf -------------------------------------------------------------------------------- /doc/samples/FluidHeightMap/variante.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidHeightMap/variante.glsl -------------------------------------------------------------------------------- /doc/samples/FluidSimu/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/Readme.md -------------------------------------------------------------------------------- /doc/samples/FluidSimu/fluid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/fluid.conf -------------------------------------------------------------------------------- /doc/samples/FluidSimu/fluid.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/fluid.glsl -------------------------------------------------------------------------------- /doc/samples/FluidSimu/pict0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/pict0.png -------------------------------------------------------------------------------- /doc/samples/FluidSimu/pict1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/pict1.png -------------------------------------------------------------------------------- /doc/samples/FluidSimu/pict2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/pict2.png -------------------------------------------------------------------------------- /doc/samples/FluidSimu/pict3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/FluidSimu/pict3.png -------------------------------------------------------------------------------- /doc/samples/ProteanCloud/ProteanClouds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/ProteanCloud/ProteanClouds.conf -------------------------------------------------------------------------------- /doc/samples/ProteanCloud/ProteanClouds.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/ProteanCloud/ProteanClouds.glsl -------------------------------------------------------------------------------- /doc/samples/ProteanCloud/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/ProteanCloud/Readme.md -------------------------------------------------------------------------------- /doc/samples/ProteanCloud/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/ProteanCloud/pic.png -------------------------------------------------------------------------------- /doc/samples/ProteanCloud/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/ProteanCloud/video.mp4 -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/Readme.md -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/SdfInstancingl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/SdfInstancingl.conf -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/SdfInstancingl.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/SdfInstancingl.glsl -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/cone.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/cone.obj -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/cube.obj -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/cyl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/cyl.obj -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/ico.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/ico.obj -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/monk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/monk.obj -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/pict0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/pict0.png -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/pict1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/pict1.png -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/pict2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/pict2.png -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/pict3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/pict3.png -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/pict4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/pict4.png -------------------------------------------------------------------------------- /doc/samples/SdfInstancing/torus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/SdfInstancing/torus.obj -------------------------------------------------------------------------------- /doc/samples/Tesselation/Pics.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/Tesselation/Pics.glsl -------------------------------------------------------------------------------- /doc/samples/Tesselation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/Tesselation/Readme.md -------------------------------------------------------------------------------- /doc/samples/Tesselation/ico.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/Tesselation/ico.obj -------------------------------------------------------------------------------- /doc/samples/Tesselation/msaa_x2_enabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/Tesselation/msaa_x2_enabled.gif -------------------------------------------------------------------------------- /doc/samples/Tesselation/tesselation_enable_uniform_tuning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/doc/samples/Tesselation/tesselation_enable_uniform_tuning.gif -------------------------------------------------------------------------------- /libraryCppFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/libraryCppFile.h -------------------------------------------------------------------------------- /res/appicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/res/appicon.bmp -------------------------------------------------------------------------------- /res/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/res/appicon.ico -------------------------------------------------------------------------------- /res/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/res/appicon.png -------------------------------------------------------------------------------- /res/appicon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/res/appicon.rc -------------------------------------------------------------------------------- /res/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/res/shadow.png -------------------------------------------------------------------------------- /src/Backends/MainBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Backends/MainBackend.cpp -------------------------------------------------------------------------------- /src/Backends/MainBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Backends/MainBackend.h -------------------------------------------------------------------------------- /src/Config/SettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Config/SettingsDlg.cpp -------------------------------------------------------------------------------- /src/Config/SettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Config/SettingsDlg.h -------------------------------------------------------------------------------- /src/Config/StaticConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Config/StaticConfig.cpp -------------------------------------------------------------------------------- /src/Config/StaticConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Config/StaticConfig.h -------------------------------------------------------------------------------- /src/Generator/CodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Generator/CodeGenerator.cpp -------------------------------------------------------------------------------- /src/Generator/CodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Generator/CodeGenerator.h -------------------------------------------------------------------------------- /src/Gui/ImGuiThemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Gui/ImGuiThemes.cpp -------------------------------------------------------------------------------- /src/Gui/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Gui/MainFrame.cpp -------------------------------------------------------------------------------- /src/Gui/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Gui/MainFrame.h -------------------------------------------------------------------------------- /src/Gui/MainToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Gui/MainToolBar.cpp -------------------------------------------------------------------------------- /src/Gui/MainToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Gui/MainToolBar.h -------------------------------------------------------------------------------- /src/Headers/CustomImGuiFileDialogConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/CustomImGuiFileDialogConfig.h -------------------------------------------------------------------------------- /src/Headers/CustomImWidgetsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/CustomImWidgetsConfig.h -------------------------------------------------------------------------------- /src/Headers/CustomInAppGpuProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/CustomInAppGpuProfiler.h -------------------------------------------------------------------------------- /src/Headers/CustomSoGLSLConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/CustomSoGLSLConfig.h -------------------------------------------------------------------------------- /src/Headers/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/Globals.h -------------------------------------------------------------------------------- /src/Headers/NoodlesPlateBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Headers/NoodlesPlateBuild.h -------------------------------------------------------------------------------- /src/Helper/FrameActionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Helper/FrameActionSystem.cpp -------------------------------------------------------------------------------- /src/Helper/FrameActionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Helper/FrameActionSystem.h -------------------------------------------------------------------------------- /src/Impl/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Impl/freetype/README.md -------------------------------------------------------------------------------- /src/Impl/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Impl/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /src/Impl/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Impl/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /src/Metrics/MetricSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Metrics/MetricSystem.cpp -------------------------------------------------------------------------------- /src/Metrics/MetricSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Metrics/MetricSystem.h -------------------------------------------------------------------------------- /src/Metrics/Win/KGpuMon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Metrics/Win/KGpuMon.cpp -------------------------------------------------------------------------------- /src/Metrics/Win/KGpuMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Metrics/Win/KGpuMon.h -------------------------------------------------------------------------------- /src/Panes/BufferPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/BufferPreview.cpp -------------------------------------------------------------------------------- /src/Panes/BufferPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/BufferPreview.h -------------------------------------------------------------------------------- /src/Panes/CodePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/CodePane.cpp -------------------------------------------------------------------------------- /src/Panes/CodePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/CodePane.h -------------------------------------------------------------------------------- /src/Panes/ConfigPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConfigPane.cpp -------------------------------------------------------------------------------- /src/Panes/ConfigPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConfigPane.h -------------------------------------------------------------------------------- /src/Panes/ConfigSwitcherPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConfigSwitcherPane.cpp -------------------------------------------------------------------------------- /src/Panes/ConfigSwitcherPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConfigSwitcherPane.h -------------------------------------------------------------------------------- /src/Panes/ConsolePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConsolePane.cpp -------------------------------------------------------------------------------- /src/Panes/ConsolePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ConsolePane.h -------------------------------------------------------------------------------- /src/Panes/HelpPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/HelpPane.cpp -------------------------------------------------------------------------------- /src/Panes/HelpPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/HelpPane.h -------------------------------------------------------------------------------- /src/Panes/InfosPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/InfosPane.cpp -------------------------------------------------------------------------------- /src/Panes/InfosPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/InfosPane.h -------------------------------------------------------------------------------- /src/Panes/InspectorPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/InspectorPane.cpp -------------------------------------------------------------------------------- /src/Panes/InspectorPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/InspectorPane.h -------------------------------------------------------------------------------- /src/Panes/MessagePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/MessagePane.cpp -------------------------------------------------------------------------------- /src/Panes/MessagePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/MessagePane.h -------------------------------------------------------------------------------- /src/Panes/NodesPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/NodesPane.cpp -------------------------------------------------------------------------------- /src/Panes/NodesPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/NodesPane.h -------------------------------------------------------------------------------- /src/Panes/ProfilerPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ProfilerPane.cpp -------------------------------------------------------------------------------- /src/Panes/ProfilerPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/ProfilerPane.h -------------------------------------------------------------------------------- /src/Panes/TimeLinePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/TimeLinePane.cpp -------------------------------------------------------------------------------- /src/Panes/TimeLinePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/TimeLinePane.h -------------------------------------------------------------------------------- /src/Panes/UniformsPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/UniformsPane.cpp -------------------------------------------------------------------------------- /src/Panes/UniformsPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/UniformsPane.h -------------------------------------------------------------------------------- /src/Panes/VRPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/VRPane.cpp -------------------------------------------------------------------------------- /src/Panes/VRPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Panes/VRPane.h -------------------------------------------------------------------------------- /src/PixelDebug/Abtract/PixelDebugAbstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Abtract/PixelDebugAbstract.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugDistanceField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugDistanceField.cpp -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugDistanceField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugDistanceField.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugGizmo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugGizmo.cpp -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugGizmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugGizmo.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugHeader.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugLine.cpp -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugLine.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugNormal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugNormal.cpp -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugNormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugNormal.h -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugPoint.cpp -------------------------------------------------------------------------------- /src/PixelDebug/Modules/PixelDebugPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/Modules/PixelDebugPoint.h -------------------------------------------------------------------------------- /src/PixelDebug/PixelDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/PixelDebug.cpp -------------------------------------------------------------------------------- /src/PixelDebug/PixelDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/PixelDebug/PixelDebug.h -------------------------------------------------------------------------------- /src/Project/ProjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Project/ProjectFile.cpp -------------------------------------------------------------------------------- /src/Project/ProjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Project/ProjectFile.h -------------------------------------------------------------------------------- /src/Systems/PathSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/PathSystem.cpp -------------------------------------------------------------------------------- /src/Systems/PathSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/PathSystem.h -------------------------------------------------------------------------------- /src/Systems/PictureExportSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/PictureExportSystem.cpp -------------------------------------------------------------------------------- /src/Systems/PictureExportSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/PictureExportSystem.h -------------------------------------------------------------------------------- /src/Systems/TemplateSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/TemplateSystem.cpp -------------------------------------------------------------------------------- /src/Systems/TemplateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/TemplateSystem.h -------------------------------------------------------------------------------- /src/Systems/UrlLibrarySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/UrlLibrarySystem.cpp -------------------------------------------------------------------------------- /src/Systems/UrlLibrarySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/UrlLibrarySystem.h -------------------------------------------------------------------------------- /src/Systems/VersionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/VersionSystem.cpp -------------------------------------------------------------------------------- /src/Systems/VersionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/Systems/VersionSystem.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/src/main.cpp -------------------------------------------------------------------------------- /submodules.init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/NoodlesPlate/HEAD/submodules.init.txt --------------------------------------------------------------------------------