├── .gitattributes ├── .gitignore ├── README.md ├── rbx-renderer.sln └── rbx-renderer ├── .clang-format ├── libraries └── imgui │ ├── include │ ├── imconfig.h │ ├── imgui.h │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h │ └── source │ ├── imgui.cpp │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_win32.cpp │ ├── imgui_tables.cpp │ └── imgui_widgets.cpp ├── rbx-renderer.vcxproj ├── rbx-renderer.vcxproj.filters └── source ├── entry.cpp ├── graphics ├── interface │ ├── interface.cpp │ └── interface.hpp └── render │ ├── render.cpp │ └── render.hpp └── hooks ├── hooks.cpp ├── hooks.hpp └── vmt ├── vmt.cpp └── vmt.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | finding roblox's custom device & hijacking their swapchain 2 | -------------------------------------------------------------------------------- /rbx-renderer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer.sln -------------------------------------------------------------------------------- /rbx-renderer/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/.clang-format -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imconfig.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imgui.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imgui_impl_dx11.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imgui_impl_win32.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imgui_internal.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imstb_rectpack.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imstb_textedit.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/include/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/include/imstb_truetype.h -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_demo.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_draw.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_tables.cpp -------------------------------------------------------------------------------- /rbx-renderer/libraries/imgui/source/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/libraries/imgui/source/imgui_widgets.cpp -------------------------------------------------------------------------------- /rbx-renderer/rbx-renderer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/rbx-renderer.vcxproj -------------------------------------------------------------------------------- /rbx-renderer/rbx-renderer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/rbx-renderer.vcxproj.filters -------------------------------------------------------------------------------- /rbx-renderer/source/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/entry.cpp -------------------------------------------------------------------------------- /rbx-renderer/source/graphics/interface/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/graphics/interface/interface.cpp -------------------------------------------------------------------------------- /rbx-renderer/source/graphics/interface/interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/graphics/interface/interface.hpp -------------------------------------------------------------------------------- /rbx-renderer/source/graphics/render/render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/graphics/render/render.cpp -------------------------------------------------------------------------------- /rbx-renderer/source/graphics/render/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/graphics/render/render.hpp -------------------------------------------------------------------------------- /rbx-renderer/source/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/hooks/hooks.cpp -------------------------------------------------------------------------------- /rbx-renderer/source/hooks/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/hooks/hooks.hpp -------------------------------------------------------------------------------- /rbx-renderer/source/hooks/vmt/vmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/hooks/vmt/vmt.cpp -------------------------------------------------------------------------------- /rbx-renderer/source/hooks/vmt/vmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pumpkinbunny/rbx-renderer/HEAD/rbx-renderer/source/hooks/vmt/vmt.hpp --------------------------------------------------------------------------------