This commit is contained in:
luboslenco 2019-03-17 20:28:30 +01:00
parent 6b8fc76763
commit c5bc0b87f3
2 changed files with 0 additions and 30 deletions

View file

@ -1,16 +0,0 @@
#version 450
uniform sampler2D tex0;
uniform sampler2D tex1;
uniform sampler2D tex2;
uniform sampler2D tex3;
in vec2 texCoord;
out vec4 fragColor[4];
void main() {
fragColor[0] = textureLod(tex0, texCoord, 0.0);
fragColor[1] = textureLod(tex1, texCoord, 0.0);
fragColor[2] = textureLod(tex2, texCoord, 0.0);
fragColor[3] = textureLod(tex3, texCoord, 0.0);
}

View file

@ -1,14 +0,0 @@
{
"contexts": [
{
"name": "copy_mrt4_pass",
"depth_write": false,
"compare_mode": "always",
"cull_mode": "none",
"links": [],
"texture_params": [],
"vertex_shader": "../include/pass.vert.glsl",
"fragment_shader": "copy_mrt4_pass.frag.glsl"
}
]
}