• Home
  • Raw
  • Download

Lines Matching refs:pFp

36 void Write2File (FILE* pFp, unsigned char* pData[3], int iStride[2], int iWidth, int iHeight);
118 HRESULT CD3D9Utils::Process (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Process() argument
124 BOOL bWindowed = pFp ? FALSE : TRUE; in Process()
139 } else if (pFp) { in Process()
140 hResult = Dump (pDst, pInfo, pFp); in Process()
176 HRESULT CD3D9Utils::Dump (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Dump() argument
188 Write2File (pFp, (unsigned char**)pDst, iStride, iWidth, iHeight); in Dump()
299 HRESULT CD3D9ExUtils::Process (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Process() argument
305 BOOL bWindowed = pFp ? FALSE : TRUE; in Process()
320 } else if (pFp) { in Process()
321 hResult = Dump (pDst, pInfo, pFp); in Process()
358 HRESULT CD3D9ExUtils::Dump (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Dump() argument
370 Write2File (pFp, (unsigned char**)pDst, iStride, iWidth, iHeight); in Dump()
559 int CUtils::Process (void* pDst[3], SBufferInfo* pInfo, FILE* pFp) { in Process() argument
564 if (pFp && pDst[0] && pDst[1] && pDst[2] && pInfo) { in Process()
571 Write2File (pFp, (unsigned char**)pDst, iStride, iWidth, iHeight); in Process()
586 hResult = ((CD3D9Utils*)hHandle)->Process (pDst, pInfo, pFp); in Process()
589 hResult = ((CD3D9ExUtils*)hHandle)->Process (pDst, pInfo, pFp); in Process()
625 void Write2File (FILE* pFp, unsigned char* pData[3], int iStride[2], int iWidth, int iHeight) { in Write2File() argument
631 fwrite (pPtr, 1, iWidth, pFp); in Write2File()
639 fwrite (pPtr, 1, iWidth, pFp); in Write2File()
645 fwrite (pPtr, 1, iWidth, pFp); in Write2File()