Lines Matching refs:m_aInfo

401     if( ! XMatchVisualInfo( m_pDisplay, DefaultScreen( m_pDisplay ), 24, TrueColor, &m_aInfo ) )  in PixmapHolder()
407 m_aInfo.screen = DefaultScreen( m_pDisplay ); in PixmapHolder()
408 m_aInfo.visual = pVisual; in PixmapHolder()
409 m_aInfo.visualid = pVisual->visualid; in PixmapHolder()
410 m_aInfo.c_class = pVisual->c_class; in PixmapHolder()
411 m_aInfo.red_mask = pVisual->red_mask; in PixmapHolder()
412 m_aInfo.green_mask = pVisual->green_mask; in PixmapHolder()
413 m_aInfo.blue_mask = pVisual->blue_mask; in PixmapHolder()
414 m_aInfo.depth = DefaultDepth( m_pDisplay, m_aInfo.screen ); in PixmapHolder()
416 m_aColormap = DefaultColormap( m_pDisplay, m_aInfo.screen ); in PixmapHolder()
421 m_aInfo.visualid, in PixmapHolder()
422 …(m_aInfo.c_class >= 0 && unsigned(m_aInfo.c_class) < sizeof(pClasses)/sizeof(pClasses[0])) ? pClas… in PixmapHolder()
423 m_aInfo.c_class, in PixmapHolder()
424 m_aInfo.depth, in PixmapHolder()
427 if( m_aInfo.c_class == TrueColor ) in PixmapHolder()
431 getShift( m_aInfo.red_mask, m_nRedShift, nRedSig, m_nRedShift2 ); in PixmapHolder()
433 getShift( m_aInfo.green_mask, m_nGreenShift, nGreenSig, m_nGreenShift2 ); in PixmapHolder()
435 getShift( m_aInfo.blue_mask, m_nBlueShift, nBlueSig, m_nBlueShift2 ); in PixmapHolder()
481 if( m_aInfo.c_class != TrueColor ) in setBitmapDataPalette()
562 int nColors = 1 << m_aInfo.depth; in setBitmapDataTCDither()
639 if( m_aInfo.c_class != TrueColor ) in needsConversion()
642 else if( nDepth != (sal_uInt32)m_aInfo.depth ) in needsConversion()
644 if( m_aInfo.c_class != TrueColor ) in needsConversion()
671 RootWindow( m_pDisplay, m_aInfo.screen ), in setBitmapData()
672 nWidth, nHeight, m_aInfo.depth ); in setBitmapData()
686 aImage.depth = m_aInfo.depth; in setBitmapData()
687 aImage.red_mask = m_aInfo.red_mask; in setBitmapData()
688 aImage.green_mask = m_aInfo.green_mask; in setBitmapData()
689 aImage.blue_mask = m_aInfo.blue_mask; in setBitmapData()
691 if( m_aInfo.depth <= 8 ) in setBitmapData()
692 aImage.bits_per_pixel = m_aInfo.depth; in setBitmapData()
694 aImage.bits_per_pixel = 8*((m_aInfo.depth+7)/8); in setBitmapData()
702 if( m_aInfo.c_class == TrueColor ) in setBitmapData()
713 DefaultGC( m_pDisplay, m_aInfo.screen ), in setBitmapData()
724 RootWindow( m_pDisplay, m_aInfo.screen ), in setBitmapData()