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