aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorMarvin Borner2021-06-13 13:20:53 +0200
committerMarvin Borner2021-06-13 13:20:53 +0200
commitb3d8e50aab8f3587f510db13ac8dcbb82e287998 (patch)
tree99b9c7949d687d43b66f9d6145b9ec7845a1eb1f /libs
parent5053382808960f3209b3fd217fd6b20b240f0d38 (diff)
Fixed alpha channel scaling
Diffstat (limited to 'libs')
-rw-r--r--libs/libgui/gfx.c8
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);
}