- Timestamp:
- Jan 19, 2011, 3:17:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20101205/psLib/src/imageops/psImageConvolve.c
r28405 r30299 67 67 } 68 68 69 psKernel *psKernelAlloc(int xMin, int xMax, int yMin, int yMax) 69 psKernel *p_psKernelAlloc(const char *file, 70 unsigned int lineno, 71 const char *func, 72 int xMin, int xMax, int yMin, int yMax) 70 73 { 71 74 // Check the inputs to make sure max > min; if not, switch. … … 91 94 int numCols = xMax - xMin + 1; // Number of columns for kernel image 92 95 93 psKernel *kernel = p sAlloc(sizeof(psKernel)); // The kernel, to be returned96 psKernel *kernel = p_psAlloc(file, lineno, func, sizeof(psKernel)); // The kernel, to be returned 94 97 psMemSetDeallocator(kernel,(psFreeFunc)kernelFree); 95 98
Note:
See TracChangeset
for help on using the changeset viewer.
