/// <summary>
 /// Create an asynchronous request to convert a camera image, similar to <see cref="TryConvert"/> except
 /// the conversion should happen on a thread other than the calling (main) thread.
 /// </summary>
 /// <param name="nativeHandle">A unique identifier for the camera image to convert.</param>
 /// <param name="conversionParams">The parameters to use during the conversion.</param>
 /// <returns>A unique identifier for this request.</returns>
 public override int ConvertAsync(
     int nativeHandle,
     XRCameraImageConversionParams conversionParams)
 {
     return(NativeApi.UnityARKit_Camera_CreateAsyncConversionRequest(nativeHandle, conversionParams));
 }