view shaders/extra_window.f.glsl @ 2520:0e9d7ef03983

Update PCM cur_ptr to ST when channel is not playing. Fixes sound effects in Final Fight CD
author Michael Pavone <pavone@retrodev.com>
date Mon, 07 Oct 2024 21:38:54 -0700
parents fd04b139a73a
children
line wrap: on
line source


uniform sampler2D texture;

varying mediump vec2 texcoord;

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