244#define STB_TRUETYPE_IMPLEMENTATION
247unsigned char ttf_buffer[1<<20];
248unsigned char temp_bitmap[512*512];
253void my_stbtt_initfont(
void)
255 fread(ttf_buffer, 1, 1<<20, fopen(
"c:/windows/fonts/times.ttf",
"rb"));
258 glGenTextures(1, &ftex);
259 glBindTexture(GL_TEXTURE_2D, ftex);
260 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 512,512, 0, GL_ALPHA, GL_UNSIGNED_BYTE, temp_bitmap);
262 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
265void my_stbtt_print(
float x,
float y,
char *text)
268 glEnable(GL_TEXTURE_2D);
269 glBindTexture(GL_TEXTURE_2D, ftex);
272 if (*text >= 32 && *text < 128) {
275 glTexCoord2f(q.
s0,q.
t1); glVertex2f(q.
x0,q.
y0);
276 glTexCoord2f(q.
s1,q.
t1); glVertex2f(q.
x1,q.
y0);
277 glTexCoord2f(q.
s1,q.
t0); glVertex2f(q.
x1,q.
y1);
278 glTexCoord2f(q.
s0,q.
t0); glVertex2f(q.
x0,q.
y1);
293#define STB_TRUETYPE_IMPLEMENTATION
296char ttf_buffer[1<<25];
298int main(
int argc,
char **argv)
301 unsigned char *bitmap;
302 int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) :
'a'), s = (argc > 2 ? atoi(argv[2]) : 20);
304 fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] :
"c:/windows/fonts/arialbd.ttf",
"rb"));
309 for (j=0; j < h; ++j) {
310 for (i=0; i < w; ++i)
311 putchar(
" .:ioVM@"[bitmap[j*w+i]>>5]);
337unsigned char screen[20][79];
339int main(
int arg,
char **argv)
342 int i,j,ascent,baseline,ch=0;
344 char *text =
"Heljo World!";
346 fread(buffer, 1, 1000000, fopen(
"c:/windows/fonts/arialbd.ttf",
"rb"));
351 baseline = (int) (ascent*scale);
354 int advance,lsb,x0,y0,x1,y1;
355 float x_shift = xpos - (float) floor(xpos);
363 xpos += (advance * scale);
369 for (j=0; j < 20; ++j) {
370 for (i=0; i < 78; ++i)
371 putchar(
" .:ioVM@"[screen[j][i]>>5]);
388#ifdef STB_TRUETYPE_IMPLEMENTATION
391 typedef unsigned char stbtt_uint8;
392 typedef signed char stbtt_int8;
393 typedef unsigned short stbtt_uint16;
394 typedef signed short stbtt_int16;
395 typedef unsigned int stbtt_uint32;
396 typedef signed int stbtt_int32;
399 typedef char stbtt__check_size32[
sizeof(stbtt_int32)==4 ? 1 : -1];
400 typedef char stbtt__check_size16[
sizeof(stbtt_int16)==2 ? 1 : -1];
405 #define STBTT_ifloor(x) ((int) floor(x))
406 #define STBTT_iceil(x) ((int) ceil(x))
411 #define STBTT_sqrt(x) sqrt(x)
412 #define STBTT_pow(x,y) pow(x,y)
417 #define STBTT_cos(x) cos(x)
418 #define STBTT_acos(x) acos(x)
423 #define STBTT_fabs(x) fabs(x)
428 #define STBTT_fabs(x) fabs(x)
434 #define STBTT_malloc(x,u) ((void)(u),malloc(x))
435 #define STBTT_free(x,u) ((void)(u),free(x))
440 #define STBTT_assert(x) assert(x)
445 #define STBTT_strlen(x) strlen(x)
450 #define STBTT_memcpy memcpy
451 #define STBTT_memset memset
462#ifndef __STB_INCLUDE_STB_TRUETYPE_H__
463#define __STB_INCLUDE_STB_TRUETYPE_H__
466#define STBTT_DEF static
468#define STBTT_DEF extern
478 #pragma clang system_header
499 unsigned short x0,y0,x1,y1;
505 unsigned char *pixels,
int pw,
int ph,
506 int first_char,
int num_chars,
521 float *xpos,
float *ypos,
523 int opengl_fillrule);
545 unsigned short x0,y0,x1,y1;
552#ifndef STB_RECT_PACK_VERSION
570#define STBTT_POINT_SIZE(x) (-(x))
573 int first_unicode_char_in_range,
int num_chars_in_range,
stbtt_packedchar *chardata_for_range);
621 float *xpos,
float *ypos,
623 int align_to_integer);
776 #define stbtt_vertex_type short
833STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int oversample_x,
int oversample_y,
float *sub_x,
float *sub_y,
int codepoint);
854STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int oversample_x,
int oversample_y,
float *sub_x,
float *sub_y,
int glyph);
868 float flatness_in_pixels,
871 float scale_x,
float scale_y,
872 float shift_x,
float shift_y,
873 int x_off,
int y_off,
962#define STBTT_MACSTYLE_DONTCARE 0
963#define STBTT_MACSTYLE_BOLD 1
964#define STBTT_MACSTYLE_ITALIC 2
965#define STBTT_MACSTYLE_UNDERSCORE 4
966#define STBTT_MACSTYLE_NONE 8
1042#ifdef STB_TRUETYPE_IMPLEMENTATION
1044#ifndef STBTT_MAX_OVERSAMPLE
1045#define STBTT_MAX_OVERSAMPLE 8
1048#if STBTT_MAX_OVERSAMPLE > 255
1049#error "STBTT_MAX_OVERSAMPLE cannot be > 255"
1052typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1];
1054#ifndef STBTT_RASTERIZER_VERSION
1055#define STBTT_RASTERIZER_VERSION 2
1059#define STBTT__NOTUSED(v) (void)(v)
1061#define STBTT__NOTUSED(v) (void)sizeof(v)
1069static stbtt_uint8 stbtt__buf_get8(
stbtt__buf *b)
1076static stbtt_uint8 stbtt__buf_peek8(
stbtt__buf *b)
1083static void stbtt__buf_seek(
stbtt__buf *b,
int o)
1085 STBTT_assert(!(o > b->
size || o < 0));
1089static void stbtt__buf_skip(
stbtt__buf *b,
int o)
1091 stbtt__buf_seek(b, b->
cursor + o);
1094static stbtt_uint32 stbtt__buf_get(
stbtt__buf *b,
int n)
1098 STBTT_assert(n >= 1 && n <= 4);
1099 for (i = 0; i < n; i++)
1100 v = (v << 8) | stbtt__buf_get8(b);
1104static stbtt__buf stbtt__new_buf(
const void *p,
size_t size)
1107 STBTT_assert(size < 0x40000000);
1108 r.
data = (stbtt_uint8*) p;
1109 r.
size = (int) size;
1114#define stbtt__buf_get16(b) stbtt__buf_get((b), 2)
1115#define stbtt__buf_get32(b) stbtt__buf_get((b), 4)
1120 if (o < 0 || s < 0 || o > b->
size || s > b->
size - o)
return r;
1128 int count, start, offsize;
1130 count = stbtt__buf_get16(b);
1132 offsize = stbtt__buf_get8(b);
1133 STBTT_assert(offsize >= 1 && offsize <= 4);
1134 stbtt__buf_skip(b, offsize * count);
1135 stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1);
1137 return stbtt__buf_range(b, start, b->
cursor - start);
1140static stbtt_uint32 stbtt__cff_int(
stbtt__buf *b)
1142 int b0 = stbtt__buf_get8(b);
1143 if (b0 >= 32 && b0 <= 246)
return b0 - 139;
1144 else if (b0 >= 247 && b0 <= 250)
return (b0 - 247)*256 + stbtt__buf_get8(b) + 108;
1145 else if (b0 >= 251 && b0 <= 254)
return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108;
1146 else if (b0 == 28)
return stbtt__buf_get16(b);
1147 else if (b0 == 29)
return stbtt__buf_get32(b);
1152static void stbtt__cff_skip_operand(
stbtt__buf *b) {
1153 int v, b0 = stbtt__buf_peek8(b);
1154 STBTT_assert(b0 >= 28);
1156 stbtt__buf_skip(b, 1);
1158 v = stbtt__buf_get8(b);
1159 if ((v & 0xF) == 0xF || (v >> 4) == 0xF)
1169 stbtt__buf_seek(b, 0);
1171 int start = b->
cursor, end, op;
1172 while (stbtt__buf_peek8(b) >= 28)
1173 stbtt__cff_skip_operand(b);
1175 op = stbtt__buf_get8(b);
1176 if (op == 12) op = stbtt__buf_get8(b) | 0x100;
1177 if (op == key)
return stbtt__buf_range(b, start, end-start);
1179 return stbtt__buf_range(b, 0, 0);
1182static void stbtt__dict_get_ints(
stbtt__buf *b,
int key,
int outcount, stbtt_uint32 *out)
1185 stbtt__buf operands = stbtt__dict_get(b, key);
1186 for (i = 0; i < outcount && operands.
cursor < operands.
size; i++)
1187 out[i] = stbtt__cff_int(&operands);
1190static int stbtt__cff_index_count(
stbtt__buf *b)
1192 stbtt__buf_seek(b, 0);
1193 return stbtt__buf_get16(b);
1198 int count, offsize, start, end;
1199 stbtt__buf_seek(&b, 0);
1200 count = stbtt__buf_get16(&b);
1201 offsize = stbtt__buf_get8(&b);
1202 STBTT_assert(i >= 0 && i < count);
1203 STBTT_assert(offsize >= 1 && offsize <= 4);
1204 stbtt__buf_skip(&b, i*offsize);
1205 start = stbtt__buf_get(&b, offsize);
1206 end = stbtt__buf_get(&b, offsize);
1207 return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start);
1218#define ttBYTE(p) (* (stbtt_uint8 *) (p))
1219#define ttCHAR(p) (* (stbtt_int8 *) (p))
1220#define ttFixed(p) ttLONG(p)
1222static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) {
return p[0]*256 + p[1]; }
1223static stbtt_int16 ttSHORT(stbtt_uint8 *p) {
return p[0]*256 + p[1]; }
1224static stbtt_uint32 ttULONG(stbtt_uint8 *p) {
return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
1225static stbtt_int32 ttLONG(stbtt_uint8 *p) {
return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
1227#define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3))
1228#define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3])
1230static int stbtt__isfont(stbtt_uint8 *font)
1233 if (stbtt_tag4(font,
'1',0,0,0))
return 1;
1234 if (stbtt_tag(font,
"typ1"))
return 1;
1235 if (stbtt_tag(font,
"OTTO"))
return 1;
1236 if (stbtt_tag4(font, 0,1,0,0))
return 1;
1237 if (stbtt_tag(font,
"true"))
return 1;
1242static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart,
const char *tag)
1244 stbtt_int32 num_tables = ttUSHORT(data+fontstart+4);
1245 stbtt_uint32 tabledir = fontstart + 12;
1247 for (i=0; i < num_tables; ++i) {
1248 stbtt_uint32 loc = tabledir + 16*i;
1249 if (stbtt_tag(data+loc+0, tag))
1250 return ttULONG(data+loc+8);
1255static int stbtt_GetFontOffsetForIndex_internal(
unsigned char *font_collection,
int index)
1258 if (stbtt__isfont(font_collection))
1259 return index == 0 ? 0 : -1;
1262 if (stbtt_tag(font_collection,
"ttcf")) {
1264 if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
1265 stbtt_int32 n = ttLONG(font_collection+8);
1268 return ttULONG(font_collection+12+index*4);
1274static int stbtt_GetNumberOfFonts_internal(
unsigned char *font_collection)
1277 if (stbtt__isfont(font_collection))
1281 if (stbtt_tag(font_collection,
"ttcf")) {
1283 if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
1284 return ttLONG(font_collection+8);
1292 stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 };
1294 stbtt__dict_get_ints(&fontdict, 18, 2, private_loc);
1295 if (!private_loc[1] || !private_loc[0])
return stbtt__new_buf(NULL, 0);
1296 pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]);
1297 stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff);
1298 if (!subrsoff)
return stbtt__new_buf(NULL, 0);
1299 stbtt__buf_seek(&cff, private_loc[1]+subrsoff);
1300 return stbtt__cff_get_index(&cff);
1303static int stbtt_InitFont_internal(
stbtt_fontinfo *info,
unsigned char *data,
int fontstart)
1305 stbtt_uint32 cmap, t;
1306 stbtt_int32 i,numTables;
1310 info->
cff = stbtt__new_buf(NULL, 0);
1312 cmap = stbtt__find_table(data, fontstart,
"cmap");
1313 info->
loca = stbtt__find_table(data, fontstart,
"loca");
1314 info->
head = stbtt__find_table(data, fontstart,
"head");
1315 info->
glyf = stbtt__find_table(data, fontstart,
"glyf");
1316 info->
hhea = stbtt__find_table(data, fontstart,
"hhea");
1317 info->
hmtx = stbtt__find_table(data, fontstart,
"hmtx");
1318 info->
kern = stbtt__find_table(data, fontstart,
"kern");
1320 if (!cmap || !info->
head || !info->
hhea || !info->
hmtx)
1324 if (!info->
loca)
return 0;
1328 stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0;
1331 cff = stbtt__find_table(data, fontstart,
"CFF ");
1334 info->
fontdicts = stbtt__new_buf(NULL, 0);
1335 info->
fdselect = stbtt__new_buf(NULL, 0);
1338 info->
cff = stbtt__new_buf(data+cff, 512*1024*1024);
1342 stbtt__buf_skip(&b, 2);
1343 stbtt__buf_seek(&b, stbtt__buf_get8(&b));
1347 stbtt__cff_get_index(&b);
1348 topdictidx = stbtt__cff_get_index(&b);
1349 topdict = stbtt__cff_index_get(topdictidx, 0);
1350 stbtt__cff_get_index(&b);
1351 info->
gsubrs = stbtt__cff_get_index(&b);
1353 stbtt__dict_get_ints(&topdict, 17, 1, &charstrings);
1354 stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype);
1355 stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff);
1356 stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff);
1357 info->
subrs = stbtt__get_subrs(b, topdict);
1360 if (cstype != 2)
return 0;
1361 if (charstrings == 0)
return 0;
1365 if (!fdselectoff)
return 0;
1366 stbtt__buf_seek(&b, fdarrayoff);
1367 info->
fontdicts = stbtt__cff_get_index(&b);
1368 info->
fdselect = stbtt__buf_range(&b, fdselectoff, b.
size-fdselectoff);
1371 stbtt__buf_seek(&b, charstrings);
1375 t = stbtt__find_table(data, fontstart,
"maxp");
1384 numTables = ttUSHORT(data + cmap + 2);
1386 for (i=0; i < numTables; ++i) {
1387 stbtt_uint32 encoding_record = cmap + 4 + 8 * i;
1389 switch(ttUSHORT(data+encoding_record)) {
1391 switch (ttUSHORT(data+encoding_record+2)) {
1395 info->
index_map = cmap + ttULONG(data+encoding_record+4);
1402 info->
index_map = cmap + ttULONG(data+encoding_record+4);
1415 stbtt_uint8 *data = info->
data;
1416 stbtt_uint32 index_map = info->
index_map;
1418 stbtt_uint16 format = ttUSHORT(data + index_map + 0);
1420 stbtt_int32 bytes = ttUSHORT(data + index_map + 2);
1421 if (unicode_codepoint < bytes-6)
1422 return ttBYTE(data + index_map + 6 + unicode_codepoint);
1424 }
else if (format == 6) {
1425 stbtt_uint32 first = ttUSHORT(data + index_map + 6);
1426 stbtt_uint32 count = ttUSHORT(data + index_map + 8);
1427 if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count)
1428 return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2);
1430 }
else if (format == 2) {
1433 }
else if (format == 4) {
1434 stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1;
1435 stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1;
1436 stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10);
1437 stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1;
1440 stbtt_uint32 endCount = index_map + 14;
1441 stbtt_uint32 search = endCount;
1443 if (unicode_codepoint > 0xffff)
1448 if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2))
1449 search += rangeShift*2;
1453 while (entrySelector) {
1456 end = ttUSHORT(data + search + searchRange*2);
1457 if (unicode_codepoint > end)
1458 search += searchRange*2;
1464 stbtt_uint16 offset, start;
1465 stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1);
1467 STBTT_assert(unicode_codepoint <= ttUSHORT(data + endCount + 2*item));
1468 start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item);
1469 if (unicode_codepoint < start)
1472 offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item);
1474 return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item));
1476 return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item);
1478 }
else if (format == 12 || format == 13) {
1479 stbtt_uint32 ngroups = ttULONG(data+index_map+12);
1480 stbtt_int32 low,high;
1481 low = 0; high = (stbtt_int32)ngroups;
1483 while (low < high) {
1484 stbtt_int32 mid = low + ((high-low) >> 1);
1485 stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12);
1486 stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4);
1487 if ((stbtt_uint32) unicode_codepoint < start_char)
1489 else if ((stbtt_uint32) unicode_codepoint > end_char)
1492 stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8);
1494 return start_glyph + unicode_codepoint-start_char;
1511static void stbtt_setvertex(
stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy)
1514 v->
x = (stbtt_int16) x;
1515 v->
y = (stbtt_int16) y;
1516 v->
cx = (stbtt_int16) cx;
1517 v->
cy = (stbtt_int16) cy;
1520static int stbtt__GetGlyfOffset(
const stbtt_fontinfo *info,
int glyph_index)
1524 STBTT_assert(!info->
cff.
size);
1526 if (glyph_index >= info->
numGlyphs)
return -1;
1530 g1 = info->
glyf + ttUSHORT(info->
data + info->
loca + glyph_index * 2) * 2;
1531 g2 = info->
glyf + ttUSHORT(info->
data + info->
loca + glyph_index * 2 + 2) * 2;
1533 g1 = info->
glyf + ttULONG (info->
data + info->
loca + glyph_index * 4);
1534 g2 = info->
glyf + ttULONG (info->
data + info->
loca + glyph_index * 4 + 4);
1537 return g1==g2 ? -1 : g1;
1540static int stbtt__GetGlyphInfoT2(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1);
1545 stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1);
1547 int g = stbtt__GetGlyfOffset(info, glyph_index);
1548 if (g < 0)
return 0;
1550 if (x0) *x0 = ttSHORT(info->
data + g + 2);
1551 if (y0) *y0 = ttSHORT(info->
data + g + 4);
1552 if (x1) *x1 = ttSHORT(info->
data + g + 6);
1553 if (y1) *y1 = ttSHORT(info->
data + g + 8);
1565 stbtt_int16 numberOfContours;
1568 return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0;
1569 g = stbtt__GetGlyfOffset(info, glyph_index);
1570 if (g < 0)
return 1;
1571 numberOfContours = ttSHORT(info->
data + g);
1572 return numberOfContours == 0;
1575static int stbtt__close_shape(
stbtt_vertex *vertices,
int num_vertices,
int was_off,
int start_off,
1576 stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy)
1580 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy);
1581 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vcurve, sx,sy,scx,scy);
1584 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vcurve,sx,sy,cx,cy);
1586 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vline,sx,sy,0,0);
1588 return num_vertices;
1593 stbtt_int16 numberOfContours;
1594 stbtt_uint8 *endPtsOfContours;
1595 stbtt_uint8 *data = info->
data;
1598 int g = stbtt__GetGlyfOffset(info, glyph_index);
1602 if (g < 0)
return 0;
1604 numberOfContours = ttSHORT(data + g);
1606 if (numberOfContours > 0) {
1607 stbtt_uint8 flags=0,flagcount;
1608 stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0;
1609 stbtt_int32 x,y,cx,cy,sx,sy, scx,scy;
1610 stbtt_uint8 *points;
1611 endPtsOfContours = (data + g + 10);
1612 ins = ttUSHORT(data + g + 10 + numberOfContours * 2);
1613 points = data + g + 10 + numberOfContours * 2 + 2 + ins;
1615 n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2);
1617 m = n + 2*numberOfContours;
1633 for (i=0; i < n; ++i) {
1634 if (flagcount == 0) {
1637 flagcount = *points++;
1640 vertices[off+i].
type = flags;
1645 for (i=0; i < n; ++i) {
1646 flags = vertices[off+i].
type;
1648 stbtt_int16 dx = *points++;
1649 x += (flags & 16) ? dx : -dx;
1651 if (!(flags & 16)) {
1652 x = x + (stbtt_int16) (points[0]*256 + points[1]);
1656 vertices[off+i].
x = (stbtt_int16) x;
1661 for (i=0; i < n; ++i) {
1662 flags = vertices[off+i].
type;
1664 stbtt_int16 dy = *points++;
1665 y += (flags & 32) ? dy : -dy;
1667 if (!(flags & 32)) {
1668 y = y + (stbtt_int16) (points[0]*256 + points[1]);
1672 vertices[off+i].
y = (stbtt_int16) y;
1677 sx = sy = cx = cy = scx = scy = 0;
1678 for (i=0; i < n; ++i) {
1679 flags = vertices[off+i].
type;
1680 x = (stbtt_int16) vertices[off+i].x;
1681 y = (stbtt_int16) vertices[off+i].y;
1683 if (next_move == i) {
1685 num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
1688 start_off = !(flags & 1);
1694 if (!(vertices[off+i+1].type & 1)) {
1696 sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1;
1697 sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1;
1700 sx = (stbtt_int32) vertices[off+i+1].x;
1701 sy = (stbtt_int32) vertices[off+i+1].y;
1708 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vmove,sx,sy,0,0);
1710 next_move = 1 + ttUSHORT(endPtsOfContours+j*2);
1715 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy);
1721 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vcurve, x,y, cx, cy);
1723 stbtt_setvertex(&vertices[num_vertices++],
STBTT_vline, x,y,0,0);
1728 num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
1729 }
else if (numberOfContours == -1) {
1732 stbtt_uint8 *comp = data + g + 10;
1736 stbtt_uint16 flags, gidx;
1737 int comp_num_verts = 0, i;
1739 float mtx[6] = {1,0,0,1,0,0}, m, n;
1741 flags = ttSHORT(comp); comp+=2;
1742 gidx = ttSHORT(comp); comp+=2;
1746 mtx[4] = ttSHORT(comp); comp+=2;
1747 mtx[5] = ttSHORT(comp); comp+=2;
1749 mtx[4] = ttCHAR(comp); comp+=1;
1750 mtx[5] = ttCHAR(comp); comp+=1;
1757 if (flags & (1<<3)) {
1758 mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1759 mtx[1] = mtx[2] = 0;
1760 }
else if (flags & (1<<6)) {
1761 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
1762 mtx[1] = mtx[2] = 0;
1763 mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1764 }
else if (flags & (1<<7)) {
1765 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
1766 mtx[1] = ttSHORT(comp)/16384.0f; comp+=2;
1767 mtx[2] = ttSHORT(comp)/16384.0f; comp+=2;
1768 mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1772 m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]);
1773 n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]);
1777 if (comp_num_verts > 0) {
1779 for (i = 0; i < comp_num_verts; ++i) {
1792 if (vertices) STBTT_free(vertices, info->
userdata);
1793 if (comp_verts) STBTT_free(comp_verts, info->
userdata);
1796 if (num_vertices > 0) STBTT_memcpy(tmp, vertices, num_vertices*
sizeof(
stbtt_vertex));
1797 STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*
sizeof(
stbtt_vertex));
1798 if (vertices) STBTT_free(vertices, info->
userdata);
1800 STBTT_free(comp_verts, info->
userdata);
1801 num_vertices += comp_num_verts;
1804 more = flags & (1<<5);
1806 }
else if (numberOfContours < 0) {
1813 *pvertices = vertices;
1814 return num_vertices;
1821 float first_x, first_y;
1823 stbtt_int32 min_x, max_x, min_y, max_y;
1829#define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0}
1831static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y)
1833 if (x > c->max_x || !c->started) c->max_x = x;
1834 if (y > c->max_y || !c->started) c->max_y = y;
1835 if (x < c->min_x || !c->started) c->min_x = x;
1836 if (y < c->min_y || !c->started) c->min_y = y;
1840static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy, stbtt_int32 cx1, stbtt_int32 cy1)
1843 stbtt__track_vertex(c, x, y);
1845 stbtt__track_vertex(c, cx, cy);
1846 stbtt__track_vertex(c, cx1, cy1);
1849 stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy);
1850 c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1;
1851 c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1;
1856static void stbtt__csctx_close_shape(stbtt__csctx *ctx)
1858 if (ctx->first_x != ctx->x || ctx->first_y != ctx->y)
1859 stbtt__csctx_v(ctx,
STBTT_vline, (
int)ctx->first_x, (
int)ctx->first_y, 0, 0, 0, 0);
1862static void stbtt__csctx_rmove_to(stbtt__csctx *ctx,
float dx,
float dy)
1864 stbtt__csctx_close_shape(ctx);
1865 ctx->first_x = ctx->x = ctx->x + dx;
1866 ctx->first_y = ctx->y = ctx->y + dy;
1867 stbtt__csctx_v(ctx,
STBTT_vmove, (
int)ctx->x, (
int)ctx->y, 0, 0, 0, 0);
1870static void stbtt__csctx_rline_to(stbtt__csctx *ctx,
float dx,
float dy)
1874 stbtt__csctx_v(ctx,
STBTT_vline, (
int)ctx->x, (
int)ctx->y, 0, 0, 0, 0);
1877static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx,
float dx1,
float dy1,
float dx2,
float dy2,
float dx3,
float dy3)
1879 float cx1 = ctx->x + dx1;
1880 float cy1 = ctx->y + dy1;
1881 float cx2 = cx1 + dx2;
1882 float cy2 = cy1 + dy2;
1885 stbtt__csctx_v(ctx,
STBTT_vcubic, (
int)ctx->x, (
int)ctx->y, (
int)cx1, (
int)cy1, (
int)cx2, (
int)cy2);
1890 int count = stbtt__cff_index_count(&idx);
1894 else if (count >= 1240)
1897 if (n < 0 || n >= count)
1898 return stbtt__new_buf(NULL, 0);
1899 return stbtt__cff_index_get(idx, n);
1905 int nranges, start, end, v, fmt, fdselector = -1, i;
1907 stbtt__buf_seek(&fdselect, 0);
1908 fmt = stbtt__buf_get8(&fdselect);
1911 stbtt__buf_skip(&fdselect, glyph_index);
1912 fdselector = stbtt__buf_get8(&fdselect);
1913 }
else if (fmt == 3) {
1914 nranges = stbtt__buf_get16(&fdselect);
1915 start = stbtt__buf_get16(&fdselect);
1916 for (i = 0; i < nranges; i++) {
1917 v = stbtt__buf_get8(&fdselect);
1918 end = stbtt__buf_get16(&fdselect);
1919 if (glyph_index >= start && glyph_index < end) {
1926 if (fdselector == -1) stbtt__new_buf(NULL, 0);
1927 return stbtt__get_subrs(info->
cff, stbtt__cff_index_get(info->
fontdicts, fdselector));
1930static int stbtt__run_charstring(
const stbtt_fontinfo *info,
int glyph_index, stbtt__csctx *c)
1932 int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0;
1933 int has_subrs = 0, clear_stack;
1938#define STBTT__CSERR(s) (0)
1941 b = stbtt__cff_index_get(info->
charstrings, glyph_index);
1945 b0 = stbtt__buf_get8(&b);
1951 maskbits += (sp / 2);
1953 stbtt__buf_skip(&b, (maskbits + 7) / 8);
1960 maskbits += (sp / 2);
1965 if (sp < 2)
return STBTT__CSERR(
"rmoveto stack");
1966 stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]);
1970 if (sp < 1)
return STBTT__CSERR(
"vmoveto stack");
1971 stbtt__csctx_rmove_to(c, 0, s[sp-1]);
1975 if (sp < 1)
return STBTT__CSERR(
"hmoveto stack");
1976 stbtt__csctx_rmove_to(c, s[sp-1], 0);
1980 if (sp < 2)
return STBTT__CSERR(
"rlineto stack");
1981 for (; i + 1 < sp; i += 2)
1982 stbtt__csctx_rline_to(c, s[i], s[i+1]);
1989 if (sp < 1)
return STBTT__CSERR(
"vlineto stack");
1992 if (sp < 1)
return STBTT__CSERR(
"hlineto stack");
1995 stbtt__csctx_rline_to(c, s[i], 0);
1999 stbtt__csctx_rline_to(c, 0, s[i]);
2005 if (sp < 4)
return STBTT__CSERR(
"hvcurveto stack");
2008 if (sp < 4)
return STBTT__CSERR(
"vhcurveto stack");
2010 if (i + 3 >= sp)
break;
2011 stbtt__csctx_rccurve_to(c, 0, s[i], s[i+1], s[i+2], s[i+3], (sp - i == 5) ? s[i + 4] : 0.0f);
2014 if (i + 3 >= sp)
break;
2015 stbtt__csctx_rccurve_to(c, s[i], 0, s[i+1], s[i+2], (sp - i == 5) ? s[i+4] : 0.0f, s[i+3]);
2021 if (sp < 6)
return STBTT__CSERR(
"rcurveline stack");
2022 for (; i + 5 < sp; i += 6)
2023 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2027 if (sp < 8)
return STBTT__CSERR(
"rcurveline stack");
2028 for (; i + 5 < sp - 2; i += 6)
2029 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2030 if (i + 1 >= sp)
return STBTT__CSERR(
"rcurveline stack");
2031 stbtt__csctx_rline_to(c, s[i], s[i+1]);
2035 if (sp < 8)
return STBTT__CSERR(
"rlinecurve stack");
2036 for (; i + 1 < sp - 6; i += 2)
2037 stbtt__csctx_rline_to(c, s[i], s[i+1]);
2038 if (i + 5 >= sp)
return STBTT__CSERR(
"rlinecurve stack");
2039 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2044 if (sp < 4)
return STBTT__CSERR(
"(vv|hh)curveto stack");
2046 if (sp & 1) { f = s[i]; i++; }
2047 for (; i + 3 < sp; i += 4) {
2049 stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0);
2051 stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]);
2059 subrs = stbtt__cid_get_glyph_subrs(info, glyph_index);
2064 if (sp < 1)
return STBTT__CSERR(
"call(g|)subr stack");
2066 if (subr_stack_height >= 10)
return STBTT__CSERR(
"recursion limit");
2067 subr_stack[subr_stack_height++] = b;
2068 b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v);
2069 if (b.
size == 0)
return STBTT__CSERR(
"subr not found");
2075 if (subr_stack_height <= 0)
return STBTT__CSERR(
"return outside subr");
2076 b = subr_stack[--subr_stack_height];
2081 stbtt__csctx_close_shape(c);
2085 float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6;
2087 int b1 = stbtt__buf_get8(&b);
2092 if (sp < 7)
return STBTT__CSERR(
"hflex stack");
2100 stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0);
2101 stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0);
2105 if (sp < 13)
return STBTT__CSERR(
"flex stack");
2119 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
2120 stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
2124 if (sp < 9)
return STBTT__CSERR(
"hflex1 stack");
2134 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0);
2135 stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5));
2139 if (sp < 11)
return STBTT__CSERR(
"flex1 stack");
2151 dx = dx1+dx2+dx3+dx4+dx5;
2152 dy = dy1+dy2+dy3+dy4+dy5;
2153 if (STBTT_fabs(dx) > STBTT_fabs(dy))
2157 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
2158 stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
2162 return STBTT__CSERR(
"unimplemented");
2167 if (b0 != 255 && b0 != 28 && (b0 < 32 || b0 > 254))
2168 return STBTT__CSERR(
"reserved operator");
2172 f = (float)stbtt__buf_get32(&b) / 0x10000;
2174 stbtt__buf_skip(&b, -1);
2175 f = (float)(stbtt_int16)stbtt__cff_int(&b);
2177 if (sp >= 48)
return STBTT__CSERR(
"push stack overflow");
2182 if (clear_stack) sp = 0;
2184 return STBTT__CSERR(
"no endchar");
2192 stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1);
2193 stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0);
2194 if (stbtt__run_charstring(info, glyph_index, &count_ctx)) {
2196 output_ctx.pvertices = *pvertices;
2197 if (stbtt__run_charstring(info, glyph_index, &output_ctx)) {
2198 STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices);
2199 return output_ctx.num_vertices;
2206static int stbtt__GetGlyphInfoT2(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1)
2208 stbtt__csctx c = STBTT__CSCTX_INIT(1);
2209 int r = stbtt__run_charstring(info, glyph_index, &c);
2211 *x0 = r ? c.min_x : 0;
2212 *y0 = r ? c.min_y : 0;
2213 *x1 = r ? c.max_x : 0;
2214 *y1 = r ? c.max_y : 0;
2216 return r ? c.num_vertices : 0;
2222 return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices);
2224 return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices);
2229 stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->
data+info->
hhea + 34);
2230 if (glyph_index < numOfLongHorMetrics) {
2231 if (advanceWidth) *advanceWidth = ttSHORT(info->
data + info->
hmtx + 4*glyph_index);
2232 if (leftSideBearing) *leftSideBearing = ttSHORT(info->
data + info->
hmtx + 4*glyph_index + 2);
2234 if (advanceWidth) *advanceWidth = ttSHORT(info->
data + info->
hmtx + 4*(numOfLongHorMetrics-1));
2235 if (leftSideBearing) *leftSideBearing = ttSHORT(info->
data + info->
hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics));
2241 stbtt_uint8 *data = info->
data + info->
kern;
2242 stbtt_uint32 needle, straw;
2248 if (ttUSHORT(data+2) < 1)
2250 if (ttUSHORT(data+8) != 1)
2254 r = ttUSHORT(data+10) - 1;
2255 needle = glyph1 << 16 | glyph2;
2258 straw = ttULONG(data+18+(m*6));
2261 else if (needle > straw)
2264 return ttSHORT(data+22+(m*6));
2283 if (ascent ) *ascent = ttSHORT(info->
data+info->
hhea + 4);
2284 if (descent) *descent = ttSHORT(info->
data+info->
hhea + 6);
2285 if (lineGap) *lineGap = ttSHORT(info->
data+info->
hhea + 8);
2290 *x0 = ttSHORT(info->
data + info->
head + 36);
2291 *y0 = ttSHORT(info->
data + info->
head + 38);
2292 *x1 = ttSHORT(info->
data + info->
head + 40);
2293 *y1 = ttSHORT(info->
data + info->
head + 42);
2298 int fheight = ttSHORT(info->
data + info->
hhea + 4) - ttSHORT(info->
data + info->
hhea + 6);
2299 return (
float) height / fheight;
2304 int unitsPerEm = ttUSHORT(info->
data + info->
head + 18);
2305 return pixels / unitsPerEm;
2320 int x0=0,y0=0,x1,y1;
2329 if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x);
2330 if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y);
2331 if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x);
2332 if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y);
2343 stbtt_GetGlyphBitmapBoxSubpixel(font,
stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1);
2355typedef struct stbtt__hheap_chunk
2357 struct stbtt__hheap_chunk *next;
2358} stbtt__hheap_chunk;
2360typedef struct stbtt__hheap
2362 struct stbtt__hheap_chunk *head;
2364 int num_remaining_in_head_chunk;
2367static void *stbtt__hheap_alloc(stbtt__hheap *hh,
size_t size,
void *userdata)
2369 if (hh->first_free) {
2370 void *p = hh->first_free;
2371 hh->first_free = * (
void **) p;
2374 if (hh->num_remaining_in_head_chunk == 0) {
2375 int count = (size < 32 ? 2000 : size < 128 ? 800 : 100);
2376 stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(
sizeof(stbtt__hheap_chunk) + size * count, userdata);
2381 hh->num_remaining_in_head_chunk = count;
2383 --hh->num_remaining_in_head_chunk;
2384 return (
char *) (hh->head) + size * hh->num_remaining_in_head_chunk;
2388static void stbtt__hheap_free(stbtt__hheap *hh,
void *p)
2390 *(
void **) p = hh->first_free;
2394static void stbtt__hheap_cleanup(stbtt__hheap *hh,
void *userdata)
2396 stbtt__hheap_chunk *c = hh->head;
2398 stbtt__hheap_chunk *n = c->next;
2399 STBTT_free(c, userdata);
2404typedef struct stbtt__edge {
2410typedef struct stbtt__active_edge
2412 struct stbtt__active_edge *next;
2413 #if STBTT_RASTERIZER_VERSION==1
2417 #elif STBTT_RASTERIZER_VERSION==2
2423 #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
2425} stbtt__active_edge;
2427#if STBTT_RASTERIZER_VERSION == 1
2428#define STBTT_FIXSHIFT 10
2429#define STBTT_FIX (1 << STBTT_FIXSHIFT)
2430#define STBTT_FIXMASK (STBTT_FIX-1)
2432static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e,
int off_x,
float start_point,
void *userdata)
2434 stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh,
sizeof(*z), userdata);
2435 float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
2436 STBTT_assert(z != NULL);
2441 z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy);
2443 z->dx = STBTT_ifloor(STBTT_FIX * dxdy);
2445 z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0));
2446 z->x -= off_x * STBTT_FIX;
2450 z->direction = e->invert ? 1 : -1;
2453#elif STBTT_RASTERIZER_VERSION == 2
2454static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e,
int off_x,
float start_point,
void *userdata)
2456 stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh,
sizeof(*z), userdata);
2457 float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
2458 STBTT_assert(z != NULL);
2462 z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f;
2463 z->fx = e->x0 + dxdy * (start_point - e->y0);
2465 z->direction = e->invert ? 1.0f : -1.0f;
2472#error "Unrecognized value of STBTT_RASTERIZER_VERSION"
2475#if STBTT_RASTERIZER_VERSION == 1
2479static void stbtt__fill_active_edges(
unsigned char *scanline,
int len, stbtt__active_edge *e,
int max_weight)
2487 x0 = e->x; w += e->direction;
2489 int x1 = e->x; w += e->direction;
2492 int i = x0 >> STBTT_FIXSHIFT;
2493 int j = x1 >> STBTT_FIXSHIFT;
2495 if (i < len && j >= 0) {
2498 scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT);
2501 scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT);
2506 scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT);
2510 for (++i; i < j; ++i)
2511 scanline[i] = scanline[i] + (stbtt_uint8) max_weight;
2521static void stbtt__rasterize_sorted_edges(
stbtt__bitmap *result, stbtt__edge *e,
int n,
int vsubsample,
int off_x,
int off_y,
void *userdata)
2523 stbtt__hheap hh = { 0, 0, 0 };
2524 stbtt__active_edge *active = NULL;
2526 int max_weight = (255 / vsubsample);
2528 unsigned char scanline_data[512], *scanline;
2530 if (result->
w > 512)
2531 scanline = (
unsigned char *) STBTT_malloc(result->
w, userdata);
2533 scanline = scanline_data;
2535 y = off_y * vsubsample;
2536 e[n].y0 = (off_y + result->
h) * (
float) vsubsample + 1;
2538 while (j < result->h) {
2539 STBTT_memset(scanline, 0, result->
w);
2540 for (s=0; s < vsubsample; ++s) {
2542 float scan_y = y + 0.5f;
2543 stbtt__active_edge **step = &active;
2548 stbtt__active_edge * z = *step;
2549 if (z->ey <= scan_y) {
2551 STBTT_assert(z->direction);
2553 stbtt__hheap_free(&hh, z);
2556 step = &((*step)->next);
2564 while (*step && (*step)->next) {
2565 if ((*step)->x > (*step)->next->x) {
2566 stbtt__active_edge *t = *step;
2567 stbtt__active_edge *q = t->next;
2574 step = &(*step)->next;
2576 if (!changed)
break;
2580 while (e->y0 <= scan_y) {
2581 if (e->y1 > scan_y) {
2582 stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata);
2587 else if (z->x < active->x) {
2593 stbtt__active_edge *p = active;
2594 while (p->next && p->next->x < z->x)
2607 stbtt__fill_active_edges(scanline, result->
w, active, max_weight);
2611 STBTT_memcpy(result->
pixels + j * result->
stride, scanline, result->
w);
2615 stbtt__hheap_cleanup(&hh, userdata);
2617 if (scanline != scanline_data)
2618 STBTT_free(scanline, userdata);
2621#elif STBTT_RASTERIZER_VERSION == 2
2625static void stbtt__handle_clipped_edge(
float *scanline,
int x, stbtt__active_edge *e,
float x0,
float y0,
float x1,
float y1)
2627 if (y0 == y1)
return;
2628 STBTT_assert(y0 < y1);
2629 STBTT_assert(e->sy <= e->ey);
2630 if (y0 > e->ey)
return;
2631 if (y1 < e->sy)
return;
2633 x0 += (x1-x0) * (e->sy - y0) / (y1-y0);
2637 x1 += (x1-x0) * (e->ey - y1) / (y1-y0);
2642 STBTT_assert(x1 <= x+1);
2644 STBTT_assert(x1 >= x);
2646 STBTT_assert(x1 <= x);
2648 STBTT_assert(x1 >= x+1);
2650 STBTT_assert(x1 >= x && x1 <= x+1);
2652 if (x0 <= x && x1 <= x)
2653 scanline[x] += e->direction * (y1-y0);
2654 else if (x0 >= x+1 && x1 >= x+1)
2657 STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1);
2658 scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2);
2662static void stbtt__fill_active_edges_new(
float *scanline,
float *scanline_fill,
int len, stbtt__active_edge *e,
float y_top)
2664 float y_bottom = y_top+1;
2670 STBTT_assert(e->ey >= y_top);
2676 stbtt__handle_clipped_edge(scanline,(
int) x0,e, x0,y_top, x0,y_bottom);
2677 stbtt__handle_clipped_edge(scanline_fill-1,(
int) x0+1,e, x0,y_top, x0,y_bottom);
2679 stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom);
2686 float x_top, x_bottom;
2689 STBTT_assert(e->sy <= y_bottom && e->ey >= y_top);
2694 if (e->sy > y_top) {
2695 x_top = x0 + dx * (e->sy - y_top);
2701 if (e->ey < y_bottom) {
2702 x_bottom = x0 + dx * (e->ey - y_top);
2709 if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) {
2712 if ((
int) x_top == (int) x_bottom) {
2715 int x = (int) x_top;
2717 STBTT_assert(x >= 0 && x < len);
2718 scanline[x] += e->direction * (1-((x_top - x) + (x_bottom-x))/2) * height;
2719 scanline_fill[x] += e->direction * height;
2722 float y_crossing, step, sign, area;
2724 if (x_top > x_bottom) {
2727 sy0 = y_bottom - (sy0 - y_top);
2728 sy1 = y_bottom - (sy1 - y_top);
2729 t = sy0, sy0 = sy1, sy1 = t;
2730 t = x_bottom, x_bottom = x_top, x_top = t;
2733 t = x0, x0 = xb, xb = t;
2737 x2 = (int) x_bottom;
2739 y_crossing = (x1+1 - x0) * dy + y_top;
2741 sign = e->direction;
2743 area = sign * (y_crossing-sy0);
2745 scanline[x1] += area * (1-((x_top - x1)+(x1+1-x1))/2);
2748 for (x = x1+1; x < x2; ++x) {
2749 scanline[x] += area + step/2;
2752 y_crossing += dy * (x2 - (x1+1));
2754 STBTT_assert(STBTT_fabs(area) <= 1.01f);
2756 scanline[x2] += area + sign * (1-((x2-x2)+(x_bottom-x2))/2) * (sy1-y_crossing);
2758 scanline_fill[x2] += sign * (sy1-sy0);
2766 for (x=0; x < len; ++x) {
2782 float x1 = (float) (x);
2783 float x2 = (float) (x+1);
2785 float y3 = y_bottom;
2790 float y1 = (x - x0) / dx + y_top;
2791 float y2 = (x+1 - x0) / dx + y_top;
2793 if (x0 < x1 && x3 > x2) {
2794 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
2795 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2);
2796 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
2797 }
else if (x3 < x1 && x0 > x2) {
2798 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
2799 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1);
2800 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
2801 }
else if (x0 < x1 && x3 > x1) {
2802 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
2803 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
2804 }
else if (x3 < x1 && x0 > x1) {
2805 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
2806 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
2807 }
else if (x0 < x2 && x3 > x2) {
2808 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
2809 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
2810 }
else if (x3 < x2 && x0 > x2) {
2811 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
2812 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
2814 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3);
2824static void stbtt__rasterize_sorted_edges(
stbtt__bitmap *result, stbtt__edge *e,
int n,
int vsubsample,
int off_x,
int off_y,
void *userdata)
2826 stbtt__hheap hh = { 0, 0, 0 };
2827 stbtt__active_edge *active = NULL;
2829 float scanline_data[129], *scanline, *scanline2;
2831 STBTT__NOTUSED(vsubsample);
2834 scanline = (
float *) STBTT_malloc((result->
w*2+1) *
sizeof(float), userdata);
2836 scanline = scanline_data;
2838 scanline2 = scanline + result->
w;
2841 e[n].y0 = (float) (off_y + result->
h) + 1;
2843 while (j < result->h) {
2845 float scan_y_top = y + 0.0f;
2846 float scan_y_bottom = y + 1.0f;
2847 stbtt__active_edge **step = &active;
2849 STBTT_memset(scanline , 0, result->
w*
sizeof(scanline[0]));
2850 STBTT_memset(scanline2, 0, (result->
w+1)*
sizeof(scanline[0]));
2855 stbtt__active_edge * z = *step;
2856 if (z->ey <= scan_y_top) {
2858 STBTT_assert(z->direction);
2860 stbtt__hheap_free(&hh, z);
2862 step = &((*step)->next);
2867 while (e->y0 <= scan_y_bottom) {
2868 if (e->y0 != e->y1) {
2869 stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata);
2871 STBTT_assert(z->ey >= scan_y_top);
2882 stbtt__fill_active_edges_new(scanline, scanline2+1, result->
w, active, scan_y_top);
2886 for (i=0; i < result->
w; ++i) {
2889 sum += scanline2[i];
2890 k = scanline[i] + sum;
2891 k = (float) STBTT_fabs(k)*255 + 0.5f;
2893 if (m > 255) m = 255;
2894 result->
pixels[j*result->
stride + i] = (
unsigned char) m;
2900 stbtt__active_edge *z = *step;
2902 step = &((*step)->next);
2909 stbtt__hheap_cleanup(&hh, userdata);
2911 if (scanline != scanline_data)
2912 STBTT_free(scanline, userdata);
2915#error "Unrecognized value of STBTT_RASTERIZER_VERSION"
2918#define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0)
2920static void stbtt__sort_edges_ins_sort(stbtt__edge *p,
int n)
2923 for (i=1; i < n; ++i) {
2924 stbtt__edge t = p[i], *a = &t;
2927 stbtt__edge *b = &p[j-1];
2928 int c = STBTT__COMPARE(a,b);
2938static void stbtt__sort_edges_quicksort(stbtt__edge *p,
int n)
2943 int c01,c12,c,m,i,j;
2947 c01 = STBTT__COMPARE(&p[0],&p[m]);
2948 c12 = STBTT__COMPARE(&p[m],&p[n-1]);
2953 c = STBTT__COMPARE(&p[0],&p[n-1]);
2956 z = (c == c12) ? 0 : n-1;
2974 if (!STBTT__COMPARE(&p[i], &p[0]))
break;
2977 if (!STBTT__COMPARE(&p[0], &p[j]))
break;
2990 stbtt__sort_edges_quicksort(p,j);
2994 stbtt__sort_edges_quicksort(p+i, n-i);
3000static void stbtt__sort_edges(stbtt__edge *p,
int n)
3002 stbtt__sort_edges_quicksort(p, n);
3003 stbtt__sort_edges_ins_sort(p, n);
3011static void stbtt__rasterize(
stbtt__bitmap *result, stbtt__point *pts,
int *wcount,
int windings,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int off_x,
int off_y,
int invert,
void *userdata)
3013 float y_scale_inv = invert ? -scale_y : scale_y;
3016#if STBTT_RASTERIZER_VERSION == 1
3017 int vsubsample = result->
h < 8 ? 15 : 5;
3018#elif STBTT_RASTERIZER_VERSION == 2
3021 #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
3027 for (i=0; i < windings; ++i)
3030 e = (stbtt__edge *) STBTT_malloc(
sizeof(*e) * (n+1), userdata);
3035 for (i=0; i < windings; ++i) {
3036 stbtt__point *p = pts + m;
3039 for (k=0; k < wcount[i]; j=k++) {
3042 if (p[j].y == p[k].y)
3046 if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) {
3050 e[n].x0 = p[a].x * scale_x + shift_x;
3051 e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample;
3052 e[n].x1 = p[b].x * scale_x + shift_x;
3053 e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample;
3060 stbtt__sort_edges(e, n);
3063 stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata);
3065 STBTT_free(e, userdata);
3068static void stbtt__add_point(stbtt__point *points,
int n,
float x,
float y)
3070 if (!points)
return;
3076static int stbtt__tesselate_curve(stbtt__point *points,
int *num_points,
float x0,
float y0,
float x1,
float y1,
float x2,
float y2,
float objspace_flatness_squared,
int n)
3079 float mx = (x0 + 2*x1 + x2)/4;
3080 float my = (y0 + 2*y1 + y2)/4;
3082 float dx = (x0+x2)/2 - mx;
3083 float dy = (y0+y2)/2 - my;
3086 if (dx*dx+dy*dy > objspace_flatness_squared) {
3087 stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1);
3088 stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1);
3090 stbtt__add_point(points, *num_points,x2,y2);
3091 *num_points = *num_points+1;
3096static void stbtt__tesselate_cubic(stbtt__point *points,
int *num_points,
float x0,
float y0,
float x1,
float y1,
float x2,
float y2,
float x3,
float y3,
float objspace_flatness_squared,
int n)
3107 float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2));
3108 float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy);
3109 float flatness_squared = longlen*longlen-shortlen*shortlen;
3114 if (flatness_squared > objspace_flatness_squared) {
3115 float x01 = (x0+x1)/2;
3116 float y01 = (y0+y1)/2;
3117 float x12 = (x1+x2)/2;
3118 float y12 = (y1+y2)/2;
3119 float x23 = (x2+x3)/2;
3120 float y23 = (y2+y3)/2;
3122 float xa = (x01+x12)/2;
3123 float ya = (y01+y12)/2;
3124 float xb = (x12+x23)/2;
3125 float yb = (y12+y23)/2;
3127 float mx = (xa+xb)/2;
3128 float my = (ya+yb)/2;
3130 stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1);
3131 stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1);
3133 stbtt__add_point(points, *num_points,x3,y3);
3134 *num_points = *num_points+1;
3139static stbtt__point *stbtt_FlattenCurves(
stbtt_vertex *vertices,
int num_verts,
float objspace_flatness,
int **contour_lengths,
int *num_contours,
void *userdata)
3141 stbtt__point *points=0;
3144 float objspace_flatness_squared = objspace_flatness * objspace_flatness;
3145 int i,n=0,start=0, pass;
3148 for (i=0; i < num_verts; ++i)
3153 if (n == 0)
return 0;
3155 *contour_lengths = (
int *) STBTT_malloc(
sizeof(**contour_lengths) * n, userdata);
3157 if (*contour_lengths == 0) {
3163 for (pass=0; pass < 2; ++pass) {
3166 points = (stbtt__point *) STBTT_malloc(num_points *
sizeof(points[0]), userdata);
3167 if (points == NULL)
goto error;
3171 for (i=0; i < num_verts; ++i) {
3172 switch (vertices[i].type) {
3176 (*contour_lengths)[n] = num_points - start;
3180 x = vertices[i].
x, y = vertices[i].
y;
3181 stbtt__add_point(points, num_points++, x,y);
3184 x = vertices[i].
x, y = vertices[i].
y;
3185 stbtt__add_point(points, num_points++, x, y);
3188 stbtt__tesselate_curve(points, &num_points, x,y,
3189 vertices[i].cx, vertices[i].cy,
3190 vertices[i].x, vertices[i].y,
3191 objspace_flatness_squared, 0);
3192 x = vertices[i].
x, y = vertices[i].
y;
3195 stbtt__tesselate_cubic(points, &num_points, x,y,
3196 vertices[i].cx, vertices[i].cy,
3197 vertices[i].cx1, vertices[i].cy1,
3198 vertices[i].x, vertices[i].y,
3199 objspace_flatness_squared, 0);
3200 x = vertices[i].
x, y = vertices[i].
y;
3204 (*contour_lengths)[n] = num_points - start;
3209 STBTT_free(points, userdata);
3210 STBTT_free(*contour_lengths, userdata);
3211 *contour_lengths = 0;
3216STBTT_DEF void stbtt_Rasterize(
stbtt__bitmap *result,
float flatness_in_pixels,
stbtt_vertex *vertices,
int num_verts,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int x_off,
int y_off,
int invert,
void *userdata)
3218 float scale = scale_x > scale_y ? scale_y : scale_x;
3219 int winding_count, *winding_lengths;
3220 stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata);
3222 stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata);
3223 STBTT_free(winding_lengths, userdata);
3224 STBTT_free(windings, userdata);
3230 STBTT_free(bitmap, userdata);
3235 int ix0,iy0,ix1,iy1;
3240 if (scale_x == 0) scale_x = scale_y;
3243 STBTT_free(vertices, info->
userdata);
3252 gbm.
w = (ix1 - ix0);
3253 gbm.
h = (iy1 - iy0);
3256 if (width ) *width = gbm.
w;
3257 if (height) *height = gbm.
h;
3258 if (xoff ) *xoff = ix0;
3259 if (yoff ) *yoff = iy0;
3261 if (gbm.
w && gbm.
h) {
3262 gbm.
pixels = (
unsigned char *) STBTT_malloc(gbm.
w * gbm.
h, info->
userdata);
3266 stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->
userdata);
3269 STBTT_free(vertices, info->
userdata);
3292 stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->
userdata);
3294 STBTT_free(vertices, info->
userdata);
3304 return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y,
stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff);
3309 stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y,
stbtt_FindGlyphIndex(info,codepoint));
3328static int stbtt_BakeFontBitmap_internal(
unsigned char *data,
int offset,
3330 unsigned char *pixels,
int pw,
int ph,
3331 int first_char,
int num_chars,
3335 int x,y,bottom_y, i;
3340 STBTT_memset(pixels, 0, pw*ph);
3346 for (i=0; i < num_chars; ++i) {
3347 int advance, lsb, x0,y0,x1,y1,gw,gh;
3353 if (x + gw + 1 >= pw)
3354 y = bottom_y, x = 1;
3355 if (y + gh + 1 >= ph)
3357 STBTT_assert(x+gw < pw);
3358 STBTT_assert(y+gh < ph);
3360 chardata[i].
x0 = (stbtt_int16) x;
3361 chardata[i].
y0 = (stbtt_int16) y;
3362 chardata[i].
x1 = (stbtt_int16) (x + gw);
3363 chardata[i].
y1 = (stbtt_int16) (y + gh);
3364 chardata[i].
xadvance = scale * advance;
3365 chardata[i].
xoff = (float) x0;
3366 chardata[i].
yoff = (float) y0;
3368 if (y+gh+1 > bottom_y)
3376 float d3d_bias = opengl_fillrule ? 0 : -0.5f;
3377 float ipw = 1.0f / pw, iph = 1.0f / ph;
3379 int round_x = STBTT_ifloor((*xpos + b->
xoff) + 0.5f);
3380 int round_y = STBTT_ifloor((*ypos + b->
yoff) + 0.5f);
3382 q->
x0 = round_x + d3d_bias;
3383 q->
y0 = round_y + d3d_bias;
3384 q->
x1 = round_x + b->
x1 - b->
x0 + d3d_bias;
3385 q->
y1 = round_y + b->
y1 - b->
y0 + d3d_bias;
3387 q->
s0 = b->
x0 * ipw;
3388 q->
t0 = b->
y0 * iph;
3389 q->
s1 = b->
x1 * ipw;
3390 q->
t1 = b->
y1 * iph;
3400#ifndef STB_RECT_PACK_VERSION
3402typedef int stbrp_coord;
3429 int id,w,h,was_packed;
3432static void stbrp_init_target(stbrp_context *con,
int pw,
int ph, stbrp_node *nodes,
int num_nodes)
3439 STBTT__NOTUSED(nodes);
3440 STBTT__NOTUSED(num_nodes);
3443static void stbrp_pack_rects(stbrp_context *con,
stbrp_rect *rects,
int num_rects)
3446 for (i=0; i < num_rects; ++i) {
3447 if (con->x + rects[i].w > con->width) {
3449 con->y = con->bottom_y;
3451 if (con->y + rects[i].h > con->height)
3453 rects[i].x = con->x;
3454 rects[i].y = con->y;
3455 rects[i].was_packed = 1;
3456 con->x += rects[i].w;
3457 if (con->y + rects[i].h > con->bottom_y)
3458 con->bottom_y = con->y + rects[i].h;
3460 for ( ; i < num_rects; ++i)
3461 rects[i].was_packed = 0;
3474 stbrp_context *context = (stbrp_context *) STBTT_malloc(
sizeof(*context) ,alloc_context);
3475 int num_nodes = pw - padding;
3476 stbrp_node *nodes = (stbrp_node *) STBTT_malloc(
sizeof(*nodes ) * num_nodes,alloc_context);
3478 if (context == NULL || nodes == NULL) {
3479 if (context != NULL) STBTT_free(context, alloc_context);
3480 if (nodes != NULL) STBTT_free(nodes , alloc_context);
3495 stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes);
3498 STBTT_memset(pixels, 0, pw*ph);
3511 STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE);
3512 STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE);
3513 if (h_oversample <= STBTT_MAX_OVERSAMPLE)
3515 if (v_oversample <= STBTT_MAX_OVERSAMPLE)
3519#define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1)
3521static void stbtt__h_prefilter(
unsigned char *pixels,
int w,
int h,
int stride_in_bytes,
unsigned int kernel_width)
3523 unsigned char buffer[STBTT_MAX_OVERSAMPLE];
3524 int safe_w = w - kernel_width;
3526 STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE);
3527 for (j=0; j < h; ++j) {
3530 STBTT_memset(buffer, 0, kernel_width);
3535 switch (kernel_width) {
3537 for (i=0; i <= safe_w; ++i) {
3538 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
3539 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
3540 pixels[i] = (
unsigned char) (total / 2);
3544 for (i=0; i <= safe_w; ++i) {
3545 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
3546 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
3547 pixels[i] = (
unsigned char) (total / 3);
3551 for (i=0; i <= safe_w; ++i) {
3552 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
3553 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
3554 pixels[i] = (
unsigned char) (total / 4);
3558 for (i=0; i <= safe_w; ++i) {
3559 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
3560 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
3561 pixels[i] = (
unsigned char) (total / 5);
3565 for (i=0; i <= safe_w; ++i) {
3566 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
3567 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
3568 pixels[i] = (
unsigned char) (total / kernel_width);
3573 for (; i < w; ++i) {
3574 STBTT_assert(pixels[i] == 0);
3575 total -= buffer[i & STBTT__OVER_MASK];
3576 pixels[i] = (
unsigned char) (total / kernel_width);
3579 pixels += stride_in_bytes;
3583static void stbtt__v_prefilter(
unsigned char *pixels,
int w,
int h,
int stride_in_bytes,
unsigned int kernel_width)
3585 unsigned char buffer[STBTT_MAX_OVERSAMPLE];
3586 int safe_h = h - kernel_width;
3588 STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE);
3589 for (j=0; j < w; ++j) {
3592 STBTT_memset(buffer, 0, kernel_width);
3597 switch (kernel_width) {
3599 for (i=0; i <= safe_h; ++i) {
3600 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
3601 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
3602 pixels[i*stride_in_bytes] = (
unsigned char) (total / 2);
3606 for (i=0; i <= safe_h; ++i) {
3607 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
3608 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
3609 pixels[i*stride_in_bytes] = (
unsigned char) (total / 3);
3613 for (i=0; i <= safe_h; ++i) {
3614 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
3615 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
3616 pixels[i*stride_in_bytes] = (
unsigned char) (total / 4);
3620 for (i=0; i <= safe_h; ++i) {
3621 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
3622 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
3623 pixels[i*stride_in_bytes] = (
unsigned char) (total / 5);
3627 for (i=0; i <= safe_h; ++i) {
3628 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
3629 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
3630 pixels[i*stride_in_bytes] = (
unsigned char) (total / kernel_width);
3635 for (; i < h; ++i) {
3636 STBTT_assert(pixels[i*stride_in_bytes] == 0);
3637 total -= buffer[i & STBTT__OVER_MASK];
3638 pixels[i*stride_in_bytes] = (
unsigned char) (total / kernel_width);
3645static float stbtt__oversample_shift(
int oversample)
3654 return (
float)-(oversample - 1) / (2.0f * (
float)oversample);
3663 for (i=0; i < num_ranges; ++i) {
3668 for (j=0; j < ranges[i].
num_chars; ++j) {
3686STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int prefilter_x,
int prefilter_y,
float *sub_x,
float *sub_y,
int glyph)
3690 out_w - (prefilter_x - 1),
3691 out_h - (prefilter_y - 1),
3699 if (prefilter_x > 1)
3700 stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x);
3702 if (prefilter_y > 1)
3703 stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y);
3705 *sub_x = stbtt__oversample_shift(prefilter_x);
3706 *sub_y = stbtt__oversample_shift(prefilter_y);
3712 int i,j,k, return_value = 1;
3719 for (i=0; i < num_ranges; ++i) {
3722 float recip_h,recip_v,sub_x,sub_y;
3729 for (j=0; j < ranges[i].
num_chars; ++j) {
3731 if (r->was_packed) {
3733 int advance, lsb, x0,y0,x1,y1;
3736 stbrp_coord pad = (stbrp_coord) spc->
padding;
3768 bc->x0 = (stbtt_int16) r->x;
3769 bc->y0 = (stbtt_int16) r->y;
3770 bc->x1 = (stbtt_int16) (r->x + r->w);
3771 bc->y1 = (stbtt_int16) (r->y + r->h);
3772 bc->xadvance = scale * advance;
3773 bc->xoff = (float) x0 * recip_h + sub_x;
3774 bc->yoff = (float) y0 * recip_v + sub_y;
3775 bc->xoff2 = (x0 + r->w) * recip_h + sub_x;
3776 bc->yoff2 = (y0 + r->h) * recip_v + sub_y;
3789 return return_value;
3794 stbrp_pack_rects((stbrp_context *) spc->
pack_info, rects, num_rects);
3800 int i,j,n, return_value = 1;
3805 for (i=0; i < num_ranges; ++i)
3807 ranges[i].chardata_for_range[j].x0 =
3808 ranges[i].chardata_for_range[j].y0 =
3809 ranges[i].chardata_for_range[j].x1 =
3810 ranges[i].chardata_for_range[j].y1 = 0;
3813 for (i=0; i < num_ranges; ++i)
3814 n += ranges[i].num_chars;
3830 return return_value;
3834 int first_unicode_codepoint_in_range,
int num_chars_in_range,
stbtt_packedchar *chardata_for_range)
3847 float ipw = 1.0f / pw, iph = 1.0f / ph;
3850 if (align_to_integer) {
3851 float x = (float) STBTT_ifloor((*xpos + b->
xoff) + 0.5f);
3852 float y = (float) STBTT_ifloor((*ypos + b->
yoff) + 0.5f);
3864 q->
s0 = b->
x0 * ipw;
3865 q->
t0 = b->
y0 * iph;
3866 q->
s1 = b->
x1 * ipw;
3867 q->
t1 = b->
y1 * iph;
3877#define STBTT_min(a,b) ((a) < (b) ? (a) : (b))
3878#define STBTT_max(a,b) ((a) < (b) ? (b) : (a))
3880static int stbtt__ray_intersect_bezier(
float orig[2],
float ray[2],
float q0[2],
float q1[2],
float q2[2],
float hits[2][2])
3882 float q0perp = q0[1]*ray[0] - q0[0]*ray[1];
3883 float q1perp = q1[1]*ray[0] - q1[0]*ray[1];
3884 float q2perp = q2[1]*ray[0] - q2[0]*ray[1];
3885 float roperp = orig[1]*ray[0] - orig[0]*ray[1];
3887 float a = q0perp - 2*q1perp + q2perp;
3888 float b = q1perp - q0perp;
3889 float c = q0perp - roperp;
3891 float s0 = 0., s1 = 0.;
3895 float discr = b*b - a*c;
3897 float rcpna = -1 / a;
3898 float d = (float) sqrt(discr);
3901 if (s0 >= 0.0 && s0 <= 1.0)
3903 if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) {
3904 if (num_s == 0) s0 = s1;
3912 if (s0 >= 0.0 && s0 <= 1.0)
3919 float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]);
3920 float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2;
3922 float q0d = q0[0]*rayn_x + q0[1]*rayn_y;
3923 float q1d = q1[0]*rayn_x + q1[1]*rayn_y;
3924 float q2d = q2[0]*rayn_x + q2[1]*rayn_y;
3925 float rod = orig[0]*rayn_x + orig[1]*rayn_y;
3927 float q10d = q1d - q0d;
3928 float q20d = q2d - q0d;
3929 float q0rd = q0d - rod;
3931 hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d;
3932 hits[0][1] = a*s0+b;
3935 hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d;
3936 hits[1][1] = a*s1+b;
3944static int equal(
float *a,
float *b)
3946 return (a[0] == b[0] && a[1] == b[1]);
3949static int stbtt__compute_crossings_x(
float x,
float y,
int nverts,
stbtt_vertex *verts)
3952 float orig[2], ray[2] = { 1, 0 };
3960 y_frac = (float) fmod(y, 1.0f);
3963 else if (y_frac > 0.99f)
3968 for (i=0; i < nverts; ++i) {
3970 int x0 = (int) verts[i-1].x, y0 = (
int) verts[i-1].
y;
3971 int x1 = (int) verts[i ].x, y1 = (
int) verts[i ].
y;
3972 if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
3973 float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
3975 winding += (y0 < y1) ? 1 : -1;
3979 int x0 = (int) verts[i-1].x , y0 = (
int) verts[i-1].
y ;
3980 int x1 = (int) verts[i ].cx, y1 = (
int) verts[i ].
cy;
3981 int x2 = (int) verts[i ].x , y2 = (
int) verts[i ].
y ;
3982 int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2));
3983 int by = STBTT_max(y0,STBTT_max(y1,y2));
3984 if (y > ay && y < by && x > ax) {
3985 float q0[2],q1[2],q2[2];
3993 if (equal(q0,q1) || equal(q1,q2)) {
3994 x0 = (int)verts[i-1].x;
3995 y0 = (int)verts[i-1].y;
3996 x1 = (int)verts[i ].x;
3997 y1 = (int)verts[i ].y;
3998 if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
3999 float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
4001 winding += (y0 < y1) ? 1 : -1;
4004 int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits);
4007 winding += (hits[0][1] < 0 ? -1 : 1);
4010 winding += (hits[1][1] < 0 ? -1 : 1);
4018static float stbtt__cuberoot(
float x )
4021 return -(float) STBTT_pow(-x,1.0f/3.0f);
4023 return (
float) STBTT_pow( x,1.0f/3.0f);
4027static int stbtt__solve_cubic(
float a,
float b,
float c,
float* r)
4030 float p = b - a*a / 3;
4031 float q = a * (2*a*a - 9*b) / 27 + c;
4033 float d = q*q + 4*p3 / 27;
4035 float z = (float) STBTT_sqrt(d);
4036 float u = (-q + z) / 2;
4037 float v = (-q - z) / 2;
4038 u = stbtt__cuberoot(u);
4039 v = stbtt__cuberoot(v);
4043 float u = (float) STBTT_sqrt(-p/3);
4044 float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3;
4045 float m = (float) STBTT_cos(v);
4046 float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f;
4047 r[0] = s + u * 2 * m;
4048 r[1] = s - u * (m + n);
4049 r[2] = s - u * (m - n);
4058STBTT_DEF unsigned char *
stbtt_GetGlyphSDF(
const stbtt_fontinfo *info,
float scale,
int glyph,
int padding,
unsigned char onedge_value,
float pixel_dist_scale,
int *width,
int *height,
int *xoff,
int *yoff)
4060 float scale_x = scale, scale_y = scale;
4061 int ix0,iy0,ix1,iy1;
4063 unsigned char *data;
4066 if (scale_x == 0) scale_x = scale_y;
4068 if (scale_x == 0)
return NULL;
4075 if (ix0 == ix1 || iy0 == iy1)
4086 if (width ) *width = w;
4087 if (height) *height = h;
4088 if (xoff ) *xoff = ix0;
4089 if (yoff ) *yoff = iy0;
4099 data = (
unsigned char *) STBTT_malloc(w * h, info->
userdata);
4100 precompute = (
float *) STBTT_malloc(num_verts *
sizeof(
float), info->
userdata);
4102 for (i=0,j=num_verts-1; i < num_verts; j=i++) {
4104 float x0 = verts[i].
x*scale_x, y0 = verts[i].
y*scale_y;
4105 float x1 = verts[j].
x*scale_x, y1 = verts[j].
y*scale_y;
4106 float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0));
4107 precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist;
4109 float x2 = verts[j].
x *scale_x, y2 = verts[j].
y *scale_y;
4110 float x1 = verts[i].
cx*scale_x, y1 = verts[i].
cy*scale_y;
4111 float x0 = verts[i].
x *scale_x, y0 = verts[i].
y *scale_y;
4112 float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
4113 float len2 = bx*bx + by*by;
4115 precompute[i] = 1.0f / (bx*bx + by*by);
4117 precompute[i] = 0.0f;
4119 precompute[i] = 0.0f;
4122 for (y=iy0; y < iy1; ++y) {
4123 for (x=ix0; x < ix1; ++x) {
4125 float min_dist = 999999.0f;
4126 float sx = (float) x + 0.5f;
4127 float sy = (float) y + 0.5f;
4128 float x_gspace = (sx / scale_x);
4129 float y_gspace = (sy / scale_y);
4131 int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts);
4133 for (i=0; i < num_verts; ++i) {
4134 float x0 = verts[i].
x*scale_x, y0 = verts[i].
y*scale_y;
4137 float dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy);
4138 if (dist2 < min_dist*min_dist)
4139 min_dist = (float) STBTT_sqrt(dist2);
4142 float x1 = verts[i-1].
x*scale_x, y1 = verts[i-1].
y*scale_y;
4147 float dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i];
4148 STBTT_assert(i != 0);
4149 if (dist < min_dist) {
4153 float dx = x1-x0, dy = y1-y0;
4154 float px = x0-sx, py = y0-sy;
4157 float t = -(px*dx + py*dy) / (dx*dx + dy*dy);
4158 if (t >= 0.0f && t <= 1.0f)
4162 float x2 = verts[i-1].
x *scale_x, y2 = verts[i-1].
y *scale_y;
4163 float x1 = verts[i ].
cx*scale_x, y1 = verts[i ].
cy*scale_y;
4164 float box_x0 = STBTT_min(STBTT_min(x0,x1),x2);
4165 float box_y0 = STBTT_min(STBTT_min(y0,y1),y2);
4166 float box_x1 = STBTT_max(STBTT_max(x0,x1),x2);
4167 float box_y1 = STBTT_max(STBTT_max(y0,y1),y2);
4169 if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) {
4171 float ax = x1-x0, ay = y1-y0;
4172 float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
4173 float mx = x0 - sx, my = y0 - sy;
4174 float res[3],px,py,t,it;
4175 float a_inv = precompute[i];
4177 float a = 3*(ax*bx + ay*by);
4178 float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by);
4179 float c = mx*ax+my*ay;
4185 float discriminant = b*b - 4*a*c;
4186 if (discriminant < 0)
4189 float root = (float) STBTT_sqrt(discriminant);
4190 res[0] = (-b - root)/(2*a);
4191 res[1] = (-b + root)/(2*a);
4196 float b = 3*(ax*bx + ay*by) * a_inv;
4197 float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv;
4198 float d = (mx*ax+my*ay) * a_inv;
4199 num = stbtt__solve_cubic(b, c, d, res);
4201 if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) {
4202 t = res[0], it = 1.0f - t;
4203 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4204 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4205 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4206 if (dist2 < min_dist * min_dist)
4207 min_dist = (float) STBTT_sqrt(dist2);
4209 if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) {
4210 t = res[1], it = 1.0f - t;
4211 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4212 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4213 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4214 if (dist2 < min_dist * min_dist)
4215 min_dist = (float) STBTT_sqrt(dist2);
4217 if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) {
4218 t = res[2], it = 1.0f - t;
4219 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4220 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4221 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4222 if (dist2 < min_dist * min_dist)
4223 min_dist = (float) STBTT_sqrt(dist2);
4229 min_dist = -min_dist;
4230 val = onedge_value + pixel_dist_scale * min_dist;
4235 data[(y-iy0)*w+(x-ix0)] = (
unsigned char) val;
4238 STBTT_free(precompute, info->
userdata);
4246 return stbtt_GetGlyphSDF(info, scale,
stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff);
4251 STBTT_free(bitmap, userdata);
4260static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2)
4266 stbtt_uint16 ch = s2[0]*256 + s2[1];
4268 if (i >= len1)
return -1;
4269 if (s1[i++] != ch)
return -1;
4270 }
else if (ch < 0x800) {
4271 if (i+1 >= len1)
return -1;
4272 if (s1[i++] != 0xc0 + (ch >> 6))
return -1;
4273 if (s1[i++] != 0x80 + (ch & 0x3f))
return -1;
4274 }
else if (ch >= 0xd800 && ch < 0xdc00) {
4276 stbtt_uint16 ch2 = s2[2]*256 + s2[3];
4277 if (i+3 >= len1)
return -1;
4278 c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000;
4279 if (s1[i++] != 0xf0 + (c >> 18))
return -1;
4280 if (s1[i++] != 0x80 + ((c >> 12) & 0x3f))
return -1;
4281 if (s1[i++] != 0x80 + ((c >> 6) & 0x3f))
return -1;
4282 if (s1[i++] != 0x80 + ((c ) & 0x3f))
return -1;
4285 }
else if (ch >= 0xdc00 && ch < 0xe000) {
4288 if (i+2 >= len1)
return -1;
4289 if (s1[i++] != 0xe0 + (ch >> 12))
return -1;
4290 if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f))
return -1;
4291 if (s1[i++] != 0x80 + ((ch ) & 0x3f))
return -1;
4299static int stbtt_CompareUTF8toUTF16_bigendian_internal(
char *s1,
int len1,
char *s2,
int len2)
4301 return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2);
4308 stbtt_int32 i,count,stringOffset;
4309 stbtt_uint8 *fc = font->
data;
4311 stbtt_uint32 nm = stbtt__find_table(fc, offset,
"name");
4312 if (!nm)
return NULL;
4314 count = ttUSHORT(fc+nm+2);
4315 stringOffset = nm + ttUSHORT(fc+nm+4);
4316 for (i=0; i < count; ++i) {
4317 stbtt_uint32 loc = nm + 6 + 12 * i;
4318 if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2)
4319 && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) {
4320 *length = ttUSHORT(fc+loc+8);
4321 return (
const char *) (fc+stringOffset+ttUSHORT(fc+loc+10));
4327static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id)
4330 stbtt_int32 count = ttUSHORT(fc+nm+2);
4331 stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4);
4333 for (i=0; i < count; ++i) {
4334 stbtt_uint32 loc = nm + 6 + 12 * i;
4335 stbtt_int32
id = ttUSHORT(fc+loc+6);
4336 if (
id == target_id) {
4338 stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4);
4341 if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) {
4342 stbtt_int32 slen = ttUSHORT(fc+loc+8);
4343 stbtt_int32 off = ttUSHORT(fc+loc+10);
4346 stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen);
4347 if (matchlen >= 0) {
4349 if (i+1 < count && ttUSHORT(fc+loc+12+6) == next_id && ttUSHORT(fc+loc+12) == platform && ttUSHORT(fc+loc+12+2) == encoding && ttUSHORT(fc+loc+12+4) == language) {
4350 slen = ttUSHORT(fc+loc+12+8);
4351 off = ttUSHORT(fc+loc+12+10);
4353 if (matchlen == nlen)
4355 }
else if (matchlen < nlen && name[matchlen] ==
' ') {
4357 if (stbtt_CompareUTF8toUTF16_bigendian_internal((
char*) (name+matchlen), nlen-matchlen, (
char*)(fc+stringOffset+off),slen))
4362 if (matchlen == nlen)
4374static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags)
4376 stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((
char *) name);
4378 if (!stbtt__isfont(fc+offset))
return 0;
4382 hd = stbtt__find_table(fc, offset,
"head");
4383 if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7))
return 0;
4386 nm = stbtt__find_table(fc, offset,
"name");
4391 if (stbtt__matchpair(fc, nm, name, nlen, 16, -1))
return 1;
4392 if (stbtt__matchpair(fc, nm, name, nlen, 1, -1))
return 1;
4393 if (stbtt__matchpair(fc, nm, name, nlen, 3, -1))
return 1;
4395 if (stbtt__matchpair(fc, nm, name, nlen, 16, 17))
return 1;
4396 if (stbtt__matchpair(fc, nm, name, nlen, 1, 2))
return 1;
4397 if (stbtt__matchpair(fc, nm, name, nlen, 3, -1))
return 1;
4403static int stbtt_FindMatchingFont_internal(
unsigned char *font_collection,
char *name_utf8, stbtt_int32 flags)
4408 if (off < 0)
return off;
4409 if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags))
4414#if defined(__GNUC__) || defined(__clang__)
4415#pragma GCC diagnostic push
4416#pragma GCC diagnostic ignored "-Wcast-qual"
4420 float pixel_height,
unsigned char *pixels,
int pw,
int ph,
4423 return stbtt_BakeFontBitmap_internal((
unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata);
4428 return stbtt_GetFontOffsetForIndex_internal((
unsigned char *) data, index);
4433 return stbtt_GetNumberOfFonts_internal((
unsigned char *) data);
4438 return stbtt_InitFont_internal(info, (
unsigned char *) data, offset);
4443 return stbtt_FindMatchingFont_internal((
unsigned char *) fontdata, (
char *) name, flags);
4448 return stbtt_CompareUTF8toUTF16_bigendian_internal((
char *) s1, len1, (
char *) s2, len2);
4451#if defined(__GNUC__) || defined(__clang__)
4452#pragma GCC diagnostic pop
int main(int argc, char *argv[])
@ error
throw a parse_error exception in case of a tag
STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph)
STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing)
STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices)
STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata)
STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1)
STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint)
STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap)
STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1)
STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index)
STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges)
STBTT_DEF const char * stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID)
STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint)
STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint)
STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample)
STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1)
STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint)
STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1)
STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata)
STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index)
STBTT_DEF unsigned char * stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff)
STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **vertices)
@ STBTT_MAC_LANG_CHINESE_SIMPLIFIED
@ STBTT_MAC_LANG_JAPANESE
@ STBTT_MAC_LANG_CHINESE_TRAD
STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels)
STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags)
STBTT_DEF unsigned char * stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff)
STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1)
struct stbrp_rect stbrp_rect
STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata)
STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2)
STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff)
STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *vertices)
STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects)
STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph)
STBTT_DEF unsigned char * stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff)
@ STBTT_UNICODE_EID_ISO_10646
@ STBTT_UNICODE_EID_UNICODE_2_0_BMP
@ STBTT_UNICODE_EID_UNICODE_2_0_FULL
@ STBTT_UNICODE_EID_UNICODE_1_1
@ STBTT_UNICODE_EID_UNICODE_1_0
STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, unsigned char *fontdata, int font_index, float font_size, int first_unicode_char_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range)
STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, float pixel_height, unsigned char *pixels, int pw, int ph, int first_char, int num_chars, stbtt_bakedchar *chardata)
STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph)
STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float pixels)
STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2)
STBTT_DEF void stbtt_PackEnd(stbtt_pack_context *spc)
STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing)
STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects)
STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int opengl_fillrule)
#define stbtt_vertex_type
STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int align_to_integer)
STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1)
@ STBTT_MS_EID_UNICODE_FULL
@ STBTT_MS_EID_UNICODE_BMP
STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset)
STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1)
STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2)
STBTT_DEF unsigned char * stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff)
@ STBTT_MAC_EID_CHINESE_TRAD
@ STBTT_PLATFORM_ID_UNICODE
@ STBTT_PLATFORM_ID_MICROSOFT
STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int width, int height, int stride_in_bytes, int padding, void *alloc_context)
STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff)
STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects)
STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data)
void * user_allocator_context
unsigned int v_oversample
unsigned int h_oversample
int * array_of_unicode_codepoints
int first_unicode_codepoint_in_range
unsigned char v_oversample
unsigned char h_oversample
stbtt_packedchar * chardata_for_range