From 7d945d47e8d035edfe6d5b6167e8478481c8127f Mon Sep 17 00:00:00 2001 From: Ari Vuollet Date: Mon, 10 Aug 2026 20:32:16 +0300 Subject: [PATCH] Fix build regression --- Source/Engine/Graphics/PostProcessEffect.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Engine/Graphics/PostProcessEffect.h b/Source/Engine/Graphics/PostProcessEffect.h index 83b7926ff..6e0f27a29 100644 --- a/Source/Engine/Graphics/PostProcessEffect.h +++ b/Source/Engine/Graphics/PostProcessEffect.h @@ -8,6 +8,7 @@ class GPUTexture; class GPUContext; struct RenderContext; +struct RenderContextBatch; /// /// Custom PostFx which can modify final image by processing it with material based filters. The base class for all post process effects used by the graphics pipeline. Allows to extend frame rendering logic and apply custom effects such as outline, night vision, contrast etc.