Lines Matching refs:pDisplay

152 	Display *pDisplay = GetXDisplay();  in GetFontGC()  local
161 pFontGC_ = XCreateGC( pDisplay, hDrawable_, in GetFontGC()
168 XSetForeground( pDisplay, pFontGC_, nTextPixel_ ); in GetFontGC()
297 …cairo_surface_t* xlib_surface_create_with_xrender_format(Display *pDisplay, Drawable drawable, Scr… in xlib_surface_create_with_xrender_format() argument
298 …{ return (*mp_xlib_surface_create_with_xrender_format)(pDisplay, drawable, pScreen, pFormat, width… in xlib_surface_create_with_xrender_format()
507 Display* pDisplay = GetXDisplay(); in DrawCairoAAFontString() local
509 cairo_surface_t *surface = rCairo.xlib_surface_create_with_xrender_format (pDisplay, in DrawCairoAAFontString()
510 … hDrawable_, ScreenOfDisplay(pDisplay, m_nScreen), pVisualFormat, SAL_MAX_INT16, SAL_MAX_INT16); in DrawCairoAAFontString()
593 Display* pDisplay = GetXDisplay(); in DrawServerAAFontString() local
599 ::XGetGeometry( pDisplay, hDrawable_, &wDummy, &iDummy, &iDummy, in DrawServerAAFontString()
604 rEntry.m_aPixmap = ::XCreatePixmap( pDisplay, hDrawable_, 1, 1, nVisualDepth ); in DrawServerAAFontString()
692 Display* pDisplay = GetXDisplay(); in DrawServerAAForcedString() local
748 XImage* pImg = XGetImage( pDisplay, hDrawable_, in DrawServerAAForcedString()
766 XGetGeometry( pDisplay, hDrawable_, &aRoot, &x, &y, &w, &h, &bw, &d ); in DrawServerAAForcedString()
767 XTranslateCoordinates( pDisplay, hDrawable_, aRoot, 0, 0, &x, &y, &aRoot ); in DrawServerAAForcedString()
783 pImg = XGetImage( pDisplay, hDrawable_, in DrawServerAAForcedString()
799 XGetGCValues( pDisplay, nGC, GCForeground, &aGCVal ); in DrawServerAAForcedString()
868 XPutImage( pDisplay, hDrawable_, nGC, pImg, in DrawServerAAForcedString()
883 Display* pDisplay = GetXDisplay(); in DrawServerSimpleFontString() local
889 GC tmpGC = XCreateGC( pDisplay, hDrawable_, GCFillStyle|GCLineWidth, &aGCVal ); in DrawServerSimpleFontString()
890 XCopyGC( pDisplay, nGC, (1<<GCLastBit)-(1+GCFillStyle+GCLineWidth), tmpGC ); in DrawServerSimpleFontString()
912 XChangeGC( pDisplay, tmpGC, GCStipple|GCTileStipXOrigin|GCTileStipYOrigin, &aGCVal ); in DrawServerSimpleFontString()
916 XFillRectangle( pDisplay, hDrawable_, tmpGC, nDestX, nDestY, nWidth, nHeight ); in DrawServerSimpleFontString()
920 XFreeGC( pDisplay, tmpGC ); in DrawServerSimpleFontString()