Lines Matching refs:pDisplay
485 X11SalBitmap::SnapShot (Display* pDisplay, XLIB_Window hWindow) in SnapShot() argument
490 XGetWindowAttributes (pDisplay, hWindow, &aAttribute); in SnapShot()
497 if (XTranslateCoordinates (pDisplay, hWindow, aAttribute.root, in SnapShot()
501 XGetWindowAttributes (pDisplay, aAttribute.root, &aRootAttribute); in SnapShot()
546 XImage* pImage = XGetImage( pDisplay, aAttribute.root, in SnapShot()
548 bool bSnapShot = ImplCreateFromXImage( pDisplay, in SnapShot()
564 X11SalBitmap::ImplCreateFromXImage (Display* pDisplay, XLIB_Window hWindow, int nScreen, XImage* pI… in ImplCreateFromXImage() argument
570 mpDDB = new ImplSalDDB (pDisplay, hWindow, nScreen, pImage); in ImplCreateFromXImage()
874 ImplSalDDB::ImplSalDDB (Display* pDisplay, XLIB_Window hWindow, int nScreen, XImage* pImage) : in ImplSalDDB() argument
877 maPixmap = XCreatePixmap (pDisplay, hWindow, pImage->width, pImage->height, pImage->depth); in ImplSalDDB()
893 aGC = XCreateGC (pDisplay, maPixmap, nValues, &aValues); in ImplSalDDB()
894 XPutImage (pDisplay, maPixmap, aGC, pImage, 0, 0, 0, 0, pImage->width, pImage->height); in ImplSalDDB()
895 XFreeGC (pDisplay, aGC); in ImplSalDDB()