view shaders/extra_window.f.glsl @ 2687:948ddc60813e

Fix some uninitiazed date in realtec_configure_rom
author Michael Pavone <pavone@retrodev.com>
date Mon, 31 Mar 2025 21:05:42 -0700
parents fd04b139a73a
children
line wrap: on
line source


uniform sampler2D texture;

varying mediump vec2 texcoord;

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