mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 20:42:07 +00:00
Overlay the user Shaders/ over the shared one to avoid copying files
This commit is contained in:
parent
6bdb6585d6
commit
e7213ca4b1
46 changed files with 41 additions and 23 deletions
36
Data/Sys/Shaders/fire.glsl
Normal file
36
Data/Sys/Shaders/fire.glsl
Normal file
|
@ -0,0 +1,36 @@
|
|||
uniform sampler2D samp9;
|
||||
|
||||
out vec4 ocol0;
|
||||
in vec2 uv0;
|
||||
|
||||
void main()
|
||||
{
|
||||
vec4 c0 = texture(samp9, uv0);
|
||||
float red = 0.0;
|
||||
float green = 0.0;
|
||||
float blue = 0.0;
|
||||
|
||||
red = c0.r;
|
||||
|
||||
|
||||
if (c0.r > 0.0)
|
||||
if (c0.g > c0.r)
|
||||
green = (c0.g - (c0.g - c0.r)) / 3;
|
||||
|
||||
if (c0.b > 0.0 && c0.r < 0.25)
|
||||
{
|
||||
red = c0.b;
|
||||
green = c0.b / 3;
|
||||
}
|
||||
|
||||
if (c0.g > 0.0 && c0.r < 0.25)
|
||||
{
|
||||
red = c0.g;
|
||||
green = c0.g / 3;
|
||||
}
|
||||
|
||||
if (((c0.r + c0.g + c0.b) / 3) > 0.9)
|
||||
green = c0.r / 3;
|
||||
|
||||
ocol0 = vec4(red, green, blue, 1.0);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue