Search
lxdream.org :: lxdream :: r287:fead4f5f3e2c
lxdream 0.9.1
released Jun 29
Download Now
changeset287:fead4f5f3e2c
parent286:0fa5aae66f31
child288:a42f998226fb
authornkeynes
dateMon Jan 15 10:37:02 2007 +0000 (17 years ago)
Oops, actually increment the source pointer in yuv_decode
src/pvr2/texcache.c
1.1 --- a/src/pvr2/texcache.c Mon Jan 15 10:11:13 2007 +0000
1.2 +++ b/src/pvr2/texcache.c Mon Jan 15 10:37:02 2007 +0000
1.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 OpenGL
1.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 }
.