Search
lxdream.org :: lxdream :: r292:3b78f6d301b7
lxdream 0.9.1
released Jun 29
Download Now
changeset292:3b78f6d301b7
parent291:cb3e8f0ac24a
child293:fe191b6381b5
authornkeynes
dateMon Jan 15 12:58:05 2007 +0000 (16 years ago)
Correct declaration of pvr2_vram64_read_stride
src/pvr2/pvr2.h
1.1 --- a/src/pvr2/pvr2.h Mon Jan 15 12:57:42 2007 +0000
1.2 +++ b/src/pvr2/pvr2.h Mon Jan 15 12:58:05 2007 +0000
1.3 @@ -1,5 +1,5 @@
1.4 /**
1.5 - * $Id: pvr2.h,v 1.20 2007-01-15 08:32:09 nkeynes Exp $
1.6 + * $Id: pvr2.h,v 1.21 2007-01-15 12:58:05 nkeynes Exp $
1.7 *
1.8 * PVR2 (video chip) functions and macros.
1.9 *
1.10 @@ -132,8 +132,8 @@
1.11 * where the source and destination line sizes may differ. Note that both byte
1.12 * counts must be a multiple of 4, and the src address must be 32-bit aligned.
1.13 */
1.14 -void pvr2_vram64_read_stride( char *dest, sh4addr_t src, uint32_t src_line_bytes,
1.15 - uint32_t dest_line_bytes, uint32_t line_count );
1.16 +void pvr2_vram64_read_stride( char *dest, uint32_t dest_line_bytes, sh4addr_t srcaddr,
1.17 + uint32_t src_line_bytes, uint32_t line_count );
1.18
1.19
1.20 /**
.