Home | History | Annotate | Download | only in ETC1

Lines Matching defs:high

201     etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3];
204 if (high & 2) {
206 int rBase = high >> 27;
207 int gBase = high >> 19;
208 int bBase = high >> 11;
210 r2 = convertDiff(rBase, high >> 24);
212 g2 = convertDiff(gBase, high >> 16);
214 b2 = convertDiff(bBase, high >> 8);
217 r1 = convert4To8(high >> 28);
218 r2 = convert4To8(high >> 24);
219 g1 = convert4To8(high >> 20);
220 g2 = convert4To8(high >> 16);
221 b1 = convert4To8(high >> 12);
222 b2 = convert4To8(high >> 8);
224 int tableIndexA = 7 & (high >> 5);
225 int tableIndexB = 7 & (high >> 2);
228 bool flipped = (high & 1) != 0;
234 etc1_uint32 high;
403 pCompressed->high |= (r51 << 27) | ((7 & dr) << 24) | (g51 << 19)
421 pCompressed->high |= (r41 << 28) | (r42 << 24) | (g41 << 20) | (g42
436 pCompressed->high = (flipped ? 1 : 0);
443 int originalHigh = pCompressed->high;
449 temp.high = originalHigh | (i << 5);
460 temp.high = firstHalf.high | (i << 2);
497 writeBigEndian(pOut, a.high);