This fixes an issue in an atypical code path that would lead to an ImageTarget having an unmodified alpha channel if loading an ImageSource that has no alpha. The more expected behavior occurs now, which is that the alpha of the target is set to max() e.g. 255 for an 8bit image.
This fixes an issue in an atypical code path that would lead to an
ImageTarget
having an unmodified alpha channel if loading anImageSource
that has no alpha. The more expected behavior occurs now, which is that the alpha of the target is set tomax()
e.g. 255 for an 8bit image.