mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 00:29:57 +00:00
12 lines
225 B
Bash
12 lines
225 B
Bash
|
# AWFUL way to make the shaders macosx compatible!
|
||
|
|
||
|
cd assets/shaders
|
||
|
for i in *.vs *.fs
|
||
|
do
|
||
|
sed -i '' s/lowp\ //g $i
|
||
|
sed -i '' s/highp\ //g $i
|
||
|
sed -i '' s/mediump\ //g $i
|
||
|
sed -i '' s/#version\ 140//g $i
|
||
|
done
|
||
|
cd ../..
|