mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-30 22:57:54 +00:00
cef34b86cb
I've also updated the Rofi config with my custom mode scripts. Aside from that, I've finally took the time to recreate my file metadata editing script. Well, there's also the update of the README.
13 lines
148 B
GLSL
13 lines
148 B
GLSL
#version 120
|
|
|
|
attribute vec2 position;
|
|
attribute vec2 uv;
|
|
|
|
varying vec2 uvCoord;
|
|
|
|
void main()
|
|
{
|
|
uvCoord = uv;
|
|
gl_Position = vec4(position,0,1);
|
|
}
|