userspace: Add missing alpha channels

This commit is contained in:
2024-09-12 20:53:45 +03:00
parent 163961df4f
commit 7f25ddc229
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ namespace LibGUI
return BAN::Error::from_errno(EINVAL);
BAN::Vector<uint32_t> framebuffer;
TRY(framebuffer.resize(width * height));
TRY(framebuffer.resize(width * height, 0xFF000000));
int server_fd = socket(AF_UNIX, SOCK_SEQPACKET, 0);
if (server_fd == -1)