wip config
This commit is contained in:
+5
-5
@@ -1,12 +1,12 @@
|
||||
// FX A
|
||||
// -------------
|
||||
// IN: 3 (SRC A)
|
||||
// IN: 5 (FX A)
|
||||
// OUT: 5 (A+B)
|
||||
// IN: 2 (SRC A)
|
||||
// IN: 3 (FX A)
|
||||
// OUT: 3 (A+B)
|
||||
|
||||
in vec2 vUV;
|
||||
layout(location = 5) out vec3 fragColor;
|
||||
layout(location = 3) out vec3 fragColor;
|
||||
|
||||
void main() {
|
||||
fragColor = fx_stage(vUV, frame3, frame5);
|
||||
fragColor = fx_stage(vUV, frame2, frame3);
|
||||
}
|
||||
Reference in New Issue
Block a user