Searched refs:col_byte (Results 1 - 1 of 1) sorted by relevance

/haiku/src/add-ons/accelerants/radeon/
H A DCursor.c39 int row, col_byte; local
54 for( col_byte = 0; col_byte < 64 / 8; ++col_byte ) {
55 if( row < height && col_byte < (width + 7) / 8 ) {
56 fb_cursor[row * 64/8 * 2 + col_byte] = *andMask++;
57 fb_cursor[row * 64/8 * 2 + col_byte + 64/8] = *xorMask++;
59 fb_cursor[row * 64/8 * 2 + col_byte] = 0xff;
60 fb_cursor[row * 64/8 * 2 + col_byte + 64/8] = 0;

Completed in 30 milliseconds