24 lines
1.3 KiB
Java
24 lines
1.3 KiB
Java
|
package o;
|
||
|
|
||
|
import android.animation.TypeEvaluator;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class Qas implements TypeEvaluator<Integer> {
|
||
|
public static final Qas c = new Qas();
|
||
|
|
||
|
@Override // android.animation.TypeEvaluator
|
||
|
public final /* synthetic */ Integer evaluate(float f, Integer num, Integer num2) {
|
||
|
int intValue = num.intValue();
|
||
|
float f2 = (intValue >>> 24) / 255.0f;
|
||
|
int intValue2 = num2.intValue();
|
||
|
float f3 = (intValue2 >>> 24) / 255.0f;
|
||
|
float pow = (float) Math.pow(((intValue >> 16) & 255) / 255.0f, 2.2d);
|
||
|
float pow2 = (float) Math.pow(((intValue >> 8) & 255) / 255.0f, 2.2d);
|
||
|
float pow3 = (float) Math.pow((intValue & 255) / 255.0f, 2.2d);
|
||
|
float pow4 = (float) Math.pow(((intValue2 >> 16) & 255) / 255.0f, 2.2d);
|
||
|
float pow5 = (float) Math.pow(((intValue2 >> 8) & 255) / 255.0f, 2.2d);
|
||
|
float pow6 = (float) Math.pow((intValue2 & 255) / 255.0f, 2.2d);
|
||
|
return Integer.valueOf((Math.round((f2 + ((f3 - f2) * f)) * 255.0f) << 24) | (Math.round(((float) Math.pow(pow + ((pow4 - pow) * f), 0.45454545454545453d)) * 255.0f) << 16) | (Math.round(((float) Math.pow(pow2 + ((pow5 - pow2) * f), 0.45454545454545453d)) * 255.0f) << 8) | Math.round(((float) Math.pow(pow3 + ((pow6 - pow3) * f), 0.45454545454545453d)) * 255.0f));
|
||
|
}
|
||
|
}
|