filename | src/pvr2/texcache.c |
changeset | 287:fead4f5f3e2c |
prev | 284:808617ee7135 |
next | 289:111dfb1516a6 |
author | nkeynes |
date | Mon Jan 15 10:37:02 2007 +0000 (16 years ago) |
permissions | -rw-r--r-- |
last change | Oops, actually increment the source pointer in yuv_decode |
file | annotate | diff | log | raw |
1.1 --- a/src/pvr2/texcache.c Mon Jan 15 08:32:09 2007 +00001.2 +++ b/src/pvr2/texcache.c Mon Jan 15 10:37:02 2007 +00001.3 @@ -1,5 +1,5 @@1.4 /**1.5 - * $Id: texcache.c,v 1.11 2007-01-15 08:32:09 nkeynes Exp $1.6 + * $Id: texcache.c,v 1.12 2007-01-15 10:37:02 nkeynes Exp $1.7 *1.8 * Texture cache. Responsible for maintaining a working set of OpenGL1.9 * textures.1.10 @@ -312,6 +312,7 @@1.11 float y1 = (float)( (*p>>24)&0xFF );1.12 *output++ = yuv_to_rgb32( y0, u, v );1.13 *output++ = yuv_to_rgb32( y1, u, v );1.14 + p++;1.15 }1.16 }1.17 }
.