mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
24 lines
824 B
Java
24 lines
824 B
Java
package com.airbnb.lottie.model.layer;
|
|
|
|
import android.graphics.Canvas;
|
|
import android.graphics.Matrix;
|
|
import android.graphics.RectF;
|
|
import com.airbnb.lottie.LottieDrawable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class NullLayer extends BaseLayer {
|
|
@Override // com.airbnb.lottie.model.layer.BaseLayer
|
|
void drawLayer(Canvas canvas, Matrix matrix, int i) {
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public NullLayer(LottieDrawable lottieDrawable, Layer layer) {
|
|
super(lottieDrawable, layer);
|
|
}
|
|
|
|
@Override // com.airbnb.lottie.model.layer.BaseLayer, com.airbnb.lottie.animation.content.DrawingContent
|
|
public void getBounds(RectF rectF, Matrix matrix, boolean z) {
|
|
super.getBounds(rectF, matrix, z);
|
|
rectF.set(0.0f, 0.0f, 0.0f, 0.0f);
|
|
}
|
|
}
|