Lines Matching refs:pImg

748     XImage* pImg = XGetImage( pDisplay, hDrawable_,  in DrawServerAAForcedString()  local
752 if( pImg == NULL ) in DrawServerAAForcedString()
783 pImg = XGetImage( pDisplay, hDrawable_, in DrawServerAAForcedString()
789 if( pImg == NULL ) in DrawServerAAForcedString()
801 unsigned long nOrigColor = XGetPixel( pImg, 0, 0 ); in DrawServerAAForcedString()
802 XPutPixel( pImg, 0, 0, aGCVal.foreground ); in DrawServerAAForcedString()
804 aColor[0] = pImg->data[0]; in DrawServerAAForcedString()
805 aColor[1] = pImg->data[1]; in DrawServerAAForcedString()
806 aColor[2] = pImg->data[2]; in DrawServerAAForcedString()
807 aColor[3] = pImg->data[3]; in DrawServerAAForcedString()
808 XPutPixel( pImg, 0, 0, nOrigColor ); in DrawServerAAForcedString()
811 const int bpp = pImg->bits_per_pixel >> 3; in DrawServerAAForcedString()
825 unsigned char* p20 = (unsigned char*)pImg->data; // dest left limit in DrawServerAAForcedString()
826 p20 += (nY1 - nYmin) * pImg->bytes_per_line; in DrawServerAAForcedString()
827 unsigned char* p21 = p20 + (nX1 - nXmin + pImg->xoffset) * bpp; in DrawServerAAForcedString()
833 if( p20 >= (unsigned char*)pImg->data ) in DrawServerAAForcedString()
835 unsigned char* const p22 = p20 + pImg->width * bpp; // dest right limit in DrawServerAAForcedString()
861 p20 += pImg->bytes_per_line; in DrawServerAAForcedString()
862 p21 += pImg->bytes_per_line; in DrawServerAAForcedString()
868 XPutImage( pDisplay, hDrawable_, nGC, pImg, in DrawServerAAForcedString()
870 XDestroyImage( pImg ); in DrawServerAAForcedString()