blob: 7449541ab4fa9fcd502706fce214d026d73ab2dc [file] [log] [blame]
Ethan Nicholasff4fb332019-04-09 16:28:19 -04001/*
2 * Copyright 2019 Google LLC.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Brian Osman4d3bfc52020-12-23 14:14:09 -05008in fragmentProcessor child1;
9in fragmentProcessor child2;
Ethan Nicholasff4fb332019-04-09 16:28:19 -040010in uniform float weight;
11
John Stilese28f5092020-12-14 14:01:44 -050012half4 main() {
13 return mix(sample(child1), sample(child2), half(weight));
Ethan Nicholasff4fb332019-04-09 16:28:19 -040014}