init (again)

This commit is contained in:
2026-05-26 15:18:17 +02:00
commit 22246060e6
270 changed files with 117698 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
//!DESC color levels -
//!HOOK MAINPRESUB
//!BIND HOOKED
const float min = 16.0 / 255.0;
const float max = (235.0 - 16.0) / 255.0;
vec4 hook()
{
return (HOOKED_texOff(0) * max) + min;
}