From b8a21b37446e80b2c6a249933babe9acae9e618e Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Tue, 29 Jul 2014 11:52:34 -0500 Subject: [PATCH] Add the PostProcessing class object to RenderBase in VideoCommon. Backends will initialize this variable with their own inherited PostProcessing class object. --- Source/Core/VideoCommon/RenderBase.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/VideoCommon/RenderBase.h b/Source/Core/VideoCommon/RenderBase.h index 3ed767b348..fc20752a50 100644 --- a/Source/Core/VideoCommon/RenderBase.h +++ b/Source/Core/VideoCommon/RenderBase.h @@ -24,6 +24,8 @@ #include "VideoCommon/NativeVertexFormat.h" #include "VideoCommon/VideoCommon.h" +class PostProcessingShaderImplementation; + // TODO: Move these out of here. extern int frameCount; extern int OSDChoice;