diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-03-13 14:20:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-13 14:20:34 -0400 |
| commit | a421d6859f00d0912be1066f424b9d5f118f2208 (patch) | |
| tree | 1403654db927f834be21f7ed00b4618a51f3d377 /Source/Core/VideoBackends/Null/NullGfx.cpp | |
| parent | de997d616fb013735bb40a3e0bb945c776bd1a16 (diff) | |
| parent | 5b36c13bfb7a9e3c33fb57ad881e65fb8ae223ea (diff) | |
Merge pull request #13418 from jordan-woyak/efb-interface
VideoCommon: Rename Renderer to EFBInterface.
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullGfx.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullGfx.cpp | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Null/NullGfx.cpp b/Source/Core/VideoBackends/Null/NullGfx.cpp index 72aea0ce50..ab60339d0b 100644 --- a/Source/Core/VideoBackends/Null/NullGfx.cpp +++ b/Source/Core/VideoBackends/Null/NullGfx.cpp @@ -3,7 +3,6 @@ #include "VideoBackends/Null/NullGfx.h" -#include "VideoBackends/Null/NullBoundingBox.h" #include "VideoBackends/Null/NullTexture.h" #include "VideoCommon/AbstractPipeline.h" @@ -92,6 +91,26 @@ NullGfx::CreateNativeVertexFormat(const PortableVertexDeclaration& vtx_decl) return std::make_unique<NativeVertexFormat>(vtx_decl); } -NullRenderer::~NullRenderer() = default; +void NullEFBInterface::ReinterpretPixelData(EFBReinterpretType convtype) +{ +} + +void NullEFBInterface::PokeColor(u16 x, u16 y, u32 color) +{ +} + +void NullEFBInterface::PokeDepth(u16 x, u16 y, u32 depth) +{ +} + +u32 NullEFBInterface::PeekColorInternal(u16 x, u16 y) +{ + return 0; +} + +u32 NullEFBInterface::PeekDepth(u16 x, u16 y) +{ + return 0; +} } // namespace Null |
