Home
last modified time | relevance | path

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; in SET_CURSOR_SHAPE() local
54 for( col_byte = 0; col_byte < 64 / 8; ++col_byte ) { in SET_CURSOR_SHAPE()
55 if( row < height && col_byte < (width + 7) / 8 ) { in SET_CURSOR_SHAPE()
56 fb_cursor[row * 64/8 * 2 + col_byte] = *andMask++; in SET_CURSOR_SHAPE()
57 fb_cursor[row * 64/8 * 2 + col_byte + 64/8] = *xorMask++; in SET_CURSOR_SHAPE()
59 fb_cursor[row * 64/8 * 2 + col_byte] = 0xff; in SET_CURSOR_SHAPE()
60 fb_cursor[row * 64/8 * 2 + col_byte + 64/8] = 0; in SET_CURSOR_SHAPE()