summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_framebuffer.h
diff options
context:
space:
mode:
authorGravatar Subv2015-03-08 21:31:15 -0500
committerGravatar Subv2015-03-09 20:13:21 -0500
commit1248e291f0c9a29734b0f5175df8fa675cce930c (patch)
tree18218cbe496e5a2f42022a5e6741fa0665218874 /src/citra_qt/debugger/graphics_framebuffer.h
parentFrontend/Qt: Allow the framebuffer widget to inspect the depth buffer (diff)
downloadyuzu-1248e291f0c9a29734b0f5175df8fa675cce930c.tar.gz
yuzu-1248e291f0c9a29734b0f5175df8fa675cce930c.tar.xz
yuzu-1248e291f0c9a29734b0f5175df8fa675cce930c.zip
GPU: Added the stencil test structure to the Pica Regs struct.
Diffstat (limited to 'src/citra_qt/debugger/graphics_framebuffer.h')
-rw-r--r--src/citra_qt/debugger/graphics_framebuffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/graphics_framebuffer.h b/src/citra_qt/debugger/graphics_framebuffer.h
index dff91d131..4cb396ffe 100644
--- a/src/citra_qt/debugger/graphics_framebuffer.h
+++ b/src/citra_qt/debugger/graphics_framebuffer.h
@@ -20,9 +20,9 @@ class GraphicsFramebufferWidget : public BreakPointObserverDock {
20 using Event = Pica::DebugContext::Event; 20 using Event = Pica::DebugContext::Event;
21 21
22 enum class Source { 22 enum class Source {
23 PicaTarget = 0, 23 PicaTarget = 0,
24 DepthBuffer = 1, 24 DepthBuffer = 1,
25 Custom = 2, 25 Custom = 2,
26 26
27 // TODO: Add GPU framebuffer sources! 27 // TODO: Add GPU framebuffer sources!
28 }; 28 };