Lines Matching refs:dstCol
49 GLint dstCol; \
52 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
53 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
58 dst[dstCol] = src[srcCol]; \
61 dst[dstCol*2+0] = src[srcCol*2+0]; \
62 dst[dstCol*2+1] = src[srcCol*2+1]; \
65 dst[dstCol*4+0] = src[srcCol*4+0]; \
66 dst[dstCol*4+1] = src[srcCol*4+1]; \
67 dst[dstCol*4+2] = src[srcCol*4+2]; \
68 dst[dstCol*4+3] = src[srcCol*4+3]; \
73 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
74 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
78 dst[dstCol] = src[srcCol]; \
81 dst[dstCol*2+0] = src[srcCol*2+0]; \
82 dst[dstCol*2+1] = src[srcCol*2+1]; \
85 dst[dstCol*4+0] = src[srcCol*4+0]; \
86 dst[dstCol*4+1] = src[srcCol*4+1]; \
87 dst[dstCol*4+2] = src[srcCol*4+2]; \
88 dst[dstCol*4+3] = src[srcCol*4+3]; \
381 GLint dstCol; in resample_linear_row_ub() local
383 for (dstCol = 0; dstCol < dstWidth; dstCol++) { in resample_linear_row_ub()
384 const GLfloat srcCol = (dstCol * srcWidth) / dstWidthF; in resample_linear_row_ub()
418 dstColor[dstCol][RCOMP] = IFLOOR(red); in resample_linear_row_ub()
419 dstColor[dstCol][GCOMP] = IFLOOR(green); in resample_linear_row_ub()
420 dstColor[dstCol][BCOMP] = IFLOOR(blue); in resample_linear_row_ub()
421 dstColor[dstCol][ACOMP] = IFLOOR(alpha); in resample_linear_row_ub()
438 GLint dstCol; in resample_linear_row_float() local
440 for (dstCol = 0; dstCol < dstWidth; dstCol++) { in resample_linear_row_float()
441 const GLfloat srcCol = (dstCol * srcWidth) / dstWidthF; in resample_linear_row_float()
475 dstColor[dstCol][RCOMP] = red; in resample_linear_row_float()
476 dstColor[dstCol][GCOMP] = green; in resample_linear_row_float()
477 dstColor[dstCol][BCOMP] = blue; in resample_linear_row_float()
478 dstColor[dstCol][ACOMP] = alpha; in resample_linear_row_float()