From 680cab5cf1778958e7257f19957ac2b5d46d45dc Mon Sep 17 00:00:00 2001 From: quou Date: Mon, 15 Jul 2024 21:07:48 +1000 Subject: Update persp and ndc2clip to be more consistent with other maths functions. --- maths.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'maths.c') diff --git a/maths.c b/maths.c index 4496a2c..861643a 100644 --- a/maths.c +++ b/maths.c @@ -254,13 +254,14 @@ int vec_dot(const int* a, const int* b, int d) { return r; } -void persp(int* v, int asp) { +int* persp(int* v, int asp) { v[2] += !v[2]; v[0] = ((v[0] << fbits) / v[2]); v[1] = ((v[1] << fbits) / v[2]) * asp >> fbits; + return v; } -void ndc2clip(int* c, int* p) { +int* ndc2clip(const int* c, int* p) { register int hw = c[2] >> 1; register int hh = c[3] >> 1; p[0] = ((hw << fbits) * p[0]) >> fbits; @@ -269,4 +270,5 @@ void ndc2clip(int* c, int* p) { p[1] >>= fbits; p[0] += hw; p[1] += hh; + return p; } -- cgit v1.2.3-54-g00ecf