Home | History | Annotate | Download | only in images

Lines Matching refs:col

197       uint8 col = pixels;
201 col = pixels & 0xf;
203 col = pixels >> 4;
206 PutPixel(x++, y, col);
241 uint8 col = val;
244 col = col & 0xf;
246 col >>= 4;
250 PutPixel(x++, y, col);
264 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) {
272 int colBase = col * 3;
298 uint8 col;
300 col = GetByte();
304 col = currVal >> 4;
306 col = currVal & 0xf;
313 col = ((currVal >> (7 - bit)) & 1);
315 int base = col * 3;