This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Request of support for Nanodesktop JPCSP HAL
#6
For future reference, sceGuCopyImage in the pspsdk does :
void sceGuCopyImage(int psm, int sx, int sy, int width, int height, int srcw, void* src, int dx, int dy, int destw, void* dest)
{
sendCommandi(TRXSBP,((unsigned int)src) & 0xffffff);
sendCommandi(TRXSBW,((((unsigned int)src) & 0xff000000) >> 8)|srcw);
sendCommandi(TRXPOS,(sy << 10)|sx);
sendCommandi(TRXDBP,((unsigned int)dest) & 0xffffff);
sendCommandi(TRXDBW,((((unsigned int)dest) & 0xff000000) >> 8)|destw);
sendCommandi(TRXDPOS,(dy << 10)|dx);
sendCommandi(TRXSIZE,((height-1) << 10)|(width-1));
sendCommandi(TRXKICK,(psm ^ 0x03) ? 0 : 1);
}
Everything should be implemented. But the TRXKICK doesn't seem to work quite well in this case.
Reply


Messages In This Thread
RE: Request of support for Nanodesktop JPCSP HAL - by Orphis - 10-17-2010, 09:29 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)