4bbfa54146
[Dependabot complains] that: the binary target name `examples` is forbidden, it conflicts with with cargo's build directory names And fails to provide dependency upgrades for Rust code. Fix that by renaming the folder and crate to `ash-examples`. [Dependabot complains]: https://github.com/ash-rs/ash/network/updates/748770724
14 lines
291 B
GLSL
14 lines
291 B
GLSL
#version 400
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
#extension GL_ARB_shading_language_420pack : enable
|
|
|
|
layout (location = 0) in vec4 pos;
|
|
layout (location = 1) in vec4 color;
|
|
|
|
|
|
layout (location = 0) out vec4 o_color;
|
|
void main() {
|
|
o_color = color;
|
|
gl_Position = pos;
|
|
}
|