14 lines
216 B
GLSL
14 lines
216 B
GLSL
/**
|
|
* @file uiF.glsl
|
|
*
|
|
* $LicenseInfo:firstyear=2007&license=viewerlgpl$
|
|
* $/LicenseInfo$
|
|
*/
|
|
|
|
uniform sampler2D diffuseMap;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = gl_Color*texture2D(diffuseMap, gl_TexCoord[0].xy);
|
|
}
|