aboutsummaryrefslogtreecommitdiff
path: root/libs/libgui/gfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libgui/gfx.c')
-rw-r--r--libs/libgui/gfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libgui/gfx.c b/libs/libgui/gfx.c
index fe8cf1e..12c0e44 100644
--- a/libs/libgui/gfx.c
+++ b/libs/libgui/gfx.c
@@ -310,6 +310,7 @@ void gfx_draw_border(struct context *ctx, u32 width, u32 c)
}
// Using Bresenham's algorithm
+// TODO: Better line scaling
void gfx_draw_line(struct context *ctx, vec2 pos1, vec2 pos2, u32 scale, u32 c)
{
int dx = ABS(pos2.x - pos1.x), sx = pos1.x < pos2.x ? 1 : -1;
@@ -318,7 +319,6 @@ void gfx_draw_line(struct context *ctx, vec2 pos1, vec2 pos2, u32 scale, u32 c)
while (1) {
gfx_draw_rectangle(ctx, pos1, vec2_add(pos1, vec2(scale, scale)), c);
- /* gfx_draw_pixel(ctx, pos1, c); */
if (pos1.x == pos2.x && pos1.y == pos2.y)
break;
e2 = err;