mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
f8c01efece
Rename sunset to swap_rgb_bgr because that's what IT does Rename sunset2 to sunset since we no longer have two sunsets Add the rest of the RGB swap permutations. This clearly labels all the simple color swapping shaders and puts them in an easy-to-find place.Rename color_swap_1 to swap_rgb_gbr because that's what it does. Rename sunset to swap_rgb_bgr because that's what IT does Rename sunset2 to sunset since we no longer have two sunsets Add the rest of the RGB swap permutations. This clearly labels all the simple color swapping shaders and puts them in an easy-to-find place. I hope this was all the color swap shaders, if not it can be corrected easily. Also added small documentation to sepia.
8 lines
200 B
Plaintext
8 lines
200 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(c0.b, c0.g, c0.r, c0.a);
|
|
}
|