2020-09-16 21:43:11 +00:00
|
|
|
#version 400
|
2021-07-02 21:12:59 +00:00
|
|
|
precision highp float;
|
|
|
|
precision highp sampler2D;
|
2020-09-16 21:43:11 +00:00
|
|
|
out mediump vec4 sk_FragColor;
|
2021-05-24 14:52:23 +00:00
|
|
|
uniform highp float unknownInput;
|
2020-09-16 21:43:11 +00:00
|
|
|
void main() {
|
2021-05-24 14:52:23 +00:00
|
|
|
highp float x = unknownInput;
|
2020-09-16 21:43:11 +00:00
|
|
|
highp vec4 y = vec4(x);
|
|
|
|
sk_FragColor = y;
|
|
|
|
}
|