Mercurial > repos > blastem
view shaders/default.f.glsl @ 716:b707a8ddc202
Make sure z80_save_reg does nothing when there is no register in the reg field of the instruction. This fixes a bug that corrupted SP in the MDEM 2011 demo
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 17 May 2015 20:03:27 -0700 |
parents | 0820a71b80f3 |
children | b1147418254a |
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/512.0)), sin((texcoord.y * 512.0 - 0.75) * 3.14159265359) / 2.0 + 0.5 ); }