source: opengl-game/shaders/shader.vert@ 2c87504

feature/imgui-sdl points-test
Last change on this file since 2c87504 was 4f63fa8, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

Fix the MVP matrix

  • Property mode set to 100644
File size: 522 bytes
RevLine 
[4befb76]1#version 450
[de32fda]2#extension GL_ARB_separate_shader_objects : enable
3
4layout (binding = 0) uniform UniformBufferObject {
5 mat4 model;
6 mat4 view;
7 mat4 proj;
8} ubo;
[4befb76]9
[80edd70]10layout(location = 0) in vec2 inPosition;
11layout(location = 1) in vec3 inColor;
[fba08f2]12layout(location = 2) in vec2 inTexCoord;
[4befb76]13
[80edd70]14layout(location = 0) out vec3 fragColor;
[fba08f2]15layout(location = 1) out vec2 fragTexCoord;
[4befb76]16
17void main() {
[4f63fa8]18 gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 0.0, 1.0);
[80edd70]19 fragColor = inColor;
[fba08f2]20 fragTexCoord = inTexCoord;
[4befb76]21}
Note: See TracBrowser for help on using the repository browser.