UI: Correct Splash RGB Image Corner Rounding

Our splash screen rounds the top corners of the featured image. However
this requires an alpha channel, so an RGB image will not look rounded.
This PR just ensures a 32 plane count.

Pull Request: https://projects.blender.org/blender/blender/pulls/119473
This commit is contained in:
Harley Acheson
2024-03-14 17:22:22 +01:00
committed by Harley Acheson
parent a1fcdf10f2
commit 479342b1cf

View File

@@ -158,6 +158,7 @@ static ImBuf *wm_block_splash_image(int width, int *r_height)
}
if (ibuf) {
ibuf->planes = 32; /* The image might not have an alpha channel. */
height = (width * ibuf->y) / ibuf->x;
if (width != ibuf->x || height != ibuf->y) {
IMB_scaleImBuf(ibuf, width, height);