aboutsummaryrefslogtreecommitdiff
path: root/render.c
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-10-01 20:37:59 +1000
committerquou <quou@disroot.org>2024-10-01 20:37:59 +1000
commit25223a71460075b9b4f1cf8df82d89dafde24423 (patch)
treea1a303761af875e8dd127362fa7d2b8d7b011921 /render.c
parent0d9943b35af06ca3f33e658294b6be623edd8242 (diff)
ren_rect
Diffstat (limited to 'render.c')
-rw-r--r--render.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/render.c b/render.c
index 9a504a0..07af8cf 100644
--- a/render.c
+++ b/render.c
@@ -114,3 +114,21 @@ void ren_map(
}
}
+void ren_rect(
+ Renderer* r,
+ const struct Rect* re
+) {
+ Rect rect = *re;
+ int i, j;
+ int ex, ey;
+ rect_clipr(&rect, r->clip);
+ ex = rect.x + rect.w;
+ ey = rect.y + rect.h;
+ for (j = rect.y; j < ey; j++)
+ for (i = rect.x; i < ex; i++) {
+ int idx = i + j * r->w;
+ int bit = 1 << (idx & 0x1f);
+ r->t[idx >> 5] ^= bit;
+ }
+}
+