GvrLayout.ExternalSurfaceListener

  • GvrLayout.ExternalSurfaceListener is used to detect events on the video Surface managed by the async reprojection thread.

  • onFrameAvailable() is called when a new frame is available on the external Surface.

  • onSurfaceAvailable(Surface surface) is called when the external Surface is valid and ready to be used, providing the Surface object.

public static interface GvrLayout.ExternalSurfaceListener

Listener for external Surface events. Used to detect events on the video Surface managed by the async reprojection thread.

Public Methods

abstract void
onFrameAvailable()
Called whenever there is a new frame available on the external Surface.
abstract void
onSurfaceAvailable(Surface surface)
Called when the external Surface is valid and available to use.

Public Methods

public abstract void onFrameAvailable ()

Called whenever there is a new frame available on the external Surface.

public abstract void onSurfaceAvailable (Surface surface)

Called when the external Surface is valid and available to use.

Parameters
surface The Surface that is available to consume.