blob: 0001edc7412f51cc59df0c60d0c743812ae496e8 [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.
precision mediump float;
#include <impeller/types.glsl>
uniform FragInfo {
f16vec4 color;
}
frag_info;
out f16vec4 frag_color;
void main() {
frag_color = frag_info.color;
}