Home | History | Annotate | Download | only in main

Lines Matching refs:col

1199       GLint row, col;
1205 for (col = 0; col < srcWidth; col++) {
1206 dstUS[col] = PACK_COLOR_565( srcUB[0], srcUB[1], srcUB[2] );
1211 for (col = 0; col < srcWidth; col++) {
1212 dstUS[col] = PACK_COLOR_565_REV( srcUB[0], srcUB[1], srcUB[2] );
1331 int img, row, col;
1340 for (col = 0; col < srcWidth; col++) {
1341 d4[col] = PACK_COLOR_8888(0xff,
1342 srcRow[col * 3 + RCOMP],
1343 srcRow[col * 3 + GCOMP],
1344 srcRow[col * 3 + BCOMP]);
1358 int img, row, col;
1368 for (col = 0; col < srcWidth; col++) {
1369 GLubyte l = srcRow[col * 2 + 0], a = srcRow[col * 2 + 1];
1370 d4[col] = PACK_COLOR_8888(a, l, l, l);
1384 GLint img, row, col;
1399 for (col = 0; col < srcWidth; col++) {
1400 d4[col] = PACK_COLOR_8888(srcRow[col * 4 + ACOMP],
1401 srcRow[col * 4 + RCOMP],
1402 srcRow[col * 4 + GCOMP],
1403 srcRow[col * 4 + BCOMP]);
1483 GLint img, row, col;
1491 for (col = 0; col < srcWidth; col++) {
1492 dstRow[col * 3 + 0] = srcRow[col * 4 + BCOMP];
1493 dstRow[col * 3 + 1] = srcRow[col * 4 + GCOMP];
1494 dstRow[col * 3 + 2] = srcRow[col * 4 + RCOMP];
1556 int img, row, col;
1564 for (col = 0; col < srcWidth; col++) {
1565 dstRow[col * 3 + 0] = srcRow[col * 4 + RCOMP];
1566 dstRow[col * 3 + 1] = srcRow[col * 4 + GCOMP];
1567 dstRow[col * 3 + 2] = srcRow[col * 4 + BCOMP];
1717 GLint img, row, col;
1725 for (col = 0; col < srcWidth; col++) {
1732 dstUI[col] = PACK_COLOR_2101010_US(a, r, g, b);
1740 for (col = 0; col < srcWidth; col++) {
1746 dstUI[col] = PACK_COLOR_2101010_US(0xffff, r, g, b);
1781 GLint img, row, col;
1788 for (col = 0; col < srcWidth; col++) {
1790 dstUS[col] = PACK_COLOR_44( src[1],
1886 GLint img, row, col;
1895 for (col = 0; col < srcWidth; col++) {
1897 dstUS[col] = PACK_COLOR_88( src[1],
1903 for (col = 0; col < srcWidth; col++) {
1905 dstUS[col] = PACK_COLOR_88_REV( src[1],
1960 GLint img, row, col;
1969 for (col = 0; col < srcWidth; col++) {
1974 dstUI[col] = PACK_COLOR_1616(a, l);
1979 for (col = 0; col < srcWidth; col++) {
1984 dstUI[col] = PACK_COLOR_1616_REV(a, l);
2032 GLint img, row, col;
2039 for (col = 0; col < srcWidth; col++) {
2043 dstUS[col] = r;
2085 GLint img, row, col;
2092 for (col = 0; col < srcWidth; col++) {
2099 dstUS[col*4+0] = r;
2100 dstUS[col*4+1] = g;
2101 dstUS[col*4+2] = b;
2102 dstUS[col*4+3] = a;
2146 GLint img, row, col;
2159 for (col = 0; col < srcWidth; col++) {
2163 UNCLAMPED_FLOAT_TO_SHORT(p, src[col * 4 + c]);
2164 dstRowS[col * comps + c] = p;
2170 for (col = 0; col < srcWidth; col++) {
2174 UNCLAMPED_FLOAT_TO_SHORT(p, src[col * 3 + c]);
2175 dstRowS[col * comps + c] = p;
2277 GLint img, row, col;
2283 for (col = 0; col < srcWidth; col++) {
2284 dstRow[col] = src[col];
2463 GLint img, row, col;
2469 for (col = 0; col < srcWidth; col++) {
2470 dstRow[col] = FLOAT_TO_BYTE_TEX(src[col]);
2517 GLint img, row, col;
2524 for (col = 0; col < srcWidth; col++) {
2573 GLint img, row, col;
2580 for (col = 0; col < srcWidth; col++) {
2584 dstUS[col] = r;
2630 GLint img, row, col;
2637 for (col = 0; col < srcWidth; col++) {
2676 GLint img, row, col;
2683 for (col = 0; col < srcWidth; col++) {
2735 GLint img, row, col;
2743 for (col = 0; col < srcWidth; col++) {
2753 for (col = 0; col < srcWidth; col++) {
3752 GLint img, row, col;
3759 for (col = 0; col < srcWidth; col++) {
3760 dstUI[col] = float3_to_rgb9e5(&srcRow[col * 3]);
3800 GLint img, row, col;
3807 for (col = 0; col < srcWidth; col++) {
3808 dstUI[col] = float3_to_r11g11b10f(&srcRow[col * 3]);
3911 GLint img, row, col;
3921 for (col = 0; col < srcWidth; col++) {
3927 dstUI[col] = (a << 30) | (r << 20) | (g << 10) | (b);
3931 for (col = 0; col < srcWidth; col++) {
3937 dstUI[col] = (a << 30) | (r << 20) | (g << 10) | (b);
3977 GLint img, row, col;
3987 for (col = 0; col < srcWidth; col++) {
3993 dstUI[col] = (a << 30) | (b << 20) | (g << 10) | (r);
3997 for (col = 0; col < srcWidth; col++) {
4003 dstUI[col] = (a << 30) | (b << 20) | (g << 10) | (r);