22 lines
530 B
Java
22 lines
530 B
Java
package com.unity3d.player;
|
|
|
|
import android.view.Surface;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface GoogleVrVideo {
|
|
|
|
public interface GoogleVrVideoCallbacks {
|
|
void onFrameAvailable();
|
|
|
|
void onSurfaceAvailable(Surface surface);
|
|
|
|
void onSurfaceUnavailable();
|
|
}
|
|
|
|
void deregisterGoogleVrVideoListener(GoogleVrVideoCallbacks googleVrVideoCallbacks);
|
|
|
|
void registerGoogleVrVideoListener(GoogleVrVideoCallbacks googleVrVideoCallbacks);
|
|
|
|
void setVideoLocationTransform(float[] fArr);
|
|
}
|