dolphin/Data/Sys/Shaders/acidtrip.glsl

12 lines
186 B
Plaintext
Raw Normal View History

2013-03-07 18:51:57 +00:00
uniform sampler2D samp9;
2011-01-31 00:08:06 +00:00
2013-03-07 18:51:57 +00:00
out vec4 ocol0;
in vec2 uv0;
uniform vec4 resolution;
void main()
2011-01-31 00:08:06 +00:00
{
2014-05-21 03:34:32 +00:00
ocol0 = (texture(samp9, uv0+resolution.zw) - texture(samp9, uv0-resolution.zw)) * 8.0;
2011-01-31 00:08:06 +00:00
}