| 1021 | |
| 1022 | |
| 1023 | ILboolean DecompressDXT2(ILimage *lImage, ILubyte *lCompData) |
| 1024 | { |
| 1025 | // Can do color & alpha same as dxt3, but color is pre-multiplied |
| 1026 | // so the result will be wrong unless corrected. |
| 1027 | if (!DecompressDXT3(Image, CompData)) |
| 1028 | return IL_FALSE; |
| 1029 | CorrectPreMult(); |
| 1030 | |
| 1031 | return IL_TRUE; |
| 1032 | } |
| 1033 | |
| 1034 | |
| 1035 | ILboolean DecompressDXT3(ILimage *lImage, ILubyte *lCompData) |
no test coverage detected