This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

11
proto/source/ASMUTIL.HPP Normal file
View File

@@ -0,0 +1,11 @@
#ifndef _PROTO_ASMUTIL_HPP_
#define _PROTO_ASMUTIL_HPP_
class RGB888;
extern "C"
{
resampleClipRow(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD outLen,DWORD outClamp);
resampleClipCol(RGB888 *lpIn,RGB888 *lpOut,DWORD inLen,DWORD inWidth,DWORD outLen,DWORD outWidth,DWORD outClamp);
}
#endif