source: opengl-game/shaders/shader.vert@ 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: 717 bytes
Line 
1#version 450
2#extension GL_ARB_separate_shader_objects : enable
3
4vec2 positions[3] = vec2[](
5 vec2( 0.0, 0.5),
6 vec2(-0.5, -0.5),
7 vec2( 0.5, -0.5)
8);
9
10layout (binding = 0) uniform UniformBufferObject {
11 mat4 model;
12 mat4 view;
13 mat4 proj;
14} ubo;
15
16layout(location = 0) in vec2 inPosition;
17layout(location = 1) in vec3 inColor;
18layout(location = 2) in vec2 inTexCoord;
19
20layout(location = 0) out vec3 fragColor;
21layout(location = 1) out vec2 fragTexCoord;
22
23void main() {
24 // gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 0.0, 1.0);
25 gl_Position = ubo.proj * ubo.view * ubo.model * vec4(positions[gl_VertexIndex], -5.0, 1.0);
26 fragColor = inColor;
27 fragTexCoord = inTexCoord;
28}
Note: See TracBrowser for help on using the repository browser.