view shaders/default.f.glsl @ 1321:0849e9356bfe

Fix time 68K is locked out of bus when doing a 128KB VRAM mode DMA transfer. Fixes a number of problems in Overdrive 2
author Michael Pavone <pavone@retrodev.com>
date Mon, 17 Apr 2017 23:58:21 -0700
parents b1147418254a
children f9fbd0d16df2
line wrap: on
line source

#version 110

uniform sampler2D textures[2];

varying vec2 texcoord;

void main()
{
	gl_FragColor = mix(
		texture2D(textures[0], texcoord),
		texture2D(textures[1], vec2(texcoord.x, texcoord.y - 1.0/1024.0)),
		sin((texcoord.y * 1024.0 - 0.75) * 3.14159265359) / 2.0 + 0.5
	);
}