blob: 6549f4122f5fd58333029df2a7e6748b21585d45 [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
8in fragmentProcessor? child1;
9in fragmentProcessor? child2;
10in 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}