Lines Matching refs:thePoints
57 POINTL thePoints[4]; in copyBits() local
74 thePoints[0].x = rPosAry.mnDestX; in copyBits()
75 thePoints[0].y = TY( rPosAry.mnDestY + rPosAry.mnDestHeight - 1 ); in copyBits()
78 thePoints[1].x = rPosAry.mnDestX + rPosAry.mnDestWidth; in copyBits()
79 thePoints[1].y = TY( rPosAry.mnDestY - 1 ); in copyBits()
82 thePoints[2].x = rPosAry.mnSrcX; in copyBits()
83 thePoints[2].y = nSrcHeight - ( rPosAry.mnSrcY + rPosAry.mnSrcHeight ); in copyBits()
88 thePoints[3].x = rPosAry.mnSrcX + rPosAry.mnSrcWidth; in copyBits()
89 thePoints[3].y = nSrcHeight - rPosAry.mnSrcY + rPosAry.mnSrcHeight; in copyBits()
91 GpiBitBlt( mhPS, hSrcPS, 4, thePoints, in copyBits()
96 GpiBitBlt( mhPS, hSrcPS, 3, thePoints, in copyBits()
108 POINTL thePoints[3]; in copyArea() local
111 thePoints[0].x = nDestX; in copyArea()
112 thePoints[0].y = TY( nDestY + nSrcHeight - 1 ); in copyArea()
115 thePoints[1].x = nDestX + nSrcWidth; in copyArea()
116 thePoints[1].y = TY( nDestY - 1 ); in copyArea()
119 thePoints[2].x = nSrcX; in copyArea()
120 thePoints[2].y = TY( nSrcY + nSrcHeight - 1); in copyArea()
270 GpiBitBlt( mhPS, mhPS, 3, thePoints, in copyArea()
623 POINTL thePoints[ 3 ]; in getBitmap() local
626 thePoints[ 0 ].x = 0; in getBitmap()
627 thePoints[ 0 ].y = 0; in getBitmap()
630 thePoints[ 1 ].x = nDX; in getBitmap()
631 thePoints[ 1 ].y = nDY; in getBitmap()
634 thePoints[ 2 ].x = nX; in getBitmap()
635 thePoints[ 2 ].y = TY( nY + nDY - 1 ); in getBitmap()
637 long lHits = GpiBitBlt( hMemPS, mhPS, 3, thePoints, in getBitmap()