feat: forge_project.cfg

This commit is contained in:
2025-11-07 19:23:27 +01:00
parent 28987bbb54
commit 63284d34ef
18 changed files with 37 additions and 25 deletions
+15
View File
@@ -0,0 +1,15 @@
// VIDEO 1
// -----------
// IN: 1 (RAW IN A)
// OUT: 3 (IN A)
in vec2 vUV;
out vec4 fragColor;
void main() {
if (iInputFormat1 == YUYV_FOURCC) {
fragColor = yuyvTex(iTex1, vUV, int(iInputResolution1.x));
} else {
fragColor = texture(iTex0, vUV);
}
}