skia2/tests/sksl/glsl/golden/FragCoordsNew.glsl
John Stiles be0a9ca63d Migrate remaining SkSL GLSL tests to golden outputs.
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>
2020-09-18 19:22:19 +00:00

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;
}