diff options
| author | 2018-01-11 20:07:44 -0700 | |
|---|---|---|
| committer | 2018-01-12 19:11:03 -0700 | |
| commit | 1d28b2e142f845773e2b90e267d9632e196a99b9 (patch) | |
| tree | 027a3586a0fc927731afb3711c328c6dafc8551f /src/video_core/swrasterizer/framebuffer.h | |
| parent | Massive removal of unused modules (diff) | |
| download | yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.gz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.tar.xz yuzu-1d28b2e142f845773e2b90e267d9632e196a99b9.zip | |
Remove references to PICA and rasterizers in video_core
Diffstat (limited to 'src/video_core/swrasterizer/framebuffer.h')
| -rw-r--r-- | src/video_core/swrasterizer/framebuffer.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/video_core/swrasterizer/framebuffer.h b/src/video_core/swrasterizer/framebuffer.h deleted file mode 100644 index 4a32a4979..000000000 --- a/src/video_core/swrasterizer/framebuffer.h +++ /dev/null | |||
| @@ -1,29 +0,0 @@ | |||
| 1 | // Copyright 2017 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include "common/common_types.h" | ||
| 8 | #include "common/vector_math.h" | ||
| 9 | #include "video_core/regs_framebuffer.h" | ||
| 10 | |||
| 11 | namespace Pica { | ||
| 12 | namespace Rasterizer { | ||
| 13 | |||
| 14 | void DrawPixel(int x, int y, const Math::Vec4<u8>& color); | ||
| 15 | const Math::Vec4<u8> GetPixel(int x, int y); | ||
| 16 | u32 GetDepth(int x, int y); | ||
| 17 | u8 GetStencil(int x, int y); | ||
| 18 | void SetDepth(int x, int y, u32 value); | ||
| 19 | void SetStencil(int x, int y, u8 value); | ||
| 20 | u8 PerformStencilAction(FramebufferRegs::StencilAction action, u8 old_stencil, u8 ref); | ||
| 21 | |||
| 22 | Math::Vec4<u8> EvaluateBlendEquation(const Math::Vec4<u8>& src, const Math::Vec4<u8>& srcfactor, | ||
| 23 | const Math::Vec4<u8>& dest, const Math::Vec4<u8>& destfactor, | ||
| 24 | FramebufferRegs::BlendEquation equation); | ||
| 25 | |||
| 26 | u8 LogicOp(u8 src, u8 dest, FramebufferRegs::LogicOp op); | ||
| 27 | |||
| 28 | } // namespace Rasterizer | ||
| 29 | } // namespace Pica | ||