State of Roblox graphics API across all platforms, with percentage deltas since EOY 2018. Updated December 29 2019.
API | Share |
---|---|
Direct3D 11+ | 85% (+5%) |
Direct3D 10.1 | 8.5% (-1.5%) |
Direct3D 10.0 | 5.5% (-2.5%) |
Direct3D 9 | 1% (-1%) |
# from i8ramin - http://getintothis.com/blog/2012/04/02/git-grep-and-blame-bash-function/ | |
# runs git grep on a pattern, and then uses git blame to who did it | |
ggb() { | |
git grep -n $1 | while IFS=: read i j k; do git blame -L $j,$j $i | cat; done | |
} | |
# small modification for git egrep bash | |
geb() { | |
git grep -E -n $1 | while IFS=: read i j k; do git blame -L $j,$j $i | cat; done | |
} |