diff options
| author | 2015-02-25 22:44:55 -0500 | |
|---|---|---|
| committer | 2015-03-03 18:26:03 -0500 | |
| commit | 34c31db14a98013ee802bd5ae31c775768f12439 (patch) | |
| tree | 20a611dd0e2d30203d756f79d86838ad22e01f02 /src/citra_qt/debugger/graphics_cmdlists.cpp | |
| parent | Merge pull request #622 from Subv/titles (diff) | |
| download | yuzu-34c31db14a98013ee802bd5ae31c775768f12439.tar.gz yuzu-34c31db14a98013ee802bd5ae31c775768f12439.tar.xz yuzu-34c31db14a98013ee802bd5ae31c775768f12439.zip | |
GPU: Added RGB565/RGB8 framebuffer support and various cleanups.
- Centralizes color format encode/decode functions.
- Fixes endianness issues.
- Implements remaining framebuffer formats in the debugger.
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index bd420f24a..9bcd25821 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -66,7 +66,7 @@ TextureInfoDockWidget::TextureInfoDockWidget(const Pica::DebugUtils::TextureInfo | |||
| 66 | QComboBox* format_choice = new QComboBox; | 66 | QComboBox* format_choice = new QComboBox; |
| 67 | format_choice->addItem(tr("RGBA8")); | 67 | format_choice->addItem(tr("RGBA8")); |
| 68 | format_choice->addItem(tr("RGB8")); | 68 | format_choice->addItem(tr("RGB8")); |
| 69 | format_choice->addItem(tr("RGBA5551")); | 69 | format_choice->addItem(tr("RGB5A1")); |
| 70 | format_choice->addItem(tr("RGB565")); | 70 | format_choice->addItem(tr("RGB565")); |
| 71 | format_choice->addItem(tr("RGBA4")); | 71 | format_choice->addItem(tr("RGBA4")); |
| 72 | format_choice->addItem(tr("IA8")); | 72 | format_choice->addItem(tr("IA8")); |