Files
Work/boneyard/ASMUTIL.HPP
2024-08-07 09:12:07 -04:00

15 lines
389 B
C++

#ifndef _BONEYARD_ASMUTIL_HPP_
#define _BONEYARD_ASMUTIL_HPP_
class RGB888;
class ImageInfo;
extern "C"
{
resampleClipRow(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD outLen);
resampleClipCol(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD inWidth,DWORD outLen,DWORD outWidth);
setAt(ImageInfo *pImageInfo);
copyBGRRGB(void *pRGB,void *pBGR,int items,int output_components);
}
#endif