Lines Matching defs:srcPitch
77 int count, width, height, y1, y2, dstPitch, srcPitch;
87 srcPitch = -pNv->Rotate * pNv->ShadowPitch;
98 srcPtr = pNv->ShadowPtr + ((1 - y2) * srcPitch) + pbox->x1;
102 srcPtr = pNv->ShadowPtr + (y1 * srcPitch) + pbox->x2 - 1;
110 *(dst++) = src[0] | (src[srcPitch] << 8) |
111 (src[srcPitch * 2] << 16) |
112 (src[srcPitch * 3] << 24);
113 src += srcPitch * 4;
128 int count, width, height, y1, y2, dstPitch, srcPitch;
138 srcPitch = -pNv->Rotate * pNv->ShadowPitch >> 1;
150 ((1 - y2) * srcPitch) + pbox->x1;
155 (y1 * srcPitch) + pbox->x2 - 1;
163 *(dst++) = src[0] | (src[srcPitch] << 16);
164 src += srcPitch * 2;
179 int count, width, height, dstPitch, srcPitch;
188 srcPitch = -pNv->Rotate * pNv->ShadowPitch >> 2;
198 ((1 - pbox->y2) * srcPitch) + pbox->x1;
203 (pbox->y1 * srcPitch) + pbox->x2 - 1;
212 src += srcPitch;