Home | History | Annotate | Download | only in renderutil

Lines Matching refs:glyphs

101 	const uint8_t *glyphs )
107 if (stream->glyph_size != sizeof(*glyphs)) {
110 stream->glyph_size = sizeof(*glyphs);
117 memcpy(stream->current, glyphs, header.count);
127 const uint16_t *glyphs )
133 if (stream->glyph_size != sizeof(*glyphs)) {
136 stream->glyph_size = sizeof(*glyphs);
138 _grow_stream(stream, sizeof(header) + count*sizeof(*glyphs)+1);
143 memcpy(stream->current, glyphs, header.count*sizeof(*glyphs));
144 stream->current += ((int)header.count*sizeof(*glyphs)+3)>>2;
153 const uint32_t *glyphs )
159 if (stream->glyph_size != sizeof(*glyphs)) {
162 stream->glyph_size = sizeof(*glyphs);
164 _grow_stream(stream, sizeof(header) + count*sizeof(*glyphs)+1);
169 memcpy(stream->current, glyphs, header.count*sizeof(*glyphs));