blob: 1de82a3294fb7628d196b36a7b79ab3298fd1580 [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.
#version 320 es
layout(location = 0) uniform mat4 mvp;
layout(location = 1) uniform vec4 color;
in vec2 position;
out vec4 v_color;
void main() {
v_color = color;
gl_Position = mvp * vec4(position, 0.0, 1.0);
}