| 661 | return true; |
| 662 | } |
| 663 | static bool LoadDXT4( QDataStream & s, const DDSHeader & header, QImage & img ) |
| 664 | { |
| 665 | if( !LoadDXT5(s, header, img) ) { |
| 666 | return false; |
| 667 | } |
| 668 | //UndoPremultiplyAlpha(img); |
| 669 | return true; |
| 670 | } |
| 671 | |
| 672 | static bool LoadRXGB( QDataStream & s, const DDSHeader & header, QImage & img ) |
| 673 | { |
nothing calls this directly
no test coverage detected