Changeset 20299
- Timestamp:
- Oct 21, 2008, 12:10:53 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageGeomManip.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageGeomManip.c
r19146 r20299 10 10 * @author Ross Harman, MHPCC 11 11 * 12 * @version $Revision: 1.4 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2008- 08-21 02:56:11$12 * @version $Revision: 1.44 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2008-10-21 22:10:53 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 206 206 invScale = 1.0f / (float)scale; 207 207 208 psImageInterpolateOptions *interp = psImageInterpolateOptionsAlloc(mode, in, NULL, NULL, 0, 209 NAN, NAN, 0, 0, 0); 208 psImageInterpolation *interp = psImageInterpolationAlloc(mode, in, NULL, NULL, 0, NAN, NAN, 0, 0, 0, 0); 210 209 211 210 #define PSIMAGE_RESAMPLE_CASE(TYPE) \ … … 496 495 float CenterYMinusminXTimesSinT = centerY - minX * sinT; 497 496 498 psImageInterpolat eOptions *interp = psImageInterpolateOptionsAlloc(mode, input, NULL, NULL, 0,499 exposed, NAN, 0, 0, 0.0);497 psImageInterpolation *interp = psImageInterpolationAlloc(mode, input, NULL, NULL, 0, 498 exposed, NAN, 0, 0, 0.0, 0); 500 499 501 500 #define PSIMAGE_ROTATE_ARBITRARY_LOOP(TYPE) \ … … 594 593 out = psImageRecycle(out, outCols, outRows, type); 595 594 596 psImageInterpolat eOptions *interp = psImageInterpolateOptionsAlloc(mode, input, NULL, NULL, 0,597 exposed, NAN, 0, 0, 0.0);595 psImageInterpolation *interp = psImageInterpolationAlloc(mode, input, NULL, NULL, 0, 596 exposed, NAN, 0, 0, 0.0, 0); 598 597 599 598 #define PSIMAGE_SHIFT_CASE(TYPE) \ … … 679 678 } 680 679 681 psImageInterpolateOptions *interp = psImageInterpolateOptionsAlloc(PS_INTERPOLATE_BICUBE, in, NULL, 682 inMask, maskVal, exposed, NAN, blank, 683 blank, 0.0); 680 psImageInterpolation *interp = psImageInterpolationAlloc(mode, in, NULL, inMask, maskVal, exposed, NAN, 681 blank, blank, 0.0, 0); 684 682 685 683 #define PSIMAGE_SHIFT_MASK_CASE(TYPE) \ … … 851 849 psPlane* inPosition = NULL; 852 850 853 psImageInterpolat eOptions *interp = psImageInterpolateOptionsAlloc(mode, input, NULL, inputMask,854 inputMaskVal, NAN, NAN, 0, 0, 0.0);851 psImageInterpolation *interp = psImageInterpolationAlloc(mode, input, NULL, inputMask, 852 inputMaskVal, NAN, NAN, 0, 0, 0.0, 0); 855 853 856 854
Note:
See TracChangeset
for help on using the changeset viewer.
