view shaders/extra_window.f.glsl @ 2595:eb4b37c14c93

Default to new interpreter when non-x86 CPU detected
author Michael Pavone <pavone@retrodev.com>
date Sun, 09 Feb 2025 20:36:06 -0800
parents fd04b139a73a
children
line wrap: on
line source


uniform sampler2D texture;

varying mediump vec2 texcoord;

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