view shaders/extra_window.f.glsl @ 2710:842de15d6b59

Add ROM DB entry for both US and European versions of BTFF3
author Michael Pavone <pavone@retrodev.com>
date Mon, 07 Jul 2025 22:54:07 -0700
parents fd04b139a73a
children
line wrap: on
line source


uniform sampler2D texture;

varying mediump vec2 texcoord;

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