Searched refs:bitMapbuffer (Results 1 – 1 of 1) sorted by relevance
406 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode1bppRGB() local411 bitMapbuffer[row * pitch + j] = buf[j]; in Decode1bppRGB()433 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode8bppRGB() local440 bitMapbuffer[row * pitch + 2 * j + 0] = (buf[j] & 0xF0) >> 4; in Decode8bppRGB()441 bitMapbuffer[row * pitch + 2 * j + 1] = (buf[j] & 0x0F) >> 0; in Decode8bppRGB()444 bitMapbuffer[row * pitch + j] = buf[j]; in Decode8bppRGB()466 uint8_t* bitMapbuffer = (uint8_t*)pDIBitmap->GetBuffer(); in Decode24bppRGB() local471 bitMapbuffer[row * pitch + j + 0] = buf[j + 2]; in Decode24bppRGB()472 bitMapbuffer[row * pitch + j + 1] = buf[j + 1]; in Decode24bppRGB()473 bitMapbuffer[row * pitch + j + 2] = buf[j + 0]; in Decode24bppRGB()