aboutsummaryrefslogtreecommitdiff
path: root/Test/remap.uniformarray.everything.frag
blob: 4f642e6e971e25e504e9bf6add797d3e3fb3995b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#version 140

uniform sampler2D texSampler2D;
in vec3 inColor;
in vec4 color[6];
in float alpha[16];

void main()
{
	vec4 texColor = color[1] + color[1];

	texColor.xyz += inColor;

	texColor.a += alpha[12];

    gl_FragColor = texColor;
}