Add shader for texture handling
This commit is contained in:
11
openVulkanoCpp/Shader/basicTexture.frag
Normal file
11
openVulkanoCpp/Shader/basicTexture.frag
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 450
|
||||
|
||||
layout(location = 0) in vec4 color;
|
||||
layout(location = 1) in vec2 texCoord;
|
||||
layout(location = 0) out vec4 outColor;
|
||||
layout(set = 2, binding = 0) uniform sampler2D texSampler;
|
||||
|
||||
void main()
|
||||
{
|
||||
outColor = texture(texSampler, texCoord);
|
||||
}
|
||||
Reference in New Issue
Block a user