| 604 | } |
| 605 | |
| 606 | static bool LoadDXT2( QDataStream & s, const DDSHeader & header, QImage & img ) |
| 607 | { |
| 608 | if( !LoadDXT3(s, header, img) ) { |
| 609 | return false; |
| 610 | } |
| 611 | //UndoPremultiplyAlpha(img); |
| 612 | return true; |
| 613 | } |
| 614 | |
| 615 | static bool LoadDXT5( QDataStream & s, const DDSHeader & header, QImage & img ) |
| 616 | { |
nothing calls this directly
no test coverage detected