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
+12
View File
@@ -0,0 +1,12 @@
//!HOOK OUTPUT
//!BIND HOOKED
//!DESC signal range scaling
vec4 color = HOOKED_texOff(vec2(0.0, 0.0));
vec4 hook() {
const float REFBLACK = ( 64. / 1023.);
const float REFWHITE = ( 940. / 1023.);
color.rgb *= REFWHITE - REFBLACK;
color.rgb += REFBLACK;
return color;
}