// Inside your Pixel Shader for the floor/geometry
float2 texCoord = input.TexCoord;
// Sample the "Blood Mask" texture (Rendered by the game engine or injected)
float bloodIntensity = tex2D(BloodMaskSamp, texCoord).r;
if (bloodIntensity > 0.1)
// Distort UVs based on player velocity stored in a global constant buffer
float2 smearUV = texCoord + (PlayerVelocity * bloodIntensity * 0.05);
// Sample the blood detail texture with distortion
float4 bloodColor = tex2D(BloodDetailSamp, smearUV * 4.0);
// Wetness simulation (High Specular)
float3 finalSpec = SpecularColor * (1.0 + bloodIntensity * 2.0);
// Lerp the floor texture with the blood texture
finalColor = lerp(originalFloorColor, bloodColor, bloodIntensity);
finalColor += finalSpec * lightIntensity;
The resurgence of interest in Resident Evil 3 DirectX 11 new settings proves that PC gaming is not always about the latest technology—it’s about the right technology. Capcom may have shipped the game with DX12 as the default, but the community has unlocked superior performance through a four-year-old API. Whether you are returning to Raccoon City for a nightmare run on Infernal difficulty or experiencing Jill Valentine’s escape for the first time, switching to DX11 with these new tweaks will give you the smoothest, most terrifying experience possible.
Now go. Escape the city. And thank DirectX 11 later.
Have you tried the new DX11 mods or launch commands? Share your performance results in the comments below. For more deep dives into RE Engine tweaks, subscribe to our newsletter.
While Capcom officially ended technical support for the DirectX 11 "non-ray tracing" version of Resident Evil 3 Remake
in July 2023, the version remains accessible to players who need it for performance or mod compatibility. Why Switch to DirectX 11?
Wider Mod Support: Many classic mods were built for the original DX11 release and are incompatible with the newer DX12/Ray Tracing update.
Lower System Requirements: The DX11 version allows users with older GPUs (like the NVIDIA GTX 760) to run the game, whereas the DX12 version requires more modern hardware.
Performance Stability: On some mid-range or older hardware, DX11 can provide a more stable frame rate and fewer stutters compared to the DX12 implementation. How to Access the "New" DX11 Version on Steam
Capcom has made the DX11 version available through the Steam Library as a "Beta" branch.
Verdict: A sleek, action-heavy horror game that runs beautifully on DX11, but its length and cut content leave you wanting more.