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. |
||
---|---|---|
Data/User/GameConfig | ||
Languages/po | ||
16bit.txt | ||
32bit.txt | ||
README.txt | ||
acidmetal.txt | ||
acidtrip.txt | ||
acidtrip2.txt | ||
auto_toon.txt | ||
auto_toon2.txt | ||
bad_bloom.txt | ||
brighten.txt | ||
chrismas.txt | ||
cool1.txt | ||
darkerbrighter.txt | ||
emboss.txt | ||
fire.txt | ||
fire2.txt | ||
firewater.txt | ||
grayscale.txt | ||
grayscale2.txt | ||
invert.txt | ||
invert_blue.txt | ||
invertedoutline.txt | ||
mad_world.txt | ||
nightvision.txt | ||
nightvision2.txt | ||
nightvision2scanlines.txt | ||
posterize.txt | ||
posterize2.txt | ||
primarycolors.txt | ||
sepia.txt | ||
sketchy.txt | ||
spookey1.txt | ||
spookey2.txt | ||
stereoscopic.txt | ||
stereoscopic2.txt | ||
sunset.txt | ||
swap_RGB_BGR.txt | ||
swap_RGB_BRG.txt | ||
swap_RGB_GBR.txt | ||
swap_RGB_GRB.txt | ||
swap_RGB_RBG.txt | ||
toxic.txt |
README.txt
//dummy shader: uniform samplerRECT samp0 : register(s0); void main(out float4 ocol0 : COLOR0, in float2 uv0 : TEXCOORD0) { float4 c0 = texRECT(samp0, uv0).rgba; ocol0 = float4(c0.r, c0.g, c0.b, c0.a); } /* And now that's over with, the contents of this readme file! For best results, turn Wordwrap formatting on... The shaders shown in the dropdown box in the video plugin configuration window are kept in the directory named User/Data/Shaders. They are linked in to the dolphin source from the repository at <http://dolphin-shaders-database.googlecode.com/svn/trunk/>. See <http://code.google.com/p/dolphin-shaders-database/wiki/Documentation> for more details on the way shaders work. This file will hopefully hold more content in future... */