Lines Matching refs:bitmapInfo
668 BITMAPINFOHEADER bitmapInfo; in takeScreenshot() local
669 bitmapInfo.biSize = sizeof(BITMAPINFOHEADER); in takeScreenshot()
670 bitmapInfo.biWidth = mWidth; in takeScreenshot()
671 bitmapInfo.biHeight = -mHeight; in takeScreenshot()
672 bitmapInfo.biPlanes = 1; in takeScreenshot()
673 bitmapInfo.biBitCount = 32; in takeScreenshot()
674 bitmapInfo.biCompression = BI_RGB; in takeScreenshot()
675 bitmapInfo.biSizeImage = 0; in takeScreenshot()
676 bitmapInfo.biXPelsPerMeter = 0; in takeScreenshot()
677 bitmapInfo.biYPelsPerMeter = 0; in takeScreenshot()
678 bitmapInfo.biClrUsed = 0; in takeScreenshot()
679 bitmapInfo.biClrImportant = 0; in takeScreenshot()
681 reinterpret_cast<BITMAPINFO *>(&bitmapInfo), DIB_RGB_COLORS); in takeScreenshot()