examples: port sokol/clear.v and sokol/sdf/sdf.v (#21069)

This commit is contained in:
Delyan Angelov 2024-03-21 06:28:25 +02:00 committed by GitHub
parent 24d157205b
commit 8a9def6534
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 291 additions and 12 deletions

View file

@ -0,0 +1,7 @@
#!/bin/bash
for f in examples/sokol/*/ ; do
echo "compiling shaders for $f ...";
time ./v shader $f;
echo "done";
done;