Lines Matching defs:dstPixel
957 deUint8* const dstPixel = dstPtr + y*dstRowPitch + x*dstPixelSize;
960 dstPixel[0] = srcPixelRGB[0];
961 dstPixel[1] = srcPixelRGB[1];
962 dstPixel[2] = srcPixelRGB[2];
963 dstPixel[3] = srcPixelAlpha[0];
990 deUint8* const dstPixel = dstPtr + y*dstRowPitch + x*dstPixelSize;
993 dstPixel[0] = srcPixel[0];
994 dstPixel[1] = srcPixel[1];
995 dstPixel[2] = srcPixel[2];
996 dstPixel[3] = srcPixelAlpha[0];
1025 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);
1027 dstPixel[0] = extend11To16WithSign(srcPixel[0]);
1032 deUint16* const dstPixel = (deUint16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);
1034 dstPixel[0] = extend11To16(srcPixel[0]);
1068 deInt16* const dstPixel = (deInt16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);
1070 dstPixel[0] = extend11To16WithSign(srcPixelR[0]);
1071 dstPixel[1] = extend11To16WithSign(srcPixelG[0]);
1077 deUint16* const dstPixel = (deUint16*)(dstPtr + y*dstRowPitch + x*dstPixelSize);
1079 dstPixel[0] = extend11To16(srcPixelR[0]);
1080 dstPixel[1] = extend11To16(srcPixelG[0]);
1536 deUint32* const dstPixel = (deUint32*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
1537 *dstPixel = colors[indices[y * BC_BLOCK_WIDTH + x]];
1608 deUint32* const dstPixel = (deUint32*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
1609 *dstPixel = (colors[indices[y * BC_BLOCK_WIDTH + x]] & 0x00ffffff) | alphas[y * BC_BLOCK_WIDTH + x];
1699 deUint32* const dstPixel = (deUint32*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
1700 *dstPixel = (colors[indices[y * BC_BLOCK_WIDTH + x]] & 0x00ffffff) | alphas[alphaIndices[y * BC_BLOCK_WIDTH + x]];
1759 float* const dstPixel = (float*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
1760 *dstPixel = reds[indices[y * BC_BLOCK_WIDTH + x]];
1808 float* const dstPixel = (float*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
1810 dstPixel[i] = rg[i][indices[i][y * BC_BLOCK_WIDTH + x]];
2193 deInt16* const dstPixel = (deInt16*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
2197 dstPixel[0] = 0;
2198 dstPixel[1] = 0;
2199 dstPixel[2] = 0;
2203 dstPixel[0] = r16;
2204 dstPixel[1] = g16;
2205 dstPixel[2] = b16;
2350 deUint32* const dstPixel = (deUint32*)(dstPtr + y * dstRowPitch + x * dstPixelSize);
2358 *dstPixel = 0;
2403 *dstPixel = a | (g << 8) | (b << 16) | (r << 24);
2405 *dstPixel = r | (a << 8) | (b << 16) | (g << 24);
2407 *dstPixel = r | (g << 8) | (a << 16) | (b << 24);
2411 *dstPixel = r | (g << 8) | (b << 16) | (a << 24);