Mercurial > sdl-ios-xcode
view build-scripts/showrev.sh @ 3495:1b22878e04d0
Adam Strzelecki to SDL
D3D renderer shall try mapping YV12 and I420 (IYUV) to D3D texture formats via FOURCC. This will enable HW acceleration for those formats when driver is capable (most of them are). Note that SDL's IYUV maps I420 FOURCC on Woe.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 27 Nov 2009 03:11:26 +0000 |
parents | 00cace2d9080 |
children | 5e7e1f1a4056 |
line wrap: on
line source
#!/bin/sh # # Print the current source revision, if available srcdir=`dirname $0`/.. if [ -d $srcdir/.svn ]; then cd $srcdir (svnversion -c 2>/dev/null || svnversion .) | \ sed -e 's,\([0-9]*\)[A-Z]*,\1,' \ -e 's,[0-9]*:\([0-9]*\)[A-Z]*,\1,' else cd $srcdir git svn info | grep Revision | awk '{ print $2 }' fi