diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-18 13:46:50 -0500 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-18 13:46:50 -0500 |
| commit | 711fcdc1fbcdcbe213bbf570fe133eb5ef63d96e (patch) | |
| tree | ce7d529fc8c0c16d54f3ec566d6c1a0afd93e38c /ffmpeg-shadertoy/vs.glsl | |
| parent | 91cb787e5968449a0977ffa80a3daeb3ea5aff4a (diff) | |
ffmpeg-shadertoy: Embed GLSL shaders
Diffstat (limited to 'ffmpeg-shadertoy/vs.glsl')
| -rw-r--r-- | ffmpeg-shadertoy/vs.glsl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ffmpeg-shadertoy/vs.glsl b/ffmpeg-shadertoy/vs.glsl deleted file mode 100644 index 57bcc37..0000000 --- a/ffmpeg-shadertoy/vs.glsl +++ /dev/null @@ -1,9 +0,0 @@ -#version 330 core - -layout (location = 0) in vec3 p; -layout (location = 1) in vec2 t; - -void main() -{ - gl_Position = vec4(p, 1.0f); -} |