You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
519 B
9 lines
519 B
3 years ago
|
#version 330 core
|
||
|
uniform sampler2D texture;
|
||
|
varying vec2 vTexCoord;
|
||
|
varying vec3 color;
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = vec4(color.x,color.y,color.z,texture2D(texture, vTexCoord).w);
|
||
|
}
|