summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_framebuffer.h
diff options
context:
space:
mode:
authorGravatar Tony Wasserka2015-07-13 23:05:04 +0200
committerGravatar Tony Wasserka2015-07-13 23:05:04 +0200
commitbf80ae6a1ad328814df332c1136fe14e836053c6 (patch)
treedd61e70261a8f3488344f0ce90df6c5bb67e6c81 /src/citra_qt/debugger/graphics_framebuffer.h
parentMerge pull request #702 from neobrain/citrace (diff)
parentPica: Implement stencil testing. (diff)
downloadyuzu-bf80ae6a1ad328814df332c1136fe14e836053c6.tar.gz
yuzu-bf80ae6a1ad328814df332c1136fe14e836053c6.tar.xz
yuzu-bf80ae6a1ad328814df332c1136fe14e836053c6.zip
Merge pull request #793 from neobrain/stencil
Pica: Implement stencil testing.
Diffstat (limited to 'src/citra_qt/debugger/graphics_framebuffer.h')
-rw-r--r--src/citra_qt/debugger/graphics_framebuffer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_framebuffer.h b/src/citra_qt/debugger/graphics_framebuffer.h
index 4cb396ffe..e9eae679f 100644
--- a/src/citra_qt/debugger/graphics_framebuffer.h
+++ b/src/citra_qt/debugger/graphics_framebuffer.h
@@ -35,7 +35,9 @@ class GraphicsFramebufferWidget : public BreakPointObserverDock {
35 RGBA4 = 4, 35 RGBA4 = 4,
36 D16 = 5, 36 D16 = 5,
37 D24 = 6, 37 D24 = 6,
38 D24S8 = 7 38 D24X8 = 7,
39 X24S8 = 8,
40 Unknown = 9
39 }; 41 };
40 42
41 static u32 BytesPerPixel(Format format); 43 static u32 BytesPerPixel(Format format);