Home | History | Annotate | Download | only in images

Lines Matching refs:col

190       uint8 col = pixels;
194 col = pixels & 0xf;
196 col = pixels >> 4;
199 PutPixel(x++, y, col);
234 uint8 col = val;
237 col = col & 0xf;
239 col >>= 4;
243 PutPixel(x++, y, col);
257 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) {
265 int colBase = col * 3;
291 uint8 col;
293 col = GetByte();
297 col = currVal >> 4;
299 col = currVal & 0xf;
306 col = ((currVal >> (7 - bit)) & 1);
308 int base = col * 3;