diff options
author | Marvin Borner | 2021-06-13 13:20:53 +0200 |
---|---|---|
committer | Marvin Borner | 2021-06-13 13:20:53 +0200 |
commit | b3d8e50aab8f3587f510db13ac8dcbb82e287998 (patch) | |
tree | 99b9c7949d687d43b66f9d6145b9ec7845a1eb1f /libs | |
parent | 5053382808960f3209b3fd217fd6b20b240f0d38 (diff) |
Fixed alpha channel scaling
Diffstat (limited to 'libs')
-rw-r--r-- | libs/libgui/gfx.c | 8 |
1 files changed, 3 insertions, 5 deletions
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); } |