mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-08 12:54:25 +00:00
085fa5f526
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3380 8ced0084-cf51-0410-be5f-012b33b47a6e
8 lines
201 B
Plaintext
8 lines
201 B
Plaintext
uniform samplerRECT samp0 : register(s0);
|
|
|
|
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
|
|
{
|
|
float4 c0 = texRECT(samp0, uv0).rgba;
|
|
ocol0 = float4(1.0, 1.0, 1.0, 1.0) - c0;
|
|
}
|