Changeset 4457 for trunk/psLib/src/collections/psPixels.c
- Timestamp:
- Jul 5, 2005, 5:04:35 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psPixels.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psPixels.c
r4401 r4457 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-0 6-27 20:38:12$9 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-07-06 03:04:35 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 55 55 } 56 56 57 psPixels* psPixelsAlloc( psU32nalloc)57 psPixels* psPixelsAlloc(long nalloc) 58 58 { 59 59 psPixels* out = psAlloc(sizeof(psPixels)); … … 72 72 } 73 73 74 psPixels* psPixelsRealloc(psPixels* pixels, psU32nalloc)74 psPixels* psPixelsRealloc(psPixels* pixels, long nalloc) 75 75 { 76 76 if (pixels == NULL) { … … 94 94 } 95 95 96 psPixels* p_psPixelsAppend(psPixels* pixels, int growth, psS32 x, psS32y)96 psPixels* p_psPixelsAppend(psPixels* pixels, long growth, int x, int y) 97 97 { 98 98 if (growth < 1) {
Note:
See TracChangeset
for help on using the changeset viewer.
