Home | History | Annotate | Download | only in ETC1

Lines Matching refs:pHeader

633 void etc1_pkm_format_header(etc1_byte* pHeader, etc1_uint32 width, etc1_uint32 height) {
634 memcpy(pHeader, kMagic, sizeof(kMagic));
637 writeBEUint16(pHeader + ETC1_PKM_FORMAT_OFFSET, ETC1_RGB_NO_MIPMAPS);
638 writeBEUint16(pHeader + ETC1_PKM_ENCODED_WIDTH_OFFSET, encodedWidth);
639 writeBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET, encodedHeight);
640 writeBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET, width);
641 writeBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET, height);
646 etc1_bool etc1_pkm_is_valid(const etc1_byte* pHeader) {
647 if (memcmp(pHeader, kMagic, sizeof(kMagic))) {
650 etc1_uint32 format = readBEUint16(pHeader + ETC1_PKM_FORMAT_OFFSET);
651 etc1_uint32 encodedWidth = readBEUint16(pHeader + ETC1_PKM_ENCODED_WIDTH_OFFSET);
652 etc1_uint32 encodedHeight = readBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET);
653 etc1_uint32 width = readBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET);
654 etc1_uint32 height = readBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET);
662 etc1_uint32 etc1_pkm_get_width(const etc1_byte* pHeader) {
663 return readBEUint16(pHeader + ETC1_PKM_WIDTH_OFFSET);
668 etc1_uint32 etc1_pkm_get_height(const etc1_byte* pHeader){
669 return readBEUint16(pHeader + ETC1_PKM_HEIGHT_OFFSET);