├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── cla.yml │ ├── cla │ └── NVIDIA_CLA_v1.0.1.md │ └── publish.yml ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION.md ├── __init__.py ├── images ├── remix_icon.png └── remix_nodes.png ├── install.bat ├── nodes ├── __init__.py ├── api │ ├── file.py │ ├── ingestion.py │ ├── layers.py │ └── textures.py ├── common.py ├── constant.py ├── save.py └── utils.py ├── pyproject.toml ├── repo.bat ├── repo.sh ├── repo.toml ├── repo_tools.toml ├── requirements.txt ├── tools ├── ci │ ├── gitlab │ │ ├── build │ │ │ └── build_package.yml │ │ ├── defaults │ │ │ ├── agents │ │ │ │ ├── gpu_agent.yml │ │ │ │ ├── linux_agent.yml │ │ │ │ └── windows_agent.yml │ │ │ ├── defaults.yml │ │ │ ├── gitlab_release.yml │ │ │ └── vault │ │ │ │ ├── linux_vault.yml │ │ │ │ └── windows_vault.yml │ │ └── gitlab │ │ │ ├── build_gitlab_package.yml │ │ │ ├── publish_package.yml │ │ │ └── publish_release.yml │ └── vault │ │ └── download_vault.ps1 ├── packman │ ├── bootstrap │ │ ├── configure.bat │ │ ├── download_file_from_url.ps1 │ │ ├── fetch_file_from_packman_bootstrap.cmd │ │ ├── generate_temp_file_name.ps1 │ │ ├── generate_temp_folder.ps1 │ │ └── install_package.py │ ├── config.packman.xml │ ├── packman │ ├── packman.cmd │ ├── packmanconf.py │ ├── python.bat │ └── python.sh ├── repo-deps.packman.xml ├── repoman │ └── repoman.py └── utils │ ├── class_docs.py │ └── repo_get_release_changelog.py └── workflows ├── rtx_remix_pbrify_workflow.json └── rtx_remix_pbrify_workflow_LowVRAM.json /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/cla/NVIDIA_CLA_v1.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.github/workflows/cla/NVIDIA_CLA_v1.0.1.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_repo/ 2 | /_build/ 3 | .idea 4 | *.pyc 5 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- 1 | 2024.0.0 2 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/__init__.py -------------------------------------------------------------------------------- /images/remix_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/images/remix_icon.png -------------------------------------------------------------------------------- /images/remix_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/images/remix_nodes.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/install.bat -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/__init__.py -------------------------------------------------------------------------------- /nodes/api/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/api/file.py -------------------------------------------------------------------------------- /nodes/api/ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/api/ingestion.py -------------------------------------------------------------------------------- /nodes/api/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/api/layers.py -------------------------------------------------------------------------------- /nodes/api/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/api/textures.py -------------------------------------------------------------------------------- /nodes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/common.py -------------------------------------------------------------------------------- /nodes/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/constant.py -------------------------------------------------------------------------------- /nodes/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/save.py -------------------------------------------------------------------------------- /nodes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/nodes/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/pyproject.toml -------------------------------------------------------------------------------- /repo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/repo.bat -------------------------------------------------------------------------------- /repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/repo.sh -------------------------------------------------------------------------------- /repo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/repo.toml -------------------------------------------------------------------------------- /repo_tools.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/repo_tools.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/ci/gitlab/build/build_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/build/build_package.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/agents/gpu_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/agents/gpu_agent.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/agents/linux_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/agents/linux_agent.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/agents/windows_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/agents/windows_agent.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/defaults.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/defaults.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/gitlab_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/gitlab_release.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/vault/linux_vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/vault/linux_vault.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/defaults/vault/windows_vault.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/defaults/vault/windows_vault.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/gitlab/build_gitlab_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/gitlab/build_gitlab_package.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/gitlab/publish_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/gitlab/publish_package.yml -------------------------------------------------------------------------------- /tools/ci/gitlab/gitlab/publish_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/gitlab/gitlab/publish_release.yml -------------------------------------------------------------------------------- /tools/ci/vault/download_vault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/ci/vault/download_vault.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/configure.bat -------------------------------------------------------------------------------- /tools/packman/bootstrap/download_file_from_url.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/download_file_from_url.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_file_name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/generate_temp_file_name.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/generate_temp_folder.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/bootstrap/install_package.py -------------------------------------------------------------------------------- /tools/packman/config.packman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/config.packman.xml -------------------------------------------------------------------------------- /tools/packman/packman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/packman -------------------------------------------------------------------------------- /tools/packman/packman.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/packman.cmd -------------------------------------------------------------------------------- /tools/packman/packmanconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/packmanconf.py -------------------------------------------------------------------------------- /tools/packman/python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/python.bat -------------------------------------------------------------------------------- /tools/packman/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/packman/python.sh -------------------------------------------------------------------------------- /tools/repo-deps.packman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/repo-deps.packman.xml -------------------------------------------------------------------------------- /tools/repoman/repoman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/repoman/repoman.py -------------------------------------------------------------------------------- /tools/utils/class_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/utils/class_docs.py -------------------------------------------------------------------------------- /tools/utils/repo_get_release_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/tools/utils/repo_get_release_changelog.py -------------------------------------------------------------------------------- /workflows/rtx_remix_pbrify_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/workflows/rtx_remix_pbrify_workflow.json -------------------------------------------------------------------------------- /workflows/rtx_remix_pbrify_workflow_LowVRAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIAGameWorks/ComfyUI-RTX-Remix/HEAD/workflows/rtx_remix_pbrify_workflow_LowVRAM.json --------------------------------------------------------------------------------