Home | History | Annotate | Download | only in common

Lines Matching defs:dstOffset

428 		const int		dstOffset		= (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8;
434 dst[dstOffset+0] = (deUint8)deClamp32((int)baseR[subBlock] + modifier, 0, 255);
435 dst[dstOffset+1] = (deUint8)deClamp32((int)baseG[subBlock] + modifier, 0, 255);
436 dst[dstOffset+2] = (deUint8)deClamp32((int)baseB[subBlock] + modifier, 0, 255);
523 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8;
532 dst[dstOffset+0] = 0;
533 dst[dstOffset+1] = 0;
534 dst[dstOffset+2] = 0;
547 dst[dstOffset+0] = (deUint8)deClamp32((int)baseR[subBlock] + modifier, 0, 255);
548 dst[dstOffset+1] = (deUint8)deClamp32((int)baseG[subBlock] + modifier, 0, 255);
549 dst[dstOffset+2] = (deUint8)deClamp32((int)baseB[subBlock] + modifier, 0, 255);
639 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8;
645 dst[dstOffset+0] = 0;
646 dst[dstOffset+1] = 0;
647 dst[dstOffset+2] = 0;
652 dst[dstOffset+0] = (deUint8)deClamp32((int)paintR[paintNdx], 0, 255);
653 dst[dstOffset+1] = (deUint8)deClamp32((int)paintG[paintNdx], 0, 255);
654 dst[dstOffset+2] = (deUint8)deClamp32((int)paintB[paintNdx], 0, 255);
686 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_RGB8;
692 dst[dstOffset+0] = (deUint8)deClamp32(unclampedR, 0, 255);
693 dst[dstOffset+1] = (deUint8)deClamp32(unclampedG, 0, 255);
694 dst[dstOffset+2] = (deUint8)deClamp32(unclampedB, 0, 255);
733 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_A8;
738 dst[dstOffset] = (deUint8)deClamp32((int)baseCodeword + (int)multiplier*modifier, 0, 255);
780 const int dstOffset = (y*ETC2_BLOCK_WIDTH + x)*ETC2_UNCOMPRESSED_PIXEL_SIZE_R11;
794 *((deInt16*)(dst + dstOffset)) = value;
805 *((deUint16*)(dst + dstOffset)) = value;