Warhammer 40,000: Darktide – Official Performance Guide (How to Boost FPS)

Darktide Performance Guide & System Requirements

Today,  we are releasing our extended system requirements for Warhammer 40,000: Darktide that covers higher-end machines and those looking to enable NVIDIA-supported technologies such as RTX and DLSS 3. At the same time, we wanted to dive a bit deeper on the performance of Darktide, what to expect and provide guidance on how best to get the optimal experience with your hardware.

‍Ever since starting to make first- or third-person games, going back to the days of Lead and Gold, performance in terms of end-user framerate and the game experience has always been on our mind. That said, I can’t name a game we released where we were fully satisfied with the performance. Why? Because as a game developer, you are very seldom one hundred percent happy with any specific aspect of a game since there is always a “tug-of-war” between them.

‍At Fatshark, we believe that the best games result from striking a balance such that no single aspect is given priority over all others. This does not mean that there is no room for improvement over time; rather, we must always be mindful of our priorities. 

‍Games like Vermintide, Vermintide 2, and Darktide are all good examples of this approach. In no way are they perfect in terms of having a high and steady framerate, but that was the approach we chose rather than, for example, making too big compromises regarding the number of enemies or the graphical quality of levels. We believe that most players can accept a short temporary loss of frame-rate to be able to get the overall gameplay we offer. We know this is a harder sell in a competitive game, but felt that this was a necessary trade-off for games in our category – cooperative play.  But then – are we satisfied with the current level of performance in our games? No – we aren’t and will never be. It is and will continue to be, an ongoing battle for as long as we have people on the project. 

‍Given this context, one needs to understand that we put in an incredible amount of work to make our games as performant as possible both before release but also after when we can use actual player data and feedback to set our priorities. 

Generally speaking, our games have faced similar challenges. We have a lot of stuff going on in the game world, many enemies, all having detailed rigs and attachments and an AI to guide them. We also have to rely heavily on physics simulation to handle primarily melee combat, where countless entities move and interact with each other. 

With modern processors, there has always been the promise of parallelism using the many cores that have become commonplace in recent hardware. As any game developer would tell you, this is in no way a silver bullet. The thing with parallelism is that it requires things to be conducted in parallel instead of in a sequence, which means that they need to be independent of each other. Large parts of gameplay code – especially involving the player and her direct interactions with the world can be tough to parallelize because the rules governing those are typically highly interconnected as opposed to independent. In our games, parallelized things are rather systems that one might consider more low-level, like updating animations, resource handling, dispatching of commands to the GPU, etc. But even with those things done, our games still tend to be heavy on the CPU side. 

Let us take a step back here. What exactly do we mean by CPU-side, and GPU-side, and how does this relate to the framerate? Most of you, being kids of today, probably learned these things in kindergarten; I didn’t. Also, being a stiff old sog, I revert to my general principle that no question is too dumb to ask.

The framerate is the number of frames rendered to the target display per second. As a developer, though, it is more practical to talk about the frametime – which is the inverse of the framerate, i.e., the time it takes to render one full frame to the target display. We usually measure frame time in milliseconds. In other words, a framerate of 60 frames per second equals a frametime of roughly 16.7 milliseconds. 

To achieve a frametime equal to or less than 16.7 milliseconds, everything the game does in one of its discrete updates (i.e. a frame) must be handled within that time. That means that the CPU at this time must handle all updates of logical entities, physics, collisions, AI, sending and receiving networking messages, constructing and dispatching instructions to the GPU, etc., etc. Similarly, the GPU must be able to handle all the instructions from the CPU applying code to transform and place objects, tessellate surfaces, render shadows, apply lighting and postprocessing, etc. If one of the two parts (GPU or CPU) is slower than the other, it will be that one deciding the framtime/framerate. 

To get the most out of any specific set of hardware, you like the CPU and GPU to have similar frametimes so that no part needs to wait for the other. Typically when optimizing, we look at the slowest of the two and try to figure out what we can do to make it faster. 

As mentioned earlier, parallelization is a big thing on the CPU side. We try to identify as many tasks as possible that don’t have interdependence and let another thread on the CPU handle them, thus more or less removing that time from the total frametime. We also try to find things that maybe don’t need doing or should not be done all the time. Perhaps it is enough to do it every 10th frame instead of every single one. Then there is a plethora of more specific tricks, patterns to avoid, patterns to use, etc. 

Reducing GPU frame times are usually easier than cpu time for us. Specifically we already expose a long list of render settings for the user that affects GPU times significantly. 

Reducing resolution, turning off advanced visual effects and utilizing hardware specific scaling and anti-aliasing options are all things that the user can do themselves to reduce the GPU frame times and increase their framerate.

That said, we generally put a lot of effort into tweaking our content and rendering features to make sure we keep our frame times as low as possible on the GPU.

  • Reduce the amount of draw calls we issue every frame.
  • Manually remove objects from levels
  • Improve culling in our levels to not draw things when we don’t see them
  • Create lower resolution mesh lods with fewer materials on them
  • Combine multiple objects into larger single meshes.
  • Utilize instancing to combine draw calls
  • Reduce time to render individual objects
  • Create lower resolution mesh lods
  • Remove unnecessary features from shaders that may not be needed in certain circumstances
  • Optimize and improve our advanced rendering features such as post effects, material/lighting models to make better use of the hardware. 

With every new game we make we have the ambition to push the capabilities of our technology and game engine a notch. This is not solely for the betterment of that single title but also for driving the overall level of our technology. A new feature that at the time seemed unnecessary or a strange priority might prove essential for future updates and games. 

In terms of technology there were several areas that we wanted to improve or  re-invent that were identified at the start of the Darktide development. Some of the major things were:

  • We wanted to change and improve our network model (this is a large subject and hopefully will get a blog post of its own).
  • Transition to a DX12 only rendering backend to utilize more of the new DX12 featureset.
  • Improve the visual quality of our lighting as well as our lighting workflows.
  • Newer, less code-focused way of authoring and handling content in the game such as weapons, cosmetics and other items.
  • Build our levels from larger building-blocks that could be more effective across multiple levels.
  • Improve our technical bundling strategy to optimize the size of game downloads and the disk size requirements.

‍To stay true to the world of Warhammer 40,000 one has to make the grim world of the far future dark. But how do you do dark, darkness just being the absence of light? Our answer to that question would probably be – you do it by making the few light sources there better, more living and eye-catching. 

Thus, we needed to improve our ambient lighting model which in Vermintide 2 mostly consisted of very sparse baked probe information and global ambient light overrides. In essence we wanted to get global illumination into our scenes and make sure objects placed in our worlds felt like they contributed to the lighting in the scene accurately. With more accurate ambient lighting one also cannot forget about the specular lighting and reflections which play a big role in making our scenes feel coherent. It became obvious that we had to make big improvements here to make sure that we live up to everything that makes Warhammer 40,000 the grim dark world it should be.

Luckily there was a good candidate technology for solving this problem. ray tracing and specifically RTXGI for global illumination (GI). 

Ray tracing just started to become a well established component for rendering in games, especially with an explosion in terms of hardware support. Ray tracing is also compelling from a rendering development standpoint because it provides a unified solution for complex corner cases that arise when doing more traditional rasterized rendering.

Nvidia DLSS 3 and RTX Support

Partnering up with NVIDIA we opted to support ray tracing in our renderer and ended up implementing both RTXGI and raytraced reflections to boot. This also lays the groundwork needed for us to continue experimenting with additional ray tracing features down the line which carries the promise of further improving things like shadows, transparency rendering and VFX (visual effects such as particles). We also decided to support other RTX features like DLSS and Reflex to further improve frame times and response times of the game.‍

Another added benefit of the RTXGI implementation we ended up going with is actually that we decided to replace our baked ambient light solution with baked RTXGI probe grids. This allows us to use RTX cards on our development machines to quickly bake GI that can be applied to our scenes even for gpus that do not have enough power to push advanced ray tracing features like this. You won’t get the added benefit of the GI being fully dynamic that you get if you have a powerful gpu in your machine of course but the static GI still retains the nice dark feeling in our scenes that would otherwise be very flat and boring.

‍Building very expensive features like ray tracing doesn’t make much sense without having performant super resolution features so we decided to also go with supporting DLSS and to throw in Reflex for good measure.‍

We actually started out implementing DLSS 2.1 but as the project got extended and we started slipping into DLSS 3 territory we immediately jumped at the chance to easily integrate DLSS 3 into Darktide as well. With the new frame generation features it is actually a very good fit for our games as we very often see ourselves being CPU bound and since we already had Reflex integrated to handle any concerns of increased latency we were very happy to see DLSS 3 giving us huge improvements in frame rates across the board.

(*) Typical for most situations, but one might occasionally experience brief degradation in the most complex and intense scenes, primarily due to CPU-constraints.‍

Overall Performance

Pushing quality and quantity of things make Darktide a demanding game, but we nevertheless are keen to support as wide range of hardware as possible. To be able to do this we have to make many features and fidelity of features configurable. We acknowledge that understanding exactly what settings to choose to get the optimal experience might not be trivial to many players. Thus, we have tried to compile explanations, suggestions and tips below on how to think of and use the different settings in the game. We hope you find this helpful.‍

With Darktide being capable of over a hundred on-screen enemies, some settings tweaks may increase framerate specifically during combat. Reducing the number f maximum amount of ragdolls (MAX RAGDOLLS) increases CPU performance (due to a lesser amount of local physics objects being simulated) while reducing the amount of weapon impact and blood decals (MAX WEAPON IMPACT DECALS, MAX BLOOD DECALS), as well as their lifetime (DECAL LIFETIME), increases the GPU performance in similar situations.‍

A majority of the options tend to affect mostly the GPU so the ways of increasing framerate when constrained by the CPU tends to be more limited. For the CPU constrained scenario there are but a few options to point at, namely:

  • MAX RAGDOLLS (can have a huge impact depending the number)
  • SCATTER DENSITY
  • LENS FLARES (just the highest option “all lights” have CPU impact though)
  • FIELD OF VIEW

Settings Mainly Related to Performance

DLSS / FSR

Image enhancement and upscaling techniques are highly recommended for increasing GPU performance. For GeForce RTX cards we’ve integrated NVIDIA DLSS, a technology framework that outputs high resolution frames using AI. We’ve also added support for two of AMD’s FidelityFX Super Resolution upscaling techniques that can be used by any GPU. Their different settings balance speed against quality, but note that the most performant presets are rather tailored for resolutions higher than 1080p. Only one of the three available techniques can be used at any one time.

Running the game at high resolutions without using one of these techniques will have a huge impact on performance.

NVIDIA DLSS Super Resolution

DLSS Super Resolution uses AI to output higher resolution frames without compromising image quality or responsiveness. This feature requires a GeForce RTX graphics card. The different variant goes from QUALITY (having the least visual impact) to ULTRA PERFORMANCE (giving the highest boost in performance) where the latter is best utilized when running the game in higher resolutions like 4k. There is also an AUTOMATIC version that tries to decide the best version given the circumstances.

AVAILABLE OPTIONS IN ORDER OF LEAST VISUAL IMPACT AND LEAST PERFORMANCE GAIN TO HIGHEST VISUAL IMPACT AND MOST PERFORMANCE GAIN.

OFF  ⇒ QUALITY  ⇒ BALANCED ⇒ PERFORMANCE  ⇒ULTRA PERFORMANCE‍

AMD FidelityFX Super Resolution 1.0 (FSR 1.0)

AMD FidelityFX Super Resolution 1.0 is a cutting edge super-optimized spatial upscaling technology that produces impressive image quality at fast framerates for any GPU. The most performant settings reduce image quality and are recommended mostly for higher screen resolutions.

‍AVAILABLE OPTIONS IN ORDER OF LEAST VISUAL IMPACT AND LEAST PERFORMANCE GAIN TO HIGHEST VISUAL IMPACT AND MOST PERFORMANCE GAIN.

OFF ⇒ QUALITY ⇒ BALANCED ⇒ PERFORMANCE ⇒ULTRA PERFORMANCE

AMD FidelityFX Super Resolution 2 (FSR 2)

AMD FidelityFX Super Resolution 2 is a cutting edge temporal upscaling algorithm that produces high resolution frames from lower resolution inputs. The different variant goes from ULTRA QUALITY (having the least visual impact) to PERFORMANCE (giving the highest boost in performance) where the latter is best utilized when running the game in higher resolutions like 4k. FSR 2.0 generally works better across a higher variety of resolutions than its predecessor, but with the downside of being a bit more expensive, especially on older hardware.‍

AVAILABLE OPTIONS IN ORDER OF LEAST VISUAL IMPACT AND LEAST PERFORMANCE GAIN TO HIGHEST VISUAL IMPACT AND MOST PERFORMANCE GAIN.

OFF ⇒ ULTRA QUALITY ⇒ QUALITY ⇒ BALANCED ⇒ PERFORMANCE

NVIDIA REFLEX LOW LATENCY

Technology used to measure and improve the latency of the game. Having this enabled reduces system latency and increases PC responsiveness. It has a very limited effect on performance. The BOOST option overrides the power saving features in the GPU and can provide small additional increases in latency reduction.‍

AVAILABLE OPTIONS:

DISABLED ⇒ ENABLED ⇒ ENABLED + BOOST

FRAMERATE CAP

Locks the framerate to a maximum value and might be used to achieve a more steady framerate. Only used in conjunction with NVIDIA Reflex Low Latency.‍

AVAILABLE OPTIONS:

30 ⇒ 60 ⇒ 120 ⇒ UNLIMITED (DISABLED)

ANTI-ALIASING

Anti-aliasing improves the appearance of jagged polygon edges, so they are smoothed out on the screen. TAA increases quality over FXAA but at a higher GPU usage.‍

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST:

OFF ⇒ FXAA ⇒ TAA‍

SHARPEN

Used together with TAA to improve edge quality. Increases GPU usage slightly.‍

OFF ⇒ ON‍

FIELD OF VIEW

Controls the extent of the observable game world that is seen on the display at any given moment. The field of view shows two numbers HFOV(Horizontal FOV) and VFOV(Vertical FOV). VFOV is the main setting and HFOV is calculated from the current VFOV and screen aspect ratio. Default VFOV is 65 which is equivalent to a HFOV of 91 on a 16:9 screen. When the screen grows wider the HFOV will adapt with the screen so the player does not need to change the FOV manually to fit their wide aspect ratio screens. Raising the field of view can have a significant negative impact on the performance. Field of view has an impact both on GPU and CPU.

CAN BE SET TO A VFOV VALUE BETWEEN 45°(NARROWEST) TO 85° (WIDEST)

Settings Related to Ray Tracing

RAY TRACING PRESET

Enable DirectX Raytracing (DXR) for life-like reflections and global illumination.

Sets the individual ray tracing options according to the scheme below. Ray tracing can have a significant impact on GPU performance depending on the exact setting. It might also have a smaller effect on CPU performance.

RAY TRACED REFLECTIONS

Enable DirectX Raytracing (DXR) for life-like reflections. LOW preset combines DXR with SSR. The HIGH option has a significant impact on GPU performance and is only recommended on higher-end hardware.

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST:

OFF ⇒ LOW ⇒ HIGH‍

RTX GLOBAL ILLUMINATION

Enable this option for life-like global illumination using ray tracing to give more accurate lighting within the game. Impacts mainly GPU performance.

‍AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST:

OFF ⇒ LOW ⇒ HIGH

General Graphics Settings and Presets

GRAPHICS PRESET (GRAPHICS QUALITY)

Sets all the more detailed (advanced) settings according to three predefined schemes. This does not affect any settings related to field-of-view, ray tracing, performance etc. Using these presets is generally a good starting point for most users. For each of the three presets the corresponding settings can be found in the table below.‍

Changing any of the advanced settings after setting the GRAPHICS QUALITY preset will result in that being set to CUSTOM. Note that changing this setting from CUSTOM to any of the defined presets will result in all custom settings being reset.

AVAILABLE PRESET OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU AND CPU, FROM LEAST TO MOST:

LOW ⇒ MEDIUM ⇒ HIGH

Advanced Settings

AMBIENT OCCLUSION QUALITY

Ambient Occlusion is a model for calculating indirect light in a scene. We use Combined Adaptive Compute Ambient Occlusion (CACAO) as an ambient occlusion model. Increasing AO quality creates a higher load on the GPU

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST:

OFF ⇒ LOW ⇒ MEDIUM ⇒ HIGH

LIGHT QUALITY

Effect the quality of light and shadows. Higher settings increase memory consumption and load on the GPU.

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU AND MEMORY CONSUMPTION, FROM LEAST TO MOST:

LOW ⇒ MEDIUM ⇒ HIGH ⇒ EXTREME

VOLUMETRIC FOG QUALITY

Sets the visual quality of fog in the game. Increasing fog quality means a higher load on the GPU.

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST.

LOW ⇒ MEDIUM ⇒ HIGH ⇒ EXTREME

DEPTH OF FIELD

Adds a camera focus effect with different quality settings. Increases GPU usage.

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST.

OFF ⇒ MEDIUM ⇒ HIGH

BLOOM

Bright in-game glow effects through post-processing. Increases GPU usage slightly

OFF ⇒ ON

SKIN SUBSURFACE SCATTERING

Realistic skin effect on characters through post-processing. Increases GPU usage.

OFF ⇒ ON

MOTION BLUR

Simulates a blur effect for movement through post-processing. Increases GPU usage.

OFF ⇒ ON

SCREEN SPACE REFLECTIONS

Generates in-game reflections through post-processing. Increases GPU usage.

‍AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST.

OFF ⇒ MEDIUM ⇒ HIGH

GLOBAL ILLUMINATION

Baked simulation of indirect bounce lighting. This is replaced by ray-traced global illumination when running with ray tracing and the setting does not have any effect in such scenarios.

LOW ⇒ HIGH

LENS QUALITY

Enables post-processing effects for both Lens Quality Colour Fringe and Distortion. Increases GPU usage.

OFF ⇒ ON

LENS FLARES

Adds lens flare effects for sunlight or all light sources. Increases GPU usage.

ALL LIGHTS has a small effect also on the CPU.

AVAILABLE OPTIONS IN ORDER OF INCREASED LOAD ON THE GPU, FROM LEAST TO MOST.

OFF ⇒ SUNLIGHT ONLY ⇒ ALL LIGHTS

SCATTER DENSITY

Scales the in-game density of detailing elements such as debris. More scatter increases CPU usage.

CAN BE SET TO A VALUE BETWEEN 0.0 AND 1.0

MAX RAGDOLLS

Decides how many enemy ragdolls are active. More ragdolls significantly increases CPU usage.

CAN BE SET TO A VALUE BETWEEN 3 AND 50

MAX WEAPON IMPACT DECALS

Decides the amount of concurrent weapon impact decals. Increases GPU usage.

CAN BE SET TO A VALUE BETWEEN 5 AND 100

MAX BLOOD DECALS

Decides the amount of concurrent blood decals. Increases GPU usage.

CAN BE SET TO A VALUE BETWEEN 5 AND 100

DECAL LIFETIME

Decides the lifetime (in seconds) for decal being drawn in the game. Increases GPU usage.

CAN BE SET TO A VALUE BETWEEN 10 AND 60

Be the first to comment

Leave a Reply

Your email address will not be published.


*