view shaders/extra_window.f.glsl @ 2643:57345f6e18f3

Space out some of the settings pages to avoid stuff getting cut off with the smaller font
author Michael Pavone <pavone@retrodev.com>
date Wed, 26 Feb 2025 23:43:58 -0800
parents fd04b139a73a
children
line wrap: on
line source


uniform sampler2D texture;

varying mediump vec2 texcoord;

void main()
{
	gl_FragColor = texture2D(texture, texcoord);
}