diff options
author | Marvin Borner | 2021-05-21 22:41:11 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-21 22:41:11 +0200 |
commit | 93174e167a6aa313fca43f4cb0e9b975e1618468 (patch) | |
tree | 6fbed7871cb24f38cc714e6838ac6a6cc0f4fc36 /libs/libgui/gfx.c | |
parent | 11cdf24db63af9a22786e81e69247f15cc196b0c (diff) |
Better window destroying
Diffstat (limited to 'libs/libgui/gfx.c')
-rw-r--r-- | libs/libgui/gfx.c | 2 |
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; |