forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
12
leenkx/Shaders/copy_mrt2_pass/copy_mrt2_pass.frag.glsl
Normal file
12
leenkx/Shaders/copy_mrt2_pass/copy_mrt2_pass.frag.glsl
Normal file
@ -0,0 +1,12 @@
|
||||
#version 450
|
||||
|
||||
uniform sampler2D tex0;
|
||||
uniform sampler2D tex1;
|
||||
|
||||
in vec2 texCoord;
|
||||
out vec4 fragColor[2];
|
||||
|
||||
void main() {
|
||||
fragColor[0] = textureLod(tex0, texCoord, 0.0);
|
||||
fragColor[1] = textureLod(tex1, texCoord, 0.0);
|
||||
}
|
Reference in New Issue
Block a user