Mercurial > mplayer.hg
view TOOLS/benchmark-gab/variables @ 21619:b4b51eb2904f
Keep reselected fonts in an array, adding new ones to the end. Glyph
lookup prefers earlier opened fonts.
This way glyph lookup is stable, which means that:
- cache cleanup is never required after font reselecting;
- a single unrecognized char won't change the appearance of all the others.
author | eugeni |
---|---|
date | Sat, 16 Dec 2006 19:34:00 +0000 (2006-12-16) |
parents | c36333ff54b0 |
children |
line wrap: on
line source
#!/bin/sh export PATH=$PATH:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin VENDOR="`cat /proc/cpuinfo | grep vendor_id | cut -c 13-`" MODEL="`cat /proc/cpuinfo | grep "model name" | cut -c 14-`" CPUFLAGS="`cat /proc/cpuinfo | grep flags | cut -c 10-`" MHZ="`cat /proc/cpuinfo | grep MHz | cut -c 12-14` MHz" MEMORY="`cat /proc/meminfo | grep MemTotal | awk '{print $2}'` Kb" BUILD="`echo $VENDOR $MODEL $MHZ | tr [\ ] [_] | tr [\/] [_]`" VGA="`lspci | grep VGA | cut -c 36-`" MPBIN="$BUILD/mplayer" export LOGFILE="`pwd`/log-$BUILD-`date +\"%Y-%m-%d\"`" export COMPILEOPTIONS="--enable-runtime-cpudetection" function wrtlog { echo "[ `date +\"%Y-%m-%d %T\"` ] $*" >> "$LOGFILE" }