- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18 lines
519 B
Java
18 lines
519 B
Java
package com.unity3d.ads.gl;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class OffscreenSurface extends EglSurfaceBase {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public OffscreenSurface(EglCore eglCore, int i, int i2) {
|
|
super(eglCore);
|
|
Intrinsics.checkNotNullParameter(eglCore, "eglCore");
|
|
createOffscreenSurface(i, i2);
|
|
}
|
|
|
|
public final void release() {
|
|
releaseEglSurface();
|
|
}
|
|
}
|