• Home
  • Raw
  • Download

Lines Matching refs:dstPixel

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