skia2/tests/sksl/shared/Caps.glsl

12 lines
177 B
Plaintext
Raw Normal View History

out vec4 sk_FragColor;
void main() {
int x = 0;
int y = 0;
int z = 0;
x = 1;
y = 1;
z = 1;
sk_FragColor.xyz = vec3(float(x), float(y), float(z));
}