all: remove traditional i3 titlebars, add corner rounding
This commit is contained in:
parent
e1928863d9
commit
a41dbae899
52 changed files with 1866 additions and 1047 deletions
8
src/gfx_apis/gl/shaders/rounded_fill.vert.glsl
Normal file
8
src/gfx_apis/gl/shaders/rounded_fill.vert.glsl
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
attribute vec2 pos;
|
||||
attribute vec2 geo;
|
||||
varying vec2 v_geo;
|
||||
|
||||
void main() {
|
||||
gl_Position = vec4(pos, 0.0, 1.0);
|
||||
v_geo = geo;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue