blob: 0c88de8117ff5453bf182ca2e31d1d5b13dc2f2e [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
uniform FragInfo {
vec4 color;
}
frag_info;
in float v_pen_down;
out vec4 frag_color;
void main() {
frag_color = frag_info.color * floor(v_pen_down);
}