diff options
| author | Will McKinnon <[email protected]> | 2023-04-06 18:49:51 -0400 |
|---|---|---|
| committer | Will McKinnon <[email protected]> | 2023-04-06 20:30:42 -0400 |
| commit | 420364dd191fa3c22370bbaa34f178b07bcb8318 (patch) | |
| tree | bf7e3bcb7a0835e0c16901a3b800c7f218607d53 /sway/desktop/shaders/common.vert | |
| parent | c24fccd45c4bc69c968a09ae5b953672a29bac12 (diff) | |
structure: moved fx_renderer and related fuctions to a folder
Diffstat (limited to 'sway/desktop/shaders/common.vert')
| -rw-r--r-- | sway/desktop/shaders/common.vert | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sway/desktop/shaders/common.vert b/sway/desktop/shaders/common.vert deleted file mode 100644 index 811e0f2d..00000000 --- a/sway/desktop/shaders/common.vert +++ /dev/null @@ -1,12 +0,0 @@ -uniform mat3 proj; -uniform vec4 color; -attribute vec2 pos; -attribute vec2 texcoord; -varying vec4 v_color; -varying vec2 v_texcoord; - -void main() { - gl_Position = vec4(proj * vec3(pos, 1.0), 1.0); - v_color = color; - v_texcoord = texcoord; -} |
