Pica/Rasterizer: Add ETC1 texture decompression support.

This commit is contained in:
Tony Wasserka 2014-12-31 14:48:19 +01:00 committed by archshift
parent 2f7069f9bd
commit f2b74b4fb3
3 changed files with 144 additions and 14 deletions

View file

@ -76,6 +76,8 @@ TextureInfoDockWidget::TextureInfoDockWidget(const Pica::DebugUtils::TextureInfo
format_choice->addItem(tr("IA4"));
format_choice->addItem(tr("UNK10"));
format_choice->addItem(tr("A4"));
format_choice->addItem(tr("ETC1"));
format_choice->addItem(tr("ETC1A4"));
format_choice->setCurrentIndex(static_cast<int>(info.format));
connect(format_choice, SIGNAL(currentIndexChanged(int)), this, SLOT(OnFormatChanged(int)));