be0a9ca63d
Change-Id: I72fd3083f75ca5bf74fb2c3b032465864a13aed5 Bug: skia:10694 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317771 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
7 lines
139 B
GLSL
7 lines
139 B
GLSL
#version 400
|
|
layout(origin_upper_left) in vec4 gl_FragCoord;
|
|
out vec4 sk_FragColor;
|
|
void main() {
|
|
sk_FragColor.xy = gl_FragCoord.xy;
|
|
}
|