本文整理汇总了C++中InStream::in_uint8p方法的典型用法代码示例。如果您正苦于以下问题:C++ InStream::in_uint8p方法的具体用法?C++ InStream::in_uint8p怎么用?C++ InStream::in_uint8p使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InStream
的用法示例。
在下文中一共展示了InStream::in_uint8p方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: process_glyphcache
inline void process_glyphcache(GlyphCache & gly_cache, InStream & stream) {
const uint8_t cacheId = stream.in_uint8();
const uint8_t nglyphs = stream.in_uint8();
for (uint8_t i = 0; i < nglyphs; i++) {
const uint16_t cacheIndex = stream.in_uint16_le();
const int16_t offset = stream.in_sint16_le();
const int16_t baseline = stream.in_sint16_le();
const uint16_t width = stream.in_uint16_le();
const uint16_t height = stream.in_uint16_le();
const unsigned int datasize = (height * nbbytes(width) + 3) & ~3;
const uint8_t * data = stream.in_uint8p(datasize);
server_add_char(gly_cache, cacheId, cacheIndex, offset, baseline, width, height, data);
}
}