Home | History | Annotate | Download | only in main

Lines Matching defs:shift

5163    /* only shift and offset apply to stencil */
5197 /* shift and offset indexes */
5359 GLint shift = 0;
5362 if (shift == 0)
5364 *dst |= ((source[i] != 0) << shift);
5365 shift++;
5366 if (shift == 8) {
5367 shift = 0;
5374 GLint shift = 7;
5377 if (shift == 7)
5379 *dst |= ((source[i] != 0) << shift);
5380 shift--;
5381 if (shift < 0) {
5382 shift = 7;