11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
|
|
shaderfile="$(shuf -n1 -e shaders/*)"
|
|
|
|
export EGL_PLATFORM=surfaceless
|
|
export MESA_GL_VERSION_OVERRIDE=3.3
|
|
|
|
shady -i "${shaderfile}" -ofmt rgb24 -g "${1}x${2}" -f "${3:-20}" -rt
|
|
|
|
exit 0
|