Lines Matching refs:readInt
93 uint32_t SkKTXFile::readInt(const uint8_t** buf, size_t* bytesLeft) const { in readInt() function in SkKTXFile
156 uint32_t endianness = this->readInt(&buf, &bytesLeft); in readKTXFile()
160 fHeader.fGLType = this->readInt(&buf, &bytesLeft); in readKTXFile()
161 fHeader.fGLTypeSize = this->readInt(&buf, &bytesLeft); in readKTXFile()
162 fHeader.fGLFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()
163 fHeader.fGLInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()
164 fHeader.fGLBaseInternalFormat = this->readInt(&buf, &bytesLeft); in readKTXFile()
165 fHeader.fPixelWidth = this->readInt(&buf, &bytesLeft); in readKTXFile()
166 fHeader.fPixelHeight = this->readInt(&buf, &bytesLeft); in readKTXFile()
167 fHeader.fPixelDepth = this->readInt(&buf, &bytesLeft); in readKTXFile()
168 fHeader.fNumberOfArrayElements = this->readInt(&buf, &bytesLeft); in readKTXFile()
169 fHeader.fNumberOfFaces = this->readInt(&buf, &bytesLeft); in readKTXFile()
170 fHeader.fNumberOfMipmapLevels = this->readInt(&buf, &bytesLeft); in readKTXFile()
171 fHeader.fBytesOfKeyValueData = this->readInt(&buf, &bytesLeft); in readKTXFile()
215 uint32_t keyValueBytes = this->readInt(&buf, &bytesLeft); in readKTXFile()
254 uint32_t imgSize = this->readInt(&buf, &bytesLeft); in readKTXFile()