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 2
// -----------
// IN: 2 (RAW IN B)
// OUT: 4 (IN B)
in vec2 vUV;
out vec4 fragColor;
void main() {
if (iInputFormat2 == YUYV_FOURCC) {
fragColor = yuyvTex(iTex2, vUV, int(iInputResolution2.x));
} else {
fragColor = texture(iTex0, vUV);
}
}