From b3d8e50aab8f3587f510db13ac8dcbb82e287998 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 13 Jun 2021 13:20:53 +0200 Subject: Fixed alpha channel scaling --- libs/libgui/gfx.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'libs') diff --git a/libs/libgui/gfx.c b/libs/libgui/gfx.c index 1341a5a..bae98a0 100644 --- a/libs/libgui/gfx.c +++ b/libs/libgui/gfx.c @@ -292,7 +292,6 @@ void gfx_load_wallpaper(struct gfx_context *ctx, const char *path) */ // Using bilinear interpolation -// TODO: Fix alpha channel scaling struct gfx_context *gfx_scale(struct gfx_context *ctx, vec2 size) { if (vec2_eq(ctx->size, size)) @@ -320,13 +319,12 @@ struct gfx_context *gfx_scale(struct gfx_context *ctx, vec2 size) u32 d = *(u32 *)&ctx->fb[(gxi + 1) * bypp + (gyi + 1) * ctx->pitch]; u32 color = 0; - for (u8 i = 0; i < bypp - 1; i++) { - color |= ((u8)blerpf(GET_COLOR(a, i), GET_COLOR(b, i), GET_COLOR(c, i), - GET_COLOR(d, i), gx - gxi, gy - gyi)) + for (u8 i = 0; i < bypp; i++) { + color |= ((u32)blerpf(GET_COLOR(a, i), GET_COLOR(b, i), GET_COLOR(c, i), + GET_COLOR(d, i), gx - gxi, gy - gyi)) << (i << 3); } - color |= 0xffu << ((bypp - 1) << 3); gfx_draw_pixel(new, vec2(x, y), color); } -- cgit v1.2.3