Game Development Guide📅 August 2026â€ĸ⏱ 10 min read

Understanding Render Scale: Complete Guide to Resolution & Performance

Learn how render scale works, calculate internal render resolution, understand pixel workload and balance image quality with game performance.

📌

Quick Summary

Here's what you'll learn in this guide.

Introduction

Rendering resolution is one of the most important factors that affects the visual quality and performance of a game. Modern games often need to balance high-resolution graphics with the processing power available on the target hardware.

Render scale provides a simple way to control this balance. Instead of rendering the game at the full native display resolution, a game can render internally at a lower or higher resolution and then scale the result to the final display resolution.

For example, a game running at a native resolution of 1920 × 1080 with a render scale of 75% renders internally at 1440 × 810.

What Is Render Scale?

Render scale is a percentage that determines the internal resolution used when rendering a game scene.

A render scale of 100% means the game renders at the full native resolution. A value below 100% renders at a lower internal resolution, while a value above 100% renders at a higher internal resolution.

Render Scale Examples

Render ScaleMeaningTypical Effect
50%Half native width and heightSignificantly lower pixel workload
67%67% of native width and heightLower workload with reduced image quality
75%75% of native width and heightBalanced performance reduction
83%83% of native width and heightCloser to native image quality
100%Native resolutionFull native rendering workload

How Render Scale Works

Render scale is applied independently to the width and height of the native resolution.

This means that reducing the render scale does not simply remove a percentage of pixels from the final image. Both dimensions are reduced, which means the total number of rendered pixels changes much more significantly.

For example, reducing render scale from 100% to 50% halves both the width and height of the internal resolution.

The resulting image can then be upscaled to the final display resolution using the game's rendering pipeline or an upscaling technique.

Render Scale Formula

The render scale calculation is straightforward. Convert the percentage into a decimal and multiply it by the native width and height.

For example, consider a native resolution of 1920 × 1080 and a render scale of 75%.

1920 × 0.75 = 1440

1080 × 0.75 = 810

Therefore, the internal render resolution is 1440 × 810.

Render Resolution Examples

Native ResolutionRender ScaleInternal ResolutionRendered Pixels
1920 × 108050%960 × 540518,400
1920 × 108067%1286 × 724931,064
1920 × 108075%1440 × 8101,166,400
1920 × 108083%1594 × 8961,428,224
1920 × 1080100%1920 × 10802,073,600

Render Resolution Examples

The relationship between render scale and resolution becomes easier to understand when looking at common display resolutions.

At 1920 × 1080, a 75% render scale produces an internal resolution of 1440 × 810. The final image can then be displayed at the native 1920 × 1080 resolution after upscaling.

The same percentage can be applied to other resolutions. For example, a 2560 × 1440 resolution at 75% render scale results in an internal resolution of 1920 × 1080.

Common Resolution Examples

đŸ–Ĩī¸

1080p at 75%

1920 × 1080 becomes approximately 1440 × 810 internally.

🎮

1440p at 75%

2560 × 1440 becomes 1920 × 1080 internally.

đŸ–Ĩī¸

4K at 75%

3840 × 2160 becomes 2880 × 1620 internally.

âš™ī¸

100% Scale

The internal resolution matches the native resolution.

Pixel Workload and Performance

One of the main reasons developers use render scaling is to reduce the number of pixels that the GPU needs to process.

Because both the width and height change, the pixel workload does not decrease at the same percentage as the render scale.

For example, reducing render scale to 75% produces approximately 56.25% of the native pixel count before rounding.

This can provide a meaningful reduction in GPU rendering workload, particularly in games that are limited by pixel processing. However, render scale is not a guarantee of a specific frame-rate improvement because games can be limited by CPU processing, geometry, shaders, memory bandwidth or other systems.

What Render Scale Can Affect

🎮

GPU Workload

Lower internal resolution can reduce the number of pixels processed by the GPU.

đŸ–ŧī¸

Image Quality

Lower render resolution can reduce sharpness and fine image detail.

⚡

Frame Rate

Reducing GPU workload can potentially improve frame rate when rendering is the bottleneck.

🔍

Upscaling

Lower-resolution frames can be reconstructed or upscaled to the final display resolution.

Common Render Scale Values

There is no universal render scale that works best for every game. Developers typically test several values to find an appropriate balance between visual quality and performance.

Common Render Scale Values

ScalePixel WorkloadTypical Use
50%25%Aggressive performance optimization
67%≈45%Strong performance reduction
75%56.25%Balanced performance and quality
83%≈69%Closer to native quality
100%100%Native rendering

These values are useful starting points, but the appropriate setting should always be evaluated on the actual target hardware and display.

Render Scale in Unity and Unreal Engine

Render scaling is a common optimization concept in modern game engines. Developers can use internal resolution scaling to adjust rendering workload dynamically or through graphics settings.

In Unity, render resolution can be controlled through the rendering pipeline and platform-specific graphics settings. The exact implementation depends on whether the project uses the Built-in Render Pipeline, URP or HDRP.

In Unreal Engine, resolution scaling is commonly used as part of performance and scalability settings. Developers can adjust rendering resolution independently from the final output resolution.

Image Quality Considerations

Lowering render scale reduces the internal resolution, which can make the final image appear softer or less detailed.

The visual impact depends on the render scale, the type of content being rendered and the upscaling technique used by the game.

Modern temporal and spatial upscaling techniques can reconstruct information from a lower-resolution render and produce a sharper final image than simple scaling alone.

✅

Advantages

Benefits of this approach.

  • ✓
    Can reduce GPU pixel workload
  • ✓
    Can improve performance when GPU rendering is the bottleneck
  • ✓
    Provides a simple quality-performance control
  • ✓
    Can be combined with upscaling technologies
  • ✓
    Useful for scalable graphics settings
  • ✓
    Works across different display resolutions
❌

Disadvantages

Things to consider before choosing this approach.

  • ✕
    Lower values can reduce image sharpness
  • ✕
    Does not guarantee a specific frame-rate increase
  • ✕
    CPU-bound games may see limited benefit
  • ✕
    Different hardware can respond differently
  • ✕
    Very low scales can produce noticeably soft images
  • ✕
    Requires testing to find the appropriate value

Common Render Scale Mistakes

Render scaling is relatively simple, but there are several common mistakes when using it as a performance optimization technique.

  • Assuming that a 50% render scale means 50% of the original pixel workload.
  • Expecting a guaranteed frame-rate increase from reducing render resolution.
  • Using an unnecessarily low render scale without considering image quality.
  • Testing only on development hardware instead of the target platform.
  • Ignoring the game's upscaling or reconstruction method.
  • Assuming the same render scale produces the same visual result across different rendering pipelines.
📌

Quick Summary

Here's what you'll learn in this guide.

Frequently Asked Questions

Render scale determines the internal resolution at which a game renders its scene relative to the native display resolution. For example, a render scale of 75% renders the scene at 75% of the native width and height.

Multiply the native width and height by the render scale. For example, a 1920 × 1080 resolution at 75% render scale produces an internal render resolution of 1440 × 810.

Lower render scale reduces the number of pixels that need to be rendered, which can reduce GPU rendering workload and potentially improve performance. The actual improvement depends on the game, rendering pipeline and hardware.

There is no single render scale that is best for every game. Common values include 50%, 67%, 75%, 83% and 100%. The best setting depends on the desired balance between image quality and performance.

Yes. Lower render scales produce a lower internal rendering resolution, which can reduce image sharpness and fine detail. Upscaling techniques can help reconstruct a sharper final image.

Yes. Render scaling is a common performance optimization technique used in modern game engines, including Unity and Unreal Engine.

🚀

Calculate Your Render Scale

Use our free Render Scale Calculator to calculate internal render resolution and pixel workload from your native resolution and render scale.

Continue Learning

Explore more guides that complement this topic and continue building your knowledge.

Conclusion

Render scale provides a straightforward way to control the relationship between internal rendering resolution, image quality and GPU workload.

Reducing render scale can significantly reduce the number of pixels that need to be processed. However, the resulting performance improvement depends on whether the game is actually limited by GPU rendering.

The best approach is to test several render scale values on the target hardware and choose the lowest setting that provides an acceptable balance between performance and visual quality.