summaryrefslogtreecommitdiff
path: root/sway/desktop/shaders/embed.sh
diff options
context:
space:
mode:
authorWill McKinnon <[email protected]>2023-04-06 18:49:51 -0400
committerWill McKinnon <[email protected]>2023-04-06 20:30:42 -0400
commit420364dd191fa3c22370bbaa34f178b07bcb8318 (patch)
treebf7e3bcb7a0835e0c16901a3b800c7f218607d53 /sway/desktop/shaders/embed.sh
parentc24fccd45c4bc69c968a09ae5b953672a29bac12 (diff)
structure: moved fx_renderer and related fuctions to a folder
Diffstat (limited to 'sway/desktop/shaders/embed.sh')
-rw-r--r--sway/desktop/shaders/embed.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/sway/desktop/shaders/embed.sh b/sway/desktop/shaders/embed.sh
deleted file mode 100644
index 47f07892..00000000
--- a/sway/desktop/shaders/embed.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -eu
-
-var=${1:-data}
-hex="$(od -A n -t x1 -v)"
-
-echo "static const char $var[] = {"
-for byte in $hex; do
- echo " 0x$byte,"
-done
-echo " 0x00,"
-echo "};"