mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 22:58:50 +00:00
New shader: Everything looks like the sun is setting. Otherwise called 'crazy colors'
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3404 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
82154abdd5
commit
46f8178ab1
1 changed files with 7 additions and 0 deletions
7
Data/User/Shaders/sunset.txt
Normal file
7
Data/User/Shaders/sunset.txt
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
uniform samplerRECT samp0 : register(s0);
|
||||||
|
|
||||||
|
void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0)
|
||||||
|
{
|
||||||
|
float4 c0 = texRECT(samp0, uv0).rgba;
|
||||||
|
ocol0 = float4(c0.b, c0.g, c0.r, c0.a);
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue