Pixel-Composer/shaders/sh_rm_extrude/sh_rm_extrude.fsh

11 lines
184 B
Text
Raw Normal View History

2024-05-29 08:34:44 +02:00
//
// Simple passthrough fragment shader
//
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
void main()
{
gl_FragColor = v_vColour * texture2D( gm_BaseTexture, v_vTexcoord );
}