summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/FramebufferManager.h
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-11-02 13:17:38 -0500
committerGitHub <noreply@github.com>2025-11-02 13:17:38 -0500
commita4a4416ff20db79a57789931449bc80e38800b8d (patch)
treee86eeabcaaff6c137db1e2b8e2efac6783bc677c /Source/Core/VideoCommon/FramebufferManager.h
parent1d9c743ef793d88b53d31bb31079435c9a2b8e5f (diff)
parent6728007cb4832c80745df73f980ccff53691368f (diff)
Merge pull request #14042 from iwubcode/bp_functions_global
VideoCommon: move global variables out of BPFunctions
Diffstat (limited to 'Source/Core/VideoCommon/FramebufferManager.h')
-rw-r--r--Source/Core/VideoCommon/FramebufferManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/FramebufferManager.h b/Source/Core/VideoCommon/FramebufferManager.h
index e6e7cdc920..62c8c177fc 100644
--- a/Source/Core/VideoCommon/FramebufferManager.h
+++ b/Source/Core/VideoCommon/FramebufferManager.h
@@ -110,7 +110,7 @@ public:
// Clears the EFB using shaders.
void ClearEFB(const MathUtil::Rectangle<int>& rc, bool clear_color, bool clear_alpha,
- bool clear_z, u32 color, u32 z);
+ bool clear_z, u32 color, u32 z, PixelFormat pixel_format);
AbstractPipeline* GetClearPipeline(bool clear_color, bool clear_alpha, bool clear_z) const;