feat: eww hypr alacritty and more
This commit is contained in:
parent
7fb4f9ee73
commit
99f7c60db7
431 changed files with 9853 additions and 23 deletions
11
recidia/shaders/default.vert
Normal file
11
recidia/shaders/default.vert
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#version 450
|
||||
|
||||
layout(location = 0) in vec3 inPosition;
|
||||
layout(location = 1) in vec4 inColor;
|
||||
|
||||
layout(location = 0) out vec4 fragColor;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(inPosition, 1.0);
|
||||
fragColor = inColor;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue