Lines Matching refs:avg23
49 #define avg23(x0,x1) avg23tab[((x0) << 6) | (x1)] macro
259 r2 = avg23(r0, r1); in decodeDXT1()
260 g2 = avg23(g0, g1); in decodeDXT1()
261 b2 = avg23(b0, b1); in decodeDXT1()
263 r3 = avg23(r1, r0); in decodeDXT1()
264 g3 = avg23(g1, g0); in decodeDXT1()
265 b3 = avg23(b1, b0); in decodeDXT1()
373 int r2 = avg23(r0, r1); in decodeDXT3()
374 int g2 = avg23(g0, g1); in decodeDXT3()
375 int b2 = avg23(b0, b1); in decodeDXT3()
377 int r3 = avg23(r1, r0); in decodeDXT3()
378 int g3 = avg23(g1, g0); in decodeDXT3()
379 int b3 = avg23(b1, b0); in decodeDXT3()
530 int r2 = avg23(r0, r1); in decodeDXT5()
531 int g2 = avg23(g0, g1); in decodeDXT5()
532 int b2 = avg23(b0, b1); in decodeDXT5()
534 int r3 = avg23(r1, r0); in decodeDXT5()
535 int g3 = avg23(g1, g0); in decodeDXT5()
536 int b3 = avg23(b1, b0); in decodeDXT5()