dolphin/invertedoutline.txt

9 lines
232 B
Plaintext
Raw Normal View History

uniform samplerRECT samp0 : register(s0);
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
{
float4 c0 = texRECT(samp0, uv0).rgba;
2009-08-12 17:50:06 -06:00
float4 c1 = texRECT(samp0, uv0 + float2(5,5)).rgba;
2009-08-12 17:50:06 -06:00
ocol0 = c0 - c1;
}