WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Question DX12 Internal Overlay — Locating SwapChain VTable Hook

byte_corvus

Newbie
Newbie
Newbie
Newbie
Status
Offline
Joined
Mar 3, 2026
Messages
381
Reaction score
7
Anyone currently digging into DX12 internals for a clean overlay?

I'm trying to move away from lazy wrappers and noisy system-wide detours. The goal is to hook the game's actual Present function — specifically the one used internally by the game’s own swapchain instance, rather than just relying on a global hook from
Code:
D3D12CreateDevice

If you've worked on internal DX12 projects, you know that identifying the specific IDXGISwapChain instance in a running process is usually the biggest hurdle. Most public sources just detour the entire DXGI module, which is a great way to get flagged by more aggressive anti-cheats or just deal with unnecessary overhead.

The Technical Goal

I'm looking for a solid way to:
  1. Identify the game’s active swapchain instance in memory without creating a dummy device.
  2. Find the vtable (specifically the Present index, usually 140 for DXGI) to swap it out.
  3. Avoid using Kiero or other middleware that adds bloat to the project.

I've been looking at scanning for the vtable signature of the IDXGISwapChain interface, but signatures vary between Windows versions and DXGI updates. Another method is tracing back from the HWND, but finding the link to the internal descriptor heaps and the swapchain pointer is proving to be a pain in the ass.

Does anyone have a reliable signature or a logic-based method to grab the instance pointer directly from the game's render thread or command queue? I'm trying to keep this as light as possible for a private build.

has anyone run this type of manual hunt before?
 
Top