You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
out vec4 sk_FragColor;
|
|
layout (binding = 0) uniform sampler1D tex;
|
|
void main() {
|
|
vec4 a = texture(tex, 0.0);
|
|
vec4 b = textureProj(tex, vec2(0.0));
|
|
sk_FragColor = vec4(a.xy, b.zw);
|
|
}
|