Home | History | Annotate | Download | only in common

Lines Matching defs:srcPixel

887 			const deUint8* const	srcPixel		= &uncompressedBlockRGB[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8];
892 dstPixel[0] = srcPixel[0];
893 dstPixel[1] = srcPixel[1];
894 dstPixel[2] = srcPixel[2];
923 const deInt16* const srcPixel = (deInt16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
926 dstPixel[0] = extend11To16WithSign(srcPixel[0]);
930 const deUint16* const srcPixel = (deUint16*)&uncompressedBlock[(y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11];
933 dstPixel[0] = extend11To16(srcPixel[0]);