diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-31 00:48:11 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-31 00:48:11 +1100 |
commit | c4bf1916fe219324e14384fc938e767daeab26c9 (patch) | |
tree | 84b33ea8feff5792f77a8e832b66c2a23f1104b5 /assets | |
parent | b638fd776253fa0cb841175e3e134df4587101b6 (diff) |
working on cube (hardcoded)
Diffstat (limited to 'assets')
-rw-r--r-- | assets/shaders/object.frag | 5 | ||||
-rw-r--r-- | assets/shaders/object.vert | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/assets/shaders/object.frag b/assets/shaders/object.frag index 44c1eb3..11b33e1 100644 --- a/assets/shaders/object.frag +++ b/assets/shaders/object.frag @@ -1,6 +1,9 @@ #version 450 #extension GL_ARB_separate_shader_objects : enable +layout(location = 0) in vec3 in_normal; +layout(location = 1) in vec3 in_position; + layout(location = 0) out vec4 out_colour; -void main() { out_colour = vec4(1.0); }
\ No newline at end of file +void main() { out_colour = vec4(in_normal, 1.0); }
\ No newline at end of file diff --git a/assets/shaders/object.vert b/assets/shaders/object.vert index a5097d4..a7237bb 100644 --- a/assets/shaders/object.vert +++ b/assets/shaders/object.vert @@ -2,6 +2,10 @@ #extension GL_ARB_separate_shader_objects : enable layout(location = 0) in vec3 in_position; +layout(location = 1) in vec3 in_normal; + +layout(location = 0) out vec3 out_normal; +layout(location = 1) out vec3 out_position; layout(set = 0, binding = 0) uniform global_object_uniform { mat4 projection; @@ -15,6 +19,8 @@ layout(push_constant) uniform push_constants { u_push_constants; void main() { - gl_Position = - global_ubo.projection * global_ubo.view * u_push_constants.model * vec4(in_position, 1.0); + out_position = in_position; + gl_Position = global_ubo.projection * global_ubo.view * u_push_constants.model * + vec4(in_position.x, in_position.y, in_position.z, 1.0); + out_normal = in_normal; // forward normal vectors }
\ No newline at end of file |