• Home
  • Raw
  • Download

Lines Matching refs:dstCol

50    GLint dstCol;					\
53 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
54 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
59 dst[dstCol] = src[srcCol]; \
62 dst[dstCol*2+0] = src[srcCol*2+0]; \
63 dst[dstCol*2+1] = src[srcCol*2+1]; \
66 dst[dstCol*4+0] = src[srcCol*4+0]; \
67 dst[dstCol*4+1] = src[srcCol*4+1]; \
68 dst[dstCol*4+2] = src[srcCol*4+2]; \
69 dst[dstCol*4+3] = src[srcCol*4+3]; \
74 for (dstCol = 0; dstCol < dstWidth; dstCol++) { \
75 GLint srcCol = (dstCol * srcWidth) / dstWidth; \
79 dst[dstCol] = src[srcCol]; \
82 dst[dstCol*2+0] = src[srcCol*2+0]; \
83 dst[dstCol*2+1] = src[srcCol*2+1]; \
86 dst[dstCol*4+0] = src[srcCol*4+0]; \
87 dst[dstCol*4+1] = src[srcCol*4+1]; \
88 dst[dstCol*4+2] = src[srcCol*4+2]; \
89 dst[dstCol*4+3] = src[srcCol*4+3]; \
406 GLint dstCol; in resample_linear_row_ub() local
408 for (dstCol = 0; dstCol < dstWidth; dstCol++) { in resample_linear_row_ub()
409 const GLfloat srcCol = (dstCol + 0.5F) / dstWidth * srcWidth - 0.5F; in resample_linear_row_ub()
442 dstColor[dstCol][RCOMP] = IFLOOR(red); in resample_linear_row_ub()
443 dstColor[dstCol][GCOMP] = IFLOOR(green); in resample_linear_row_ub()
444 dstColor[dstCol][BCOMP] = IFLOOR(blue); in resample_linear_row_ub()
445 dstColor[dstCol][ACOMP] = IFLOOR(alpha); in resample_linear_row_ub()
461 GLint dstCol; in resample_linear_row_float() local
463 for (dstCol = 0; dstCol < dstWidth; dstCol++) { in resample_linear_row_float()
464 const GLfloat srcCol = (dstCol + 0.5F) / dstWidth * srcWidth - 0.5F; in resample_linear_row_float()
497 dstColor[dstCol][RCOMP] = red; in resample_linear_row_float()
498 dstColor[dstCol][GCOMP] = green; in resample_linear_row_float()
499 dstColor[dstCol][BCOMP] = blue; in resample_linear_row_float()
500 dstColor[dstCol][ACOMP] = alpha; in resample_linear_row_float()