mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
23 lines
571 B
Java
23 lines
571 B
Java
package androidx.transition;
|
|
|
|
import android.graphics.Canvas;
|
|
import java.lang.reflect.Method;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class CanvasUtils {
|
|
private static Method sInorderBarrierMethod;
|
|
private static boolean sOrderMethodsFetched;
|
|
private static Method sReorderBarrierMethod;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static void enableZ(Canvas canvas, boolean z) {
|
|
if (z) {
|
|
canvas.enableZ();
|
|
} else {
|
|
canvas.disableZ();
|
|
}
|
|
}
|
|
|
|
private CanvasUtils() {
|
|
}
|
|
}
|