Example #1
0
        private unsafe short Interpolate1DProc(PSImagePlane *source, PSImagePlane *destination, Rect16 *area, IntPtr coords, short method)
        {
#if DEBUG
            DebugUtils.Ping(DebugFlags.ImageServices, string.Format("srcBounds: {0}, dstBounds: {1}, area: {2}, method: {3}",
                                                                    new object[] { DebugUtils.PointerToString(source), DebugUtils.PointerToString(destination),
                                                                                   DebugUtils.PointerToString(area), ((InterpolationModes)method).ToString() }));
#endif
            if (source == null || destination == null || area == null)
            {
                return(PSError.paramErr);
            }

            return(PSError.memFullErr);
        }
Example #2
0
 private unsafe short Interpolate2DProc(PSImagePlane *source, PSImagePlane *destination, Rect16 *area, IntPtr coords, short method)
 {
     return(PSError.memFullErr);
 }