citra-qt: Add depth formats to framebuffer viewing widget.

This commit is contained in:
Tony Wasserka 2015-04-21 22:18:58 +02:00
parent 88df3fbf27
commit 302e9a20f3
2 changed files with 33 additions and 6 deletions

View file

@ -35,8 +35,9 @@ class GraphicsFramebufferWidget : public BreakPointObserverDock {
RGBA4 = 4,
D16 = 5,
D24 = 6,
D24S8 = 7,
Unknown = 8
D24X8 = 7,
X24S8 = 8,
Unknown = 9
};
static u32 BytesPerPixel(Format format);