source: opengl-game/color.vert@ 81f28c0

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

Add a system to keep track of which keys are pressed or held down and add another light source to help illuminate the scene from different directions.

  • Property mode set to 100644
File size: 923 bytes
Line 
1#version 410
2
3#define MAX_NUM_OBJECTS 1024
4
5uniform mat4 view, proj;
6
7layout (std140) uniform models {
8 mat4 model_mats[MAX_NUM_OBJECTS];
9};
10
11layout(location = 0) in vec3 vertex_position;
12layout(location = 1) in vec3 vertex_color;
13layout(location = 2) in vec3 vertex_normal;
14layout(location = 3) in uint ubo_index;
15
16out vec3 position_eye, normal_eye, color, light_position_eye, light2_position_eye;
17
18// fixed point light position
19vec3 light_position_world = vec3(0.0, 0.0, 2.0);
20vec3 light2_position_world = vec3(0.0, -3.0, -2.0);
21
22void main() {
23 position_eye = vec3(view * model_mats[ubo_index] * vec4(vertex_position, 1.0));
24 normal_eye = vec3(view * model_mats[ubo_index] * vec4 (vertex_normal, 0.0));
25 color = vertex_color;
26 light_position_eye = vec3(view * vec4(light_position_world, 1.0));
27 light2_position_eye = vec3(view * vec4(light2_position_world, 1.0));
28
29 gl_Position = proj * vec4(position_eye, 1.0);
30}
Note: See TracBrowser for help on using the repository browser.