├── .gitattributes ├── .gitignore ├── Comfy.sln ├── ComfyData ├── ComfyDataBuild.vcxproj ├── ComfyDataBuild.vcxproj.filters ├── build │ ├── build.bat │ ├── build_manual.bat │ ├── build_manual_sprset.bat │ └── build_notes.txt ├── data-src-sprset │ └── spr_chart_editor │ │ ├── sync_preset_icon_horizontal_down.png │ │ ├── sync_preset_icon_horizontal_up.png │ │ ├── sync_preset_icon_square.png │ │ ├── sync_preset_icon_triangle.png │ │ ├── sync_preset_icon_vertical_left.png │ │ ├── sync_preset_icon_vertical_right.png │ │ ├── timeline_circle.png │ │ ├── timeline_circle_sync.png │ │ ├── timeline_cross.png │ │ ├── timeline_cross_sync.png │ │ ├── timeline_hold_text.png │ │ ├── timeline_hold_text_sync.png │ │ ├── timeline_slide_chain_l.png │ │ ├── timeline_slide_chain_l_sync.png │ │ ├── timeline_slide_chain_r.png │ │ ├── timeline_slide_chain_r_sync.png │ │ ├── timeline_slide_l.png │ │ ├── timeline_slide_l_sync.png │ │ ├── timeline_slide_r.png │ │ ├── timeline_slide_r_sync.png │ │ ├── timeline_square.png │ │ ├── timeline_square_sync.png │ │ ├── timeline_triangle.png │ │ └── timeline_triangle_sync.png ├── data-src │ ├── font │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.ttf │ │ └── noto_sans_cjk_jp-regular.otf │ ├── license │ │ ├── comfy_studio.txt │ │ ├── dear_imgui.txt │ │ ├── directxtex.txt │ │ ├── dr_flac.txt │ │ ├── dr_mp3.txt │ │ ├── dr_wav.txt │ │ ├── font_awesome.txt │ │ ├── glm.txt │ │ ├── iconfontcppheader.txt │ │ ├── libogg.txt │ │ ├── libvorbis.txt │ │ ├── libvorbisenc.txt │ │ ├── libvorbisfile.txt │ │ ├── noto_cjk.txt │ │ ├── rapidjson.txt │ │ ├── stb_image.txt │ │ ├── stb_image_write.txt │ │ ├── stb_vorbis.txt │ │ └── zlib.txt │ ├── process │ │ └── external_process.bin │ ├── sound │ │ ├── metronome_bar.wav │ │ └── metronome_beat.wav │ └── sprite │ │ └── spr_chart_editor.bin └── src │ └── ComfyDataBuild.cpp ├── ComfyEngine ├── ComfyEngine.vcxproj ├── ComfyEngine.vcxproj.filters ├── src-meta │ └── ShaderBytecode │ │ ├── ShaderBytecodeHeader.py │ │ └── ShaderList.txt └── src │ ├── Audio │ ├── Audio.h │ ├── Core │ │ ├── AudioEngine.cpp │ │ ├── AudioEngine.h │ │ ├── Backend │ │ │ ├── IAudioBackend.h │ │ │ ├── WASAPIBackend.cpp │ │ │ └── WASAPIBackend.h │ │ ├── ChannelMixer.cpp │ │ ├── ChannelMixer.h │ │ ├── Resample.h │ │ └── SampleMix.h │ ├── Decoder │ │ ├── DecoderFactory.cpp │ │ ├── DecoderFactory.h │ │ ├── Detail │ │ │ ├── Decoders.h │ │ │ ├── FlacDecoder.cpp │ │ │ ├── HevagDecoder.cpp │ │ │ ├── Mp3Decoder.cpp │ │ │ ├── VorbisDecoder.cpp │ │ │ └── WavDecoder.cpp │ │ └── IDecoder.h │ ├── Encoder │ │ ├── EncoderUtil.cpp │ │ └── EncoderUtil.h │ ├── Misc │ │ ├── SfxArchive.cpp │ │ ├── SfxArchive.h │ │ ├── TextureCachedWaveform.cpp │ │ ├── TextureCachedWaveform.h │ │ ├── Waveform.cpp │ │ └── Waveform.h │ └── SampleProvider │ │ ├── ISampleProvider.h │ │ ├── MemorySampleProvider.cpp │ │ ├── MemorySampleProvider.h │ │ ├── SilenceSampleProvider.cpp │ │ └── SilenceSampleProvider.h │ ├── ImGui │ ├── ComfyTextureID.cpp │ ├── ComfyTextureID.h │ ├── Core │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_user.h │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── Extensions │ │ ├── CheckerboardTexture.cpp │ │ ├── CheckerboardTexture.h │ │ ├── ImGuiExtensions.cpp │ │ ├── ImGuiExtensions.h │ │ ├── InternalExtensions.h │ │ ├── PropertyEditor.h │ │ ├── TexExtensions.cpp │ │ ├── TexExtensions.h │ │ ├── Theme.cpp │ │ └── Theme.h │ ├── Gui.h │ ├── GuiRenderer.cpp │ ├── GuiRenderer.h │ ├── GuiRendererGlyphRanges.h │ ├── Implementation │ │ ├── ComfyD3D11.cpp │ │ ├── ComfyD3D11.h │ │ ├── ComfyWin32.cpp │ │ └── ComfyWin32.h │ └── Widgets │ │ ├── ComfyWidgets.cpp │ │ ├── ComfyWidgets.h │ │ ├── FileViewer.cpp │ │ ├── FileViewer.h │ │ ├── ImageGridView.cpp │ │ ├── ImageGridView.h │ │ ├── LoadingTextAnimation.cpp │ │ └── LoadingTextAnimation.h │ ├── Input │ ├── Core │ │ ├── InputBaseTypes.cpp │ │ ├── InputBaseTypes.h │ │ ├── InputSystem.cpp │ │ └── InputSystem.h │ └── Input.h │ ├── Render │ ├── Core │ │ ├── Camera.cpp │ │ ├── Camera.h │ │ ├── RayIntersection.h │ │ ├── RenderSnapshot.cpp │ │ ├── RenderSnapshot.h │ │ ├── Renderer2D │ │ │ ├── AetRenderer.cpp │ │ │ ├── AetRenderer.h │ │ │ ├── Detail │ │ │ │ ├── RenderTarget2DImpl.h │ │ │ │ ├── SpriteBatchData.cpp │ │ │ │ ├── SpriteBatchData.h │ │ │ │ └── TextureSamplerCache.h │ │ │ ├── FontRenderer.cpp │ │ │ ├── FontRenderer.h │ │ │ ├── RenderCommand2D.h │ │ │ ├── RenderTarget2D.h │ │ │ ├── Renderer2D.cpp │ │ │ └── Renderer2D.h │ │ └── Renderer3D │ │ │ ├── Detail │ │ │ ├── BlendStateCache.h │ │ │ ├── ConstantData.h │ │ │ ├── GaussianBlur.h │ │ │ ├── LensFlare.h │ │ │ ├── MeshTransparency.h │ │ │ ├── RenderTarget3DImpl.h │ │ │ ├── ShaderFlags.h │ │ │ ├── ShaderPairs.h │ │ │ ├── SubsurfaceScattering.h │ │ │ ├── SunOcclusionData.h │ │ │ ├── TextureSamplerCache.h │ │ │ └── ToneMapData.h │ │ │ ├── RenderCommand3D.h │ │ │ ├── RenderTarget3D.h │ │ │ ├── Renderer3D.cpp │ │ │ └── Renderer3D.h │ ├── D3D11 │ │ ├── D3D11.cpp │ │ ├── D3D11.h │ │ ├── D3D11Buffer.cpp │ │ ├── D3D11Buffer.h │ │ ├── D3D11Common.cpp │ │ ├── D3D11Common.h │ │ ├── D3D11GraphicsTypeHelpers.h │ │ ├── D3D11OpaqueResource.cpp │ │ ├── D3D11OpaqueResource.h │ │ ├── D3D11Shader.cpp │ │ ├── D3D11Shader.h │ │ ├── D3D11State.cpp │ │ ├── D3D11State.h │ │ ├── D3D11Texture.cpp │ │ ├── D3D11Texture.h │ │ └── Shader │ │ │ ├── Bytecode │ │ │ ├── ShaderBytecode.cpp │ │ │ └── ShaderBytecode.h │ │ │ └── Source │ │ │ ├── Common │ │ │ ├── BlendModes.hlsl │ │ │ ├── Checkerboard.hlsl │ │ │ ├── ColorCorrection.hlsl │ │ │ ├── CubeMapNet.hlsl │ │ │ ├── Font.hlsl │ │ │ ├── MathConstants.hlsl │ │ │ ├── TextureFormats.hlsl │ │ │ └── YCbCr.hlsl │ │ │ ├── ImGui │ │ │ ├── ImGuiCustom_PS.hlsl │ │ │ ├── ImGuiDefault_PS.hlsl │ │ │ └── ImGuiDefault_VS.hlsl │ │ │ ├── Renderer2D │ │ │ ├── Multi │ │ │ │ ├── SpriteMultiTextureBatchBlend_08_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_01_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_02_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_03_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_04_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_05_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_06_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_07_PS.hlsl │ │ │ │ ├── SpriteMultiTextureBatch_08_PS.hlsl │ │ │ │ └── SpriteMultiTexture_VS.hlsl │ │ │ ├── PostProcessing │ │ │ │ ├── SpriteColorCorrection_PS.hlsl │ │ │ │ └── SpriteFullscreenQuad_VS.hlsl │ │ │ ├── Single │ │ │ │ ├── SpriteSingleTextureCheckerboard_PS.hlsl │ │ │ │ ├── SpriteSingleTextureFont_PS.hlsl │ │ │ │ ├── SpriteSingleTextureMaskBlend_PS.hlsl │ │ │ │ ├── SpriteSingleTextureMask_PS.hlsl │ │ │ │ └── SpriteSingleTexture_VS.hlsl │ │ │ └── Uber │ │ │ │ ├── SpriteMultiTexture_Uber.hlsl │ │ │ │ └── SpriteSingleTexture_Uber.hlsl │ │ │ └── Renderer3D │ │ │ ├── Include │ │ │ ├── Assembly │ │ │ │ ├── DebugInterface.hlsl │ │ │ │ ├── Helper.hlsl │ │ │ │ ├── InputOutput.hlsl │ │ │ │ ├── Instructions.hlsl │ │ │ │ ├── ProgramEnvironment.hlsl │ │ │ │ └── TempRefactor.hlsl │ │ │ ├── ConstantInputs.hlsl │ │ │ ├── InputLayout.hlsl │ │ │ ├── ShaderFlags.hlsl │ │ │ ├── Structs │ │ │ │ ├── MaterialData.hlsl │ │ │ │ ├── ObjectData.hlsl │ │ │ │ ├── SceneData.hlsl │ │ │ │ └── SkeletonData.hlsl │ │ │ └── TextureInputs.hlsl │ │ │ ├── LensFlare │ │ │ ├── LensFlare_PS.hlsl │ │ │ ├── LensFlare_VS.hlsl │ │ │ └── Sun_PS.hlsl │ │ │ ├── Materials │ │ │ ├── Chara │ │ │ │ ├── ClothAniso_PS.hlsl │ │ │ │ ├── ClothDefault_PS.hlsl │ │ │ │ ├── ClothDefault_VS.hlsl │ │ │ │ ├── EyeBall_PS.hlsl │ │ │ │ ├── EyeBall_VS.hlsl │ │ │ │ ├── EyeLens_PS.hlsl │ │ │ │ ├── EyeLens_VS.hlsl │ │ │ │ ├── GlassEye_PS.hlsl │ │ │ │ ├── GlassEye_VS.hlsl │ │ │ │ ├── HairAniso_PS.hlsl │ │ │ │ ├── HairDefault_PS.hlsl │ │ │ │ ├── HairDefault_VS.hlsl │ │ │ │ ├── ItemBlinn_PS.hlsl │ │ │ │ ├── ItemBlinn_VS.hlsl │ │ │ │ ├── SSSSkinConst_PS.hlsl │ │ │ │ ├── SSSSkin_PS.hlsl │ │ │ │ ├── SSSSkin_VS.hlsl │ │ │ │ ├── SkinDefault_PS.hlsl │ │ │ │ ├── SkinDefault_VS.hlsl │ │ │ │ ├── Tights_PS.hlsl │ │ │ │ └── Tights_VS.hlsl │ │ │ └── Stage │ │ │ │ ├── BlinnPerFrag_PS.hlsl │ │ │ │ ├── BlinnPerFrag_VS.hlsl │ │ │ │ ├── BlinnPerVert_PS.hlsl │ │ │ │ ├── BlinnPerVert_VS.hlsl │ │ │ │ ├── Constant_PS.hlsl │ │ │ │ ├── Constant_VS.hlsl │ │ │ │ ├── Floor_PS.hlsl │ │ │ │ ├── Floor_VS.hlsl │ │ │ │ ├── Lambert_PS.hlsl │ │ │ │ ├── Lambert_VS.hlsl │ │ │ │ ├── SkyDefault_PS.hlsl │ │ │ │ ├── SkyDefault_VS.hlsl │ │ │ │ ├── StageBlinn_PS.hlsl │ │ │ │ ├── StageBlinn_VS.hlsl │ │ │ │ ├── Water_PS.hlsl │ │ │ │ └── Water_VS.hlsl │ │ │ ├── Other │ │ │ ├── DebugMaterial_PS.hlsl │ │ │ ├── DebugMaterial_VS.hlsl │ │ │ ├── PositionTransform_VS.hlsl │ │ │ ├── Silhouette_PS.hlsl │ │ │ ├── Silhouette_VS.hlsl │ │ │ ├── SolidBlack_PS.hlsl │ │ │ └── SolidWhite_PS.hlsl │ │ │ └── PostProcessing │ │ │ ├── Bloom │ │ │ ├── PPGauss_PS.hlsl │ │ │ └── ReduceTex_PS.hlsl │ │ │ ├── Exposure │ │ │ ├── ExposureAverage_PS.hlsl │ │ │ ├── ExposureMeasure_PS.hlsl │ │ │ └── ExposureMinify_PS.hlsl │ │ │ ├── Other │ │ │ ├── FullscreenQuad_VS.hlsl │ │ │ └── SilhouetteOutline_PS.hlsl │ │ │ ├── SSS │ │ │ ├── SSSFilterCopy_PS.hlsl │ │ │ ├── SSSFilterGauss2D_PS.hlsl │ │ │ └── SSSFilterMin_PS.hlsl │ │ │ ├── Shadow │ │ │ ├── DepthThreshold_PS.hlsl │ │ │ ├── ESMFilterErosion_PS.hlsl │ │ │ ├── ESMFilterMin_PS.hlsl │ │ │ ├── ESMGauss_PS.hlsl │ │ │ ├── ImgFilterBlur_PS.hlsl │ │ │ └── ImgFilter_PS.hlsl │ │ │ └── ToneMap │ │ │ └── ToneMap_PS.hlsl │ ├── Movie │ │ ├── MoviePlayer.cpp │ │ └── MoviePlayer.h │ └── Render.h │ ├── System │ ├── ComfyData.cpp │ ├── ComfyData.h │ ├── Library │ │ ├── LibraryLoader.cpp │ │ └── LibraryLoader.h │ └── Profiling │ │ ├── Profiler.cpp │ │ └── Profiler.h │ ├── Undo │ ├── Core │ │ ├── Command.h │ │ ├── CommandTemplates.h │ │ ├── UndoManager.cpp │ │ └── UndoManager.h │ └── Undo.h │ └── Window │ ├── ApplicationHost.cpp │ ├── ApplicationHost.h │ ├── RenderWindow.cpp │ └── RenderWindow.h ├── ComfyLib ├── ComfyLib.vcxproj ├── ComfyLib.vcxproj.filters └── src │ ├── Core │ ├── Hacks.h │ ├── Logger.cpp │ ├── Logger.h │ ├── SemanticVersion.cpp │ ├── SemanticVersion.h │ ├── Win32LeanWindowsHeader.cpp │ └── Win32LeanWindowsHeader.h │ ├── Database │ ├── AetDB.cpp │ ├── AetDB.h │ ├── Database.h │ ├── Game │ │ ├── GmBtnSfxDB.cpp │ │ ├── GmBtnSfxDB.h │ │ ├── GmPvListDB.cpp │ │ ├── GmPvListDB.h │ │ ├── PvDB.cpp │ │ └── PvDB.h │ ├── SfxDB.cpp │ ├── SfxDB.h │ ├── SprDB.cpp │ ├── SprDB.h │ ├── TexDB.cpp │ └── TexDB.h │ ├── Graphics │ ├── Auth2D │ │ ├── Aet │ │ │ ├── AetSet.cpp │ │ │ ├── AetSet.h │ │ │ ├── AetSetFile.cpp │ │ │ ├── AetUtil.cpp │ │ │ └── AetUtil.h │ │ ├── Font │ │ │ ├── FontMap.cpp │ │ │ └── FontMap.h │ │ ├── SprSet.cpp │ │ ├── SprSet.h │ │ └── Transform2D.h │ ├── Auth3D │ │ ├── A3D │ │ │ ├── A3D.cpp │ │ │ ├── A3D.h │ │ │ ├── A3DMgr.cpp │ │ │ └── A3DMgr.h │ │ ├── BoundingTypes.h │ │ ├── LightParam │ │ │ ├── FogParameter.cpp │ │ │ ├── FogParameter.h │ │ │ ├── GlowParameter.cpp │ │ │ ├── GlowParameter.h │ │ │ ├── IBLParameters.cpp │ │ │ ├── IBLParameters.h │ │ │ ├── LightParameters.cpp │ │ │ ├── LightParameters.h │ │ │ └── Parameters.h │ │ ├── Misc │ │ │ ├── DebugObj.cpp │ │ │ └── DebugObj.h │ │ ├── ObjSet.cpp │ │ ├── ObjSet.h │ │ ├── ObjSetFile.cpp │ │ ├── Ray.h │ │ └── Transform.h │ ├── GPUResource.h │ ├── GraphicTypes.h │ ├── TexSet.cpp │ ├── TexSet.h │ └── Utilities │ │ ├── SpriteExtraction.cpp │ │ ├── SpriteExtraction.h │ │ ├── SpritePacker.cpp │ │ ├── SpritePacker.h │ │ ├── TextureCompression.cpp │ │ └── TextureCompression.h │ ├── IO │ ├── Archive │ │ ├── ComfyArchive.cpp │ │ ├── ComfyArchive.h │ │ ├── FArc.cpp │ │ ├── FArc.h │ │ ├── FArcPacker.cpp │ │ └── FArcPacker.h │ ├── Config │ │ ├── ComfyBinaryConfig.cpp │ │ └── ComfyBinaryConfig.h │ ├── Crypto │ │ ├── Crypto.cpp │ │ ├── Crypto.h │ │ └── Detail │ │ │ ├── Win32Crypto.cpp │ │ │ └── Win32Crypto.h │ ├── Directory.cpp │ ├── Directory.h │ ├── File.cpp │ ├── File.h │ ├── JSON.h │ ├── Path.cpp │ ├── Path.h │ ├── Shell.cpp │ ├── Shell.h │ └── Stream │ │ ├── BinaryMode.h │ │ ├── FileInterfaces.h │ │ ├── FileSection.cpp │ │ ├── FileSection.h │ │ ├── FileStream.cpp │ │ ├── FileStream.h │ │ ├── IStream.h │ │ ├── Manipulator │ │ ├── StreamManipulator.h │ │ ├── StreamReader.cpp │ │ ├── StreamReader.h │ │ ├── StreamWriter.cpp │ │ └── StreamWriter.h │ │ ├── MemoryStream.cpp │ │ ├── MemoryStream.h │ │ ├── MemoryWriteStream.cpp │ │ └── MemoryWriteStream.h │ ├── Misc │ ├── ASCII.h │ ├── BezierCurve.h │ ├── EndianHelper.h │ ├── ImageHelper.cpp │ ├── ImageHelper.h │ ├── StringParseHelper.cpp │ ├── StringParseHelper.h │ ├── StringUtil.h │ ├── TextDatabaseParser.h │ ├── UTF8.cpp │ └── UTF8.h │ ├── Resource │ ├── Detail │ │ └── IDTypeDeclarations.h │ ├── IDHash.h │ ├── IDTypes.h │ └── ResourceIDMap.h │ ├── Script │ ├── PVScript.cpp │ └── PVScript.h │ ├── Time │ ├── Stopwatch.cpp │ ├── Stopwatch.h │ ├── TimeSpan.cpp │ ├── TimeSpan.h │ ├── TimeUtilities.cpp │ └── TimeUtilities.h │ └── Types.h ├── ComfySandbox ├── ComfySandbox.vcxproj ├── ComfySandbox.vcxproj.filters └── src │ ├── EntryPoint.cpp │ ├── PerformanceOverlay.h │ ├── SandboxApplication.cpp │ ├── SandboxApplication.h │ └── Tests │ ├── AetRendererTest.cpp │ ├── AudioTest.cpp │ ├── FontRendererTest.cpp │ ├── Game │ ├── Common │ │ ├── FilePaths.h │ │ ├── Helper.h │ │ └── PS4MenuAetInterface.h │ ├── Core │ │ ├── GameContext.h │ │ ├── GameState.cpp │ │ ├── GameState.h │ │ ├── GameStateManager.h │ │ └── GameStateTransition.h │ └── States │ │ ├── DebugGameStates.h │ │ ├── PS4GameMenu.h │ │ └── PS4MainMenu.h │ ├── MenuTest.cpp │ ├── Renderer2DTest.cpp │ ├── Renderer3DTest.cpp │ └── TestTask.h ├── ComfyStudio ├── ComfyStudio.vcxproj ├── ComfyStudio.vcxproj.filters ├── manual │ ├── comfy_manual.html │ ├── comfy_style.css │ └── image │ │ ├── comfy_icon.ico │ │ ├── inspector │ │ ├── selection_example.png │ │ └── use_preset_demo.webm │ │ ├── other │ │ ├── bpm_calculator_window_example.png │ │ ├── chart_properties_expanded.png │ │ ├── chart_properties_song_file_name.png │ │ ├── editor_example_chart.png │ │ ├── export_pv_script_mdata.png │ │ ├── file_dialog_audio_file_types.png │ │ ├── menu_option_file.png │ │ ├── playtest_context_menu.png │ │ ├── playtest_example_chart.png │ │ ├── settings_window_general.png │ │ └── sync_window_example.png │ │ ├── presets │ │ ├── sequence_medium_circle_ccw_demo.png │ │ ├── sequence_window_example.png │ │ ├── sync_dynamic_horizontal_demo.png │ │ ├── sync_dynamic_square_demo.png │ │ ├── sync_dynamic_triangle_demo.png │ │ ├── sync_dynamic_vertical_demo.png │ │ ├── sync_window_context_menu_dynamic_settings.png │ │ └── sync_window_example.png │ │ ├── preview │ │ ├── context_menu_combined.png │ │ ├── context_menu_tools.png │ │ ├── mouse_angle_demo.webm │ │ ├── mouse_grab_demo.webm │ │ ├── mouse_row_demo.webm │ │ └── mouse_selection_demo.webm │ │ ├── samyuu_peepo.png │ │ └── timeline │ │ ├── add_remove_demo.webm │ │ ├── context_menu.png │ │ ├── mouse_click_demo.webm │ │ ├── mouse_scroll_demo.webm │ │ ├── mouse_zoom_demo.webm │ │ ├── range_select_add_demo.webm │ │ ├── select_move_demo.webm │ │ ├── tempo_change_popup.png │ │ └── waveform_example.png ├── res │ ├── ComfyIcon.ico │ ├── ComfyStudio.rc │ └── resource.h └── src │ ├── CLI │ ├── CommandLine.cpp │ ├── CommandLine.h │ ├── CommandLineOption.cpp │ └── CommandLineOption.h │ ├── Core │ ├── BaseWindow.h │ ├── ComfyStudioApplication.cpp │ ├── ComfyStudioApplication.h │ ├── ComfyStudioDiscord.cpp │ ├── ComfyStudioDiscord.h │ ├── ComfyStudioSettings.cpp │ └── ComfyStudioSettings.h │ ├── DataTest │ ├── AudioTestWindow.cpp │ ├── AudioTestWindow.h │ ├── IconTestWindow.cpp │ ├── IconTestWindow.h │ ├── InputTestWindow.cpp │ ├── InputTestWindow.h │ ├── MovieTestWindow.cpp │ └── MovieTestWindow.h │ ├── Editor │ ├── Aet │ │ ├── AetCommands.h │ │ ├── AetEditor.cpp │ │ ├── AetEditor.h │ │ ├── AetIcons.h │ │ ├── AetSelection.h │ │ ├── Core │ │ │ ├── AetContentView.h │ │ │ ├── AetInspector.cpp │ │ │ ├── AetInspector.h │ │ │ ├── AetTreeView.cpp │ │ │ └── AetTreeView.h │ │ ├── RenderWindow │ │ │ ├── AetRenderPreviewData.h │ │ │ ├── AetRenderWindow.cpp │ │ │ ├── AetRenderWindow.h │ │ │ ├── ObjectMousePicker.cpp │ │ │ ├── ObjectMousePicker.h │ │ │ └── Tools │ │ │ │ ├── AetTool.cpp │ │ │ │ ├── AetTool.h │ │ │ │ ├── HandTool.cpp │ │ │ │ ├── HandTool.h │ │ │ │ ├── MoveTool.cpp │ │ │ │ ├── MoveTool.h │ │ │ │ ├── RotateTool.cpp │ │ │ │ ├── RotateTool.h │ │ │ │ ├── ScaleTool.cpp │ │ │ │ ├── ScaleTool.h │ │ │ │ ├── TransformBox.cpp │ │ │ │ ├── TransformBox.h │ │ │ │ ├── TransformTool.cpp │ │ │ │ └── TransformTool.h │ │ └── Timeline │ │ │ ├── AetTimeline.cpp │ │ │ ├── AetTimeline.h │ │ │ ├── AetTimelineController.cpp │ │ │ ├── AetTimelineController.h │ │ │ ├── KeyFrameRenderer.cpp │ │ │ └── KeyFrameRenderer.h │ ├── Chart │ │ ├── BPMCalculatorWindow.cpp │ │ ├── BPMCalculatorWindow.h │ │ ├── BPMTapCalculator.h │ │ ├── BeatTick.h │ │ ├── Chart.h │ │ ├── ChartCommands.h │ │ ├── ChartEditor.cpp │ │ ├── ChartEditor.h │ │ ├── ChartEditorSettingsWindow.cpp │ │ ├── ChartEditorSettingsWindow.h │ │ ├── ChartMoviePlaybackController.cpp │ │ ├── ChartMoviePlaybackController.h │ │ ├── ChartPropertiesWindow.cpp │ │ ├── ChartPropertiesWindow.h │ │ ├── ClipboardHelper.cpp │ │ ├── ClipboardHelper.h │ │ ├── DEBUG_DanceBuddy.h │ │ ├── FileFormat │ │ │ ├── ComfyStudioChartFile.cpp │ │ │ ├── ComfyStudioChartFile.h │ │ │ ├── PJEFile.cpp │ │ │ └── PJEFile.h │ │ ├── Gameplay │ │ │ ├── PlayTestCore.cpp │ │ │ ├── PlayTestCore.h │ │ │ ├── PlayTestWindow.cpp │ │ │ └── PlayTestWindow.h │ │ ├── HitEvaluation.h │ │ ├── PVScript │ │ │ ├── PVScriptExportWindow.cpp │ │ │ ├── PVScriptExportWindow.h │ │ │ ├── PVScriptImportWindow.cpp │ │ │ ├── PVScriptImportWindow.h │ │ │ ├── PVScriptUtil.cpp │ │ │ └── PVScriptUtil.h │ │ ├── PresetWindow.cpp │ │ ├── PresetWindow.h │ │ ├── RenderWindow │ │ │ ├── TargetGrid.h │ │ │ ├── TargetGuiDrawUtil.cpp │ │ │ ├── TargetGuiDrawUtil.h │ │ │ ├── TargetRenderHelper.cpp │ │ │ ├── TargetRenderHelper.h │ │ │ ├── TargetRenderHelperEx.cpp │ │ │ ├── TargetRenderHelperEx.h │ │ │ ├── TargetRenderWindow.cpp │ │ │ ├── TargetRenderWindow.h │ │ │ └── Tools │ │ │ │ ├── CardinalDirection.h │ │ │ │ ├── TargetBoxSelectionTool.cpp │ │ │ │ ├── TargetBoxSelectionTool.h │ │ │ │ ├── TargetPathTool.cpp │ │ │ │ ├── TargetPathTool.h │ │ │ │ ├── TargetPositionTool.cpp │ │ │ │ ├── TargetPositionTool.h │ │ │ │ ├── TargetTool.cpp │ │ │ │ └── TargetTool.h │ │ ├── SortedTargetList.cpp │ │ ├── SortedTargetList.h │ │ ├── SortedTempoMap.cpp │ │ ├── SortedTempoMap.h │ │ ├── SyncWindow.cpp │ │ ├── SyncWindow.h │ │ ├── TargetInspector.cpp │ │ ├── TargetInspector.h │ │ ├── TargetPropertyPresets.cpp │ │ ├── TargetPropertyPresets.h │ │ ├── TargetPropertyRules.h │ │ └── Timeline │ │ │ ├── BeatTimeline.h │ │ │ ├── TargetTimeline.cpp │ │ │ ├── TargetTimeline.h │ │ │ ├── TimelineMetronome.cpp │ │ │ ├── TimelineMetronome.h │ │ │ ├── TimelineRenderHelper.cpp │ │ │ └── TimelineRenderHelper.h │ ├── Common │ │ ├── AsyncLoadedImageFile.cpp │ │ ├── AsyncLoadedImageFile.h │ │ ├── ButtonSoundController.cpp │ │ ├── ButtonSoundController.h │ │ ├── CameraController2D.cpp │ │ ├── CameraController2D.h │ │ ├── CameraController3D.cpp │ │ ├── CameraController3D.h │ │ ├── CheckerboardGrid.h │ │ ├── RecentFilesList.cpp │ │ ├── RecentFilesList.h │ │ ├── SoundEffectManager.cpp │ │ ├── SoundEffectManager.h │ │ ├── UndoHistoryWindow.cpp │ │ └── UndoHistoryWindow.h │ ├── Core │ │ ├── EditorManager.cpp │ │ ├── EditorManager.h │ │ ├── IEditorComponent.h │ │ ├── IFileDropReceiver.h │ │ └── Theme.h │ ├── PV │ │ ├── CameraAxisIndication.cpp │ │ ├── CameraAxisIndication.h │ │ ├── CharaTest.h │ │ ├── Debug.h │ │ ├── ExternalProcess.cpp │ │ ├── ExternalProcess.h │ │ ├── MaterialEditor.cpp │ │ ├── MaterialEditor.h │ │ ├── SceneEditor.cpp │ │ ├── SceneEditor.h │ │ ├── SceneGraph.h │ │ ├── SceneRenderWindow.cpp │ │ ├── SceneRenderWindow.h │ │ └── StageTest.h │ └── Timeline │ │ ├── FrameTimeline.cpp │ │ ├── FrameTimeline.h │ │ ├── TimelineBase.cpp │ │ ├── TimelineBase.h │ │ ├── TimelineFrame.h │ │ ├── TimelineScrollbar.cpp │ │ └── TimelineScrollbar.h │ ├── EntryPoint.cpp │ ├── License │ ├── LicenseWindow.cpp │ └── LicenseWindow.h │ └── Version │ ├── BuildConfiguration.h │ └── BuildVersionDummy.h ├── ComfyVersion ├── ComfyVersion.vcxproj ├── ComfyVersion.vcxproj.filters ├── build │ └── build.bat └── src │ └── ComfyVersion.cpp ├── Dependencies ├── DirectXTex │ ├── DirectXTex.vcxproj │ ├── DirectXTex.vcxproj.filters │ ├── include │ │ ├── DirectXTex.h │ │ └── DirectXTex.inl │ └── src │ │ ├── BC.cpp │ │ ├── BC.h │ │ ├── BC4BC5.cpp │ │ ├── BC6HBC7.cpp │ │ ├── BCDirectCompute.cpp │ │ ├── BCDirectCompute.h │ │ ├── DDS.h │ │ ├── DirectXTexCompress.cpp │ │ ├── DirectXTexCompressGPU.cpp │ │ ├── DirectXTexConvert.cpp │ │ ├── DirectXTexD3D11.cpp │ │ ├── DirectXTexD3D12.cpp │ │ ├── DirectXTexDDS.cpp │ │ ├── DirectXTexFlipRotate.cpp │ │ ├── DirectXTexHDR.cpp │ │ ├── DirectXTexImage.cpp │ │ ├── DirectXTexMipmaps.cpp │ │ ├── DirectXTexMisc.cpp │ │ ├── DirectXTexNormalMaps.cpp │ │ ├── DirectXTexP.h │ │ ├── DirectXTexPMAlpha.cpp │ │ ├── DirectXTexResize.cpp │ │ ├── DirectXTexTGA.cpp │ │ ├── DirectXTexUtil.cpp │ │ ├── DirectXTexWIC.cpp │ │ ├── Shaders │ │ ├── BC6HEncode.hlsl │ │ ├── BC7Encode.hlsl │ │ ├── CompileShaders.cmd │ │ └── Compiled │ │ │ ├── BC6HEncode_EncodeBlockCS.inc │ │ │ ├── BC6HEncode_EncodeBlockCS.pdb │ │ │ ├── BC6HEncode_TryModeG10CS.inc │ │ │ ├── BC6HEncode_TryModeG10CS.pdb │ │ │ ├── BC6HEncode_TryModeLE10CS.inc │ │ │ ├── BC6HEncode_TryModeLE10CS.pdb │ │ │ ├── BC7Encode_EncodeBlockCS.inc │ │ │ ├── BC7Encode_EncodeBlockCS.pdb │ │ │ ├── BC7Encode_TryMode02CS.inc │ │ │ ├── BC7Encode_TryMode02CS.pdb │ │ │ ├── BC7Encode_TryMode137CS.inc │ │ │ ├── BC7Encode_TryMode137CS.pdb │ │ │ ├── BC7Encode_TryMode456CS.inc │ │ │ └── BC7Encode_TryMode456CS.pdb │ │ ├── d3dx12.h │ │ ├── filters.h │ │ └── scoped.h ├── discord_game_sdk │ └── include │ │ └── discord_game_sdk.h ├── dr_libs │ └── include │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ └── dr_wav.h ├── glm │ └── include │ │ └── glm │ │ ├── common.hpp │ │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_precision.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp ├── iconfont │ └── include │ │ ├── FontIcons.h │ │ └── IconsFontAwesome5.h ├── rapidjson │ └── include │ │ └── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── clzll.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── stb │ └── include │ │ ├── stb_image.h │ │ ├── stb_image_write.h │ │ └── stb_vorbis.h ├── xiph │ ├── libogg │ │ ├── include │ │ │ └── ogg │ │ │ │ ├── config_types.h │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ ├── libogg.vcxproj │ │ ├── libogg.vcxproj.filters │ │ └── src │ │ │ ├── bitwise.c │ │ │ ├── crctable.h │ │ │ └── framing.c │ ├── libvorbis │ │ ├── include │ │ │ └── vorbis │ │ │ │ └── codec.h │ │ ├── libvorbis.vcxproj │ │ ├── libvorbis.vcxproj.filters │ │ └── src │ │ │ ├── analysis.c │ │ │ ├── backends.h │ │ │ ├── barkmel.c │ │ │ ├── bitrate.c │ │ │ ├── bitrate.h │ │ │ ├── block.c │ │ │ ├── books │ │ │ ├── coupled │ │ │ │ ├── res_books_51.h │ │ │ │ └── res_books_stereo.h │ │ │ ├── floor │ │ │ │ └── floor_books.h │ │ │ └── uncoupled │ │ │ │ └── res_books_uncoupled.h │ │ │ ├── codebook.c │ │ │ ├── codebook.h │ │ │ ├── codec_internal.h │ │ │ ├── envelope.c │ │ │ ├── envelope.h │ │ │ ├── floor0.c │ │ │ ├── floor1.c │ │ │ ├── highlevel.h │ │ │ ├── info.c │ │ │ ├── lookup.c │ │ │ ├── lookup.h │ │ │ ├── lookup_data.h │ │ │ ├── lookups.pl │ │ │ ├── lpc.c │ │ │ ├── lpc.h │ │ │ ├── lsp.c │ │ │ ├── lsp.h │ │ │ ├── mapping0.c │ │ │ ├── masking.h │ │ │ ├── mdct.c │ │ │ ├── mdct.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── modes │ │ │ ├── floor_all.h │ │ │ ├── psych_11.h │ │ │ ├── psych_16.h │ │ │ ├── psych_44.h │ │ │ ├── psych_8.h │ │ │ ├── residue_16.h │ │ │ ├── residue_44.h │ │ │ ├── residue_44p51.h │ │ │ ├── residue_44u.h │ │ │ ├── residue_8.h │ │ │ ├── setup_11.h │ │ │ ├── setup_16.h │ │ │ ├── setup_22.h │ │ │ ├── setup_32.h │ │ │ ├── setup_44.h │ │ │ ├── setup_44p51.h │ │ │ ├── setup_44u.h │ │ │ ├── setup_8.h │ │ │ └── setup_X.h │ │ │ ├── os.h │ │ │ ├── psy.c │ │ │ ├── psy.h │ │ │ ├── psytune.c │ │ │ ├── registry.c │ │ │ ├── registry.h │ │ │ ├── res0.c │ │ │ ├── scales.h │ │ │ ├── sharedbook.c │ │ │ ├── smallft.c │ │ │ ├── smallft.h │ │ │ ├── synthesis.c │ │ │ ├── tone.c │ │ │ ├── window.c │ │ │ └── window.h │ ├── libvorbisenc │ │ ├── include │ │ │ └── vorbis │ │ │ │ └── vorbisenc.h │ │ ├── libvorbisenc.filters │ │ ├── libvorbisenc.vcxproj │ │ └── src │ │ │ └── vorbisenc.c │ └── libvorbisfile │ │ ├── include │ │ └── vorbis │ │ │ └── vorbisfile.h │ │ ├── libvorbisfile.vcxproj │ │ ├── libvorbisfile.vcxproj.filters │ │ └── src │ │ └── vorbisfile.c └── zlib │ ├── include │ ├── zconf.h │ └── zlib.h │ ├── src │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zutil.c │ └── zutil.h │ ├── zlib.vcxproj │ └── zlib.vcxproj.filters ├── LICENSE.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/.gitignore -------------------------------------------------------------------------------- /Comfy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Comfy.sln -------------------------------------------------------------------------------- /ComfyData/ComfyDataBuild.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/ComfyDataBuild.vcxproj -------------------------------------------------------------------------------- /ComfyData/ComfyDataBuild.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/ComfyDataBuild.vcxproj.filters -------------------------------------------------------------------------------- /ComfyData/build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/build/build.bat -------------------------------------------------------------------------------- /ComfyData/build/build_manual.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/build/build_manual.bat -------------------------------------------------------------------------------- /ComfyData/build/build_manual_sprset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/build/build_manual_sprset.bat -------------------------------------------------------------------------------- /ComfyData/build/build_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/build/build_notes.txt -------------------------------------------------------------------------------- /ComfyData/data-src/font/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/font/fa-regular-400.ttf -------------------------------------------------------------------------------- /ComfyData/data-src/font/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/font/fa-solid-900.ttf -------------------------------------------------------------------------------- /ComfyData/data-src/font/noto_sans_cjk_jp-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/font/noto_sans_cjk_jp-regular.otf -------------------------------------------------------------------------------- /ComfyData/data-src/license/comfy_studio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/comfy_studio.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/dear_imgui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/dear_imgui.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/directxtex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/directxtex.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/dr_flac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/dr_flac.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/dr_mp3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/dr_mp3.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/dr_wav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/dr_wav.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/font_awesome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/font_awesome.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/glm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/glm.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/iconfontcppheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/iconfontcppheader.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/libogg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/libogg.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/libvorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/libvorbis.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/libvorbisenc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/libvorbisenc.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/libvorbisfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/libvorbisfile.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/noto_cjk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/noto_cjk.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/rapidjson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/rapidjson.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/stb_image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/stb_image.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/stb_image_write.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/stb_image_write.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/stb_vorbis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/stb_vorbis.txt -------------------------------------------------------------------------------- /ComfyData/data-src/license/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/license/zlib.txt -------------------------------------------------------------------------------- /ComfyData/data-src/process/external_process.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/process/external_process.bin -------------------------------------------------------------------------------- /ComfyData/data-src/sound/metronome_bar.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/sound/metronome_bar.wav -------------------------------------------------------------------------------- /ComfyData/data-src/sound/metronome_beat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/sound/metronome_beat.wav -------------------------------------------------------------------------------- /ComfyData/data-src/sprite/spr_chart_editor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/data-src/sprite/spr_chart_editor.bin -------------------------------------------------------------------------------- /ComfyData/src/ComfyDataBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyData/src/ComfyDataBuild.cpp -------------------------------------------------------------------------------- /ComfyEngine/ComfyEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/ComfyEngine.vcxproj -------------------------------------------------------------------------------- /ComfyEngine/ComfyEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/ComfyEngine.vcxproj.filters -------------------------------------------------------------------------------- /ComfyEngine/src-meta/ShaderBytecode/ShaderList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src-meta/ShaderBytecode/ShaderList.txt -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Audio.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/AudioEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/AudioEngine.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/AudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/AudioEngine.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/Backend/IAudioBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/Backend/IAudioBackend.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/Backend/WASAPIBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/Backend/WASAPIBackend.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/Backend/WASAPIBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/Backend/WASAPIBackend.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/ChannelMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/ChannelMixer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/ChannelMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/ChannelMixer.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/Resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/Resample.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Core/SampleMix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Core/SampleMix.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/DecoderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/DecoderFactory.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/DecoderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/DecoderFactory.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/Decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/Decoders.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/FlacDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/FlacDecoder.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/HevagDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/HevagDecoder.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/Mp3Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/Mp3Decoder.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/VorbisDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/VorbisDecoder.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/Detail/WavDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/Detail/WavDecoder.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Decoder/IDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Decoder/IDecoder.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Encoder/EncoderUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Encoder/EncoderUtil.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Encoder/EncoderUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Encoder/EncoderUtil.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/SfxArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/SfxArchive.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/SfxArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/SfxArchive.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/TextureCachedWaveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/TextureCachedWaveform.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/TextureCachedWaveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/TextureCachedWaveform.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/Waveform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/Waveform.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/Misc/Waveform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/Misc/Waveform.h -------------------------------------------------------------------------------- /ComfyEngine/src/Audio/SampleProvider/ISampleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Audio/SampleProvider/ISampleProvider.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/ComfyTextureID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/ComfyTextureID.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/ComfyTextureID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/ComfyTextureID.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imconfig.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_demo.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_draw.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_internal.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_tables.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_user.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imgui_widgets.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imstb_rectpack.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imstb_textedit.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Core/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Core/imstb_truetype.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/CheckerboardTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/CheckerboardTexture.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/ImGuiExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/ImGuiExtensions.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/ImGuiExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/ImGuiExtensions.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/InternalExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/InternalExtensions.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/PropertyEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/PropertyEditor.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/TexExtensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/TexExtensions.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/TexExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/TexExtensions.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/Theme.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Extensions/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Extensions/Theme.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Gui.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/GuiRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/GuiRenderer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/GuiRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/GuiRenderer.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/GuiRendererGlyphRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/GuiRendererGlyphRanges.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Implementation/ComfyD3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Implementation/ComfyD3D11.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Implementation/ComfyD3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Implementation/ComfyD3D11.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Implementation/ComfyWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Implementation/ComfyWin32.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Implementation/ComfyWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Implementation/ComfyWin32.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/ComfyWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/ComfyWidgets.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/ComfyWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/ComfyWidgets.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/FileViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/FileViewer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/FileViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/FileViewer.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/ImageGridView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/ImageGridView.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/ImageGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/ImageGridView.h -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/LoadingTextAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/LoadingTextAnimation.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/ImGui/Widgets/LoadingTextAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/ImGui/Widgets/LoadingTextAnimation.h -------------------------------------------------------------------------------- /ComfyEngine/src/Input/Core/InputBaseTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Input/Core/InputBaseTypes.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Input/Core/InputBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Input/Core/InputBaseTypes.h -------------------------------------------------------------------------------- /ComfyEngine/src/Input/Core/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Input/Core/InputSystem.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Input/Core/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Input/Core/InputSystem.h -------------------------------------------------------------------------------- /ComfyEngine/src/Input/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Input/Input.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Camera.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Camera.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/RayIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/RayIntersection.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/RenderSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/RenderSnapshot.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/RenderSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/RenderSnapshot.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/AetRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/AetRenderer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/AetRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/AetRenderer.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/FontRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/FontRenderer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/FontRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/FontRenderer.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/RenderTarget2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/RenderTarget2D.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/Renderer2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/Renderer2D.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer2D/Renderer2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer2D/Renderer2D.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer3D/RenderTarget3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer3D/RenderTarget3D.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer3D/Renderer3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer3D/Renderer3D.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Core/Renderer3D/Renderer3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Core/Renderer3D/Renderer3D.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Buffer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Buffer.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Common.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Common.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11GraphicsTypeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11GraphicsTypeHelpers.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11OpaqueResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11OpaqueResource.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11OpaqueResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11OpaqueResource.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Shader.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Shader.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11State.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11State.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Texture.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/D3D11/D3D11Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/D3D11/D3D11Texture.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Movie/MoviePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Movie/MoviePlayer.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Movie/MoviePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Movie/MoviePlayer.h -------------------------------------------------------------------------------- /ComfyEngine/src/Render/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Render/Render.h -------------------------------------------------------------------------------- /ComfyEngine/src/System/ComfyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/ComfyData.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/System/ComfyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/ComfyData.h -------------------------------------------------------------------------------- /ComfyEngine/src/System/Library/LibraryLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/Library/LibraryLoader.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/System/Library/LibraryLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/Library/LibraryLoader.h -------------------------------------------------------------------------------- /ComfyEngine/src/System/Profiling/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/Profiling/Profiler.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/System/Profiling/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/System/Profiling/Profiler.h -------------------------------------------------------------------------------- /ComfyEngine/src/Undo/Core/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Undo/Core/Command.h -------------------------------------------------------------------------------- /ComfyEngine/src/Undo/Core/CommandTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Undo/Core/CommandTemplates.h -------------------------------------------------------------------------------- /ComfyEngine/src/Undo/Core/UndoManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Undo/Core/UndoManager.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Undo/Core/UndoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Undo/Core/UndoManager.h -------------------------------------------------------------------------------- /ComfyEngine/src/Undo/Undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Undo/Undo.h -------------------------------------------------------------------------------- /ComfyEngine/src/Window/ApplicationHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Window/ApplicationHost.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Window/ApplicationHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Window/ApplicationHost.h -------------------------------------------------------------------------------- /ComfyEngine/src/Window/RenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Window/RenderWindow.cpp -------------------------------------------------------------------------------- /ComfyEngine/src/Window/RenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyEngine/src/Window/RenderWindow.h -------------------------------------------------------------------------------- /ComfyLib/ComfyLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/ComfyLib.vcxproj -------------------------------------------------------------------------------- /ComfyLib/ComfyLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/ComfyLib.vcxproj.filters -------------------------------------------------------------------------------- /ComfyLib/src/Core/Hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/Hacks.h -------------------------------------------------------------------------------- /ComfyLib/src/Core/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/Logger.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Core/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/Logger.h -------------------------------------------------------------------------------- /ComfyLib/src/Core/SemanticVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/SemanticVersion.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Core/SemanticVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/SemanticVersion.h -------------------------------------------------------------------------------- /ComfyLib/src/Core/Win32LeanWindowsHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/Win32LeanWindowsHeader.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Core/Win32LeanWindowsHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Core/Win32LeanWindowsHeader.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/AetDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/AetDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/AetDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/AetDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Database.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/GmBtnSfxDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/GmBtnSfxDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/GmBtnSfxDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/GmBtnSfxDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/GmPvListDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/GmPvListDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/GmPvListDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/GmPvListDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/PvDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/PvDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/Game/PvDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/Game/PvDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/SfxDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/SfxDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/SfxDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/SfxDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/SprDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/SprDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/SprDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/SprDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Database/TexDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/TexDB.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Database/TexDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Database/TexDB.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Aet/AetSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Aet/AetSet.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Aet/AetSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Aet/AetSet.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Aet/AetSetFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Aet/AetSetFile.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Aet/AetUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Aet/AetUtil.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Aet/AetUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Aet/AetUtil.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Font/FontMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Font/FontMap.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Font/FontMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Font/FontMap.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/SprSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/SprSet.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/SprSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/SprSet.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth2D/Transform2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth2D/Transform2D.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/A3D/A3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/A3D/A3D.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/A3D/A3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/A3D/A3D.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/A3D/A3DMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/A3D/A3DMgr.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/A3D/A3DMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/A3D/A3DMgr.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/BoundingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/BoundingTypes.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/LightParam/FogParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/LightParam/FogParameter.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/LightParam/GlowParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/LightParam/GlowParameter.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/LightParam/IBLParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/LightParam/IBLParameters.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/LightParam/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/LightParam/Parameters.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/Misc/DebugObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/Misc/DebugObj.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/Misc/DebugObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/Misc/DebugObj.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/ObjSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/ObjSet.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/ObjSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/ObjSet.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/ObjSetFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/ObjSetFile.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/Ray.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Auth3D/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Auth3D/Transform.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/GPUResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/GPUResource.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/GraphicTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/GraphicTypes.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/TexSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/TexSet.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/TexSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/TexSet.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/SpriteExtraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/SpriteExtraction.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/SpriteExtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/SpriteExtraction.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/SpritePacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/SpritePacker.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/SpritePacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/SpritePacker.h -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/TextureCompression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/TextureCompression.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Graphics/Utilities/TextureCompression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Graphics/Utilities/TextureCompression.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/ComfyArchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/ComfyArchive.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/ComfyArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/ComfyArchive.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/FArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/FArc.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/FArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/FArc.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/FArcPacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/FArcPacker.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Archive/FArcPacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Archive/FArcPacker.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Config/ComfyBinaryConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Config/ComfyBinaryConfig.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Config/ComfyBinaryConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Config/ComfyBinaryConfig.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Crypto/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Crypto/Crypto.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Crypto/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Crypto/Crypto.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Crypto/Detail/Win32Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Crypto/Detail/Win32Crypto.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Crypto/Detail/Win32Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Crypto/Detail/Win32Crypto.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Directory.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Directory.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/File.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/File.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/JSON.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Path.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Path.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Shell.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Shell.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/BinaryMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/BinaryMode.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/FileInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/FileInterfaces.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/FileSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/FileSection.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/FileSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/FileSection.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/FileStream.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/FileStream.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/IStream.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/Manipulator/StreamManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/Manipulator/StreamManipulator.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/Manipulator/StreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/Manipulator/StreamReader.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/Manipulator/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/Manipulator/StreamReader.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/Manipulator/StreamWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/Manipulator/StreamWriter.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/Manipulator/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/Manipulator/StreamWriter.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/MemoryStream.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/MemoryStream.h -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/MemoryWriteStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/MemoryWriteStream.cpp -------------------------------------------------------------------------------- /ComfyLib/src/IO/Stream/MemoryWriteStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/IO/Stream/MemoryWriteStream.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/ASCII.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/BezierCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/BezierCurve.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/EndianHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/EndianHelper.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/ImageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/ImageHelper.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Misc/ImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/ImageHelper.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/StringParseHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/StringParseHelper.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Misc/StringParseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/StringParseHelper.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/StringUtil.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/TextDatabaseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/TextDatabaseParser.h -------------------------------------------------------------------------------- /ComfyLib/src/Misc/UTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/UTF8.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Misc/UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Misc/UTF8.h -------------------------------------------------------------------------------- /ComfyLib/src/Resource/Detail/IDTypeDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Resource/Detail/IDTypeDeclarations.h -------------------------------------------------------------------------------- /ComfyLib/src/Resource/IDHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Resource/IDHash.h -------------------------------------------------------------------------------- /ComfyLib/src/Resource/IDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Resource/IDTypes.h -------------------------------------------------------------------------------- /ComfyLib/src/Resource/ResourceIDMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Resource/ResourceIDMap.h -------------------------------------------------------------------------------- /ComfyLib/src/Script/PVScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Script/PVScript.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Script/PVScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Script/PVScript.h -------------------------------------------------------------------------------- /ComfyLib/src/Time/Stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/Stopwatch.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Time/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/Stopwatch.h -------------------------------------------------------------------------------- /ComfyLib/src/Time/TimeSpan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/TimeSpan.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Time/TimeSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/TimeSpan.h -------------------------------------------------------------------------------- /ComfyLib/src/Time/TimeUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/TimeUtilities.cpp -------------------------------------------------------------------------------- /ComfyLib/src/Time/TimeUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Time/TimeUtilities.h -------------------------------------------------------------------------------- /ComfyLib/src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyLib/src/Types.h -------------------------------------------------------------------------------- /ComfySandbox/ComfySandbox.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/ComfySandbox.vcxproj -------------------------------------------------------------------------------- /ComfySandbox/ComfySandbox.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/ComfySandbox.vcxproj.filters -------------------------------------------------------------------------------- /ComfySandbox/src/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/EntryPoint.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/PerformanceOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/PerformanceOverlay.h -------------------------------------------------------------------------------- /ComfySandbox/src/SandboxApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/SandboxApplication.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/SandboxApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/SandboxApplication.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/AetRendererTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/AetRendererTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/AudioTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/AudioTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/FontRendererTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/FontRendererTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Common/FilePaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Common/FilePaths.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Common/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Common/Helper.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Core/GameContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Core/GameContext.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Core/GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Core/GameState.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Core/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Core/GameState.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/Core/GameStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/Core/GameStateManager.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/States/DebugGameStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/States/DebugGameStates.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/States/PS4GameMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/States/PS4GameMenu.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Game/States/PS4MainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Game/States/PS4MainMenu.h -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/MenuTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/MenuTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Renderer2DTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Renderer2DTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/Renderer3DTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/Renderer3DTest.cpp -------------------------------------------------------------------------------- /ComfySandbox/src/Tests/TestTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfySandbox/src/Tests/TestTask.h -------------------------------------------------------------------------------- /ComfyStudio/ComfyStudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/ComfyStudio.vcxproj -------------------------------------------------------------------------------- /ComfyStudio/ComfyStudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/ComfyStudio.vcxproj.filters -------------------------------------------------------------------------------- /ComfyStudio/manual/comfy_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/comfy_manual.html -------------------------------------------------------------------------------- /ComfyStudio/manual/comfy_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/comfy_style.css -------------------------------------------------------------------------------- /ComfyStudio/manual/image/comfy_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/image/comfy_icon.ico -------------------------------------------------------------------------------- /ComfyStudio/manual/image/other/menu_option_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/image/other/menu_option_file.png -------------------------------------------------------------------------------- /ComfyStudio/manual/image/preview/mouse_row_demo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/image/preview/mouse_row_demo.webm -------------------------------------------------------------------------------- /ComfyStudio/manual/image/samyuu_peepo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/image/samyuu_peepo.png -------------------------------------------------------------------------------- /ComfyStudio/manual/image/timeline/context_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/manual/image/timeline/context_menu.png -------------------------------------------------------------------------------- /ComfyStudio/res/ComfyIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/res/ComfyIcon.ico -------------------------------------------------------------------------------- /ComfyStudio/res/ComfyStudio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/res/ComfyStudio.rc -------------------------------------------------------------------------------- /ComfyStudio/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/res/resource.h -------------------------------------------------------------------------------- /ComfyStudio/src/CLI/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/CLI/CommandLine.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/CLI/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/CLI/CommandLine.h -------------------------------------------------------------------------------- /ComfyStudio/src/CLI/CommandLineOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/CLI/CommandLineOption.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/CLI/CommandLineOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/CLI/CommandLineOption.h -------------------------------------------------------------------------------- /ComfyStudio/src/Core/BaseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/BaseWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioApplication.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioApplication.h -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioDiscord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioDiscord.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioDiscord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioDiscord.h -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioSettings.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Core/ComfyStudioSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Core/ComfyStudioSettings.h -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/AudioTestWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/AudioTestWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/AudioTestWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/AudioTestWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/IconTestWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/IconTestWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/IconTestWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/IconTestWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/InputTestWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/InputTestWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/InputTestWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/InputTestWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/MovieTestWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/MovieTestWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/DataTest/MovieTestWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/DataTest/MovieTestWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/AetCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/AetCommands.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/AetEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/AetEditor.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/AetEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/AetEditor.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/AetIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/AetIcons.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/AetSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/AetSelection.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Core/AetContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Core/AetContentView.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Core/AetInspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Core/AetInspector.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Core/AetInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Core/AetInspector.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Core/AetTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Core/AetTreeView.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Core/AetTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Core/AetTreeView.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Timeline/AetTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Timeline/AetTimeline.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Aet/Timeline/AetTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Aet/Timeline/AetTimeline.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/BPMCalculatorWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/BPMCalculatorWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/BPMCalculatorWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/BPMCalculatorWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/BPMTapCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/BPMTapCalculator.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/BeatTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/BeatTick.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/Chart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/Chart.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ChartCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ChartCommands.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ChartEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ChartEditor.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ChartEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ChartEditor.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ChartPropertiesWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ChartPropertiesWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ClipboardHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ClipboardHelper.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/ClipboardHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/ClipboardHelper.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/DEBUG_DanceBuddy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/DEBUG_DanceBuddy.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/FileFormat/PJEFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/FileFormat/PJEFile.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/FileFormat/PJEFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/FileFormat/PJEFile.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/Gameplay/PlayTestCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/Gameplay/PlayTestCore.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/HitEvaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/HitEvaluation.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/PVScript/PVScriptUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/PVScript/PVScriptUtil.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/PresetWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/PresetWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/PresetWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/PresetWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SortedTargetList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SortedTargetList.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SortedTargetList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SortedTargetList.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SortedTempoMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SortedTempoMap.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SortedTempoMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SortedTempoMap.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SyncWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SyncWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/SyncWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/SyncWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/TargetInspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/TargetInspector.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/TargetInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/TargetInspector.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/TargetPropertyPresets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/TargetPropertyPresets.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/TargetPropertyRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/TargetPropertyRules.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Chart/Timeline/BeatTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Chart/Timeline/BeatTimeline.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/AsyncLoadedImageFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/AsyncLoadedImageFile.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/CameraController2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/CameraController2D.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/CameraController2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/CameraController2D.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/CameraController3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/CameraController3D.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/CameraController3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/CameraController3D.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/CheckerboardGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/CheckerboardGrid.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/RecentFilesList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/RecentFilesList.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/RecentFilesList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/RecentFilesList.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/SoundEffectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/SoundEffectManager.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/SoundEffectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/SoundEffectManager.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/UndoHistoryWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/UndoHistoryWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Common/UndoHistoryWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Common/UndoHistoryWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Core/EditorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Core/EditorManager.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Core/EditorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Core/EditorManager.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Core/IEditorComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Core/IEditorComponent.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Core/IFileDropReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Core/IFileDropReceiver.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Core/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Core/Theme.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/CameraAxisIndication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/CameraAxisIndication.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/CameraAxisIndication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/CameraAxisIndication.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/CharaTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/CharaTest.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/Debug.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/ExternalProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/ExternalProcess.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/ExternalProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/ExternalProcess.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/MaterialEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/MaterialEditor.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/MaterialEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/MaterialEditor.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/SceneEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/SceneEditor.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/SceneEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/SceneEditor.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/SceneGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/SceneGraph.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/SceneRenderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/SceneRenderWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/SceneRenderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/SceneRenderWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/PV/StageTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/PV/StageTest.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/FrameTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/FrameTimeline.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/FrameTimeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/FrameTimeline.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/TimelineBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/TimelineBase.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/TimelineBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/TimelineBase.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/TimelineFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/TimelineFrame.h -------------------------------------------------------------------------------- /ComfyStudio/src/Editor/Timeline/TimelineScrollbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Editor/Timeline/TimelineScrollbar.h -------------------------------------------------------------------------------- /ComfyStudio/src/EntryPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/EntryPoint.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/License/LicenseWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/License/LicenseWindow.cpp -------------------------------------------------------------------------------- /ComfyStudio/src/License/LicenseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/License/LicenseWindow.h -------------------------------------------------------------------------------- /ComfyStudio/src/Version/BuildConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Version/BuildConfiguration.h -------------------------------------------------------------------------------- /ComfyStudio/src/Version/BuildVersionDummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyStudio/src/Version/BuildVersionDummy.h -------------------------------------------------------------------------------- /ComfyVersion/ComfyVersion.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyVersion/ComfyVersion.vcxproj -------------------------------------------------------------------------------- /ComfyVersion/ComfyVersion.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyVersion/ComfyVersion.vcxproj.filters -------------------------------------------------------------------------------- /ComfyVersion/build/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyVersion/build/build.bat -------------------------------------------------------------------------------- /ComfyVersion/src/ComfyVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/ComfyVersion/src/ComfyVersion.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/DirectXTex.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/DirectXTex.vcxproj -------------------------------------------------------------------------------- /Dependencies/DirectXTex/DirectXTex.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/DirectXTex.vcxproj.filters -------------------------------------------------------------------------------- /Dependencies/DirectXTex/include/DirectXTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/include/DirectXTex.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/include/DirectXTex.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/include/DirectXTex.inl -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BC.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BC.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BC4BC5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BC4BC5.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BC6HBC7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BC6HBC7.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BCDirectCompute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BCDirectCompute.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/BCDirectCompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/BCDirectCompute.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DDS.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexCompress.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexConvert.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexD3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexD3D11.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexD3D12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexD3D12.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexDDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexDDS.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexFlipRotate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexFlipRotate.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexHDR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexHDR.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexImage.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexMipmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexMipmaps.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexMisc.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexNormalMaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexNormalMaps.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexP.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexPMAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexPMAlpha.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexResize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexResize.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexTGA.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexUtil.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/DirectXTexWIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/DirectXTexWIC.cpp -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/Shaders/BC6HEncode.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/Shaders/BC6HEncode.hlsl -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/Shaders/BC7Encode.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/Shaders/BC7Encode.hlsl -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/d3dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/d3dx12.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/filters.h -------------------------------------------------------------------------------- /Dependencies/DirectXTex/src/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/DirectXTex/src/scoped.h -------------------------------------------------------------------------------- /Dependencies/dr_libs/include/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/dr_libs/include/dr_flac.h -------------------------------------------------------------------------------- /Dependencies/dr_libs/include/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/dr_libs/include/dr_mp3.h -------------------------------------------------------------------------------- /Dependencies/dr_libs/include/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/dr_libs/include/dr_wav.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/common.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/exponential.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/fwd.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/geometric.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/glm.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/integer.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/matrix.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/packing.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/common.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/integer.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/packing.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/platform.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/vec2.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/vec3.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/vec4.hpp -------------------------------------------------------------------------------- /Dependencies/glm/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/glm/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /Dependencies/iconfont/include/FontIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/iconfont/include/FontIcons.h -------------------------------------------------------------------------------- /Dependencies/iconfont/include/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/iconfont/include/IconsFontAwesome5.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/document.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/reader.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/schema.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/stream.h -------------------------------------------------------------------------------- /Dependencies/rapidjson/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/rapidjson/include/rapidjson/writer.h -------------------------------------------------------------------------------- /Dependencies/stb/include/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/stb/include/stb_image.h -------------------------------------------------------------------------------- /Dependencies/stb/include/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/stb/include/stb_image_write.h -------------------------------------------------------------------------------- /Dependencies/stb/include/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/stb/include/stb_vorbis.h -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/include/ogg/config_types.h -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/include/ogg/ogg.h -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/include/ogg/os_types.h -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/libogg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/libogg.vcxproj -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/libogg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/libogg.vcxproj.filters -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/src/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/src/bitwise.c -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/src/crctable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/src/crctable.h -------------------------------------------------------------------------------- /Dependencies/xiph/libogg/src/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libogg/src/framing.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/include/vorbis/codec.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/libvorbis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/libvorbis.vcxproj -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/analysis.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/backends.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/barkmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/barkmel.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/bitrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/bitrate.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/bitrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/bitrate.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/block.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/codebook.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/codebook.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/codec_internal.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/envelope.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/envelope.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/floor0.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/floor1.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/highlevel.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/info.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lookup.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lookup.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lookup_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lookup_data.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lookups.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lookups.pl -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lpc.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lpc.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lsp.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/lsp.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/mapping0.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/masking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/masking.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/mdct.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/mdct.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/misc.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/misc.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/floor_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/floor_all.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/psych_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/psych_11.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/psych_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/psych_16.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/psych_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/psych_44.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/psych_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/psych_8.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/residue_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/residue_16.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/residue_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/residue_44.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/residue_44u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/residue_44u.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/residue_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/residue_8.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_11.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_16.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_22.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_32.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_44.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_44p51.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_44p51.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_44u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_44u.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_8.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/modes/setup_X.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/modes/setup_X.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/os.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/psy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/psy.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/psy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/psy.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/psytune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/psytune.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/registry.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/registry.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/res0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/res0.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/scales.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/sharedbook.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/smallft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/smallft.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/smallft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/smallft.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/synthesis.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/tone.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/window.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbis/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbis/src/window.h -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbisenc/libvorbisenc.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbisenc/libvorbisenc.filters -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbisenc/libvorbisenc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbisenc/libvorbisenc.vcxproj -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbisenc/src/vorbisenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbisenc/src/vorbisenc.c -------------------------------------------------------------------------------- /Dependencies/xiph/libvorbisfile/src/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/xiph/libvorbisfile/src/vorbisfile.c -------------------------------------------------------------------------------- /Dependencies/zlib/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/include/zconf.h -------------------------------------------------------------------------------- /Dependencies/zlib/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/include/zlib.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/adler32.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/compress.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/crc32.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/crc32.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/deflate.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/deflate.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/gzclose.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/gzguts.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/gzlib.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/gzread.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/gzwrite.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/infback.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inffast.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inffast.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inffixed.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inflate.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inflate.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inftrees.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/inftrees.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/trees.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/trees.h -------------------------------------------------------------------------------- /Dependencies/zlib/src/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/uncompr.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/zutil.c -------------------------------------------------------------------------------- /Dependencies/zlib/src/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/src/zutil.h -------------------------------------------------------------------------------- /Dependencies/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /Dependencies/zlib/zlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/Dependencies/zlib/zlib.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samyuu/Comfy/HEAD/README.md --------------------------------------------------------------------------------