diff options
| author | 2015-01-13 18:11:18 -0500 | |
|---|---|---|
| committer | 2015-01-13 18:11:18 -0500 | |
| commit | 93f36c49f78ede924cce68375554d8418ae638af (patch) | |
| tree | f0cd74773e729c7096b6b4b0cf0b6aa5d75904ec /src/citra_qt/debugger | |
| parent | Merge pull request #479 from Subv/hm (diff) | |
| parent | Pica/Rasterizer: Add ETC1 texture decompression support. (diff) | |
| download | yuzu-93f36c49f78ede924cce68375554d8418ae638af.tar.gz yuzu-93f36c49f78ede924cce68375554d8418ae638af.tar.xz yuzu-93f36c49f78ede924cce68375554d8418ae638af.zip | |
Merge pull request #473 from archshift/pp3ports
Pica/Rasterizer: Add ETC1 texture decompression support.
Diffstat (limited to 'src/citra_qt/debugger')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp index 4a6159fdf..bd420f24a 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.cpp +++ b/src/citra_qt/debugger/graphics_cmdlists.cpp | |||
| @@ -76,6 +76,8 @@ TextureInfoDockWidget::TextureInfoDockWidget(const Pica::DebugUtils::TextureInfo | |||
| 76 | format_choice->addItem(tr("IA4")); | 76 | format_choice->addItem(tr("IA4")); |
| 77 | format_choice->addItem(tr("UNK10")); | 77 | format_choice->addItem(tr("UNK10")); |
| 78 | format_choice->addItem(tr("A4")); | 78 | format_choice->addItem(tr("A4")); |
| 79 | format_choice->addItem(tr("ETC1")); | ||
| 80 | format_choice->addItem(tr("ETC1A4")); | ||
| 79 | format_choice->setCurrentIndex(static_cast<int>(info.format)); | 81 | format_choice->setCurrentIndex(static_cast<int>(info.format)); |
| 80 | connect(format_choice, SIGNAL(currentIndexChanged(int)), this, SLOT(OnFormatChanged(int))); | 82 | connect(format_choice, SIGNAL(currentIndexChanged(int)), this, SLOT(OnFormatChanged(int))); |
| 81 | 83 | ||