Pixel-Composer/shaders/sh_vertex_pt/sh_vertex_pt.fsh

9 lines
148 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
//
// Simple passthrough fragment shader
//
varying vec2 v_vTexcoord;
void main() {
gl_FragColor = texture2D( gm_BaseTexture, v_vTexcoord );
}