source: opengl-game/shaders/shader.frag@ fba08f2

feature/imgui-sdl points-test
Last change on this file since fba08f2 was fba08f2, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Update vulkan-game.cpp to support texturing in the shader

  • Property mode set to 100644
File size: 423 bytes
Line 
1#version 450
2#extension GL_ARB_separate_shader_objects : enable
3
4layout(binding = 1) uniform sampler2D texSampler;
5
6layout(location = 0) in vec3 fragColor;
7layout(location = 1) in vec2 fragTexCoord;
8
9layout(location = 0) out vec4 outColor;
10
11void main() {
12 // outColor = vec4(fragColor, 1.0);
13 // outColor = texture(texSampler, fragTexCoord);
14 outColor = vec4(fragColor * texture(texSampler, fragTexCoord).rgb, 1.0);
15}
Note: See TracBrowser for help on using the repository browser.