Home | History | Annotate | Download | only in common

Lines Matching refs:srcPixel

865 					const deUint8* const	srcPixel = &uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8];
869 dstPixel[0] = srcPixel[0];
870 dstPixel[1] = srcPixel[1];
871 dstPixel[2] = srcPixel[2];
905 const deUint8* const srcPixel = &uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8];
909 dstPixel[0] = srcPixel[0];
910 dstPixel[1] = srcPixel[1];
911 dstPixel[2] = srcPixel[2];
991 const deUint8* const srcPixel = &uncompressedBlockRGB[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8];
996 dstPixel[0] = srcPixel[0];
997 dstPixel[1] = srcPixel[1];
998 dstPixel[2] = srcPixel[2];
1037 const deInt16* const srcPixel = (deInt16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
1040 dstPixel[0] = extend11To16WithSign(srcPixel[0]);
1044 const deUint16* const srcPixel = (deUint16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
1047 dstPixel[0] = extend11To16(srcPixel[0]);