mirror of
https://github.com/dolphin-emu/dolphin
synced 2024-11-05 04:53:44 -05:00
8 lines
165 B
GLSL
8 lines
165 B
GLSL
// Passive (horizontal rows) shader
|
|
|
|
void main()
|
|
{
|
|
float screen_row = GetWindowResolution().y * GetCoordinates().y;
|
|
SetOutput(SampleLayer(int(screen_row) % 2));
|
|
}
|