From 34ace6bb23e14d9f10a6bbb1290dcd34d376dded Mon Sep 17 00:00:00 2001 From: Lewis Jordan Date: Mon, 4 May 2020 11:36:15 +0100 Subject: [PATCH 1/2] Update Forward-And-Deferred-Rendering.md --- .../Documentation~/Forward-And-Deferred-Rendering.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md b/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md index 3ac208d453b..a0a753b5559 100644 --- a/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md +++ b/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md @@ -15,8 +15,8 @@ You can choose between three rendering modes: | **Lit Shader Mode** | **Description** | | ------------------- | ------------------------------------------------------------ | -| **Forward** | HDRP calculates the lighting in a single pass when rendering each individual Material. | -| **Deferred** | HDRP renders all GameObjects into a GBuffer that stores the Material properties that are visible on the screen. HDRP then processes the lighting for every GameObject in the Scene. | +| **Forward** | HDRP calculates the lighting in a single pass when rendering each individual GameObject. | +| **Deferred** | HDRP renders the material properties of the GameObjects visible on Screen into a GBuffer. HDRP then processes the lighting for every pixel in the frame. | | **Both** | Use the [Frame Settings](Frame-Settings.html) to change between **Forward** and **Deferred** rendering mode on a per Camera and Reflection Probe basis at runtime. Selecting this increases Project [build time](#BuildTime). | If you select **Both**, you can set a rendering mode for all Cameras to use by default, and also override this default rendering mode at runtime for a specific Camera. For example, you can use Forward mode for a Planar Reflection Probe and then render your main Camera using Deferred mode. From 507ebcf5e12f16316afbc374f0d6e9c57a88e37f Mon Sep 17 00:00:00 2001 From: Lewis Jordan Date: Mon, 4 May 2020 11:39:23 +0100 Subject: [PATCH 2/2] Update Forward-And-Deferred-Rendering.md --- .../Documentation~/Forward-And-Deferred-Rendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md b/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md index a0a753b5559..17daafbdd19 100644 --- a/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md +++ b/com.unity.render-pipelines.high-definition/Documentation~/Forward-And-Deferred-Rendering.md @@ -16,7 +16,7 @@ You can choose between three rendering modes: | **Lit Shader Mode** | **Description** | | ------------------- | ------------------------------------------------------------ | | **Forward** | HDRP calculates the lighting in a single pass when rendering each individual GameObject. | -| **Deferred** | HDRP renders the material properties of the GameObjects visible on Screen into a GBuffer. HDRP then processes the lighting for every pixel in the frame. | +| **Deferred** | HDRP renders the Material properties of every GameObject visible on screen into a GBuffer. HDRP then processes the lighting for every pixel in the frame. | | **Both** | Use the [Frame Settings](Frame-Settings.html) to change between **Forward** and **Deferred** rendering mode on a per Camera and Reflection Probe basis at runtime. Selecting this increases Project [build time](#BuildTime). | If you select **Both**, you can set a rendering mode for all Cameras to use by default, and also override this default rendering mode at runtime for a specific Camera. For example, you can use Forward mode for a Planar Reflection Probe and then render your main Camera using Deferred mode.