#include <nnsys/g2d/g2d_Screen.h>
void NNS_G2dBGLoadScreenRect( void* pScreenDst, const NNSG2dScreenData* pScnData, int srcX, int srcY, int dstX, int dstY, int dstW, int dstH, int width, int height );
| pScreenDst | [OUT] Pointer to the reference point of the transfer destination . |
| pScnData | [IN] Pointer to screen data that serves as the transfer source. |
| srcX | [IN] The x-coordinate in the upper left corner of the transfer source. (In units of characters) |
| srcY | [IN] The y-coordinate in the upper left corner of the transfer source. (In units of characters) |
| dstX | [IN] The x-coordinate in the upper left corner of the transfer destination. (In units of characters) |
| dstY | [IN] The y-coordinate in the upper left corner of the transfer destination. (In units of characters) |
| dstW | [IN] Width of the transfer destination region. (In units of characters) |
| dstH | [IN] Height of the transfer destination region. (In units of characters) |
| width | [IN] Width of the rectangular region to be transferred. (In units of characters) |
| height | [IN] Height of the rectangular region to be transferred. (In units of characters) |
None.
Copies the screen data specified in the rectangle box to the specified location in the buffer.
Uses (srcX, src Y) of pScnData for the coordinates of the top left corner, and copies a region of width width and height height to the region of the width width and height height at coordinates (dstX, dstY) with pScreenDst as origin.
01/16/2006 Changed argument.
06/16/2005 Initial version.
CONFIDENTIAL