├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── Config ├── D3D9DrvRTX.ini ├── D3D9DrvRTX.int ├── D3D9DrvRTX_config_example.json ├── D3D9DrvRTX_config_schema.json ├── bridge.conf ├── dxvk.conf └── rtx.conf ├── D3D9Drv.sln ├── D3D9Drv.vcxproj ├── D3D9Drv.vcxproj.filters ├── D3D9Drv.vcxproj.user ├── D3D9DrvRTX.rc ├── Inc ├── D3D9Config.h ├── D3D9DebugUtils.h ├── D3D9DrvRTX.h ├── D3D9Render.h ├── D3D9RenderDevice.h ├── RTXLevelProperties.h ├── c_gclip.h ├── c_rbtree.h └── vectorUtils.h ├── NatvisFile.natvis ├── PropertySheet.props ├── README.md ├── Src ├── D3D9DebugUtils.cpp ├── D3D9DrvRTX.cpp ├── D3D9Render.cpp ├── D3D9RenderDevice.cpp ├── D3D9Render_mesh_processing.cpp ├── RTXLevelProperties.cpp └── c_gclip.cpp ├── external └── RemixAPI │ └── include │ ├── remix │ ├── remix.h │ └── remix_c.h │ └── remixapi │ └── bridge_remix_api.h ├── gamename.h ├── resource.h └── scripts ├── Brother_Bear.bat ├── BuildAll.py ├── ChangeLinks.bat ├── Clive_Barkers_Undying.bat ├── DeusEx.bat ├── HP1.bat ├── HP2.bat ├── Klingon_Honor_Guard.bat ├── LibGen.py ├── Nerf.bat ├── Rune.bat ├── SetProperties.py ├── UT_436.bat ├── UT_469d.bat ├── UT_469e.bat ├── Unreal_226.bat ├── Unreal_227k_12.bat └── vftablegen.py /.editorconfig: -------------------------------------------------------------------------------- 1 | end_of_line = lf 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mmdanggg2] 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/.gitmodules -------------------------------------------------------------------------------- /Config/D3D9DrvRTX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/D3D9DrvRTX.ini -------------------------------------------------------------------------------- /Config/D3D9DrvRTX.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/D3D9DrvRTX.int -------------------------------------------------------------------------------- /Config/D3D9DrvRTX_config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/D3D9DrvRTX_config_example.json -------------------------------------------------------------------------------- /Config/D3D9DrvRTX_config_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/D3D9DrvRTX_config_schema.json -------------------------------------------------------------------------------- /Config/bridge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/bridge.conf -------------------------------------------------------------------------------- /Config/dxvk.conf: -------------------------------------------------------------------------------- 1 | d3d9.maxEnabledLights = 1000 2 | -------------------------------------------------------------------------------- /Config/rtx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Config/rtx.conf -------------------------------------------------------------------------------- /D3D9Drv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/D3D9Drv.sln -------------------------------------------------------------------------------- /D3D9Drv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/D3D9Drv.vcxproj -------------------------------------------------------------------------------- /D3D9Drv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/D3D9Drv.vcxproj.filters -------------------------------------------------------------------------------- /D3D9Drv.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/D3D9Drv.vcxproj.user -------------------------------------------------------------------------------- /D3D9DrvRTX.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/D3D9DrvRTX.rc -------------------------------------------------------------------------------- /Inc/D3D9Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/D3D9Config.h -------------------------------------------------------------------------------- /Inc/D3D9DebugUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/D3D9DebugUtils.h -------------------------------------------------------------------------------- /Inc/D3D9DrvRTX.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "Core.h" 4 | 5 | extern EName NAME_D3D9DrvRTX; 6 | -------------------------------------------------------------------------------- /Inc/D3D9Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/D3D9Render.h -------------------------------------------------------------------------------- /Inc/D3D9RenderDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/D3D9RenderDevice.h -------------------------------------------------------------------------------- /Inc/RTXLevelProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/RTXLevelProperties.h -------------------------------------------------------------------------------- /Inc/c_gclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/c_gclip.h -------------------------------------------------------------------------------- /Inc/c_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/c_rbtree.h -------------------------------------------------------------------------------- /Inc/vectorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Inc/vectorUtils.h -------------------------------------------------------------------------------- /NatvisFile.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/NatvisFile.natvis -------------------------------------------------------------------------------- /PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/PropertySheet.props -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/README.md -------------------------------------------------------------------------------- /Src/D3D9DebugUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/D3D9DebugUtils.cpp -------------------------------------------------------------------------------- /Src/D3D9DrvRTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/D3D9DrvRTX.cpp -------------------------------------------------------------------------------- /Src/D3D9Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/D3D9Render.cpp -------------------------------------------------------------------------------- /Src/D3D9RenderDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/D3D9RenderDevice.cpp -------------------------------------------------------------------------------- /Src/D3D9Render_mesh_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/D3D9Render_mesh_processing.cpp -------------------------------------------------------------------------------- /Src/RTXLevelProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/RTXLevelProperties.cpp -------------------------------------------------------------------------------- /Src/c_gclip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/Src/c_gclip.cpp -------------------------------------------------------------------------------- /external/RemixAPI/include/remix/remix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/external/RemixAPI/include/remix/remix.h -------------------------------------------------------------------------------- /external/RemixAPI/include/remix/remix_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/external/RemixAPI/include/remix/remix_c.h -------------------------------------------------------------------------------- /external/RemixAPI/include/remixapi/bridge_remix_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/external/RemixAPI/include/remixapi/bridge_remix_api.h -------------------------------------------------------------------------------- /gamename.h: -------------------------------------------------------------------------------- 1 | #define GAME_NAME "Unreal Tournament v469d" 2 | -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/resource.h -------------------------------------------------------------------------------- /scripts/Brother_Bear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Brother_Bear.bat -------------------------------------------------------------------------------- /scripts/BuildAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/BuildAll.py -------------------------------------------------------------------------------- /scripts/ChangeLinks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/ChangeLinks.bat -------------------------------------------------------------------------------- /scripts/Clive_Barkers_Undying.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Clive_Barkers_Undying.bat -------------------------------------------------------------------------------- /scripts/DeusEx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/DeusEx.bat -------------------------------------------------------------------------------- /scripts/HP1.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/HP1.bat -------------------------------------------------------------------------------- /scripts/HP2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/HP2.bat -------------------------------------------------------------------------------- /scripts/Klingon_Honor_Guard.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Klingon_Honor_Guard.bat -------------------------------------------------------------------------------- /scripts/LibGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/LibGen.py -------------------------------------------------------------------------------- /scripts/Nerf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Nerf.bat -------------------------------------------------------------------------------- /scripts/Rune.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Rune.bat -------------------------------------------------------------------------------- /scripts/SetProperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/SetProperties.py -------------------------------------------------------------------------------- /scripts/UT_436.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/UT_436.bat -------------------------------------------------------------------------------- /scripts/UT_469d.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/UT_469d.bat -------------------------------------------------------------------------------- /scripts/UT_469e.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/UT_469e.bat -------------------------------------------------------------------------------- /scripts/Unreal_226.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Unreal_226.bat -------------------------------------------------------------------------------- /scripts/Unreal_227k_12.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/Unreal_227k_12.bat -------------------------------------------------------------------------------- /scripts/vftablegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmdanggg2/D3D9DrvRTX/HEAD/scripts/vftablegen.py --------------------------------------------------------------------------------