8c595fed7c
'in' variables without locations aren't allowed. Use uniforms instead. Bug: skia:11738 Change-Id: Ic066106deb7409cff154b4be7cfb3e03a7025c7d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/385000 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
7 lines
149 B
GLSL
7 lines
149 B
GLSL
#version 400
|
|
out vec4 sk_FragCoord_Workaround;
|
|
layout (location = 0) in vec4 pos;
|
|
void main() {
|
|
sk_FragCoord_Workaround = (gl_Position = pos);
|
|
}
|