summaryrefslogtreecommitdiff
path: root/render.c
diff options
context:
space:
mode:
Diffstat (limited to 'render.c')
-rw-r--r--render.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/render.c b/render.c
index a55e062..3e5758b 100644
--- a/render.c
+++ b/render.c
@@ -156,6 +156,15 @@ Colour col_mul(Colour a, Colour b) {
return r;
}
+Colour col_scl(Colour a, unsigned char s) {
+ Colour r;
+ r.r = (a.r * s) >> 8;
+ r.g = (a.g * s) >> 8;
+ r.b = (a.b * s) >> 8;
+ r.a = (a.a * s) >> 8;
+ return r;
+}
+
void ren_begin(Renderer* r, Colour* t, int* d, int w, int h) {
r->t = t;
r->vp[0] = w;