update font

This commit is contained in:
Nishi 2026-01-25 05:18:56 +09:00
commit 5a2f965295
Signed by: nishi
GPG key ID: 27EF69B208EB9343
12 changed files with 2066 additions and 2701 deletions

View file

@ -103,3 +103,11 @@ void GSMathInvert4x4(GSMatrix4x4 out, GSMatrix4x4 in) {
for(i = 0; i < 16; i++)
out[i] = inv[i] * det;
}
GSNumber GSMathClosestPOT(GSNumber x) {
GSNumber r = 2;
while(r < x) r *= 2;
return r;
}