Initial commit
This commit is contained in:
21
sources/com/unity3d/player/GoogleVrVideo.java
Normal file
21
sources/com/unity3d/player/GoogleVrVideo.java
Normal file
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user