Changeset 17808 for trunk/psLib
- Timestamp:
- May 24, 2008, 12:45:31 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageConvolve.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageConvolve.c
r17807 r17808 7 7 /// @author Eugene Magnier, IfA 8 8 /// 9 /// @version $Revision: 1.6 8$ $Name: not supported by cvs2svn $10 /// @date $Date: 2008-05-24 22: 23:14$9 /// @version $Revision: 1.69 $ $Name: not supported by cvs2svn $ 10 /// @date $Date: 2008-05-24 22:45:31 $ 11 11 /// 12 12 /// Copyright 2004-2007 Institute for Astronomy, University of Hawaii … … 831 831 } 832 832 } 833 if (masking) { 834 // Mask from the minimum to the end of the row 835 memset(&convData[y][min], 0xff, (numCols - min) * PSELEMTYPE_SIZEOF(PS_TYPE_MASK)); 836 } 833 837 } 834 838 for (int x = 0; x < numCols; x++) { … … 854 858 } 855 859 } 860 if (masking) { 861 // Mask from the minimum to the end of the column 862 for (int i = min; i < numCols; i++) { 863 outData[i][x] |= setVal; 864 } 865 } 856 866 } 857 867
Note:
See TracChangeset
for help on using the changeset viewer.
