1// Passive (horizontal rows) shader
2
3void main()
4{
5	float screen_row = GetWindowResolution().y * GetCoordinates().y;
6	SetOutput(SampleLayer(int(screen_row) % 2));
7}
8