Test Vulkan code
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.

16 lines
362 B

1 month ago
#version 450
layout(binding = 1) uniform sampler2D texSampler;
1 month ago
layout(location = 0) in vec3 fragColor;
layout(location = 1) in vec2 fragTexCoord;
1 month ago
layout(location = 0) out vec4 outColor;
void main() {
outColor = texture(texSampler, fragTexCoord * 1.0);
vec2 coord = gl_PointCoord - vec2(0.5);
// outColor = vec4(fragColor, 0.5 - length(coord));
1 month ago
}