mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-30 22:30:01 +00:00
expand bios collection, retrobat at 93% coverage
This commit is contained in:
parent
851a14e49a
commit
e6ea0484a8
3946 changed files with 8119839 additions and 2930936 deletions
13
bios/Nintendo/GameCube/Sys/Shaders/fire2.glsl
Normal file
13
bios/Nintendo/GameCube/Sys/Shaders/fire2.glsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
void main()
|
||||
{
|
||||
float4 c0 = Sample();
|
||||
float red = 0.0;
|
||||
float green = 0.0;
|
||||
float blue = 0.0;
|
||||
float avg = (c0.r + c0.g + c0.b) / 3.0;
|
||||
|
||||
red = c0.r + (c0.g / 2.0) + (c0.b / 3.0);
|
||||
green = c0.r / 3.0;
|
||||
|
||||
SetOutput(float4(red, green, blue, 1.0));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue