I am evaluating the ArcGIS Maps SDK for Qt to see if it fits our needs. To test it, I have done a small project for a map and scene viewer. In both viewers, I import a GeoTIF (data/orofotomosaic.tif in the project) which is an RBGA image. However, the image is shown with with background instead of transparency (in the attached image there's also another GeoTIF displayed in green scale which is not relevant to this post):

The way I create that raster layer is:
Esri::ArcGISRuntime::Raster *raster = new
Esri::ArcGISRuntime::Raster("path/to/photomosaic.tif", parent);
Esri::ArcGISRuntime::RasterLayer *raster_layer = new Esri::ArcGISRuntime::RasterLayer(raster, parent);
How can I keep the transparent background of the imported TIF file?