aeon-199x/shaders/gbuffers_damagedblock.fsh

11 lines
131 B
Text
Raw Normal View History

2024-05-08 13:53:40 -04:00
#version 120
varying vec2 texcoord;
uniform sampler2D texture;
void main() {
gl_FragData[0] = texture2D(texture, texcoord);
}