| 1106 | |
| 1107 | |
| 1108 | ILboolean DecompressDXT4(ILimage *lImage, ILubyte *lCompData) |
| 1109 | { |
| 1110 | // Can do color & alpha same as dxt5, but color is pre-multiplied |
| 1111 | // so the result will be wrong unless corrected. |
| 1112 | if (!DecompressDXT5(Image, CompData)) |
| 1113 | return IL_FALSE; |
| 1114 | CorrectPreMult(); |
| 1115 | |
| 1116 | return IL_FALSE; |
| 1117 | } |
| 1118 | |
| 1119 | |
| 1120 | ILboolean DecompressDXT5(ILimage *lImage, ILubyte *lCompData) |
no test coverage detected