Searched refs:bitMapbuffer (Results 1 – 1 of 1) sorted by relevance
367 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode1bppRGB() local372 bitMapbuffer[row * pitch + j] = buf[j]; in Decode1bppRGB()395 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode8bppRGB() local402 bitMapbuffer[row * pitch + 2 * j + 0] = (buf[j] & 0xF0) >> 4; in Decode8bppRGB()403 bitMapbuffer[row * pitch + 2 * j + 1] = (buf[j] & 0x0F) >> 0; in Decode8bppRGB()406 bitMapbuffer[row * pitch + j] = buf[j]; in Decode8bppRGB()429 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode24bppRGB() local434 bitMapbuffer[row * pitch + j + 0] = buf[j + 2]; in Decode24bppRGB()435 bitMapbuffer[row * pitch + j + 1] = buf[j + 1]; in Decode24bppRGB()436 bitMapbuffer[row * pitch + j + 2] = buf[j + 0]; in Decode24bppRGB()