summaryrefslogtreecommitdiffstats
path: root/src/video_core/swrasterizer/framebuffer.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-30 02:43:09 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-13 03:11:03 +0100
commite1ad7d69b981c7ed249ba7efd4287d712db3747d (patch)
tree813232650da323b708faef9ad8a7db7a50d3f287 /src/video_core/swrasterizer/framebuffer.h
parentVideoCore: Move software rasterizer files to sub-directory (diff)
downloadyuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar.gz
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar.bz2
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar.lz
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar.xz
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.tar.zst
yuzu-e1ad7d69b981c7ed249ba7efd4287d712db3747d.zip
Diffstat (limited to 'src/video_core/swrasterizer/framebuffer.h')
-rw-r--r--src/video_core/swrasterizer/framebuffer.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/video_core/swrasterizer/framebuffer.h b/src/video_core/swrasterizer/framebuffer.h
new file mode 100644
index 000000000..220f7013b
--- /dev/null
+++ b/src/video_core/swrasterizer/framebuffer.h
@@ -0,0 +1,23 @@
+// Copyright 2017 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "common/common_types.h"
+#include "common/vector_math.h"
+#include "video_core/regs_framebuffer.h"
+
+namespace Pica {
+namespace Rasterizer {
+
+void DrawPixel(int x, int y, const Math::Vec4<u8>& color);
+const Math::Vec4<u8> GetPixel(int x, int y);
+u32 GetDepth(int x, int y);
+u8 GetStencil(int x, int y);
+void SetDepth(int x, int y, u32 value);
+void SetStencil(int x, int y, u8 value);
+u8 PerformStencilAction(FramebufferRegs::StencilAction action, u8 old_stencil, u8 ref);
+
+} // namespace Rasterizer
+} // namespace Pica