stb_truetype.h 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854
  1. // stb_truetype.h - v1.19 - public domain
  2. // authored from 2009-2016 by Sean Barrett / RAD Game Tools
  3. //
  4. // This library processes TrueType files:
  5. // parse files
  6. // extract glyph metrics
  7. // extract glyph shapes
  8. // render glyphs to one-channel bitmaps with antialiasing (box filter)
  9. // render glyphs to one-channel SDF bitmaps (signed-distance field/function)
  10. //
  11. // Todo:
  12. // non-MS cmaps
  13. // crashproof on bad data
  14. // hinting? (no longer patented)
  15. // cleartype-style AA?
  16. // optimize: use simple memory allocator for intermediates
  17. // optimize: build edge-list directly from curves
  18. // optimize: rasterize directly from curves?
  19. //
  20. // ADDITIONAL CONTRIBUTORS
  21. //
  22. // Mikko Mononen: compound shape support, more cmap formats
  23. // Tor Andersson: kerning, subpixel rendering
  24. // Dougall Johnson: OpenType / Type 2 font handling
  25. // Daniel Ribeiro Maciel: basic GPOS-based kerning
  26. //
  27. // Misc other:
  28. // Ryan Gordon
  29. // Simon Glass
  30. // github:IntellectualKitty
  31. // Imanol Celaya
  32. // Daniel Ribeiro Maciel
  33. //
  34. // Bug/warning reports/fixes:
  35. // "Zer" on mollyrocket Fabian "ryg" Giesen
  36. // Cass Everitt Martins Mozeiko
  37. // stoiko (Haemimont Games) Cap Petschulat
  38. // Brian Hook Omar Cornut
  39. // Walter van Niftrik github:aloucks
  40. // David Gow Peter LaValle
  41. // David Given Sergey Popov
  42. // Ivan-Assen Ivanov Giumo X. Clanjor
  43. // Anthony Pesch Higor Euripedes
  44. // Johan Duparc Thomas Fields
  45. // Hou Qiming Derek Vinyard
  46. // Rob Loach Cort Stratton
  47. // Kenney Phillis Jr. github:oyvindjam
  48. // Brian Costabile github:vassvik
  49. //
  50. // VERSION HISTORY
  51. //
  52. // 1.19 (2018-02-11) GPOS kerning, STBTT_fmod
  53. // 1.18 (2018-01-29) add missing function
  54. // 1.17 (2017-07-23) make more arguments const; doc fix
  55. // 1.16 (2017-07-12) SDF support
  56. // 1.15 (2017-03-03) make more arguments const
  57. // 1.14 (2017-01-16) num-fonts-in-TTC function
  58. // 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts
  59. // 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual
  60. // 1.11 (2016-04-02) fix unused-variable warning
  61. // 1.10 (2016-04-02) user-defined fabs(); rare memory leak; remove duplicate typedef
  62. // 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use allocation userdata properly
  63. // 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges
  64. // 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints;
  65. // variant PackFontRanges to pack and render in separate phases;
  66. // fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?);
  67. // fixed an assert() bug in the new rasterizer
  68. // replace assert() with STBTT_assert() in new rasterizer
  69. //
  70. // Full history can be found at the end of this file.
  71. //
  72. // LICENSE
  73. //
  74. // See end of file for license information.
  75. //
  76. // USAGE
  77. //
  78. // Include this file in whatever places neeed to refer to it. In ONE C/C++
  79. // file, write:
  80. // #define STB_TRUETYPE_IMPLEMENTATION
  81. // before the #include of this file. This expands out the actual
  82. // implementation into that C/C++ file.
  83. //
  84. // To make the implementation private to the file that generates the implementation,
  85. // #define STBTT_STATIC
  86. //
  87. // Simple 3D API (don't ship this, but it's fine for tools and quick start)
  88. // stbtt_BakeFontBitmap() -- bake a font to a bitmap for use as texture
  89. // stbtt_GetBakedQuad() -- compute quad to draw for a given char
  90. //
  91. // Improved 3D API (more shippable):
  92. // #include "stb_rect_pack.h" -- optional, but you really want it
  93. // stbtt_PackBegin()
  94. // stbtt_PackSetOversampling() -- for improved quality on small fonts
  95. // stbtt_PackFontRanges() -- pack and renders
  96. // stbtt_PackEnd()
  97. // stbtt_GetPackedQuad()
  98. //
  99. // "Load" a font file from a memory buffer (you have to keep the buffer loaded)
  100. // stbtt_InitFont()
  101. // stbtt_GetFontOffsetForIndex() -- indexing for TTC font collections
  102. // stbtt_GetNumberOfFonts() -- number of fonts for TTC font collections
  103. //
  104. // Render a unicode codepoint to a bitmap
  105. // stbtt_GetCodepointBitmap() -- allocates and returns a bitmap
  106. // stbtt_MakeCodepointBitmap() -- renders into bitmap you provide
  107. // stbtt_GetCodepointBitmapBox() -- how big the bitmap must be
  108. //
  109. // Character advance/positioning
  110. // stbtt_GetCodepointHMetrics()
  111. // stbtt_GetFontVMetrics()
  112. // stbtt_GetFontVMetricsOS2()
  113. // stbtt_GetCodepointKernAdvance()
  114. //
  115. // Starting with version 1.06, the rasterizer was replaced with a new,
  116. // faster and generally-more-precise rasterizer. The new rasterizer more
  117. // accurately measures pixel coverage for anti-aliasing, except in the case
  118. // where multiple shapes overlap, in which case it overestimates the AA pixel
  119. // coverage. Thus, anti-aliasing of intersecting shapes may look wrong. If
  120. // this turns out to be a problem, you can re-enable the old rasterizer with
  121. // #define STBTT_RASTERIZER_VERSION 1
  122. // which will incur about a 15% speed hit.
  123. //
  124. // ADDITIONAL DOCUMENTATION
  125. //
  126. // Immediately after this block comment are a series of sample programs.
  127. //
  128. // After the sample programs is the "header file" section. This section
  129. // includes documentation for each API function.
  130. //
  131. // Some important concepts to understand to use this library:
  132. //
  133. // Codepoint
  134. // Characters are defined by unicode codepoints, e.g. 65 is
  135. // uppercase A, 231 is lowercase c with a cedilla, 0x7e30 is
  136. // the hiragana for "ma".
  137. //
  138. // Glyph
  139. // A visual character shape (every codepoint is rendered as
  140. // some glyph)
  141. //
  142. // Glyph index
  143. // A font-specific integer ID representing a glyph
  144. //
  145. // Baseline
  146. // Glyph shapes are defined relative to a baseline, which is the
  147. // bottom of uppercase characters. Characters extend both above
  148. // and below the baseline.
  149. //
  150. // Current Point
  151. // As you draw text to the screen, you keep track of a "current point"
  152. // which is the origin of each character. The current point's vertical
  153. // position is the baseline. Even "baked fonts" use this model.
  154. //
  155. // Vertical Font Metrics
  156. // The vertical qualities of the font, used to vertically position
  157. // and space the characters. See docs for stbtt_GetFontVMetrics.
  158. //
  159. // Font Size in Pixels or Points
  160. // The preferred interface for specifying font sizes in stb_truetype
  161. // is to specify how tall the font's vertical extent should be in pixels.
  162. // If that sounds good enough, skip the next paragraph.
  163. //
  164. // Most font APIs instead use "points", which are a common typographic
  165. // measurement for describing font size, defined as 72 points per inch.
  166. // stb_truetype provides a point API for compatibility. However, true
  167. // "per inch" conventions don't make much sense on computer displays
  168. // since different monitors have different number of pixels per
  169. // inch. For example, Windows traditionally uses a convention that
  170. // there are 96 pixels per inch, thus making 'inch' measurements have
  171. // nothing to do with inches, and thus effectively defining a point to
  172. // be 1.333 pixels. Additionally, the TrueType font data provides
  173. // an explicit scale factor to scale a given font's glyphs to points,
  174. // but the author has observed that this scale factor is often wrong
  175. // for non-commercial fonts, thus making fonts scaled in points
  176. // according to the TrueType spec incoherently sized in practice.
  177. //
  178. // DETAILED USAGE:
  179. //
  180. // Scale:
  181. // Select how high you want the font to be, in points or pixels.
  182. // Call ScaleForPixelHeight or ScaleForMappingEmToPixels to compute
  183. // a scale factor SF that will be used by all other functions.
  184. //
  185. // Baseline:
  186. // You need to select a y-coordinate that is the baseline of where
  187. // your text will appear. Call GetFontBoundingBox to get the baseline-relative
  188. // bounding box for all characters. SF*-y0 will be the distance in pixels
  189. // that the worst-case character could extend above the baseline, so if
  190. // you want the top edge of characters to appear at the top of the
  191. // screen where y=0, then you would set the baseline to SF*-y0.
  192. //
  193. // Current point:
  194. // Set the current point where the first character will appear. The
  195. // first character could extend left of the current point; this is font
  196. // dependent. You can either choose a current point that is the leftmost
  197. // point and hope, or add some padding, or check the bounding box or
  198. // left-side-bearing of the first character to be displayed and set
  199. // the current point based on that.
  200. //
  201. // Displaying a character:
  202. // Compute the bounding box of the character. It will contain signed values
  203. // relative to <current_point, baseline>. I.e. if it returns x0,y0,x1,y1,
  204. // then the character should be displayed in the rectangle from
  205. // <current_point+SF*x0, baseline+SF*y0> to <current_point+SF*x1,baseline+SF*y1).
  206. //
  207. // Advancing for the next character:
  208. // Call GlyphHMetrics, and compute 'current_point += SF * advance'.
  209. //
  210. //
  211. // ADVANCED USAGE
  212. //
  213. // Quality:
  214. //
  215. // - Use the functions with Subpixel at the end to allow your characters
  216. // to have subpixel positioning. Since the font is anti-aliased, not
  217. // hinted, this is very import for quality. (This is not possible with
  218. // baked fonts.)
  219. //
  220. // - Kerning is now supported, and if you're supporting subpixel rendering
  221. // then kerning is worth using to give your text a polished look.
  222. //
  223. // Performance:
  224. //
  225. // - Convert Unicode codepoints to glyph indexes and operate on the glyphs;
  226. // if you don't do this, stb_truetype is forced to do the conversion on
  227. // every call.
  228. //
  229. // - There are a lot of memory allocations. We should modify it to take
  230. // a temp buffer and allocate from the temp buffer (without freeing),
  231. // should help performance a lot.
  232. //
  233. // NOTES
  234. //
  235. // The system uses the raw data found in the .ttf file without changing it
  236. // and without building auxiliary data structures. This is a bit inefficient
  237. // on little-endian systems (the data is big-endian), but assuming you're
  238. // caching the bitmaps or glyph shapes this shouldn't be a big deal.
  239. //
  240. // It appears to be very hard to programmatically determine what font a
  241. // given file is in a general way. I provide an API for this, but I don't
  242. // recommend it.
  243. //
  244. //
  245. // SOURCE STATISTICS (based on v0.6c, 2050 LOC)
  246. //
  247. // Documentation & header file 520 LOC \___ 660 LOC documentation
  248. // Sample code 140 LOC /
  249. // Truetype parsing 620 LOC ---- 620 LOC TrueType
  250. // Software rasterization 240 LOC \ .
  251. // Curve tesselation 120 LOC \__ 550 LOC Bitmap creation
  252. // Bitmap management 100 LOC /
  253. // Baked bitmap interface 70 LOC /
  254. // Font name matching & access 150 LOC ---- 150
  255. // C runtime library abstraction 60 LOC ---- 60
  256. //
  257. //
  258. // PERFORMANCE MEASUREMENTS FOR 1.06:
  259. //
  260. // 32-bit 64-bit
  261. // Previous release: 8.83 s 7.68 s
  262. // Pool allocations: 7.72 s 6.34 s
  263. // Inline sort : 6.54 s 5.65 s
  264. // New rasterizer : 5.63 s 5.00 s
  265. //////////////////////////////////////////////////////////////////////////////
  266. //////////////////////////////////////////////////////////////////////////////
  267. ////
  268. //// SAMPLE PROGRAMS
  269. ////
  270. //
  271. // Incomplete text-in-3d-api example, which draws quads properly aligned to be lossless
  272. //
  273. #if 0
  274. #define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation
  275. #include "stb_truetype.h"
  276. unsigned char ttf_buffer[1<<20];
  277. unsigned char temp_bitmap[512*512];
  278. stbtt_bakedchar cdata[96]; // ASCII 32..126 is 95 glyphs
  279. GLuint ftex;
  280. void my_stbtt_initfont(void)
  281. {
  282. fread(ttf_buffer, 1, 1<<20, fopen("c:/windows/fonts/times.ttf", "rb"));
  283. stbtt_BakeFontBitmap(ttf_buffer,0, 32.0, temp_bitmap,512,512, 32,96, cdata); // no guarantee this fits!
  284. // can free ttf_buffer at this point
  285. glGenTextures(1, &ftex);
  286. glBindTexture(GL_TEXTURE_2D, ftex);
  287. glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 512,512, 0, GL_ALPHA, GL_UNSIGNED_BYTE, temp_bitmap);
  288. // can free temp_bitmap at this point
  289. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
  290. }
  291. void my_stbtt_print(float x, float y, char *text)
  292. {
  293. // assume orthographic projection with units = screen pixels, origin at top left
  294. glEnable(GL_TEXTURE_2D);
  295. glBindTexture(GL_TEXTURE_2D, ftex);
  296. glBegin(GL_QUADS);
  297. while (*text) {
  298. if (*text >= 32 && *text < 128) {
  299. stbtt_aligned_quad q;
  300. stbtt_GetBakedQuad(cdata, 512,512, *text-32, &x,&y,&q,1);//1=opengl & d3d10+,0=d3d9
  301. glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y0);
  302. glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y0);
  303. glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y1);
  304. glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y1);
  305. }
  306. ++text;
  307. }
  308. glEnd();
  309. }
  310. #endif
  311. //
  312. //
  313. //////////////////////////////////////////////////////////////////////////////
  314. //
  315. // Complete program (this compiles): get a single bitmap, print as ASCII art
  316. //
  317. #if 0
  318. #include <stdio.h>
  319. #define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation
  320. #include "stb_truetype.h"
  321. char ttf_buffer[1<<25];
  322. int main(int argc, char **argv)
  323. {
  324. stbtt_fontinfo font;
  325. unsigned char *bitmap;
  326. int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) : 'a'), s = (argc > 2 ? atoi(argv[2]) : 20);
  327. fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] : "c:/windows/fonts/arialbd.ttf", "rb"));
  328. stbtt_InitFont(&font, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0));
  329. bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0);
  330. for (j=0; j < h; ++j) {
  331. for (i=0; i < w; ++i)
  332. putchar(" .:ioVM@"[bitmap[j*w+i]>>5]);
  333. putchar('\n');
  334. }
  335. return 0;
  336. }
  337. #endif
  338. //
  339. // Output:
  340. //
  341. // .ii.
  342. // @@@@@@.
  343. // V@Mio@@o
  344. // :i. V@V
  345. // :oM@@M
  346. // :@@@MM@M
  347. // @@o o@M
  348. // :@@. M@M
  349. // @@@o@@@@
  350. // :M@@V:@@.
  351. //
  352. //////////////////////////////////////////////////////////////////////////////
  353. //
  354. // Complete program: print "Hello World!" banner, with bugs
  355. //
  356. #if 0
  357. char buffer[24<<20];
  358. unsigned char screen[20][79];
  359. int main(int arg, char **argv)
  360. {
  361. stbtt_fontinfo font;
  362. int i,j,ascent,baseline,ch=0;
  363. float scale, xpos=2; // leave a little padding in case the character extends left
  364. char *text = "Heljo World!"; // intentionally misspelled to show 'lj' brokenness
  365. fread(buffer, 1, 1000000, fopen("c:/windows/fonts/arialbd.ttf", "rb"));
  366. stbtt_InitFont(&font, buffer, 0);
  367. scale = stbtt_ScaleForPixelHeight(&font, 15);
  368. stbtt_GetFontVMetrics(&font, &ascent,0,0);
  369. baseline = (int) (ascent*scale);
  370. while (text[ch]) {
  371. int advance,lsb,x0,y0,x1,y1;
  372. float x_shift = xpos - (float) floor(xpos);
  373. stbtt_GetCodepointHMetrics(&font, text[ch], &advance, &lsb);
  374. stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1);
  375. stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]);
  376. // note that this stomps the old data, so where character boxes overlap (e.g. 'lj') it's wrong
  377. // because this API is really for baking character bitmaps into textures. if you want to render
  378. // a sequence of characters, you really need to render each bitmap to a temp buffer, then
  379. // "alpha blend" that into the working buffer
  380. xpos += (advance * scale);
  381. if (text[ch+1])
  382. xpos += scale*stbtt_GetCodepointKernAdvance(&font, text[ch],text[ch+1]);
  383. ++ch;
  384. }
  385. for (j=0; j < 20; ++j) {
  386. for (i=0; i < 78; ++i)
  387. putchar(" .:ioVM@"[screen[j][i]>>5]);
  388. putchar('\n');
  389. }
  390. return 0;
  391. }
  392. #endif
  393. //////////////////////////////////////////////////////////////////////////////
  394. //////////////////////////////////////////////////////////////////////////////
  395. ////
  396. //// INTEGRATION WITH YOUR CODEBASE
  397. ////
  398. //// The following sections allow you to supply alternate definitions
  399. //// of C library functions used by stb_truetype, e.g. if you don't
  400. //// link with the C runtime library.
  401. #ifdef STB_TRUETYPE_IMPLEMENTATION
  402. // #define your own (u)stbtt_int8/16/32 before including to override this
  403. #ifndef stbtt_uint8
  404. typedef unsigned char stbtt_uint8;
  405. typedef signed char stbtt_int8;
  406. typedef unsigned short stbtt_uint16;
  407. typedef signed short stbtt_int16;
  408. typedef unsigned int stbtt_uint32;
  409. typedef signed int stbtt_int32;
  410. #endif
  411. typedef char stbtt__check_size32[sizeof(stbtt_int32)==4 ? 1 : -1];
  412. typedef char stbtt__check_size16[sizeof(stbtt_int16)==2 ? 1 : -1];
  413. // e.g. #define your own STBTT_ifloor/STBTT_iceil() to avoid math.h
  414. #ifndef STBTT_ifloor
  415. #include <math.h>
  416. #define STBTT_ifloor(x) ((int) floor(x))
  417. #define STBTT_iceil(x) ((int) ceil(x))
  418. #endif
  419. #ifndef STBTT_sqrt
  420. #include <math.h>
  421. #define STBTT_sqrt(x) sqrt(x)
  422. #define STBTT_pow(x,y) pow(x,y)
  423. #endif
  424. #ifndef STBTT_fmod
  425. #include <math.h>
  426. #define STBTT_fmod(x,y) fmod(x,y)
  427. #endif
  428. #ifndef STBTT_cos
  429. #include <math.h>
  430. #define STBTT_cos(x) cos(x)
  431. #define STBTT_acos(x) acos(x)
  432. #endif
  433. #ifndef STBTT_fabs
  434. #include <math.h>
  435. #define STBTT_fabs(x) fabs(x)
  436. #endif
  437. // #define your own functions "STBTT_malloc" / "STBTT_free" to avoid malloc.h
  438. #ifndef STBTT_malloc
  439. #include <stdlib.h>
  440. #define STBTT_malloc(x,u) ((void)(u),malloc(x))
  441. #define STBTT_free(x,u) ((void)(u),free(x))
  442. #endif
  443. #ifndef STBTT_assert
  444. #include <assert.h>
  445. #define STBTT_assert(x) assert(x)
  446. #endif
  447. #ifndef STBTT_strlen
  448. #include <string.h>
  449. #define STBTT_strlen(x) strlen(x)
  450. #endif
  451. #ifndef STBTT_memcpy
  452. #include <string.h>
  453. #define STBTT_memcpy memcpy
  454. #define STBTT_memset memset
  455. #endif
  456. #endif
  457. ///////////////////////////////////////////////////////////////////////////////
  458. ///////////////////////////////////////////////////////////////////////////////
  459. ////
  460. //// INTERFACE
  461. ////
  462. ////
  463. #ifndef __STB_INCLUDE_STB_TRUETYPE_H__
  464. #define __STB_INCLUDE_STB_TRUETYPE_H__
  465. #ifdef STBTT_STATIC
  466. #define STBTT_DEF static
  467. #else
  468. #define STBTT_DEF extern
  469. #endif
  470. #ifdef __cplusplus
  471. extern "C" {
  472. #endif
  473. // private structure
  474. typedef struct
  475. {
  476. unsigned char *data;
  477. int cursor;
  478. int size;
  479. } stbtt__buf;
  480. //////////////////////////////////////////////////////////////////////////////
  481. //
  482. // TEXTURE BAKING API
  483. //
  484. // If you use this API, you only have to call two functions ever.
  485. //
  486. typedef struct
  487. {
  488. unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap
  489. float xoff,yoff,xadvance;
  490. } stbtt_bakedchar;
  491. STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, // font location (use offset=0 for plain .ttf)
  492. float pixel_height, // height of font in pixels
  493. unsigned char *pixels, int pw, int ph, // bitmap to be filled in
  494. int first_char, int num_chars, // characters to bake
  495. stbtt_bakedchar *chardata); // you allocate this, it's num_chars long
  496. // if return is positive, the first unused row of the bitmap
  497. // if return is negative, returns the negative of the number of characters that fit
  498. // if return is 0, no characters fit and no rows were used
  499. // This uses a very crappy packing.
  500. typedef struct
  501. {
  502. float x0,y0,s0,t0; // top-left
  503. float x1,y1,s1,t1; // bottom-right
  504. } stbtt_aligned_quad;
  505. STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, // same data as above
  506. int char_index, // character to display
  507. float *xpos, float *ypos, // pointers to current position in screen pixel space
  508. stbtt_aligned_quad *q, // output: quad to draw
  509. int opengl_fillrule); // true if opengl fill rule; false if DX9 or earlier
  510. // Call GetBakedQuad with char_index = 'character - first_char', and it
  511. // creates the quad you need to draw and advances the current position.
  512. //
  513. // The coordinate system used assumes y increases downwards.
  514. //
  515. // Characters will extend both above and below the current position;
  516. // see discussion of "BASELINE" above.
  517. //
  518. // It's inefficient; you might want to c&p it and optimize it.
  519. //////////////////////////////////////////////////////////////////////////////
  520. //
  521. // NEW TEXTURE BAKING API
  522. //
  523. // This provides options for packing multiple fonts into one atlas, not
  524. // perfectly but better than nothing.
  525. typedef struct
  526. {
  527. unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap
  528. float xoff,yoff,xadvance;
  529. float xoff2,yoff2;
  530. } stbtt_packedchar;
  531. typedef struct stbtt_pack_context stbtt_pack_context;
  532. typedef struct stbtt_fontinfo stbtt_fontinfo;
  533. #ifndef STB_RECT_PACK_VERSION
  534. typedef struct stbrp_rect stbrp_rect;
  535. #endif
  536. 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);
  537. // Initializes a packing context stored in the passed-in stbtt_pack_context.
  538. // Future calls using this context will pack characters into the bitmap passed
  539. // in here: a 1-channel bitmap that is width * height. stride_in_bytes is
  540. // the distance from one row to the next (or 0 to mean they are packed tightly
  541. // together). "padding" is the amount of padding to leave between each
  542. // character (normally you want '1' for bitmaps you'll use as textures with
  543. // bilinear filtering).
  544. //
  545. // Returns 0 on failure, 1 on success.
  546. STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc);
  547. // Cleans up the packing context and frees all memory.
  548. #define STBTT_POINT_SIZE(x) (-(x))
  549. STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size,
  550. int first_unicode_char_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range);
  551. // Creates character bitmaps from the font_index'th font found in fontdata (use
  552. // font_index=0 if you don't know what that is). It creates num_chars_in_range
  553. // bitmaps for characters with unicode values starting at first_unicode_char_in_range
  554. // and increasing. Data for how to render them is stored in chardata_for_range;
  555. // pass these to stbtt_GetPackedQuad to get back renderable quads.
  556. //
  557. // font_size is the full height of the character from ascender to descender,
  558. // as computed by stbtt_ScaleForPixelHeight. To use a point size as computed
  559. // by stbtt_ScaleForMappingEmToPixels, wrap the point size in STBTT_POINT_SIZE()
  560. // and pass that result as 'font_size':
  561. // ..., 20 , ... // font max minus min y is 20 pixels tall
  562. // ..., STBTT_POINT_SIZE(20), ... // 'M' is 20 pixels tall
  563. typedef struct
  564. {
  565. float font_size;
  566. int first_unicode_codepoint_in_range; // if non-zero, then the chars are continuous, and this is the first codepoint
  567. int *array_of_unicode_codepoints; // if non-zero, then this is an array of unicode codepoints
  568. int num_chars;
  569. stbtt_packedchar *chardata_for_range; // output
  570. unsigned char h_oversample, v_oversample; // don't set these, they're used internally
  571. } stbtt_pack_range;
  572. STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges);
  573. // Creates character bitmaps from multiple ranges of characters stored in
  574. // ranges. This will usually create a better-packed bitmap than multiple
  575. // calls to stbtt_PackFontRange. Note that you can call this multiple
  576. // times within a single PackBegin/PackEnd.
  577. STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample);
  578. // Oversampling a font increases the quality by allowing higher-quality subpixel
  579. // positioning, and is especially valuable at smaller text sizes.
  580. //
  581. // This function sets the amount of oversampling for all following calls to
  582. // stbtt_PackFontRange(s) or stbtt_PackFontRangesGatherRects for a given
  583. // pack context. The default (no oversampling) is achieved by h_oversample=1
  584. // and v_oversample=1. The total number of pixels required is
  585. // h_oversample*v_oversample larger than the default; for example, 2x2
  586. // oversampling requires 4x the storage of 1x1. For best results, render
  587. // oversampled textures with bilinear filtering. Look at the readme in
  588. // stb/tests/oversample for information about oversampled fonts
  589. //
  590. // To use with PackFontRangesGather etc., you must set it before calls
  591. // call to PackFontRangesGatherRects.
  592. STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, // same data as above
  593. int char_index, // character to display
  594. float *xpos, float *ypos, // pointers to current position in screen pixel space
  595. stbtt_aligned_quad *q, // output: quad to draw
  596. int align_to_integer);
  597. STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects);
  598. STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects);
  599. STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects);
  600. // Calling these functions in sequence is roughly equivalent to calling
  601. // stbtt_PackFontRanges(). If you more control over the packing of multiple
  602. // fonts, or if you want to pack custom data into a font texture, take a look
  603. // at the source to of stbtt_PackFontRanges() and create a custom version
  604. // using these functions, e.g. call GatherRects multiple times,
  605. // building up a single array of rects, then call PackRects once,
  606. // then call RenderIntoRects repeatedly. This may result in a
  607. // better packing than calling PackFontRanges multiple times
  608. // (or it may not).
  609. // this is an opaque structure that you shouldn't mess with which holds
  610. // all the context needed from PackBegin to PackEnd.
  611. struct stbtt_pack_context {
  612. void *user_allocator_context;
  613. void *pack_info;
  614. int width;
  615. int height;
  616. int stride_in_bytes;
  617. int padding;
  618. unsigned int h_oversample, v_oversample;
  619. unsigned char *pixels;
  620. void *nodes;
  621. };
  622. //////////////////////////////////////////////////////////////////////////////
  623. //
  624. // FONT LOADING
  625. //
  626. //
  627. STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data);
  628. // This function will determine the number of fonts in a font file. TrueType
  629. // collection (.ttc) files may contain multiple fonts, while TrueType font
  630. // (.ttf) files only contain one font. The number of fonts can be used for
  631. // indexing with the previous function where the index is between zero and one
  632. // less than the total fonts. If an error occurs, -1 is returned.
  633. STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index);
  634. // Each .ttf/.ttc file may have more than one font. Each font has a sequential
  635. // index number starting from 0. Call this function to get the font offset for
  636. // a given index; it returns -1 if the index is out of range. A regular .ttf
  637. // file will only define one font and it always be at offset 0, so it will
  638. // return '0' for index 0, and -1 for all other indices.
  639. // The following structure is defined publically so you can declare one on
  640. // the stack or as a global or etc, but you should treat it as opaque.
  641. struct stbtt_fontinfo
  642. {
  643. void * userdata;
  644. unsigned char * data; // pointer to .ttf file
  645. int fontstart; // offset of start of font
  646. int numGlyphs; // number of glyphs, needed for range checking
  647. int loca,head,glyf,hhea,hmtx,kern,gpos; // table locations as offset from start of .ttf
  648. int index_map; // a cmap mapping for our chosen character encoding
  649. int indexToLocFormat; // format needed to map from glyph index to glyph
  650. stbtt__buf cff; // cff font data
  651. stbtt__buf charstrings; // the charstring index
  652. stbtt__buf gsubrs; // global charstring subroutines index
  653. stbtt__buf subrs; // private charstring subroutines index
  654. stbtt__buf fontdicts; // array of font dicts
  655. stbtt__buf fdselect; // map from glyph to fontdict
  656. };
  657. STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset);
  658. // Given an offset into the file that defines a font, this function builds
  659. // the necessary cached info for the rest of the system. You must allocate
  660. // the stbtt_fontinfo yourself, and stbtt_InitFont will fill it out. You don't
  661. // need to do anything special to free it, because the contents are pure
  662. // value data with no additional data structures. Returns 0 on failure.
  663. //////////////////////////////////////////////////////////////////////////////
  664. //
  665. // CHARACTER TO GLYPH-INDEX CONVERSIOn
  666. STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint);
  667. // If you're going to perform multiple operations on the same character
  668. // and you want a speed-up, call this function with the character you're
  669. // going to process, then use glyph-based functions instead of the
  670. // codepoint-based functions.
  671. //////////////////////////////////////////////////////////////////////////////
  672. //
  673. // CHARACTER PROPERTIES
  674. //
  675. STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float pixels);
  676. // computes a scale factor to produce a font whose "height" is 'pixels' tall.
  677. // Height is measured as the distance from the highest ascender to the lowest
  678. // descender; in other words, it's equivalent to calling stbtt_GetFontVMetrics
  679. // and computing:
  680. // scale = pixels / (ascent - descent)
  681. // so if you prefer to measure height by the ascent only, use a similar calculation.
  682. STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels);
  683. // computes a scale factor to produce a font whose EM size is mapped to
  684. // 'pixels' tall. This is probably what traditional APIs compute, but
  685. // I'm not positive.
  686. STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap);
  687. // ascent is the coordinate above the baseline the font extends; descent
  688. // is the coordinate below the baseline the font extends (i.e. it is typically negative)
  689. // lineGap is the spacing between one row's descent and the next row's ascent...
  690. // so you should advance the vertical position by "*ascent - *descent + *lineGap"
  691. // these are expressed in unscaled coordinates, so you must multiply by
  692. // the scale factor for a given size
  693. STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap);
  694. // analogous to GetFontVMetrics, but returns the "typographic" values from the OS/2
  695. // table (specific to MS/Windows TTF files).
  696. //
  697. // Returns 1 on success (table present), 0 on failure.
  698. STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1);
  699. // the bounding box around all possible characters
  700. STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing);
  701. // leftSideBearing is the offset from the current horizontal position to the left edge of the character
  702. // advanceWidth is the offset from the current horizontal position to the next horizontal position
  703. // these are expressed in unscaled coordinates
  704. STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2);
  705. // an additional amount to add to the 'advance' value between ch1 and ch2
  706. STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1);
  707. // Gets the bounding box of the visible part of the glyph, in unscaled coordinates
  708. STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing);
  709. STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2);
  710. STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1);
  711. // as above, but takes one or more glyph indices for greater efficiency
  712. //////////////////////////////////////////////////////////////////////////////
  713. //
  714. // GLYPH SHAPES (you probably don't need these, but they have to go before
  715. // the bitmaps for C declaration-order reasons)
  716. //
  717. #ifndef STBTT_vmove // you can predefine these to use different values (but why?)
  718. enum {
  719. STBTT_vmove=1,
  720. STBTT_vline,
  721. STBTT_vcurve,
  722. STBTT_vcubic
  723. };
  724. #endif
  725. #ifndef stbtt_vertex // you can predefine this to use different values
  726. // (we share this with other code at RAD)
  727. #define stbtt_vertex_type short // can't use stbtt_int16 because that's not visible in the header file
  728. typedef struct
  729. {
  730. stbtt_vertex_type x,y,cx,cy,cx1,cy1;
  731. unsigned char type,padding;
  732. } stbtt_vertex;
  733. #endif
  734. STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index);
  735. // returns non-zero if nothing is drawn for this glyph
  736. STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices);
  737. STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **vertices);
  738. // returns # of vertices and fills *vertices with the pointer to them
  739. // these are expressed in "unscaled" coordinates
  740. //
  741. // The shape is a series of countours. Each one starts with
  742. // a STBTT_moveto, then consists of a series of mixed
  743. // STBTT_lineto and STBTT_curveto segments. A lineto
  744. // draws a line from previous endpoint to its x,y; a curveto
  745. // draws a quadratic bezier from previous endpoint to
  746. // its x,y, using cx,cy as the bezier control point.
  747. STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *vertices);
  748. // frees the data allocated above
  749. //////////////////////////////////////////////////////////////////////////////
  750. //
  751. // BITMAP RENDERING
  752. //
  753. STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata);
  754. // frees the bitmap allocated below
  755. 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);
  756. // allocates a large-enough single-channel 8bpp bitmap and renders the
  757. // specified character/glyph at the specified scale into it, with
  758. // antialiasing. 0 is no coverage (transparent), 255 is fully covered (opaque).
  759. // *width & *height are filled out with the width & height of the bitmap,
  760. // which is stored left-to-right, top-to-bottom.
  761. //
  762. // xoff/yoff are the offset it pixel space from the glyph origin to the top-left of the bitmap
  763. 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);
  764. // the same as stbtt_GetCodepoitnBitmap, but you can specify a subpixel
  765. // shift for the character
  766. 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);
  767. // the same as stbtt_GetCodepointBitmap, but you pass in storage for the bitmap
  768. // in the form of 'output', with row spacing of 'out_stride' bytes. the bitmap
  769. // is clipped to out_w/out_h bytes. Call stbtt_GetCodepointBitmapBox to get the
  770. // width and height and positioning info for it first.
  771. 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);
  772. // same as stbtt_MakeCodepointBitmap, but you can specify a subpixel
  773. // shift for the character
  774. 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);
  775. // same as stbtt_MakeCodepointBitmapSubpixel, but prefiltering
  776. // is performed (see stbtt_PackSetOversampling)
  777. 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);
  778. // get the bbox of the bitmap centered around the glyph origin; so the
  779. // bitmap width is ix1-ix0, height is iy1-iy0, and location to place
  780. // the bitmap top left is (leftSideBearing*scale,iy0).
  781. // (Note that the bitmap uses y-increases-down, but the shape uses
  782. // y-increases-up, so CodepointBitmapBox and CodepointBox are inverted.)
  783. 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);
  784. // same as stbtt_GetCodepointBitmapBox, but you can specify a subpixel
  785. // shift for the character
  786. // the following functions are equivalent to the above functions, but operate
  787. // on glyph indices instead of Unicode codepoints (for efficiency)
  788. 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);
  789. 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);
  790. 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);
  791. 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);
  792. 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);
  793. 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);
  794. 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);
  795. // @TODO: don't expose this structure
  796. typedef struct
  797. {
  798. int w,h,stride;
  799. unsigned char *pixels;
  800. } stbtt__bitmap;
  801. // rasterize a shape with quadratic beziers into a bitmap
  802. STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, // 1-channel bitmap to draw into
  803. float flatness_in_pixels, // allowable error of curve in pixels
  804. stbtt_vertex *vertices, // array of vertices defining shape
  805. int num_verts, // number of vertices in above array
  806. float scale_x, float scale_y, // scale applied to input vertices
  807. float shift_x, float shift_y, // translation applied to input vertices
  808. int x_off, int y_off, // another translation applied to input
  809. int invert, // if non-zero, vertically flip shape
  810. void *userdata); // context for to STBTT_MALLOC
  811. //////////////////////////////////////////////////////////////////////////////
  812. //
  813. // Signed Distance Function (or Field) rendering
  814. STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata);
  815. // frees the SDF bitmap allocated below
  816. 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);
  817. 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);
  818. // These functions compute a discretized SDF field for a single character, suitable for storing
  819. // in a single-channel texture, sampling with bilinear filtering, and testing against
  820. // larger than some threshhold to produce scalable fonts.
  821. // info -- the font
  822. // scale -- controls the size of the resulting SDF bitmap, same as it would be creating a regular bitmap
  823. // glyph/codepoint -- the character to generate the SDF for
  824. // padding -- extra "pixels" around the character which are filled with the distance to the character (not 0),
  825. // which allows effects like bit outlines
  826. // onedge_value -- value 0-255 to test the SDF against to reconstruct the character (i.e. the isocontour of the character)
  827. // pixel_dist_scale -- what value the SDF should increase by when moving one SDF "pixel" away from the edge (on the 0..255 scale)
  828. // if positive, > onedge_value is inside; if negative, < onedge_value is inside
  829. // width,height -- output height & width of the SDF bitmap (including padding)
  830. // xoff,yoff -- output origin of the character
  831. // return value -- a 2D array of bytes 0..255, width*height in size
  832. //
  833. // pixel_dist_scale & onedge_value are a scale & bias that allows you to make
  834. // optimal use of the limited 0..255 for your application, trading off precision
  835. // and special effects. SDF values outside the range 0..255 are clamped to 0..255.
  836. //
  837. // Example:
  838. // scale = stbtt_ScaleForPixelHeight(22)
  839. // padding = 5
  840. // onedge_value = 180
  841. // pixel_dist_scale = 180/5.0 = 36.0
  842. //
  843. // This will create an SDF bitmap in which the character is about 22 pixels
  844. // high but the whole bitmap is about 22+5+5=32 pixels high. To produce a filled
  845. // shape, sample the SDF at each pixel and fill the pixel if the SDF value
  846. // is greater than or equal to 180/255. (You'll actually want to antialias,
  847. // which is beyond the scope of this example.) Additionally, you can compute
  848. // offset outlines (e.g. to stroke the character border inside & outside,
  849. // or only outside). For example, to fill outside the character up to 3 SDF
  850. // pixels, you would compare against (180-36.0*3)/255 = 72/255. The above
  851. // choice of variables maps a range from 5 pixels outside the shape to
  852. // 2 pixels inside the shape to 0..255; this is intended primarily for apply
  853. // outside effects only (the interior range is needed to allow proper
  854. // antialiasing of the font at *smaller* sizes)
  855. //
  856. // The function computes the SDF analytically at each SDF pixel, not by e.g.
  857. // building a higher-res bitmap and approximating it. In theory the quality
  858. // should be as high as possible for an SDF of this size & representation, but
  859. // unclear if this is true in practice (perhaps building a higher-res bitmap
  860. // and computing from that can allow drop-out prevention).
  861. //
  862. // The algorithm has not been optimized at all, so expect it to be slow
  863. // if computing lots of characters or very large sizes.
  864. //////////////////////////////////////////////////////////////////////////////
  865. //
  866. // Finding the right font...
  867. //
  868. // You should really just solve this offline, keep your own tables
  869. // of what font is what, and don't try to get it out of the .ttf file.
  870. // That's because getting it out of the .ttf file is really hard, because
  871. // the names in the file can appear in many possible encodings, in many
  872. // possible languages, and e.g. if you need a case-insensitive comparison,
  873. // the details of that depend on the encoding & language in a complex way
  874. // (actually underspecified in truetype, but also gigantic).
  875. //
  876. // But you can use the provided functions in two possible ways:
  877. // stbtt_FindMatchingFont() will use *case-sensitive* comparisons on
  878. // unicode-encoded names to try to find the font you want;
  879. // you can run this before calling stbtt_InitFont()
  880. //
  881. // stbtt_GetFontNameString() lets you get any of the various strings
  882. // from the file yourself and do your own comparisons on them.
  883. // You have to have called stbtt_InitFont() first.
  884. STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags);
  885. // returns the offset (not index) of the font that matches, or -1 if none
  886. // if you use STBTT_MACSTYLE_DONTCARE, use a font name like "Arial Bold".
  887. // if you use any other flag, use a font name like "Arial"; this checks
  888. // the 'macStyle' header field; i don't know if fonts set this consistently
  889. #define STBTT_MACSTYLE_DONTCARE 0
  890. #define STBTT_MACSTYLE_BOLD 1
  891. #define STBTT_MACSTYLE_ITALIC 2
  892. #define STBTT_MACSTYLE_UNDERSCORE 4
  893. #define STBTT_MACSTYLE_NONE 8 // <= not same as 0, this makes us check the bitfield is 0
  894. STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2);
  895. // returns 1/0 whether the first string interpreted as utf8 is identical to
  896. // the second string interpreted as big-endian utf16... useful for strings from next func
  897. STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID);
  898. // returns the string (which may be big-endian double byte, e.g. for unicode)
  899. // and puts the length in bytes in *length.
  900. //
  901. // some of the values for the IDs are below; for more see the truetype spec:
  902. // http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6name.html
  903. // http://www.microsoft.com/typography/otspec/name.htm
  904. enum { // platformID
  905. STBTT_PLATFORM_ID_UNICODE =0,
  906. STBTT_PLATFORM_ID_MAC =1,
  907. STBTT_PLATFORM_ID_ISO =2,
  908. STBTT_PLATFORM_ID_MICROSOFT =3
  909. };
  910. enum { // encodingID for STBTT_PLATFORM_ID_UNICODE
  911. STBTT_UNICODE_EID_UNICODE_1_0 =0,
  912. STBTT_UNICODE_EID_UNICODE_1_1 =1,
  913. STBTT_UNICODE_EID_ISO_10646 =2,
  914. STBTT_UNICODE_EID_UNICODE_2_0_BMP=3,
  915. STBTT_UNICODE_EID_UNICODE_2_0_FULL=4
  916. };
  917. enum { // encodingID for STBTT_PLATFORM_ID_MICROSOFT
  918. STBTT_MS_EID_SYMBOL =0,
  919. STBTT_MS_EID_UNICODE_BMP =1,
  920. STBTT_MS_EID_SHIFTJIS =2,
  921. STBTT_MS_EID_UNICODE_FULL =10
  922. };
  923. enum { // encodingID for STBTT_PLATFORM_ID_MAC; same as Script Manager codes
  924. STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4,
  925. STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5,
  926. STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6,
  927. STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7
  928. };
  929. enum { // languageID for STBTT_PLATFORM_ID_MICROSOFT; same as LCID...
  930. // problematic because there are e.g. 16 english LCIDs and 16 arabic LCIDs
  931. STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410,
  932. STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411,
  933. STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412,
  934. STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419,
  935. STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409,
  936. STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D
  937. };
  938. enum { // languageID for STBTT_PLATFORM_ID_MAC
  939. STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11,
  940. STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23,
  941. STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32,
  942. STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 ,
  943. STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 ,
  944. STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33,
  945. STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19
  946. };
  947. #ifdef __cplusplus
  948. }
  949. #endif
  950. #endif // __STB_INCLUDE_STB_TRUETYPE_H__
  951. ///////////////////////////////////////////////////////////////////////////////
  952. ///////////////////////////////////////////////////////////////////////////////
  953. ////
  954. //// IMPLEMENTATION
  955. ////
  956. ////
  957. #ifdef STB_TRUETYPE_IMPLEMENTATION
  958. #ifndef STBTT_MAX_OVERSAMPLE
  959. #define STBTT_MAX_OVERSAMPLE 8
  960. #endif
  961. #if STBTT_MAX_OVERSAMPLE > 255
  962. #error "STBTT_MAX_OVERSAMPLE cannot be > 255"
  963. #endif
  964. typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1];
  965. #ifndef STBTT_RASTERIZER_VERSION
  966. #define STBTT_RASTERIZER_VERSION 2
  967. #endif
  968. #ifdef _MSC_VER
  969. #define STBTT__NOTUSED(v) (void)(v)
  970. #else
  971. #define STBTT__NOTUSED(v) (void)sizeof(v)
  972. #endif
  973. //////////////////////////////////////////////////////////////////////////
  974. //
  975. // stbtt__buf helpers to parse data from file
  976. //
  977. static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b)
  978. {
  979. if (b->cursor >= b->size)
  980. return 0;
  981. return b->data[b->cursor++];
  982. }
  983. static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b)
  984. {
  985. if (b->cursor >= b->size)
  986. return 0;
  987. return b->data[b->cursor];
  988. }
  989. static void stbtt__buf_seek(stbtt__buf *b, int o)
  990. {
  991. STBTT_assert(!(o > b->size || o < 0));
  992. b->cursor = (o > b->size || o < 0) ? b->size : o;
  993. }
  994. static void stbtt__buf_skip(stbtt__buf *b, int o)
  995. {
  996. stbtt__buf_seek(b, b->cursor + o);
  997. }
  998. static stbtt_uint32 stbtt__buf_get(stbtt__buf *b, int n)
  999. {
  1000. stbtt_uint32 v = 0;
  1001. int i;
  1002. STBTT_assert(n >= 1 && n <= 4);
  1003. for (i = 0; i < n; i++)
  1004. v = (v << 8) | stbtt__buf_get8(b);
  1005. return v;
  1006. }
  1007. static stbtt__buf stbtt__new_buf(const void *p, size_t size)
  1008. {
  1009. stbtt__buf r;
  1010. STBTT_assert(size < 0x40000000);
  1011. r.data = (stbtt_uint8*) p;
  1012. r.size = (int) size;
  1013. r.cursor = 0;
  1014. return r;
  1015. }
  1016. #define stbtt__buf_get16(b) stbtt__buf_get((b), 2)
  1017. #define stbtt__buf_get32(b) stbtt__buf_get((b), 4)
  1018. static stbtt__buf stbtt__buf_range(const stbtt__buf *b, int o, int s)
  1019. {
  1020. stbtt__buf r = stbtt__new_buf(NULL, 0);
  1021. if (o < 0 || s < 0 || o > b->size || s > b->size - o) return r;
  1022. r.data = b->data + o;
  1023. r.size = s;
  1024. return r;
  1025. }
  1026. static stbtt__buf stbtt__cff_get_index(stbtt__buf *b)
  1027. {
  1028. int count, start, offsize;
  1029. start = b->cursor;
  1030. count = stbtt__buf_get16(b);
  1031. if (count) {
  1032. offsize = stbtt__buf_get8(b);
  1033. STBTT_assert(offsize >= 1 && offsize <= 4);
  1034. stbtt__buf_skip(b, offsize * count);
  1035. stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1);
  1036. }
  1037. return stbtt__buf_range(b, start, b->cursor - start);
  1038. }
  1039. static stbtt_uint32 stbtt__cff_int(stbtt__buf *b)
  1040. {
  1041. int b0 = stbtt__buf_get8(b);
  1042. if (b0 >= 32 && b0 <= 246) return b0 - 139;
  1043. else if (b0 >= 247 && b0 <= 250) return (b0 - 247)*256 + stbtt__buf_get8(b) + 108;
  1044. else if (b0 >= 251 && b0 <= 254) return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108;
  1045. else if (b0 == 28) return stbtt__buf_get16(b);
  1046. else if (b0 == 29) return stbtt__buf_get32(b);
  1047. STBTT_assert(0);
  1048. return 0;
  1049. }
  1050. static void stbtt__cff_skip_operand(stbtt__buf *b) {
  1051. int v, b0 = stbtt__buf_peek8(b);
  1052. STBTT_assert(b0 >= 28);
  1053. if (b0 == 30) {
  1054. stbtt__buf_skip(b, 1);
  1055. while (b->cursor < b->size) {
  1056. v = stbtt__buf_get8(b);
  1057. if ((v & 0xF) == 0xF || (v >> 4) == 0xF)
  1058. break;
  1059. }
  1060. } else {
  1061. stbtt__cff_int(b);
  1062. }
  1063. }
  1064. static stbtt__buf stbtt__dict_get(stbtt__buf *b, int key)
  1065. {
  1066. stbtt__buf_seek(b, 0);
  1067. while (b->cursor < b->size) {
  1068. int start = b->cursor, end, op;
  1069. while (stbtt__buf_peek8(b) >= 28)
  1070. stbtt__cff_skip_operand(b);
  1071. end = b->cursor;
  1072. op = stbtt__buf_get8(b);
  1073. if (op == 12) op = stbtt__buf_get8(b) | 0x100;
  1074. if (op == key) return stbtt__buf_range(b, start, end-start);
  1075. }
  1076. return stbtt__buf_range(b, 0, 0);
  1077. }
  1078. static void stbtt__dict_get_ints(stbtt__buf *b, int key, int outcount, stbtt_uint32 *out)
  1079. {
  1080. int i;
  1081. stbtt__buf operands = stbtt__dict_get(b, key);
  1082. for (i = 0; i < outcount && operands.cursor < operands.size; i++)
  1083. out[i] = stbtt__cff_int(&operands);
  1084. }
  1085. static int stbtt__cff_index_count(stbtt__buf *b)
  1086. {
  1087. stbtt__buf_seek(b, 0);
  1088. return stbtt__buf_get16(b);
  1089. }
  1090. static stbtt__buf stbtt__cff_index_get(stbtt__buf b, int i)
  1091. {
  1092. int count, offsize, start, end;
  1093. stbtt__buf_seek(&b, 0);
  1094. count = stbtt__buf_get16(&b);
  1095. offsize = stbtt__buf_get8(&b);
  1096. STBTT_assert(i >= 0 && i < count);
  1097. STBTT_assert(offsize >= 1 && offsize <= 4);
  1098. stbtt__buf_skip(&b, i*offsize);
  1099. start = stbtt__buf_get(&b, offsize);
  1100. end = stbtt__buf_get(&b, offsize);
  1101. return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start);
  1102. }
  1103. //////////////////////////////////////////////////////////////////////////
  1104. //
  1105. // accessors to parse data from file
  1106. //
  1107. // on platforms that don't allow misaligned reads, if we want to allow
  1108. // truetype fonts that aren't padded to alignment, define ALLOW_UNALIGNED_TRUETYPE
  1109. #define ttBYTE(p) (* (stbtt_uint8 *) (p))
  1110. #define ttCHAR(p) (* (stbtt_int8 *) (p))
  1111. #define ttFixed(p) ttLONG(p)
  1112. static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }
  1113. static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }
  1114. static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
  1115. static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
  1116. #define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3))
  1117. #define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3])
  1118. static int stbtt__isfont(stbtt_uint8 *font)
  1119. {
  1120. // check the version number
  1121. if (stbtt_tag4(font, '1',0,0,0)) return 1; // TrueType 1
  1122. if (stbtt_tag(font, "typ1")) return 1; // TrueType with type 1 font -- we don't support this!
  1123. if (stbtt_tag(font, "OTTO")) return 1; // OpenType with CFF
  1124. if (stbtt_tag4(font, 0,1,0,0)) return 1; // OpenType 1.0
  1125. if (stbtt_tag(font, "true")) return 1; // Apple specification for TrueType fonts
  1126. return 0;
  1127. }
  1128. // @OPTIMIZE: binary search
  1129. static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag)
  1130. {
  1131. stbtt_int32 num_tables = ttUSHORT(data+fontstart+4);
  1132. stbtt_uint32 tabledir = fontstart + 12;
  1133. stbtt_int32 i;
  1134. for (i=0; i < num_tables; ++i) {
  1135. stbtt_uint32 loc = tabledir + 16*i;
  1136. if (stbtt_tag(data+loc+0, tag))
  1137. return ttULONG(data+loc+8);
  1138. }
  1139. return 0;
  1140. }
  1141. static int stbtt_GetFontOffsetForIndex_internal(unsigned char *font_collection, int index)
  1142. {
  1143. // if it's just a font, there's only one valid index
  1144. if (stbtt__isfont(font_collection))
  1145. return index == 0 ? 0 : -1;
  1146. // check if it's a TTC
  1147. if (stbtt_tag(font_collection, "ttcf")) {
  1148. // version 1?
  1149. if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
  1150. stbtt_int32 n = ttLONG(font_collection+8);
  1151. if (index >= n)
  1152. return -1;
  1153. return ttULONG(font_collection+12+index*4);
  1154. }
  1155. }
  1156. return -1;
  1157. }
  1158. static int stbtt_GetNumberOfFonts_internal(unsigned char *font_collection)
  1159. {
  1160. // if it's just a font, there's only one valid font
  1161. if (stbtt__isfont(font_collection))
  1162. return 1;
  1163. // check if it's a TTC
  1164. if (stbtt_tag(font_collection, "ttcf")) {
  1165. // version 1?
  1166. if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
  1167. return ttLONG(font_collection+8);
  1168. }
  1169. }
  1170. return 0;
  1171. }
  1172. static stbtt__buf stbtt__get_subrs(stbtt__buf cff, stbtt__buf fontdict)
  1173. {
  1174. stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 };
  1175. stbtt__buf pdict;
  1176. stbtt__dict_get_ints(&fontdict, 18, 2, private_loc);
  1177. if (!private_loc[1] || !private_loc[0]) return stbtt__new_buf(NULL, 0);
  1178. pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]);
  1179. stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff);
  1180. if (!subrsoff) return stbtt__new_buf(NULL, 0);
  1181. stbtt__buf_seek(&cff, private_loc[1]+subrsoff);
  1182. return stbtt__cff_get_index(&cff);
  1183. }
  1184. static int stbtt_InitFont_internal(stbtt_fontinfo *info, unsigned char *data, int fontstart)
  1185. {
  1186. stbtt_uint32 cmap, t;
  1187. stbtt_int32 i,numTables;
  1188. info->data = data;
  1189. info->fontstart = fontstart;
  1190. info->cff = stbtt__new_buf(NULL, 0);
  1191. cmap = stbtt__find_table(data, fontstart, "cmap"); // required
  1192. info->loca = stbtt__find_table(data, fontstart, "loca"); // required
  1193. info->head = stbtt__find_table(data, fontstart, "head"); // required
  1194. info->glyf = stbtt__find_table(data, fontstart, "glyf"); // required
  1195. info->hhea = stbtt__find_table(data, fontstart, "hhea"); // required
  1196. info->hmtx = stbtt__find_table(data, fontstart, "hmtx"); // required
  1197. info->kern = stbtt__find_table(data, fontstart, "kern"); // not required
  1198. info->gpos = stbtt__find_table(data, fontstart, "GPOS"); // not required
  1199. if (!cmap || !info->head || !info->hhea || !info->hmtx)
  1200. return 0;
  1201. if (info->glyf) {
  1202. // required for truetype
  1203. if (!info->loca) return 0;
  1204. } else {
  1205. // initialization for CFF / Type2 fonts (OTF)
  1206. stbtt__buf b, topdict, topdictidx;
  1207. stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0;
  1208. stbtt_uint32 cff;
  1209. cff = stbtt__find_table(data, fontstart, "CFF ");
  1210. if (!cff) return 0;
  1211. info->fontdicts = stbtt__new_buf(NULL, 0);
  1212. info->fdselect = stbtt__new_buf(NULL, 0);
  1213. // @TODO this should use size from table (not 512MB)
  1214. info->cff = stbtt__new_buf(data+cff, 512*1024*1024);
  1215. b = info->cff;
  1216. // read the header
  1217. stbtt__buf_skip(&b, 2);
  1218. stbtt__buf_seek(&b, stbtt__buf_get8(&b)); // hdrsize
  1219. // @TODO the name INDEX could list multiple fonts,
  1220. // but we just use the first one.
  1221. stbtt__cff_get_index(&b); // name INDEX
  1222. topdictidx = stbtt__cff_get_index(&b);
  1223. topdict = stbtt__cff_index_get(topdictidx, 0);
  1224. stbtt__cff_get_index(&b); // string INDEX
  1225. info->gsubrs = stbtt__cff_get_index(&b);
  1226. stbtt__dict_get_ints(&topdict, 17, 1, &charstrings);
  1227. stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype);
  1228. stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff);
  1229. stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff);
  1230. info->subrs = stbtt__get_subrs(b, topdict);
  1231. // we only support Type 2 charstrings
  1232. if (cstype != 2) return 0;
  1233. if (charstrings == 0) return 0;
  1234. if (fdarrayoff) {
  1235. // looks like a CID font
  1236. if (!fdselectoff) return 0;
  1237. stbtt__buf_seek(&b, fdarrayoff);
  1238. info->fontdicts = stbtt__cff_get_index(&b);
  1239. info->fdselect = stbtt__buf_range(&b, fdselectoff, b.size-fdselectoff);
  1240. }
  1241. stbtt__buf_seek(&b, charstrings);
  1242. info->charstrings = stbtt__cff_get_index(&b);
  1243. }
  1244. t = stbtt__find_table(data, fontstart, "maxp");
  1245. if (t)
  1246. info->numGlyphs = ttUSHORT(data+t+4);
  1247. else
  1248. info->numGlyphs = 0xffff;
  1249. // find a cmap encoding table we understand *now* to avoid searching
  1250. // later. (todo: could make this installable)
  1251. // the same regardless of glyph.
  1252. numTables = ttUSHORT(data + cmap + 2);
  1253. info->index_map = 0;
  1254. for (i=0; i < numTables; ++i) {
  1255. stbtt_uint32 encoding_record = cmap + 4 + 8 * i;
  1256. // find an encoding we understand:
  1257. switch(ttUSHORT(data+encoding_record)) {
  1258. case STBTT_PLATFORM_ID_MICROSOFT:
  1259. switch (ttUSHORT(data+encoding_record+2)) {
  1260. case STBTT_MS_EID_UNICODE_BMP:
  1261. case STBTT_MS_EID_UNICODE_FULL:
  1262. // MS/Unicode
  1263. info->index_map = cmap + ttULONG(data+encoding_record+4);
  1264. break;
  1265. }
  1266. break;
  1267. case STBTT_PLATFORM_ID_UNICODE:
  1268. // Mac/iOS has these
  1269. // all the encodingIDs are unicode, so we don't bother to check it
  1270. info->index_map = cmap + ttULONG(data+encoding_record+4);
  1271. break;
  1272. }
  1273. }
  1274. if (info->index_map == 0)
  1275. return 0;
  1276. info->indexToLocFormat = ttUSHORT(data+info->head + 50);
  1277. return 1;
  1278. }
  1279. STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint)
  1280. {
  1281. stbtt_uint8 *data = info->data;
  1282. stbtt_uint32 index_map = info->index_map;
  1283. stbtt_uint16 format = ttUSHORT(data + index_map + 0);
  1284. if (format == 0) { // apple byte encoding
  1285. stbtt_int32 bytes = ttUSHORT(data + index_map + 2);
  1286. if (unicode_codepoint < bytes-6)
  1287. return ttBYTE(data + index_map + 6 + unicode_codepoint);
  1288. return 0;
  1289. } else if (format == 6) {
  1290. stbtt_uint32 first = ttUSHORT(data + index_map + 6);
  1291. stbtt_uint32 count = ttUSHORT(data + index_map + 8);
  1292. if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count)
  1293. return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2);
  1294. return 0;
  1295. } else if (format == 2) {
  1296. STBTT_assert(0); // @TODO: high-byte mapping for japanese/chinese/korean
  1297. return 0;
  1298. } else if (format == 4) { // standard mapping for windows fonts: binary search collection of ranges
  1299. stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1;
  1300. stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1;
  1301. stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10);
  1302. stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1;
  1303. // do a binary search of the segments
  1304. stbtt_uint32 endCount = index_map + 14;
  1305. stbtt_uint32 search = endCount;
  1306. if (unicode_codepoint > 0xffff)
  1307. return 0;
  1308. // they lie from endCount .. endCount + segCount
  1309. // but searchRange is the nearest power of two, so...
  1310. if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2))
  1311. search += rangeShift*2;
  1312. // now decrement to bias correctly to find smallest
  1313. search -= 2;
  1314. while (entrySelector) {
  1315. stbtt_uint16 end;
  1316. searchRange >>= 1;
  1317. end = ttUSHORT(data + search + searchRange*2);
  1318. if (unicode_codepoint > end)
  1319. search += searchRange*2;
  1320. --entrySelector;
  1321. }
  1322. search += 2;
  1323. {
  1324. stbtt_uint16 offset, start;
  1325. stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1);
  1326. STBTT_assert(unicode_codepoint <= ttUSHORT(data + endCount + 2*item));
  1327. start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item);
  1328. if (unicode_codepoint < start)
  1329. return 0;
  1330. offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item);
  1331. if (offset == 0)
  1332. return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item));
  1333. return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item);
  1334. }
  1335. } else if (format == 12 || format == 13) {
  1336. stbtt_uint32 ngroups = ttULONG(data+index_map+12);
  1337. stbtt_int32 low,high;
  1338. low = 0; high = (stbtt_int32)ngroups;
  1339. // Binary search the right group.
  1340. while (low < high) {
  1341. stbtt_int32 mid = low + ((high-low) >> 1); // rounds down, so low <= mid < high
  1342. stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12);
  1343. stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4);
  1344. if ((stbtt_uint32) unicode_codepoint < start_char)
  1345. high = mid;
  1346. else if ((stbtt_uint32) unicode_codepoint > end_char)
  1347. low = mid+1;
  1348. else {
  1349. stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8);
  1350. if (format == 12)
  1351. return start_glyph + unicode_codepoint-start_char;
  1352. else // format == 13
  1353. return start_glyph;
  1354. }
  1355. }
  1356. return 0; // not found
  1357. }
  1358. // @TODO
  1359. STBTT_assert(0);
  1360. return 0;
  1361. }
  1362. STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices)
  1363. {
  1364. return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices);
  1365. }
  1366. static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy)
  1367. {
  1368. v->type = type;
  1369. v->x = (stbtt_int16) x;
  1370. v->y = (stbtt_int16) y;
  1371. v->cx = (stbtt_int16) cx;
  1372. v->cy = (stbtt_int16) cy;
  1373. }
  1374. static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index)
  1375. {
  1376. int g1,g2;
  1377. STBTT_assert(!info->cff.size);
  1378. if (glyph_index >= info->numGlyphs) return -1; // glyph index out of range
  1379. if (info->indexToLocFormat >= 2) return -1; // unknown index->glyph map format
  1380. if (info->indexToLocFormat == 0) {
  1381. g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2;
  1382. g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2;
  1383. } else {
  1384. g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4);
  1385. g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4);
  1386. }
  1387. return g1==g2 ? -1 : g1; // if length is 0, return -1
  1388. }
  1389. static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1);
  1390. STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1)
  1391. {
  1392. if (info->cff.size) {
  1393. stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1);
  1394. } else {
  1395. int g = stbtt__GetGlyfOffset(info, glyph_index);
  1396. if (g < 0) return 0;
  1397. if (x0) *x0 = ttSHORT(info->data + g + 2);
  1398. if (y0) *y0 = ttSHORT(info->data + g + 4);
  1399. if (x1) *x1 = ttSHORT(info->data + g + 6);
  1400. if (y1) *y1 = ttSHORT(info->data + g + 8);
  1401. }
  1402. return 1;
  1403. }
  1404. STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1)
  1405. {
  1406. return stbtt_GetGlyphBox(info, stbtt_FindGlyphIndex(info,codepoint), x0,y0,x1,y1);
  1407. }
  1408. STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index)
  1409. {
  1410. stbtt_int16 numberOfContours;
  1411. int g;
  1412. if (info->cff.size)
  1413. return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0;
  1414. g = stbtt__GetGlyfOffset(info, glyph_index);
  1415. if (g < 0) return 1;
  1416. numberOfContours = ttSHORT(info->data + g);
  1417. return numberOfContours == 0;
  1418. }
  1419. static int stbtt__close_shape(stbtt_vertex *vertices, int num_vertices, int was_off, int start_off,
  1420. stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy)
  1421. {
  1422. if (start_off) {
  1423. if (was_off)
  1424. stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy);
  1425. stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx,sy,scx,scy);
  1426. } else {
  1427. if (was_off)
  1428. stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy);
  1429. else
  1430. stbtt_setvertex(&vertices[num_vertices++], STBTT_vline,sx,sy,0,0);
  1431. }
  1432. return num_vertices;
  1433. }
  1434. static int stbtt__GetGlyphShapeTT(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices)
  1435. {
  1436. stbtt_int16 numberOfContours;
  1437. stbtt_uint8 *endPtsOfContours;
  1438. stbtt_uint8 *data = info->data;
  1439. stbtt_vertex *vertices=0;
  1440. int num_vertices=0;
  1441. int g = stbtt__GetGlyfOffset(info, glyph_index);
  1442. *pvertices = NULL;
  1443. if (g < 0) return 0;
  1444. numberOfContours = ttSHORT(data + g);
  1445. if (numberOfContours > 0) {
  1446. stbtt_uint8 flags=0,flagcount;
  1447. stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0;
  1448. stbtt_int32 x,y,cx,cy,sx,sy, scx,scy;
  1449. stbtt_uint8 *points;
  1450. endPtsOfContours = (data + g + 10);
  1451. ins = ttUSHORT(data + g + 10 + numberOfContours * 2);
  1452. points = data + g + 10 + numberOfContours * 2 + 2 + ins;
  1453. n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2);
  1454. m = n + 2*numberOfContours; // a loose bound on how many vertices we might need
  1455. vertices = (stbtt_vertex *) STBTT_malloc(m * sizeof(vertices[0]), info->userdata);
  1456. if (vertices == 0)
  1457. return 0;
  1458. next_move = 0;
  1459. flagcount=0;
  1460. // in first pass, we load uninterpreted data into the allocated array
  1461. // above, shifted to the end of the array so we won't overwrite it when
  1462. // we create our final data starting from the front
  1463. off = m - n; // starting offset for uninterpreted data, regardless of how m ends up being calculated
  1464. // first load flags
  1465. for (i=0; i < n; ++i) {
  1466. if (flagcount == 0) {
  1467. flags = *points++;
  1468. if (flags & 8)
  1469. flagcount = *points++;
  1470. } else
  1471. --flagcount;
  1472. vertices[off+i].type = flags;
  1473. }
  1474. // now load x coordinates
  1475. x=0;
  1476. for (i=0; i < n; ++i) {
  1477. flags = vertices[off+i].type;
  1478. if (flags & 2) {
  1479. stbtt_int16 dx = *points++;
  1480. x += (flags & 16) ? dx : -dx; // ???
  1481. } else {
  1482. if (!(flags & 16)) {
  1483. x = x + (stbtt_int16) (points[0]*256 + points[1]);
  1484. points += 2;
  1485. }
  1486. }
  1487. vertices[off+i].x = (stbtt_int16) x;
  1488. }
  1489. // now load y coordinates
  1490. y=0;
  1491. for (i=0; i < n; ++i) {
  1492. flags = vertices[off+i].type;
  1493. if (flags & 4) {
  1494. stbtt_int16 dy = *points++;
  1495. y += (flags & 32) ? dy : -dy; // ???
  1496. } else {
  1497. if (!(flags & 32)) {
  1498. y = y + (stbtt_int16) (points[0]*256 + points[1]);
  1499. points += 2;
  1500. }
  1501. }
  1502. vertices[off+i].y = (stbtt_int16) y;
  1503. }
  1504. // now convert them to our format
  1505. num_vertices=0;
  1506. sx = sy = cx = cy = scx = scy = 0;
  1507. for (i=0; i < n; ++i) {
  1508. flags = vertices[off+i].type;
  1509. x = (stbtt_int16) vertices[off+i].x;
  1510. y = (stbtt_int16) vertices[off+i].y;
  1511. if (next_move == i) {
  1512. if (i != 0)
  1513. num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
  1514. // now start the new one
  1515. start_off = !(flags & 1);
  1516. if (start_off) {
  1517. // if we start off with an off-curve point, then when we need to find a point on the curve
  1518. // where we can start, and we need to save some state for when we wraparound.
  1519. scx = x;
  1520. scy = y;
  1521. if (!(vertices[off+i+1].type & 1)) {
  1522. // next point is also a curve point, so interpolate an on-point curve
  1523. sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1;
  1524. sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1;
  1525. } else {
  1526. // otherwise just use the next point as our start point
  1527. sx = (stbtt_int32) vertices[off+i+1].x;
  1528. sy = (stbtt_int32) vertices[off+i+1].y;
  1529. ++i; // we're using point i+1 as the starting point, so skip it
  1530. }
  1531. } else {
  1532. sx = x;
  1533. sy = y;
  1534. }
  1535. stbtt_setvertex(&vertices[num_vertices++], STBTT_vmove,sx,sy,0,0);
  1536. was_off = 0;
  1537. next_move = 1 + ttUSHORT(endPtsOfContours+j*2);
  1538. ++j;
  1539. } else {
  1540. if (!(flags & 1)) { // if it's a curve
  1541. if (was_off) // two off-curve control points in a row means interpolate an on-curve midpoint
  1542. stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy);
  1543. cx = x;
  1544. cy = y;
  1545. was_off = 1;
  1546. } else {
  1547. if (was_off)
  1548. stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, x,y, cx, cy);
  1549. else
  1550. stbtt_setvertex(&vertices[num_vertices++], STBTT_vline, x,y,0,0);
  1551. was_off = 0;
  1552. }
  1553. }
  1554. }
  1555. num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
  1556. } else if (numberOfContours == -1) {
  1557. // Compound shapes.
  1558. int more = 1;
  1559. stbtt_uint8 *comp = data + g + 10;
  1560. num_vertices = 0;
  1561. vertices = 0;
  1562. while (more) {
  1563. stbtt_uint16 flags, gidx;
  1564. int comp_num_verts = 0, i;
  1565. stbtt_vertex *comp_verts = 0, *tmp = 0;
  1566. float mtx[6] = {1,0,0,1,0,0}, m, n;
  1567. flags = ttSHORT(comp); comp+=2;
  1568. gidx = ttSHORT(comp); comp+=2;
  1569. if (flags & 2) { // XY values
  1570. if (flags & 1) { // shorts
  1571. mtx[4] = ttSHORT(comp); comp+=2;
  1572. mtx[5] = ttSHORT(comp); comp+=2;
  1573. } else {
  1574. mtx[4] = ttCHAR(comp); comp+=1;
  1575. mtx[5] = ttCHAR(comp); comp+=1;
  1576. }
  1577. }
  1578. else {
  1579. // @TODO handle matching point
  1580. STBTT_assert(0);
  1581. }
  1582. if (flags & (1<<3)) { // WE_HAVE_A_SCALE
  1583. mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
  1584. mtx[1] = mtx[2] = 0;
  1585. } else if (flags & (1<<6)) { // WE_HAVE_AN_X_AND_YSCALE
  1586. mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
  1587. mtx[1] = mtx[2] = 0;
  1588. mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
  1589. } else if (flags & (1<<7)) { // WE_HAVE_A_TWO_BY_TWO
  1590. mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
  1591. mtx[1] = ttSHORT(comp)/16384.0f; comp+=2;
  1592. mtx[2] = ttSHORT(comp)/16384.0f; comp+=2;
  1593. mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
  1594. }
  1595. // Find transformation scales.
  1596. m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]);
  1597. n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]);
  1598. // Get indexed glyph.
  1599. comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts);
  1600. if (comp_num_verts > 0) {
  1601. // Transform vertices.
  1602. for (i = 0; i < comp_num_verts; ++i) {
  1603. stbtt_vertex* v = &comp_verts[i];
  1604. stbtt_vertex_type x,y;
  1605. x=v->x; y=v->y;
  1606. v->x = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
  1607. v->y = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));
  1608. x=v->cx; y=v->cy;
  1609. v->cx = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
  1610. v->cy = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));
  1611. }
  1612. // Append vertices.
  1613. tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userdata);
  1614. if (!tmp) {
  1615. if (vertices) STBTT_free(vertices, info->userdata);
  1616. if (comp_verts) STBTT_free(comp_verts, info->userdata);
  1617. return 0;
  1618. }
  1619. if (num_vertices > 0) STBTT_memcpy(tmp, vertices, num_vertices*sizeof(stbtt_vertex));
  1620. STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex));
  1621. if (vertices) STBTT_free(vertices, info->userdata);
  1622. vertices = tmp;
  1623. STBTT_free(comp_verts, info->userdata);
  1624. num_vertices += comp_num_verts;
  1625. }
  1626. // More components ?
  1627. more = flags & (1<<5);
  1628. }
  1629. } else if (numberOfContours < 0) {
  1630. // @TODO other compound variations?
  1631. STBTT_assert(0);
  1632. } else {
  1633. // numberOfCounters == 0, do nothing
  1634. }
  1635. *pvertices = vertices;
  1636. return num_vertices;
  1637. }
  1638. typedef struct
  1639. {
  1640. int bounds;
  1641. int started;
  1642. float first_x, first_y;
  1643. float x, y;
  1644. stbtt_int32 min_x, max_x, min_y, max_y;
  1645. stbtt_vertex *pvertices;
  1646. int num_vertices;
  1647. } stbtt__csctx;
  1648. #define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0}
  1649. static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y)
  1650. {
  1651. if (x > c->max_x || !c->started) c->max_x = x;
  1652. if (y > c->max_y || !c->started) c->max_y = y;
  1653. if (x < c->min_x || !c->started) c->min_x = x;
  1654. if (y < c->min_y || !c->started) c->min_y = y;
  1655. c->started = 1;
  1656. }
  1657. static 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)
  1658. {
  1659. if (c->bounds) {
  1660. stbtt__track_vertex(c, x, y);
  1661. if (type == STBTT_vcubic) {
  1662. stbtt__track_vertex(c, cx, cy);
  1663. stbtt__track_vertex(c, cx1, cy1);
  1664. }
  1665. } else {
  1666. stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy);
  1667. c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1;
  1668. c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1;
  1669. }
  1670. c->num_vertices++;
  1671. }
  1672. static void stbtt__csctx_close_shape(stbtt__csctx *ctx)
  1673. {
  1674. if (ctx->first_x != ctx->x || ctx->first_y != ctx->y)
  1675. stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->first_x, (int)ctx->first_y, 0, 0, 0, 0);
  1676. }
  1677. static void stbtt__csctx_rmove_to(stbtt__csctx *ctx, float dx, float dy)
  1678. {
  1679. stbtt__csctx_close_shape(ctx);
  1680. ctx->first_x = ctx->x = ctx->x + dx;
  1681. ctx->first_y = ctx->y = ctx->y + dy;
  1682. stbtt__csctx_v(ctx, STBTT_vmove, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0);
  1683. }
  1684. static void stbtt__csctx_rline_to(stbtt__csctx *ctx, float dx, float dy)
  1685. {
  1686. ctx->x += dx;
  1687. ctx->y += dy;
  1688. stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0);
  1689. }
  1690. static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3)
  1691. {
  1692. float cx1 = ctx->x + dx1;
  1693. float cy1 = ctx->y + dy1;
  1694. float cx2 = cx1 + dx2;
  1695. float cy2 = cy1 + dy2;
  1696. ctx->x = cx2 + dx3;
  1697. ctx->y = cy2 + dy3;
  1698. stbtt__csctx_v(ctx, STBTT_vcubic, (int)ctx->x, (int)ctx->y, (int)cx1, (int)cy1, (int)cx2, (int)cy2);
  1699. }
  1700. static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n)
  1701. {
  1702. int count = stbtt__cff_index_count(&idx);
  1703. int bias = 107;
  1704. if (count >= 33900)
  1705. bias = 32768;
  1706. else if (count >= 1240)
  1707. bias = 1131;
  1708. n += bias;
  1709. if (n < 0 || n >= count)
  1710. return stbtt__new_buf(NULL, 0);
  1711. return stbtt__cff_index_get(idx, n);
  1712. }
  1713. static stbtt__buf stbtt__cid_get_glyph_subrs(const stbtt_fontinfo *info, int glyph_index)
  1714. {
  1715. stbtt__buf fdselect = info->fdselect;
  1716. int nranges, start, end, v, fmt, fdselector = -1, i;
  1717. stbtt__buf_seek(&fdselect, 0);
  1718. fmt = stbtt__buf_get8(&fdselect);
  1719. if (fmt == 0) {
  1720. // untested
  1721. stbtt__buf_skip(&fdselect, glyph_index);
  1722. fdselector = stbtt__buf_get8(&fdselect);
  1723. } else if (fmt == 3) {
  1724. nranges = stbtt__buf_get16(&fdselect);
  1725. start = stbtt__buf_get16(&fdselect);
  1726. for (i = 0; i < nranges; i++) {
  1727. v = stbtt__buf_get8(&fdselect);
  1728. end = stbtt__buf_get16(&fdselect);
  1729. if (glyph_index >= start && glyph_index < end) {
  1730. fdselector = v;
  1731. break;
  1732. }
  1733. start = end;
  1734. }
  1735. }
  1736. if (fdselector == -1) stbtt__new_buf(NULL, 0);
  1737. return stbtt__get_subrs(info->cff, stbtt__cff_index_get(info->fontdicts, fdselector));
  1738. }
  1739. static int stbtt__run_charstring(const stbtt_fontinfo *info, int glyph_index, stbtt__csctx *c)
  1740. {
  1741. int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0;
  1742. int has_subrs = 0, clear_stack;
  1743. float s[48];
  1744. stbtt__buf subr_stack[10], subrs = info->subrs, b;
  1745. float f;
  1746. #define STBTT__CSERR(s) (0)
  1747. // this currently ignores the initial width value, which isn't needed if we have hmtx
  1748. b = stbtt__cff_index_get(info->charstrings, glyph_index);
  1749. while (b.cursor < b.size) {
  1750. i = 0;
  1751. clear_stack = 1;
  1752. b0 = stbtt__buf_get8(&b);
  1753. switch (b0) {
  1754. // @TODO implement hinting
  1755. case 0x13: // hintmask
  1756. case 0x14: // cntrmask
  1757. if (in_header)
  1758. maskbits += (sp / 2); // implicit "vstem"
  1759. in_header = 0;
  1760. stbtt__buf_skip(&b, (maskbits + 7) / 8);
  1761. break;
  1762. case 0x01: // hstem
  1763. case 0x03: // vstem
  1764. case 0x12: // hstemhm
  1765. case 0x17: // vstemhm
  1766. maskbits += (sp / 2);
  1767. break;
  1768. case 0x15: // rmoveto
  1769. in_header = 0;
  1770. if (sp < 2) return STBTT__CSERR("rmoveto stack");
  1771. stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]);
  1772. break;
  1773. case 0x04: // vmoveto
  1774. in_header = 0;
  1775. if (sp < 1) return STBTT__CSERR("vmoveto stack");
  1776. stbtt__csctx_rmove_to(c, 0, s[sp-1]);
  1777. break;
  1778. case 0x16: // hmoveto
  1779. in_header = 0;
  1780. if (sp < 1) return STBTT__CSERR("hmoveto stack");
  1781. stbtt__csctx_rmove_to(c, s[sp-1], 0);
  1782. break;
  1783. case 0x05: // rlineto
  1784. if (sp < 2) return STBTT__CSERR("rlineto stack");
  1785. for (; i + 1 < sp; i += 2)
  1786. stbtt__csctx_rline_to(c, s[i], s[i+1]);
  1787. break;
  1788. // hlineto/vlineto and vhcurveto/hvcurveto alternate horizontal and vertical
  1789. // starting from a different place.
  1790. case 0x07: // vlineto
  1791. if (sp < 1) return STBTT__CSERR("vlineto stack");
  1792. goto vlineto;
  1793. case 0x06: // hlineto
  1794. if (sp < 1) return STBTT__CSERR("hlineto stack");
  1795. for (;;) {
  1796. if (i >= sp) break;
  1797. stbtt__csctx_rline_to(c, s[i], 0);
  1798. i++;
  1799. vlineto:
  1800. if (i >= sp) break;
  1801. stbtt__csctx_rline_to(c, 0, s[i]);
  1802. i++;
  1803. }
  1804. break;
  1805. case 0x1F: // hvcurveto
  1806. if (sp < 4) return STBTT__CSERR("hvcurveto stack");
  1807. goto hvcurveto;
  1808. case 0x1E: // vhcurveto
  1809. if (sp < 4) return STBTT__CSERR("vhcurveto stack");
  1810. for (;;) {
  1811. if (i + 3 >= sp) break;
  1812. 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);
  1813. i += 4;
  1814. hvcurveto:
  1815. if (i + 3 >= sp) break;
  1816. 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]);
  1817. i += 4;
  1818. }
  1819. break;
  1820. case 0x08: // rrcurveto
  1821. if (sp < 6) return STBTT__CSERR("rcurveline stack");
  1822. for (; i + 5 < sp; i += 6)
  1823. stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
  1824. break;
  1825. case 0x18: // rcurveline
  1826. if (sp < 8) return STBTT__CSERR("rcurveline stack");
  1827. for (; i + 5 < sp - 2; i += 6)
  1828. stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
  1829. if (i + 1 >= sp) return STBTT__CSERR("rcurveline stack");
  1830. stbtt__csctx_rline_to(c, s[i], s[i+1]);
  1831. break;
  1832. case 0x19: // rlinecurve
  1833. if (sp < 8) return STBTT__CSERR("rlinecurve stack");
  1834. for (; i + 1 < sp - 6; i += 2)
  1835. stbtt__csctx_rline_to(c, s[i], s[i+1]);
  1836. if (i + 5 >= sp) return STBTT__CSERR("rlinecurve stack");
  1837. stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
  1838. break;
  1839. case 0x1A: // vvcurveto
  1840. case 0x1B: // hhcurveto
  1841. if (sp < 4) return STBTT__CSERR("(vv|hh)curveto stack");
  1842. f = 0.0;
  1843. if (sp & 1) { f = s[i]; i++; }
  1844. for (; i + 3 < sp; i += 4) {
  1845. if (b0 == 0x1B)
  1846. stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0);
  1847. else
  1848. stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]);
  1849. f = 0.0;
  1850. }
  1851. break;
  1852. case 0x0A: // callsubr
  1853. if (!has_subrs) {
  1854. if (info->fdselect.size)
  1855. subrs = stbtt__cid_get_glyph_subrs(info, glyph_index);
  1856. has_subrs = 1;
  1857. }
  1858. // fallthrough
  1859. case 0x1D: // callgsubr
  1860. if (sp < 1) return STBTT__CSERR("call(g|)subr stack");
  1861. v = (int) s[--sp];
  1862. if (subr_stack_height >= 10) return STBTT__CSERR("recursion limit");
  1863. subr_stack[subr_stack_height++] = b;
  1864. b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v);
  1865. if (b.size == 0) return STBTT__CSERR("subr not found");
  1866. b.cursor = 0;
  1867. clear_stack = 0;
  1868. break;
  1869. case 0x0B: // return
  1870. if (subr_stack_height <= 0) return STBTT__CSERR("return outside subr");
  1871. b = subr_stack[--subr_stack_height];
  1872. clear_stack = 0;
  1873. break;
  1874. case 0x0E: // endchar
  1875. stbtt__csctx_close_shape(c);
  1876. return 1;
  1877. case 0x0C: { // two-byte escape
  1878. float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6;
  1879. float dx, dy;
  1880. int b1 = stbtt__buf_get8(&b);
  1881. switch (b1) {
  1882. // @TODO These "flex" implementations ignore the flex-depth and resolution,
  1883. // and always draw beziers.
  1884. case 0x22: // hflex
  1885. if (sp < 7) return STBTT__CSERR("hflex stack");
  1886. dx1 = s[0];
  1887. dx2 = s[1];
  1888. dy2 = s[2];
  1889. dx3 = s[3];
  1890. dx4 = s[4];
  1891. dx5 = s[5];
  1892. dx6 = s[6];
  1893. stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0);
  1894. stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0);
  1895. break;
  1896. case 0x23: // flex
  1897. if (sp < 13) return STBTT__CSERR("flex stack");
  1898. dx1 = s[0];
  1899. dy1 = s[1];
  1900. dx2 = s[2];
  1901. dy2 = s[3];
  1902. dx3 = s[4];
  1903. dy3 = s[5];
  1904. dx4 = s[6];
  1905. dy4 = s[7];
  1906. dx5 = s[8];
  1907. dy5 = s[9];
  1908. dx6 = s[10];
  1909. dy6 = s[11];
  1910. //fd is s[12]
  1911. stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
  1912. stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
  1913. break;
  1914. case 0x24: // hflex1
  1915. if (sp < 9) return STBTT__CSERR("hflex1 stack");
  1916. dx1 = s[0];
  1917. dy1 = s[1];
  1918. dx2 = s[2];
  1919. dy2 = s[3];
  1920. dx3 = s[4];
  1921. dx4 = s[5];
  1922. dx5 = s[6];
  1923. dy5 = s[7];
  1924. dx6 = s[8];
  1925. stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0);
  1926. stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5));
  1927. break;
  1928. case 0x25: // flex1
  1929. if (sp < 11) return STBTT__CSERR("flex1 stack");
  1930. dx1 = s[0];
  1931. dy1 = s[1];
  1932. dx2 = s[2];
  1933. dy2 = s[3];
  1934. dx3 = s[4];
  1935. dy3 = s[5];
  1936. dx4 = s[6];
  1937. dy4 = s[7];
  1938. dx5 = s[8];
  1939. dy5 = s[9];
  1940. dx6 = dy6 = s[10];
  1941. dx = dx1+dx2+dx3+dx4+dx5;
  1942. dy = dy1+dy2+dy3+dy4+dy5;
  1943. if (STBTT_fabs(dx) > STBTT_fabs(dy))
  1944. dy6 = -dy;
  1945. else
  1946. dx6 = -dx;
  1947. stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
  1948. stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
  1949. break;
  1950. default:
  1951. return STBTT__CSERR("unimplemented");
  1952. }
  1953. } break;
  1954. default:
  1955. if (b0 != 255 && b0 != 28 && (b0 < 32 || b0 > 254))
  1956. return STBTT__CSERR("reserved operator");
  1957. // push immediate
  1958. if (b0 == 255) {
  1959. f = (float)(stbtt_int32)stbtt__buf_get32(&b) / 0x10000;
  1960. } else {
  1961. stbtt__buf_skip(&b, -1);
  1962. f = (float)(stbtt_int16)stbtt__cff_int(&b);
  1963. }
  1964. if (sp >= 48) return STBTT__CSERR("push stack overflow");
  1965. s[sp++] = f;
  1966. clear_stack = 0;
  1967. break;
  1968. }
  1969. if (clear_stack) sp = 0;
  1970. }
  1971. return STBTT__CSERR("no endchar");
  1972. #undef STBTT__CSERR
  1973. }
  1974. static int stbtt__GetGlyphShapeT2(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices)
  1975. {
  1976. // runs the charstring twice, once to count and once to output (to avoid realloc)
  1977. stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1);
  1978. stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0);
  1979. if (stbtt__run_charstring(info, glyph_index, &count_ctx)) {
  1980. *pvertices = (stbtt_vertex*)STBTT_malloc(count_ctx.num_vertices*sizeof(stbtt_vertex), info->userdata);
  1981. output_ctx.pvertices = *pvertices;
  1982. if (stbtt__run_charstring(info, glyph_index, &output_ctx)) {
  1983. STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices);
  1984. return output_ctx.num_vertices;
  1985. }
  1986. }
  1987. *pvertices = NULL;
  1988. return 0;
  1989. }
  1990. static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1)
  1991. {
  1992. stbtt__csctx c = STBTT__CSCTX_INIT(1);
  1993. int r = stbtt__run_charstring(info, glyph_index, &c);
  1994. if (x0) *x0 = r ? c.min_x : 0;
  1995. if (y0) *y0 = r ? c.min_y : 0;
  1996. if (x1) *x1 = r ? c.max_x : 0;
  1997. if (y1) *y1 = r ? c.max_y : 0;
  1998. return r ? c.num_vertices : 0;
  1999. }
  2000. STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices)
  2001. {
  2002. if (!info->cff.size)
  2003. return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices);
  2004. else
  2005. return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices);
  2006. }
  2007. STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing)
  2008. {
  2009. stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34);
  2010. if (glyph_index < numOfLongHorMetrics) {
  2011. if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*glyph_index);
  2012. if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*glyph_index + 2);
  2013. } else {
  2014. if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*(numOfLongHorMetrics-1));
  2015. if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics));
  2016. }
  2017. }
  2018. static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2)
  2019. {
  2020. stbtt_uint8 *data = info->data + info->kern;
  2021. stbtt_uint32 needle, straw;
  2022. int l, r, m;
  2023. // we only look at the first table. it must be 'horizontal' and format 0.
  2024. if (!info->kern)
  2025. return 0;
  2026. if (ttUSHORT(data+2) < 1) // number of tables, need at least 1
  2027. return 0;
  2028. if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format
  2029. return 0;
  2030. l = 0;
  2031. r = ttUSHORT(data+10) - 1;
  2032. needle = glyph1 << 16 | glyph2;
  2033. while (l <= r) {
  2034. m = (l + r) >> 1;
  2035. straw = ttULONG(data+18+(m*6)); // note: unaligned read
  2036. if (needle < straw)
  2037. r = m - 1;
  2038. else if (needle > straw)
  2039. l = m + 1;
  2040. else
  2041. return ttSHORT(data+22+(m*6));
  2042. }
  2043. return 0;
  2044. }
  2045. static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable, int glyph)
  2046. {
  2047. stbtt_uint16 coverageFormat = ttUSHORT(coverageTable);
  2048. switch(coverageFormat) {
  2049. case 1: {
  2050. stbtt_uint16 glyphCount = ttUSHORT(coverageTable + 2);
  2051. // Binary search.
  2052. stbtt_int32 l=0, r=glyphCount-1, m;
  2053. int straw, needle=glyph;
  2054. while (l <= r) {
  2055. stbtt_uint8 *glyphArray = coverageTable + 4;
  2056. stbtt_uint16 glyphID;
  2057. m = (l + r) >> 1;
  2058. glyphID = ttUSHORT(glyphArray + 2 * m);
  2059. straw = glyphID;
  2060. if (needle < straw)
  2061. r = m - 1;
  2062. else if (needle > straw)
  2063. l = m + 1;
  2064. else {
  2065. return m;
  2066. }
  2067. }
  2068. } break;
  2069. case 2: {
  2070. stbtt_uint16 rangeCount = ttUSHORT(coverageTable + 2);
  2071. stbtt_uint8 *rangeArray = coverageTable + 4;
  2072. // Binary search.
  2073. stbtt_int32 l=0, r=rangeCount-1, m;
  2074. int strawStart, strawEnd, needle=glyph;
  2075. while (l <= r) {
  2076. stbtt_uint8 *rangeRecord;
  2077. m = (l + r) >> 1;
  2078. rangeRecord = rangeArray + 6 * m;
  2079. strawStart = ttUSHORT(rangeRecord);
  2080. strawEnd = ttUSHORT(rangeRecord + 2);
  2081. if (needle < strawStart)
  2082. r = m - 1;
  2083. else if (needle > strawEnd)
  2084. l = m + 1;
  2085. else {
  2086. stbtt_uint16 startCoverageIndex = ttUSHORT(rangeRecord + 4);
  2087. return startCoverageIndex + glyph - strawStart;
  2088. }
  2089. }
  2090. } break;
  2091. default: {
  2092. // There are no other cases.
  2093. STBTT_assert(0);
  2094. } break;
  2095. }
  2096. return -1;
  2097. }
  2098. static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable, int glyph)
  2099. {
  2100. stbtt_uint16 classDefFormat = ttUSHORT(classDefTable);
  2101. switch(classDefFormat)
  2102. {
  2103. case 1: {
  2104. stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2);
  2105. stbtt_uint16 glyphCount = ttUSHORT(classDefTable + 4);
  2106. stbtt_uint8 *classDef1ValueArray = classDefTable + 6;
  2107. if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount)
  2108. return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID));
  2109. classDefTable = classDef1ValueArray + 2 * glyphCount;
  2110. } break;
  2111. case 2: {
  2112. stbtt_uint16 classRangeCount = ttUSHORT(classDefTable + 2);
  2113. stbtt_uint8 *classRangeRecords = classDefTable + 4;
  2114. // Binary search.
  2115. stbtt_int32 l=0, r=classRangeCount-1, m;
  2116. int strawStart, strawEnd, needle=glyph;
  2117. while (l <= r) {
  2118. stbtt_uint8 *classRangeRecord;
  2119. m = (l + r) >> 1;
  2120. classRangeRecord = classRangeRecords + 6 * m;
  2121. strawStart = ttUSHORT(classRangeRecord);
  2122. strawEnd = ttUSHORT(classRangeRecord + 2);
  2123. if (needle < strawStart)
  2124. r = m - 1;
  2125. else if (needle > strawEnd)
  2126. l = m + 1;
  2127. else
  2128. return (stbtt_int32)ttUSHORT(classRangeRecord + 4);
  2129. }
  2130. classDefTable = classRangeRecords + 6 * classRangeCount;
  2131. } break;
  2132. default: {
  2133. // There are no other cases.
  2134. STBTT_assert(0);
  2135. } break;
  2136. }
  2137. return -1;
  2138. }
  2139. // Define to STBTT_assert(x) if you want to break on unimplemented formats.
  2140. #define STBTT_GPOS_TODO_assert(x)
  2141. static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2)
  2142. {
  2143. stbtt_uint16 lookupListOffset;
  2144. stbtt_uint8 *lookupList;
  2145. stbtt_uint16 lookupCount;
  2146. stbtt_uint8 *data;
  2147. stbtt_int32 i;
  2148. if (!info->gpos) return 0;
  2149. data = info->data + info->gpos;
  2150. if (ttUSHORT(data+0) != 1) return 0; // Major version 1
  2151. if (ttUSHORT(data+2) != 0) return 0; // Minor version 0
  2152. lookupListOffset = ttUSHORT(data+8);
  2153. lookupList = data + lookupListOffset;
  2154. lookupCount = ttUSHORT(lookupList);
  2155. for (i=0; i<lookupCount; ++i) {
  2156. stbtt_uint16 lookupOffset = ttUSHORT(lookupList + 2 + 2 * i);
  2157. stbtt_uint8 *lookupTable = lookupList + lookupOffset;
  2158. stbtt_uint16 lookupType = ttUSHORT(lookupTable);
  2159. stbtt_uint16 subTableCount = ttUSHORT(lookupTable + 4);
  2160. stbtt_uint8 *subTableOffsets = lookupTable + 6;
  2161. switch(lookupType) {
  2162. case 2: { // Pair Adjustment Positioning Subtable
  2163. stbtt_int32 sti;
  2164. for (sti=0; sti<subTableCount; sti++) {
  2165. stbtt_uint16 subtableOffset = ttUSHORT(subTableOffsets + 2 * sti);
  2166. stbtt_uint8 *table = lookupTable + subtableOffset;
  2167. stbtt_uint16 posFormat = ttUSHORT(table);
  2168. stbtt_uint16 coverageOffset = ttUSHORT(table + 2);
  2169. stbtt_int32 coverageIndex = stbtt__GetCoverageIndex(table + coverageOffset, glyph1);
  2170. if (coverageIndex == -1) continue;
  2171. switch (posFormat) {
  2172. case 1: {
  2173. stbtt_int32 l, r, m;
  2174. int straw, needle;
  2175. stbtt_uint16 valueFormat1 = ttUSHORT(table + 4);
  2176. stbtt_uint16 valueFormat2 = ttUSHORT(table + 6);
  2177. stbtt_int32 valueRecordPairSizeInBytes = 2;
  2178. stbtt_uint16 pairSetCount = ttUSHORT(table + 8);
  2179. stbtt_uint16 pairPosOffset = ttUSHORT(table + 10 + 2 * coverageIndex);
  2180. stbtt_uint8 *pairValueTable = table + pairPosOffset;
  2181. stbtt_uint16 pairValueCount = ttUSHORT(pairValueTable);
  2182. stbtt_uint8 *pairValueArray = pairValueTable + 2;
  2183. // TODO: Support more formats.
  2184. STBTT_GPOS_TODO_assert(valueFormat1 == 4);
  2185. if (valueFormat1 != 4) return 0;
  2186. STBTT_GPOS_TODO_assert(valueFormat2 == 0);
  2187. if (valueFormat2 != 0) return 0;
  2188. STBTT_assert(coverageIndex < pairSetCount);
  2189. needle=glyph2;
  2190. r=pairValueCount-1;
  2191. l=0;
  2192. // Binary search.
  2193. while (l <= r) {
  2194. stbtt_uint16 secondGlyph;
  2195. stbtt_uint8 *pairValue;
  2196. m = (l + r) >> 1;
  2197. pairValue = pairValueArray + (2 + valueRecordPairSizeInBytes) * m;
  2198. secondGlyph = ttUSHORT(pairValue);
  2199. straw = secondGlyph;
  2200. if (needle < straw)
  2201. r = m - 1;
  2202. else if (needle > straw)
  2203. l = m + 1;
  2204. else {
  2205. stbtt_int16 xAdvance = ttSHORT(pairValue + 2);
  2206. return xAdvance;
  2207. }
  2208. }
  2209. } break;
  2210. case 2: {
  2211. stbtt_uint16 valueFormat1 = ttUSHORT(table + 4);
  2212. stbtt_uint16 valueFormat2 = ttUSHORT(table + 6);
  2213. stbtt_uint16 classDef1Offset = ttUSHORT(table + 8);
  2214. stbtt_uint16 classDef2Offset = ttUSHORT(table + 10);
  2215. int glyph1class = stbtt__GetGlyphClass(table + classDef1Offset, glyph1);
  2216. int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2);
  2217. stbtt_uint16 class1Count = ttUSHORT(table + 12);
  2218. stbtt_uint16 class2Count = ttUSHORT(table + 14);
  2219. STBTT_assert(glyph1class < class1Count);
  2220. STBTT_assert(glyph2class < class2Count);
  2221. // TODO: Support more formats.
  2222. STBTT_GPOS_TODO_assert(valueFormat1 == 4);
  2223. if (valueFormat1 != 4) return 0;
  2224. STBTT_GPOS_TODO_assert(valueFormat2 == 0);
  2225. if (valueFormat2 != 0) return 0;
  2226. if (glyph1class >= 0 && glyph1class < class1Count && glyph2class >= 0 && glyph2class < class2Count) {
  2227. stbtt_uint8 *class1Records = table + 16;
  2228. stbtt_uint8 *class2Records = class1Records + 2 * (glyph1class * class2Count);
  2229. stbtt_int16 xAdvance = ttSHORT(class2Records + 2 * glyph2class);
  2230. return xAdvance;
  2231. }
  2232. } break;
  2233. default: {
  2234. // There are no other cases.
  2235. STBTT_assert(0);
  2236. break;
  2237. };
  2238. }
  2239. }
  2240. break;
  2241. };
  2242. default:
  2243. // TODO: Implement other stuff.
  2244. break;
  2245. }
  2246. }
  2247. return 0;
  2248. }
  2249. STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int g1, int g2)
  2250. {
  2251. int xAdvance = 0;
  2252. if (info->gpos)
  2253. xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2);
  2254. if (info->kern)
  2255. xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2);
  2256. return xAdvance;
  2257. }
  2258. STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2)
  2259. {
  2260. if (!info->kern && !info->gpos) // if no kerning table, don't waste time looking up both codepoint->glyphs
  2261. return 0;
  2262. return stbtt_GetGlyphKernAdvance(info, stbtt_FindGlyphIndex(info,ch1), stbtt_FindGlyphIndex(info,ch2));
  2263. }
  2264. STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing)
  2265. {
  2266. stbtt_GetGlyphHMetrics(info, stbtt_FindGlyphIndex(info,codepoint), advanceWidth, leftSideBearing);
  2267. }
  2268. STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap)
  2269. {
  2270. if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4);
  2271. if (descent) *descent = ttSHORT(info->data+info->hhea + 6);
  2272. if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8);
  2273. }
  2274. STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap)
  2275. {
  2276. int tab = stbtt__find_table(info->data, info->fontstart, "OS/2");
  2277. if (!tab)
  2278. return 0;
  2279. if (typoAscent ) *typoAscent = ttSHORT(info->data+tab + 68);
  2280. if (typoDescent) *typoDescent = ttSHORT(info->data+tab + 70);
  2281. if (typoLineGap) *typoLineGap = ttSHORT(info->data+tab + 72);
  2282. return 1;
  2283. }
  2284. STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1)
  2285. {
  2286. *x0 = ttSHORT(info->data + info->head + 36);
  2287. *y0 = ttSHORT(info->data + info->head + 38);
  2288. *x1 = ttSHORT(info->data + info->head + 40);
  2289. *y1 = ttSHORT(info->data + info->head + 42);
  2290. }
  2291. STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float height)
  2292. {
  2293. int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6);
  2294. return (float) height / fheight;
  2295. }
  2296. STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels)
  2297. {
  2298. int unitsPerEm = ttUSHORT(info->data + info->head + 18);
  2299. return pixels / unitsPerEm;
  2300. }
  2301. STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v)
  2302. {
  2303. STBTT_free(v, info->userdata);
  2304. }
  2305. //////////////////////////////////////////////////////////////////////////////
  2306. //
  2307. // antialiasing software rasterizer
  2308. //
  2309. 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)
  2310. {
  2311. int x0=0,y0=0,x1,y1; // =0 suppresses compiler warning
  2312. if (!stbtt_GetGlyphBox(font, glyph, &x0,&y0,&x1,&y1)) {
  2313. // e.g. space character
  2314. if (ix0) *ix0 = 0;
  2315. if (iy0) *iy0 = 0;
  2316. if (ix1) *ix1 = 0;
  2317. if (iy1) *iy1 = 0;
  2318. } else {
  2319. // move to integral bboxes (treating pixels as little squares, what pixels get touched)?
  2320. if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x);
  2321. if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y);
  2322. if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x);
  2323. if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y);
  2324. }
  2325. }
  2326. 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)
  2327. {
  2328. stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1);
  2329. }
  2330. 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)
  2331. {
  2332. stbtt_GetGlyphBitmapBoxSubpixel(font, stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1);
  2333. }
  2334. 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)
  2335. {
  2336. stbtt_GetCodepointBitmapBoxSubpixel(font, codepoint, scale_x, scale_y,0.0f,0.0f, ix0,iy0,ix1,iy1);
  2337. }
  2338. //////////////////////////////////////////////////////////////////////////////
  2339. //
  2340. // Rasterizer
  2341. typedef struct stbtt__hheap_chunk
  2342. {
  2343. struct stbtt__hheap_chunk *next;
  2344. } stbtt__hheap_chunk;
  2345. typedef struct stbtt__hheap
  2346. {
  2347. struct stbtt__hheap_chunk *head;
  2348. void *first_free;
  2349. int num_remaining_in_head_chunk;
  2350. } stbtt__hheap;
  2351. static void *stbtt__hheap_alloc(stbtt__hheap *hh, size_t size, void *userdata)
  2352. {
  2353. if (hh->first_free) {
  2354. void *p = hh->first_free;
  2355. hh->first_free = * (void **) p;
  2356. return p;
  2357. } else {
  2358. if (hh->num_remaining_in_head_chunk == 0) {
  2359. int count = (size < 32 ? 2000 : size < 128 ? 800 : 100);
  2360. stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * count, userdata);
  2361. if (c == NULL)
  2362. return NULL;
  2363. c->next = hh->head;
  2364. hh->head = c;
  2365. hh->num_remaining_in_head_chunk = count;
  2366. }
  2367. --hh->num_remaining_in_head_chunk;
  2368. return (char *) (hh->head) + sizeof(stbtt__hheap_chunk) + size * hh->num_remaining_in_head_chunk;
  2369. }
  2370. }
  2371. static void stbtt__hheap_free(stbtt__hheap *hh, void *p)
  2372. {
  2373. *(void **) p = hh->first_free;
  2374. hh->first_free = p;
  2375. }
  2376. static void stbtt__hheap_cleanup(stbtt__hheap *hh, void *userdata)
  2377. {
  2378. stbtt__hheap_chunk *c = hh->head;
  2379. while (c) {
  2380. stbtt__hheap_chunk *n = c->next;
  2381. STBTT_free(c, userdata);
  2382. c = n;
  2383. }
  2384. }
  2385. typedef struct stbtt__edge {
  2386. float x0,y0, x1,y1;
  2387. int invert;
  2388. } stbtt__edge;
  2389. typedef struct stbtt__active_edge
  2390. {
  2391. struct stbtt__active_edge *next;
  2392. #if STBTT_RASTERIZER_VERSION==1
  2393. int x,dx;
  2394. float ey;
  2395. int direction;
  2396. #elif STBTT_RASTERIZER_VERSION==2
  2397. float fx,fdx,fdy;
  2398. float direction;
  2399. float sy;
  2400. float ey;
  2401. #else
  2402. #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
  2403. #endif
  2404. } stbtt__active_edge;
  2405. #if STBTT_RASTERIZER_VERSION == 1
  2406. #define STBTT_FIXSHIFT 10
  2407. #define STBTT_FIX (1 << STBTT_FIXSHIFT)
  2408. #define STBTT_FIXMASK (STBTT_FIX-1)
  2409. static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata)
  2410. {
  2411. stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata);
  2412. float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
  2413. STBTT_assert(z != NULL);
  2414. if (!z) return z;
  2415. // round dx down to avoid overshooting
  2416. if (dxdy < 0)
  2417. z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy);
  2418. else
  2419. z->dx = STBTT_ifloor(STBTT_FIX * dxdy);
  2420. z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0)); // use z->dx so when we offset later it's by the same amount
  2421. z->x -= off_x * STBTT_FIX;
  2422. z->ey = e->y1;
  2423. z->next = 0;
  2424. z->direction = e->invert ? 1 : -1;
  2425. return z;
  2426. }
  2427. #elif STBTT_RASTERIZER_VERSION == 2
  2428. static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata)
  2429. {
  2430. stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata);
  2431. float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
  2432. STBTT_assert(z != NULL);
  2433. //STBTT_assert(e->y0 <= start_point);
  2434. if (!z) return z;
  2435. z->fdx = dxdy;
  2436. z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f;
  2437. z->fx = e->x0 + dxdy * (start_point - e->y0);
  2438. z->fx -= off_x;
  2439. z->direction = e->invert ? 1.0f : -1.0f;
  2440. z->sy = e->y0;
  2441. z->ey = e->y1;
  2442. z->next = 0;
  2443. return z;
  2444. }
  2445. #else
  2446. #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
  2447. #endif
  2448. #if STBTT_RASTERIZER_VERSION == 1
  2449. // note: this routine clips fills that extend off the edges... ideally this
  2450. // wouldn't happen, but it could happen if the truetype glyph bounding boxes
  2451. // are wrong, or if the user supplies a too-small bitmap
  2452. static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int max_weight)
  2453. {
  2454. // non-zero winding fill
  2455. int x0=0, w=0;
  2456. while (e) {
  2457. if (w == 0) {
  2458. // if we're currently at zero, we need to record the edge start point
  2459. x0 = e->x; w += e->direction;
  2460. } else {
  2461. int x1 = e->x; w += e->direction;
  2462. // if we went to zero, we need to draw
  2463. if (w == 0) {
  2464. int i = x0 >> STBTT_FIXSHIFT;
  2465. int j = x1 >> STBTT_FIXSHIFT;
  2466. if (i < len && j >= 0) {
  2467. if (i == j) {
  2468. // x0,x1 are the same pixel, so compute combined coverage
  2469. scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT);
  2470. } else {
  2471. if (i >= 0) // add antialiasing for x0
  2472. scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT);
  2473. else
  2474. i = -1; // clip
  2475. if (j < len) // add antialiasing for x1
  2476. scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT);
  2477. else
  2478. j = len; // clip
  2479. for (++i; i < j; ++i) // fill pixels between x0 and x1
  2480. scanline[i] = scanline[i] + (stbtt_uint8) max_weight;
  2481. }
  2482. }
  2483. }
  2484. }
  2485. e = e->next;
  2486. }
  2487. }
  2488. static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
  2489. {
  2490. stbtt__hheap hh = { 0, 0, 0 };
  2491. stbtt__active_edge *active = NULL;
  2492. int y,j=0;
  2493. int max_weight = (255 / vsubsample); // weight per vertical scanline
  2494. int s; // vertical subsample index
  2495. unsigned char scanline_data[512], *scanline;
  2496. if (result->w > 512)
  2497. scanline = (unsigned char *) STBTT_malloc(result->w, userdata);
  2498. else
  2499. scanline = scanline_data;
  2500. y = off_y * vsubsample;
  2501. e[n].y0 = (off_y + result->h) * (float) vsubsample + 1;
  2502. while (j < result->h) {
  2503. STBTT_memset(scanline, 0, result->w);
  2504. for (s=0; s < vsubsample; ++s) {
  2505. // find center of pixel for this scanline
  2506. float scan_y = y + 0.5f;
  2507. stbtt__active_edge **step = &active;
  2508. // update all active edges;
  2509. // remove all active edges that terminate before the center of this scanline
  2510. while (*step) {
  2511. stbtt__active_edge * z = *step;
  2512. if (z->ey <= scan_y) {
  2513. *step = z->next; // delete from list
  2514. STBTT_assert(z->direction);
  2515. z->direction = 0;
  2516. stbtt__hheap_free(&hh, z);
  2517. } else {
  2518. z->x += z->dx; // advance to position for current scanline
  2519. step = &((*step)->next); // advance through list
  2520. }
  2521. }
  2522. // resort the list if needed
  2523. for(;;) {
  2524. int changed=0;
  2525. step = &active;
  2526. while (*step && (*step)->next) {
  2527. if ((*step)->x > (*step)->next->x) {
  2528. stbtt__active_edge *t = *step;
  2529. stbtt__active_edge *q = t->next;
  2530. t->next = q->next;
  2531. q->next = t;
  2532. *step = q;
  2533. changed = 1;
  2534. }
  2535. step = &(*step)->next;
  2536. }
  2537. if (!changed) break;
  2538. }
  2539. // insert all edges that start before the center of this scanline -- omit ones that also end on this scanline
  2540. while (e->y0 <= scan_y) {
  2541. if (e->y1 > scan_y) {
  2542. stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata);
  2543. if (z != NULL) {
  2544. // find insertion point
  2545. if (active == NULL)
  2546. active = z;
  2547. else if (z->x < active->x) {
  2548. // insert at front
  2549. z->next = active;
  2550. active = z;
  2551. } else {
  2552. // find thing to insert AFTER
  2553. stbtt__active_edge *p = active;
  2554. while (p->next && p->next->x < z->x)
  2555. p = p->next;
  2556. // at this point, p->next->x is NOT < z->x
  2557. z->next = p->next;
  2558. p->next = z;
  2559. }
  2560. }
  2561. }
  2562. ++e;
  2563. }
  2564. // now process all active edges in XOR fashion
  2565. if (active)
  2566. stbtt__fill_active_edges(scanline, result->w, active, max_weight);
  2567. ++y;
  2568. }
  2569. STBTT_memcpy(result->pixels + j * result->stride, scanline, result->w);
  2570. ++j;
  2571. }
  2572. stbtt__hheap_cleanup(&hh, userdata);
  2573. if (scanline != scanline_data)
  2574. STBTT_free(scanline, userdata);
  2575. }
  2576. #elif STBTT_RASTERIZER_VERSION == 2
  2577. // the edge passed in here does not cross the vertical line at x or the vertical line at x+1
  2578. // (i.e. it has already been clipped to those)
  2579. static void stbtt__handle_clipped_edge(float *scanline, int x, stbtt__active_edge *e, float x0, float y0, float x1, float y1)
  2580. {
  2581. if (y0 == y1) return;
  2582. STBTT_assert(y0 < y1);
  2583. STBTT_assert(e->sy <= e->ey);
  2584. if (y0 > e->ey) return;
  2585. if (y1 < e->sy) return;
  2586. if (y0 < e->sy) {
  2587. x0 += (x1-x0) * (e->sy - y0) / (y1-y0);
  2588. y0 = e->sy;
  2589. }
  2590. if (y1 > e->ey) {
  2591. x1 += (x1-x0) * (e->ey - y1) / (y1-y0);
  2592. y1 = e->ey;
  2593. }
  2594. if (x0 == x)
  2595. STBTT_assert(x1 <= x+1);
  2596. else if (x0 == x+1)
  2597. STBTT_assert(x1 >= x);
  2598. else if (x0 <= x)
  2599. STBTT_assert(x1 <= x);
  2600. else if (x0 >= x+1)
  2601. STBTT_assert(x1 >= x+1);
  2602. else
  2603. STBTT_assert(x1 >= x && x1 <= x+1);
  2604. if (x0 <= x && x1 <= x)
  2605. scanline[x] += e->direction * (y1-y0);
  2606. else if (x0 >= x+1 && x1 >= x+1)
  2607. ;
  2608. else {
  2609. STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1);
  2610. scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2); // coverage = 1 - average x position
  2611. }
  2612. }
  2613. static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill, int len, stbtt__active_edge *e, float y_top)
  2614. {
  2615. float y_bottom = y_top+1;
  2616. while (e) {
  2617. // brute force every pixel
  2618. // compute intersection points with top & bottom
  2619. STBTT_assert(e->ey >= y_top);
  2620. if (e->fdx == 0) {
  2621. float x0 = e->fx;
  2622. if (x0 < len) {
  2623. if (x0 >= 0) {
  2624. stbtt__handle_clipped_edge(scanline,(int) x0,e, x0,y_top, x0,y_bottom);
  2625. stbtt__handle_clipped_edge(scanline_fill-1,(int) x0+1,e, x0,y_top, x0,y_bottom);
  2626. } else {
  2627. stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom);
  2628. }
  2629. }
  2630. } else {
  2631. float x0 = e->fx;
  2632. float dx = e->fdx;
  2633. float xb = x0 + dx;
  2634. float x_top, x_bottom;
  2635. float sy0,sy1;
  2636. float dy = e->fdy;
  2637. STBTT_assert(e->sy <= y_bottom && e->ey >= y_top);
  2638. // compute endpoints of line segment clipped to this scanline (if the
  2639. // line segment starts on this scanline. x0 is the intersection of the
  2640. // line with y_top, but that may be off the line segment.
  2641. if (e->sy > y_top) {
  2642. x_top = x0 + dx * (e->sy - y_top);
  2643. sy0 = e->sy;
  2644. } else {
  2645. x_top = x0;
  2646. sy0 = y_top;
  2647. }
  2648. if (e->ey < y_bottom) {
  2649. x_bottom = x0 + dx * (e->ey - y_top);
  2650. sy1 = e->ey;
  2651. } else {
  2652. x_bottom = xb;
  2653. sy1 = y_bottom;
  2654. }
  2655. if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) {
  2656. // from here on, we don't have to range check x values
  2657. if ((int) x_top == (int) x_bottom) {
  2658. float height;
  2659. // simple case, only spans one pixel
  2660. int x = (int) x_top;
  2661. height = sy1 - sy0;
  2662. STBTT_assert(x >= 0 && x < len);
  2663. scanline[x] += e->direction * (1-((x_top - x) + (x_bottom-x))/2) * height;
  2664. scanline_fill[x] += e->direction * height; // everything right of this pixel is filled
  2665. } else {
  2666. int x,x1,x2;
  2667. float y_crossing, step, sign, area;
  2668. // covers 2+ pixels
  2669. if (x_top > x_bottom) {
  2670. // flip scanline vertically; signed area is the same
  2671. float t;
  2672. sy0 = y_bottom - (sy0 - y_top);
  2673. sy1 = y_bottom - (sy1 - y_top);
  2674. t = sy0, sy0 = sy1, sy1 = t;
  2675. t = x_bottom, x_bottom = x_top, x_top = t;
  2676. dx = -dx;
  2677. dy = -dy;
  2678. t = x0, x0 = xb, xb = t;
  2679. }
  2680. x1 = (int) x_top;
  2681. x2 = (int) x_bottom;
  2682. // compute intersection with y axis at x1+1
  2683. y_crossing = (x1+1 - x0) * dy + y_top;
  2684. sign = e->direction;
  2685. // area of the rectangle covered from y0..y_crossing
  2686. area = sign * (y_crossing-sy0);
  2687. // area of the triangle (x_top,y0), (x+1,y0), (x+1,y_crossing)
  2688. scanline[x1] += area * (1-((x_top - x1)+(x1+1-x1))/2);
  2689. step = sign * dy;
  2690. for (x = x1+1; x < x2; ++x) {
  2691. scanline[x] += area + step/2;
  2692. area += step;
  2693. }
  2694. y_crossing += dy * (x2 - (x1+1));
  2695. STBTT_assert(STBTT_fabs(area) <= 1.01f);
  2696. scanline[x2] += area + sign * (1-((x2-x2)+(x_bottom-x2))/2) * (sy1-y_crossing);
  2697. scanline_fill[x2] += sign * (sy1-sy0);
  2698. }
  2699. } else {
  2700. // if edge goes outside of box we're drawing, we require
  2701. // clipping logic. since this does not match the intended use
  2702. // of this library, we use a different, very slow brute
  2703. // force implementation
  2704. int x;
  2705. for (x=0; x < len; ++x) {
  2706. // cases:
  2707. //
  2708. // there can be up to two intersections with the pixel. any intersection
  2709. // with left or right edges can be handled by splitting into two (or three)
  2710. // regions. intersections with top & bottom do not necessitate case-wise logic.
  2711. //
  2712. // the old way of doing this found the intersections with the left & right edges,
  2713. // then used some simple logic to produce up to three segments in sorted order
  2714. // from top-to-bottom. however, this had a problem: if an x edge was epsilon
  2715. // across the x border, then the corresponding y position might not be distinct
  2716. // from the other y segment, and it might ignored as an empty segment. to avoid
  2717. // that, we need to explicitly produce segments based on x positions.
  2718. // rename variables to clearly-defined pairs
  2719. float y0 = y_top;
  2720. float x1 = (float) (x);
  2721. float x2 = (float) (x+1);
  2722. float x3 = xb;
  2723. float y3 = y_bottom;
  2724. // x = e->x + e->dx * (y-y_top)
  2725. // (y-y_top) = (x - e->x) / e->dx
  2726. // y = (x - e->x) / e->dx + y_top
  2727. float y1 = (x - x0) / dx + y_top;
  2728. float y2 = (x+1 - x0) / dx + y_top;
  2729. if (x0 < x1 && x3 > x2) { // three segments descending down-right
  2730. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
  2731. stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2);
  2732. stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
  2733. } else if (x3 < x1 && x0 > x2) { // three segments descending down-left
  2734. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
  2735. stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1);
  2736. stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
  2737. } else if (x0 < x1 && x3 > x1) { // two segments across x, down-right
  2738. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
  2739. stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
  2740. } else if (x3 < x1 && x0 > x1) { // two segments across x, down-left
  2741. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
  2742. stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
  2743. } else if (x0 < x2 && x3 > x2) { // two segments across x+1, down-right
  2744. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
  2745. stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
  2746. } else if (x3 < x2 && x0 > x2) { // two segments across x+1, down-left
  2747. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
  2748. stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
  2749. } else { // one segment
  2750. stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3);
  2751. }
  2752. }
  2753. }
  2754. }
  2755. e = e->next;
  2756. }
  2757. }
  2758. // directly AA rasterize edges w/o supersampling
  2759. static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata)
  2760. {
  2761. stbtt__hheap hh = { 0, 0, 0 };
  2762. stbtt__active_edge *active = NULL;
  2763. int y,j=0, i;
  2764. float scanline_data[129], *scanline, *scanline2;
  2765. STBTT__NOTUSED(vsubsample);
  2766. if (result->w > 64)
  2767. scanline = (float *) STBTT_malloc((result->w*2+1) * sizeof(float), userdata);
  2768. else
  2769. scanline = scanline_data;
  2770. scanline2 = scanline + result->w;
  2771. y = off_y;
  2772. e[n].y0 = (float) (off_y + result->h) + 1;
  2773. while (j < result->h) {
  2774. // find center of pixel for this scanline
  2775. float scan_y_top = y + 0.0f;
  2776. float scan_y_bottom = y + 1.0f;
  2777. stbtt__active_edge **step = &active;
  2778. STBTT_memset(scanline , 0, result->w*sizeof(scanline[0]));
  2779. STBTT_memset(scanline2, 0, (result->w+1)*sizeof(scanline[0]));
  2780. // update all active edges;
  2781. // remove all active edges that terminate before the top of this scanline
  2782. while (*step) {
  2783. stbtt__active_edge * z = *step;
  2784. if (z->ey <= scan_y_top) {
  2785. *step = z->next; // delete from list
  2786. STBTT_assert(z->direction);
  2787. z->direction = 0;
  2788. stbtt__hheap_free(&hh, z);
  2789. } else {
  2790. step = &((*step)->next); // advance through list
  2791. }
  2792. }
  2793. // insert all edges that start before the bottom of this scanline
  2794. while (e->y0 <= scan_y_bottom) {
  2795. if (e->y0 != e->y1) {
  2796. stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata);
  2797. if (z != NULL) {
  2798. STBTT_assert(z->ey >= scan_y_top);
  2799. // insert at front
  2800. z->next = active;
  2801. active = z;
  2802. }
  2803. }
  2804. ++e;
  2805. }
  2806. // now process all active edges
  2807. if (active)
  2808. stbtt__fill_active_edges_new(scanline, scanline2+1, result->w, active, scan_y_top);
  2809. {
  2810. float sum = 0;
  2811. for (i=0; i < result->w; ++i) {
  2812. float k;
  2813. int m;
  2814. sum += scanline2[i];
  2815. k = scanline[i] + sum;
  2816. k = (float) STBTT_fabs(k)*255 + 0.5f;
  2817. m = (int) k;
  2818. if (m > 255) m = 255;
  2819. result->pixels[j*result->stride + i] = (unsigned char) m;
  2820. }
  2821. }
  2822. // advance all the edges
  2823. step = &active;
  2824. while (*step) {
  2825. stbtt__active_edge *z = *step;
  2826. z->fx += z->fdx; // advance to position for current scanline
  2827. step = &((*step)->next); // advance through list
  2828. }
  2829. ++y;
  2830. ++j;
  2831. }
  2832. stbtt__hheap_cleanup(&hh, userdata);
  2833. if (scanline != scanline_data)
  2834. STBTT_free(scanline, userdata);
  2835. }
  2836. #else
  2837. #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
  2838. #endif
  2839. #define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0)
  2840. static void stbtt__sort_edges_ins_sort(stbtt__edge *p, int n)
  2841. {
  2842. int i,j;
  2843. for (i=1; i < n; ++i) {
  2844. stbtt__edge t = p[i], *a = &t;
  2845. j = i;
  2846. while (j > 0) {
  2847. stbtt__edge *b = &p[j-1];
  2848. int c = STBTT__COMPARE(a,b);
  2849. if (!c) break;
  2850. p[j] = p[j-1];
  2851. --j;
  2852. }
  2853. if (i != j)
  2854. p[j] = t;
  2855. }
  2856. }
  2857. static void stbtt__sort_edges_quicksort(stbtt__edge *p, int n)
  2858. {
  2859. /* threshhold for transitioning to insertion sort */
  2860. while (n > 12) {
  2861. stbtt__edge t;
  2862. int c01,c12,c,m,i,j;
  2863. /* compute median of three */
  2864. m = n >> 1;
  2865. c01 = STBTT__COMPARE(&p[0],&p[m]);
  2866. c12 = STBTT__COMPARE(&p[m],&p[n-1]);
  2867. /* if 0 >= mid >= end, or 0 < mid < end, then use mid */
  2868. if (c01 != c12) {
  2869. /* otherwise, we'll need to swap something else to middle */
  2870. int z;
  2871. c = STBTT__COMPARE(&p[0],&p[n-1]);
  2872. /* 0>mid && mid<n: 0>n => n; 0<n => 0 */
  2873. /* 0<mid && mid>n: 0>n => 0; 0<n => n */
  2874. z = (c == c12) ? 0 : n-1;
  2875. t = p[z];
  2876. p[z] = p[m];
  2877. p[m] = t;
  2878. }
  2879. /* now p[m] is the median-of-three */
  2880. /* swap it to the beginning so it won't move around */
  2881. t = p[0];
  2882. p[0] = p[m];
  2883. p[m] = t;
  2884. /* partition loop */
  2885. i=1;
  2886. j=n-1;
  2887. for(;;) {
  2888. /* handling of equality is crucial here */
  2889. /* for sentinels & efficiency with duplicates */
  2890. for (;;++i) {
  2891. if (!STBTT__COMPARE(&p[i], &p[0])) break;
  2892. }
  2893. for (;;--j) {
  2894. if (!STBTT__COMPARE(&p[0], &p[j])) break;
  2895. }
  2896. /* make sure we haven't crossed */
  2897. if (i >= j) break;
  2898. t = p[i];
  2899. p[i] = p[j];
  2900. p[j] = t;
  2901. ++i;
  2902. --j;
  2903. }
  2904. /* recurse on smaller side, iterate on larger */
  2905. if (j < (n-i)) {
  2906. stbtt__sort_edges_quicksort(p,j);
  2907. p = p+i;
  2908. n = n-i;
  2909. } else {
  2910. stbtt__sort_edges_quicksort(p+i, n-i);
  2911. n = j;
  2912. }
  2913. }
  2914. }
  2915. static void stbtt__sort_edges(stbtt__edge *p, int n)
  2916. {
  2917. stbtt__sort_edges_quicksort(p, n);
  2918. stbtt__sort_edges_ins_sort(p, n);
  2919. }
  2920. typedef struct
  2921. {
  2922. float x,y;
  2923. } stbtt__point;
  2924. static 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)
  2925. {
  2926. float y_scale_inv = invert ? -scale_y : scale_y;
  2927. stbtt__edge *e;
  2928. int n,i,j,k,m;
  2929. #if STBTT_RASTERIZER_VERSION == 1
  2930. int vsubsample = result->h < 8 ? 15 : 5;
  2931. #elif STBTT_RASTERIZER_VERSION == 2
  2932. int vsubsample = 1;
  2933. #else
  2934. #error "Unrecognized value of STBTT_RASTERIZER_VERSION"
  2935. #endif
  2936. // vsubsample should divide 255 evenly; otherwise we won't reach full opacity
  2937. // now we have to blow out the windings into explicit edge lists
  2938. n = 0;
  2939. for (i=0; i < windings; ++i)
  2940. n += wcount[i];
  2941. e = (stbtt__edge *) STBTT_malloc(sizeof(*e) * (n+1), userdata); // add an extra one as a sentinel
  2942. if (e == 0) return;
  2943. n = 0;
  2944. m=0;
  2945. for (i=0; i < windings; ++i) {
  2946. stbtt__point *p = pts + m;
  2947. m += wcount[i];
  2948. j = wcount[i]-1;
  2949. for (k=0; k < wcount[i]; j=k++) {
  2950. int a=k,b=j;
  2951. // skip the edge if horizontal
  2952. if (p[j].y == p[k].y)
  2953. continue;
  2954. // add edge from j to k to the list
  2955. e[n].invert = 0;
  2956. if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) {
  2957. e[n].invert = 1;
  2958. a=j,b=k;
  2959. }
  2960. e[n].x0 = p[a].x * scale_x + shift_x;
  2961. e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample;
  2962. e[n].x1 = p[b].x * scale_x + shift_x;
  2963. e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample;
  2964. ++n;
  2965. }
  2966. }
  2967. // now sort the edges by their highest point (should snap to integer, and then by x)
  2968. //STBTT_sort(e, n, sizeof(e[0]), stbtt__edge_compare);
  2969. stbtt__sort_edges(e, n);
  2970. // now, traverse the scanlines and find the intersections on each scanline, use xor winding rule
  2971. stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata);
  2972. STBTT_free(e, userdata);
  2973. }
  2974. static void stbtt__add_point(stbtt__point *points, int n, float x, float y)
  2975. {
  2976. if (!points) return; // during first pass, it's unallocated
  2977. points[n].x = x;
  2978. points[n].y = y;
  2979. }
  2980. // tesselate until threshhold p is happy... @TODO warped to compensate for non-linear stretching
  2981. static 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)
  2982. {
  2983. // midpoint
  2984. float mx = (x0 + 2*x1 + x2)/4;
  2985. float my = (y0 + 2*y1 + y2)/4;
  2986. // versus directly drawn line
  2987. float dx = (x0+x2)/2 - mx;
  2988. float dy = (y0+y2)/2 - my;
  2989. if (n > 16) // 65536 segments on one curve better be enough!
  2990. return 1;
  2991. if (dx*dx+dy*dy > objspace_flatness_squared) { // half-pixel error allowed... need to be smaller if AA
  2992. stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1);
  2993. stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1);
  2994. } else {
  2995. stbtt__add_point(points, *num_points,x2,y2);
  2996. *num_points = *num_points+1;
  2997. }
  2998. return 1;
  2999. }
  3000. static 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)
  3001. {
  3002. // @TODO this "flatness" calculation is just made-up nonsense that seems to work well enough
  3003. float dx0 = x1-x0;
  3004. float dy0 = y1-y0;
  3005. float dx1 = x2-x1;
  3006. float dy1 = y2-y1;
  3007. float dx2 = x3-x2;
  3008. float dy2 = y3-y2;
  3009. float dx = x3-x0;
  3010. float dy = y3-y0;
  3011. float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2));
  3012. float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy);
  3013. float flatness_squared = longlen*longlen-shortlen*shortlen;
  3014. if (n > 16) // 65536 segments on one curve better be enough!
  3015. return;
  3016. if (flatness_squared > objspace_flatness_squared) {
  3017. float x01 = (x0+x1)/2;
  3018. float y01 = (y0+y1)/2;
  3019. float x12 = (x1+x2)/2;
  3020. float y12 = (y1+y2)/2;
  3021. float x23 = (x2+x3)/2;
  3022. float y23 = (y2+y3)/2;
  3023. float xa = (x01+x12)/2;
  3024. float ya = (y01+y12)/2;
  3025. float xb = (x12+x23)/2;
  3026. float yb = (y12+y23)/2;
  3027. float mx = (xa+xb)/2;
  3028. float my = (ya+yb)/2;
  3029. stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1);
  3030. stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1);
  3031. } else {
  3032. stbtt__add_point(points, *num_points,x3,y3);
  3033. *num_points = *num_points+1;
  3034. }
  3035. }
  3036. // returns number of contours
  3037. static stbtt__point *stbtt_FlattenCurves(stbtt_vertex *vertices, int num_verts, float objspace_flatness, int **contour_lengths, int *num_contours, void *userdata)
  3038. {
  3039. stbtt__point *points=0;
  3040. int num_points=0;
  3041. float objspace_flatness_squared = objspace_flatness * objspace_flatness;
  3042. int i,n=0,start=0, pass;
  3043. // count how many "moves" there are to get the contour count
  3044. for (i=0; i < num_verts; ++i)
  3045. if (vertices[i].type == STBTT_vmove)
  3046. ++n;
  3047. *num_contours = n;
  3048. if (n == 0) return 0;
  3049. *contour_lengths = (int *) STBTT_malloc(sizeof(**contour_lengths) * n, userdata);
  3050. if (*contour_lengths == 0) {
  3051. *num_contours = 0;
  3052. return 0;
  3053. }
  3054. // make two passes through the points so we don't need to realloc
  3055. for (pass=0; pass < 2; ++pass) {
  3056. float x=0,y=0;
  3057. if (pass == 1) {
  3058. points = (stbtt__point *) STBTT_malloc(num_points * sizeof(points[0]), userdata);
  3059. if (points == NULL) goto error;
  3060. }
  3061. num_points = 0;
  3062. n= -1;
  3063. for (i=0; i < num_verts; ++i) {
  3064. switch (vertices[i].type) {
  3065. case STBTT_vmove:
  3066. // start the next contour
  3067. if (n >= 0)
  3068. (*contour_lengths)[n] = num_points - start;
  3069. ++n;
  3070. start = num_points;
  3071. x = vertices[i].x, y = vertices[i].y;
  3072. stbtt__add_point(points, num_points++, x,y);
  3073. break;
  3074. case STBTT_vline:
  3075. x = vertices[i].x, y = vertices[i].y;
  3076. stbtt__add_point(points, num_points++, x, y);
  3077. break;
  3078. case STBTT_vcurve:
  3079. stbtt__tesselate_curve(points, &num_points, x,y,
  3080. vertices[i].cx, vertices[i].cy,
  3081. vertices[i].x, vertices[i].y,
  3082. objspace_flatness_squared, 0);
  3083. x = vertices[i].x, y = vertices[i].y;
  3084. break;
  3085. case STBTT_vcubic:
  3086. stbtt__tesselate_cubic(points, &num_points, x,y,
  3087. vertices[i].cx, vertices[i].cy,
  3088. vertices[i].cx1, vertices[i].cy1,
  3089. vertices[i].x, vertices[i].y,
  3090. objspace_flatness_squared, 0);
  3091. x = vertices[i].x, y = vertices[i].y;
  3092. break;
  3093. }
  3094. }
  3095. (*contour_lengths)[n] = num_points - start;
  3096. }
  3097. return points;
  3098. error:
  3099. STBTT_free(points, userdata);
  3100. STBTT_free(*contour_lengths, userdata);
  3101. *contour_lengths = 0;
  3102. *num_contours = 0;
  3103. return NULL;
  3104. }
  3105. 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)
  3106. {
  3107. float scale = scale_x > scale_y ? scale_y : scale_x;
  3108. int winding_count = 0;
  3109. int *winding_lengths = NULL;
  3110. stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata);
  3111. if (windings) {
  3112. stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata);
  3113. STBTT_free(winding_lengths, userdata);
  3114. STBTT_free(windings, userdata);
  3115. }
  3116. }
  3117. STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata)
  3118. {
  3119. STBTT_free(bitmap, userdata);
  3120. }
  3121. 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)
  3122. {
  3123. int ix0,iy0,ix1,iy1;
  3124. stbtt__bitmap gbm;
  3125. stbtt_vertex *vertices;
  3126. int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices);
  3127. if (scale_x == 0) scale_x = scale_y;
  3128. if (scale_y == 0) {
  3129. if (scale_x == 0) {
  3130. STBTT_free(vertices, info->userdata);
  3131. return NULL;
  3132. }
  3133. scale_y = scale_x;
  3134. }
  3135. stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,&ix1,&iy1);
  3136. // now we get the size
  3137. gbm.w = (ix1 - ix0);
  3138. gbm.h = (iy1 - iy0);
  3139. gbm.pixels = NULL; // in case we error
  3140. if (width ) *width = gbm.w;
  3141. if (height) *height = gbm.h;
  3142. if (xoff ) *xoff = ix0;
  3143. if (yoff ) *yoff = iy0;
  3144. if (gbm.w && gbm.h) {
  3145. gbm.pixels = (unsigned char *) STBTT_malloc(gbm.w * gbm.h, info->userdata);
  3146. if (gbm.pixels) {
  3147. gbm.stride = gbm.w;
  3148. stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->userdata);
  3149. }
  3150. }
  3151. STBTT_free(vertices, info->userdata);
  3152. return gbm.pixels;
  3153. }
  3154. 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)
  3155. {
  3156. return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y, 0.0f, 0.0f, glyph, width, height, xoff, yoff);
  3157. }
  3158. 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)
  3159. {
  3160. int ix0,iy0;
  3161. stbtt_vertex *vertices;
  3162. int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices);
  3163. stbtt__bitmap gbm;
  3164. stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,0,0);
  3165. gbm.pixels = output;
  3166. gbm.w = out_w;
  3167. gbm.h = out_h;
  3168. gbm.stride = out_stride;
  3169. if (gbm.w && gbm.h)
  3170. stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->userdata);
  3171. STBTT_free(vertices, info->userdata);
  3172. }
  3173. 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)
  3174. {
  3175. stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, glyph);
  3176. }
  3177. 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)
  3178. {
  3179. return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y, stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff);
  3180. }
  3181. 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)
  3182. {
  3183. stbtt_MakeGlyphBitmapSubpixelPrefilter(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, oversample_x, oversample_y, sub_x, sub_y, stbtt_FindGlyphIndex(info,codepoint));
  3184. }
  3185. 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)
  3186. {
  3187. stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, stbtt_FindGlyphIndex(info,codepoint));
  3188. }
  3189. 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)
  3190. {
  3191. return stbtt_GetCodepointBitmapSubpixel(info, scale_x, scale_y, 0.0f,0.0f, codepoint, width,height,xoff,yoff);
  3192. }
  3193. 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)
  3194. {
  3195. stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint);
  3196. }
  3197. //////////////////////////////////////////////////////////////////////////////
  3198. //
  3199. // bitmap baking
  3200. //
  3201. // This is SUPER-CRAPPY packing to keep source code small
  3202. static int stbtt_BakeFontBitmap_internal(unsigned char *data, int offset, // font location (use offset=0 for plain .ttf)
  3203. float pixel_height, // height of font in pixels
  3204. unsigned char *pixels, int pw, int ph, // bitmap to be filled in
  3205. int first_char, int num_chars, // characters to bake
  3206. stbtt_bakedchar *chardata)
  3207. {
  3208. float scale;
  3209. int x,y,bottom_y, i;
  3210. stbtt_fontinfo f;
  3211. f.userdata = NULL;
  3212. if (!stbtt_InitFont(&f, data, offset))
  3213. return -1;
  3214. STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels
  3215. x=y=1;
  3216. bottom_y = 1;
  3217. scale = stbtt_ScaleForPixelHeight(&f, pixel_height);
  3218. for (i=0; i < num_chars; ++i) {
  3219. int advance, lsb, x0,y0,x1,y1,gw,gh;
  3220. int g = stbtt_FindGlyphIndex(&f, first_char + i);
  3221. stbtt_GetGlyphHMetrics(&f, g, &advance, &lsb);
  3222. stbtt_GetGlyphBitmapBox(&f, g, scale,scale, &x0,&y0,&x1,&y1);
  3223. gw = x1-x0;
  3224. gh = y1-y0;
  3225. if (x + gw + 1 >= pw)
  3226. y = bottom_y, x = 1; // advance to next row
  3227. if (y + gh + 1 >= ph) // check if it fits vertically AFTER potentially moving to next row
  3228. return -i;
  3229. STBTT_assert(x+gw < pw);
  3230. STBTT_assert(y+gh < ph);
  3231. stbtt_MakeGlyphBitmap(&f, pixels+x+y*pw, gw,gh,pw, scale,scale, g);
  3232. chardata[i].x0 = (stbtt_int16) x;
  3233. chardata[i].y0 = (stbtt_int16) y;
  3234. chardata[i].x1 = (stbtt_int16) (x + gw);
  3235. chardata[i].y1 = (stbtt_int16) (y + gh);
  3236. chardata[i].xadvance = scale * advance;
  3237. chardata[i].xoff = (float) x0;
  3238. chardata[i].yoff = (float) y0;
  3239. x = x + gw + 1;
  3240. if (y+gh+1 > bottom_y)
  3241. bottom_y = y+gh+1;
  3242. }
  3243. return bottom_y;
  3244. }
  3245. 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)
  3246. {
  3247. float d3d_bias = opengl_fillrule ? 0 : -0.5f;
  3248. float ipw = 1.0f / pw, iph = 1.0f / ph;
  3249. const stbtt_bakedchar *b = chardata + char_index;
  3250. int round_x = STBTT_ifloor((*xpos + b->xoff) + 0.5f);
  3251. int round_y = STBTT_ifloor((*ypos + b->yoff) + 0.5f);
  3252. q->x0 = round_x + d3d_bias;
  3253. q->y0 = round_y + d3d_bias;
  3254. q->x1 = round_x + b->x1 - b->x0 + d3d_bias;
  3255. q->y1 = round_y + b->y1 - b->y0 + d3d_bias;
  3256. q->s0 = b->x0 * ipw;
  3257. q->t0 = b->y0 * iph;
  3258. q->s1 = b->x1 * ipw;
  3259. q->t1 = b->y1 * iph;
  3260. *xpos += b->xadvance;
  3261. }
  3262. //////////////////////////////////////////////////////////////////////////////
  3263. //
  3264. // rectangle packing replacement routines if you don't have stb_rect_pack.h
  3265. //
  3266. #ifndef STB_RECT_PACK_VERSION
  3267. typedef int stbrp_coord;
  3268. ////////////////////////////////////////////////////////////////////////////////////
  3269. // //
  3270. // //
  3271. // COMPILER WARNING ?!?!? //
  3272. // //
  3273. // //
  3274. // if you get a compile warning due to these symbols being defined more than //
  3275. // once, move #include "stb_rect_pack.h" before #include "stb_truetype.h" //
  3276. // //
  3277. ////////////////////////////////////////////////////////////////////////////////////
  3278. typedef struct
  3279. {
  3280. int width,height;
  3281. int x,y,bottom_y;
  3282. } stbrp_context;
  3283. typedef struct
  3284. {
  3285. unsigned char x;
  3286. } stbrp_node;
  3287. struct stbrp_rect
  3288. {
  3289. stbrp_coord x,y;
  3290. int id,w,h,was_packed;
  3291. };
  3292. static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes)
  3293. {
  3294. con->width = pw;
  3295. con->height = ph;
  3296. con->x = 0;
  3297. con->y = 0;
  3298. con->bottom_y = 0;
  3299. STBTT__NOTUSED(nodes);
  3300. STBTT__NOTUSED(num_nodes);
  3301. }
  3302. static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects)
  3303. {
  3304. int i;
  3305. for (i=0; i < num_rects; ++i) {
  3306. if (con->x + rects[i].w > con->width) {
  3307. con->x = 0;
  3308. con->y = con->bottom_y;
  3309. }
  3310. if (con->y + rects[i].h > con->height)
  3311. break;
  3312. rects[i].x = con->x;
  3313. rects[i].y = con->y;
  3314. rects[i].was_packed = 1;
  3315. con->x += rects[i].w;
  3316. if (con->y + rects[i].h > con->bottom_y)
  3317. con->bottom_y = con->y + rects[i].h;
  3318. }
  3319. for ( ; i < num_rects; ++i)
  3320. rects[i].was_packed = 0;
  3321. }
  3322. #endif
  3323. //////////////////////////////////////////////////////////////////////////////
  3324. //
  3325. // bitmap baking
  3326. //
  3327. // This is SUPER-AWESOME (tm Ryan Gordon) packing using stb_rect_pack.h. If
  3328. // stb_rect_pack.h isn't available, it uses the BakeFontBitmap strategy.
  3329. STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int stride_in_bytes, int padding, void *alloc_context)
  3330. {
  3331. stbrp_context *context = (stbrp_context *) STBTT_malloc(sizeof(*context) ,alloc_context);
  3332. int num_nodes = pw - padding;
  3333. stbrp_node *nodes = (stbrp_node *) STBTT_malloc(sizeof(*nodes ) * num_nodes,alloc_context);
  3334. if (context == NULL || nodes == NULL) {
  3335. if (context != NULL) STBTT_free(context, alloc_context);
  3336. if (nodes != NULL) STBTT_free(nodes , alloc_context);
  3337. return 0;
  3338. }
  3339. spc->user_allocator_context = alloc_context;
  3340. spc->width = pw;
  3341. spc->height = ph;
  3342. spc->pixels = pixels;
  3343. spc->pack_info = context;
  3344. spc->nodes = nodes;
  3345. spc->padding = padding;
  3346. spc->stride_in_bytes = stride_in_bytes != 0 ? stride_in_bytes : pw;
  3347. spc->h_oversample = 1;
  3348. spc->v_oversample = 1;
  3349. stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes);
  3350. if (pixels)
  3351. STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels
  3352. return 1;
  3353. }
  3354. STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc)
  3355. {
  3356. STBTT_free(spc->nodes , spc->user_allocator_context);
  3357. STBTT_free(spc->pack_info, spc->user_allocator_context);
  3358. }
  3359. STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample)
  3360. {
  3361. STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE);
  3362. STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE);
  3363. if (h_oversample <= STBTT_MAX_OVERSAMPLE)
  3364. spc->h_oversample = h_oversample;
  3365. if (v_oversample <= STBTT_MAX_OVERSAMPLE)
  3366. spc->v_oversample = v_oversample;
  3367. }
  3368. #define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1)
  3369. static void stbtt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width)
  3370. {
  3371. unsigned char buffer[STBTT_MAX_OVERSAMPLE];
  3372. int safe_w = w - kernel_width;
  3373. int j;
  3374. STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze
  3375. for (j=0; j < h; ++j) {
  3376. int i;
  3377. unsigned int total;
  3378. STBTT_memset(buffer, 0, kernel_width);
  3379. total = 0;
  3380. // make kernel_width a constant in common cases so compiler can optimize out the divide
  3381. switch (kernel_width) {
  3382. case 2:
  3383. for (i=0; i <= safe_w; ++i) {
  3384. total += pixels[i] - buffer[i & STBTT__OVER_MASK];
  3385. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
  3386. pixels[i] = (unsigned char) (total / 2);
  3387. }
  3388. break;
  3389. case 3:
  3390. for (i=0; i <= safe_w; ++i) {
  3391. total += pixels[i] - buffer[i & STBTT__OVER_MASK];
  3392. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
  3393. pixels[i] = (unsigned char) (total / 3);
  3394. }
  3395. break;
  3396. case 4:
  3397. for (i=0; i <= safe_w; ++i) {
  3398. total += pixels[i] - buffer[i & STBTT__OVER_MASK];
  3399. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
  3400. pixels[i] = (unsigned char) (total / 4);
  3401. }
  3402. break;
  3403. case 5:
  3404. for (i=0; i <= safe_w; ++i) {
  3405. total += pixels[i] - buffer[i & STBTT__OVER_MASK];
  3406. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
  3407. pixels[i] = (unsigned char) (total / 5);
  3408. }
  3409. break;
  3410. default:
  3411. for (i=0; i <= safe_w; ++i) {
  3412. total += pixels[i] - buffer[i & STBTT__OVER_MASK];
  3413. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
  3414. pixels[i] = (unsigned char) (total / kernel_width);
  3415. }
  3416. break;
  3417. }
  3418. for (; i < w; ++i) {
  3419. STBTT_assert(pixels[i] == 0);
  3420. total -= buffer[i & STBTT__OVER_MASK];
  3421. pixels[i] = (unsigned char) (total / kernel_width);
  3422. }
  3423. pixels += stride_in_bytes;
  3424. }
  3425. }
  3426. static void stbtt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width)
  3427. {
  3428. unsigned char buffer[STBTT_MAX_OVERSAMPLE];
  3429. int safe_h = h - kernel_width;
  3430. int j;
  3431. STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze
  3432. for (j=0; j < w; ++j) {
  3433. int i;
  3434. unsigned int total;
  3435. STBTT_memset(buffer, 0, kernel_width);
  3436. total = 0;
  3437. // make kernel_width a constant in common cases so compiler can optimize out the divide
  3438. switch (kernel_width) {
  3439. case 2:
  3440. for (i=0; i <= safe_h; ++i) {
  3441. total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
  3442. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
  3443. pixels[i*stride_in_bytes] = (unsigned char) (total / 2);
  3444. }
  3445. break;
  3446. case 3:
  3447. for (i=0; i <= safe_h; ++i) {
  3448. total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
  3449. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
  3450. pixels[i*stride_in_bytes] = (unsigned char) (total / 3);
  3451. }
  3452. break;
  3453. case 4:
  3454. for (i=0; i <= safe_h; ++i) {
  3455. total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
  3456. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
  3457. pixels[i*stride_in_bytes] = (unsigned char) (total / 4);
  3458. }
  3459. break;
  3460. case 5:
  3461. for (i=0; i <= safe_h; ++i) {
  3462. total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
  3463. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
  3464. pixels[i*stride_in_bytes] = (unsigned char) (total / 5);
  3465. }
  3466. break;
  3467. default:
  3468. for (i=0; i <= safe_h; ++i) {
  3469. total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
  3470. buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
  3471. pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width);
  3472. }
  3473. break;
  3474. }
  3475. for (; i < h; ++i) {
  3476. STBTT_assert(pixels[i*stride_in_bytes] == 0);
  3477. total -= buffer[i & STBTT__OVER_MASK];
  3478. pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width);
  3479. }
  3480. pixels += 1;
  3481. }
  3482. }
  3483. static float stbtt__oversample_shift(int oversample)
  3484. {
  3485. if (!oversample)
  3486. return 0.0f;
  3487. // The prefilter is a box filter of width "oversample",
  3488. // which shifts phase by (oversample - 1)/2 pixels in
  3489. // oversampled space. We want to shift in the opposite
  3490. // direction to counter this.
  3491. return (float)-(oversample - 1) / (2.0f * (float)oversample);
  3492. }
  3493. // rects array must be big enough to accommodate all characters in the given ranges
  3494. STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects)
  3495. {
  3496. int i,j,k;
  3497. k=0;
  3498. for (i=0; i < num_ranges; ++i) {
  3499. float fh = ranges[i].font_size;
  3500. float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh);
  3501. ranges[i].h_oversample = (unsigned char) spc->h_oversample;
  3502. ranges[i].v_oversample = (unsigned char) spc->v_oversample;
  3503. for (j=0; j < ranges[i].num_chars; ++j) {
  3504. int x0,y0,x1,y1;
  3505. int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j];
  3506. int glyph = stbtt_FindGlyphIndex(info, codepoint);
  3507. stbtt_GetGlyphBitmapBoxSubpixel(info,glyph,
  3508. scale * spc->h_oversample,
  3509. scale * spc->v_oversample,
  3510. 0,0,
  3511. &x0,&y0,&x1,&y1);
  3512. rects[k].w = (stbrp_coord) (x1-x0 + spc->padding + spc->h_oversample-1);
  3513. rects[k].h = (stbrp_coord) (y1-y0 + spc->padding + spc->v_oversample-1);
  3514. ++k;
  3515. }
  3516. }
  3517. return k;
  3518. }
  3519. 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 prefilter_x, int prefilter_y, float *sub_x, float *sub_y, int glyph)
  3520. {
  3521. stbtt_MakeGlyphBitmapSubpixel(info,
  3522. output,
  3523. out_w - (prefilter_x - 1),
  3524. out_h - (prefilter_y - 1),
  3525. out_stride,
  3526. scale_x,
  3527. scale_y,
  3528. shift_x,
  3529. shift_y,
  3530. glyph);
  3531. if (prefilter_x > 1)
  3532. stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x);
  3533. if (prefilter_y > 1)
  3534. stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y);
  3535. *sub_x = stbtt__oversample_shift(prefilter_x);
  3536. *sub_y = stbtt__oversample_shift(prefilter_y);
  3537. }
  3538. // rects array must be big enough to accommodate all characters in the given ranges
  3539. STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects)
  3540. {
  3541. int i,j,k, return_value = 1;
  3542. // save current values
  3543. int old_h_over = spc->h_oversample;
  3544. int old_v_over = spc->v_oversample;
  3545. k = 0;
  3546. for (i=0; i < num_ranges; ++i) {
  3547. float fh = ranges[i].font_size;
  3548. float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh);
  3549. float recip_h,recip_v,sub_x,sub_y;
  3550. spc->h_oversample = ranges[i].h_oversample;
  3551. spc->v_oversample = ranges[i].v_oversample;
  3552. recip_h = 1.0f / spc->h_oversample;
  3553. recip_v = 1.0f / spc->v_oversample;
  3554. sub_x = stbtt__oversample_shift(spc->h_oversample);
  3555. sub_y = stbtt__oversample_shift(spc->v_oversample);
  3556. for (j=0; j < ranges[i].num_chars; ++j) {
  3557. stbrp_rect *r = &rects[k];
  3558. if (r->was_packed) {
  3559. stbtt_packedchar *bc = &ranges[i].chardata_for_range[j];
  3560. int advance, lsb, x0,y0,x1,y1;
  3561. int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j];
  3562. int glyph = stbtt_FindGlyphIndex(info, codepoint);
  3563. stbrp_coord pad = (stbrp_coord) spc->padding;
  3564. // pad on left and top
  3565. r->x += pad;
  3566. r->y += pad;
  3567. r->w -= pad;
  3568. r->h -= pad;
  3569. stbtt_GetGlyphHMetrics(info, glyph, &advance, &lsb);
  3570. stbtt_GetGlyphBitmapBox(info, glyph,
  3571. scale * spc->h_oversample,
  3572. scale * spc->v_oversample,
  3573. &x0,&y0,&x1,&y1);
  3574. stbtt_MakeGlyphBitmapSubpixel(info,
  3575. spc->pixels + r->x + r->y*spc->stride_in_bytes,
  3576. r->w - spc->h_oversample+1,
  3577. r->h - spc->v_oversample+1,
  3578. spc->stride_in_bytes,
  3579. scale * spc->h_oversample,
  3580. scale * spc->v_oversample,
  3581. 0,0,
  3582. glyph);
  3583. if (spc->h_oversample > 1)
  3584. stbtt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
  3585. r->w, r->h, spc->stride_in_bytes,
  3586. spc->h_oversample);
  3587. if (spc->v_oversample > 1)
  3588. stbtt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
  3589. r->w, r->h, spc->stride_in_bytes,
  3590. spc->v_oversample);
  3591. bc->x0 = (stbtt_int16) r->x;
  3592. bc->y0 = (stbtt_int16) r->y;
  3593. bc->x1 = (stbtt_int16) (r->x + r->w);
  3594. bc->y1 = (stbtt_int16) (r->y + r->h);
  3595. bc->xadvance = scale * advance;
  3596. bc->xoff = (float) x0 * recip_h + sub_x;
  3597. bc->yoff = (float) y0 * recip_v + sub_y;
  3598. bc->xoff2 = (x0 + r->w) * recip_h + sub_x;
  3599. bc->yoff2 = (y0 + r->h) * recip_v + sub_y;
  3600. } else {
  3601. return_value = 0; // if any fail, report failure
  3602. }
  3603. ++k;
  3604. }
  3605. }
  3606. // restore original values
  3607. spc->h_oversample = old_h_over;
  3608. spc->v_oversample = old_v_over;
  3609. return return_value;
  3610. }
  3611. STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects)
  3612. {
  3613. stbrp_pack_rects((stbrp_context *) spc->pack_info, rects, num_rects);
  3614. }
  3615. STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges)
  3616. {
  3617. stbtt_fontinfo info;
  3618. int i,j,n, return_value = 1;
  3619. //stbrp_context *context = (stbrp_context *) spc->pack_info;
  3620. stbrp_rect *rects;
  3621. // flag all characters as NOT packed
  3622. for (i=0; i < num_ranges; ++i)
  3623. for (j=0; j < ranges[i].num_chars; ++j)
  3624. ranges[i].chardata_for_range[j].x0 =
  3625. ranges[i].chardata_for_range[j].y0 =
  3626. ranges[i].chardata_for_range[j].x1 =
  3627. ranges[i].chardata_for_range[j].y1 = 0;
  3628. n = 0;
  3629. for (i=0; i < num_ranges; ++i)
  3630. n += ranges[i].num_chars;
  3631. rects = (stbrp_rect *) STBTT_malloc(sizeof(*rects) * n, spc->user_allocator_context);
  3632. if (rects == NULL)
  3633. return 0;
  3634. info.userdata = spc->user_allocator_context;
  3635. stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata,font_index));
  3636. n = stbtt_PackFontRangesGatherRects(spc, &info, ranges, num_ranges, rects);
  3637. stbtt_PackFontRangesPackRects(spc, rects, n);
  3638. return_value = stbtt_PackFontRangesRenderIntoRects(spc, &info, ranges, num_ranges, rects);
  3639. STBTT_free(rects, spc->user_allocator_context);
  3640. return return_value;
  3641. }
  3642. STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size,
  3643. int first_unicode_codepoint_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range)
  3644. {
  3645. stbtt_pack_range range;
  3646. range.first_unicode_codepoint_in_range = first_unicode_codepoint_in_range;
  3647. range.array_of_unicode_codepoints = NULL;
  3648. range.num_chars = num_chars_in_range;
  3649. range.chardata_for_range = chardata_for_range;
  3650. range.font_size = font_size;
  3651. return stbtt_PackFontRanges(spc, fontdata, font_index, &range, 1);
  3652. }
  3653. 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)
  3654. {
  3655. float ipw = 1.0f / pw, iph = 1.0f / ph;
  3656. const stbtt_packedchar *b = chardata + char_index;
  3657. if (align_to_integer) {
  3658. float x = (float) STBTT_ifloor((*xpos + b->xoff) + 0.5f);
  3659. float y = (float) STBTT_ifloor((*ypos + b->yoff) + 0.5f);
  3660. q->x0 = x;
  3661. q->y0 = y;
  3662. q->x1 = x + b->xoff2 - b->xoff;
  3663. q->y1 = y + b->yoff2 - b->yoff;
  3664. } else {
  3665. q->x0 = *xpos + b->xoff;
  3666. q->y0 = *ypos + b->yoff;
  3667. q->x1 = *xpos + b->xoff2;
  3668. q->y1 = *ypos + b->yoff2;
  3669. }
  3670. q->s0 = b->x0 * ipw;
  3671. q->t0 = b->y0 * iph;
  3672. q->s1 = b->x1 * ipw;
  3673. q->t1 = b->y1 * iph;
  3674. *xpos += b->xadvance;
  3675. }
  3676. //////////////////////////////////////////////////////////////////////////////
  3677. //
  3678. // sdf computation
  3679. //
  3680. #define STBTT_min(a,b) ((a) < (b) ? (a) : (b))
  3681. #define STBTT_max(a,b) ((a) < (b) ? (b) : (a))
  3682. static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2])
  3683. {
  3684. float q0perp = q0[1]*ray[0] - q0[0]*ray[1];
  3685. float q1perp = q1[1]*ray[0] - q1[0]*ray[1];
  3686. float q2perp = q2[1]*ray[0] - q2[0]*ray[1];
  3687. float roperp = orig[1]*ray[0] - orig[0]*ray[1];
  3688. float a = q0perp - 2*q1perp + q2perp;
  3689. float b = q1perp - q0perp;
  3690. float c = q0perp - roperp;
  3691. float s0 = 0., s1 = 0.;
  3692. int num_s = 0;
  3693. if (a != 0.0) {
  3694. float discr = b*b - a*c;
  3695. if (discr > 0.0) {
  3696. float rcpna = -1 / a;
  3697. float d = (float) STBTT_sqrt(discr);
  3698. s0 = (b+d) * rcpna;
  3699. s1 = (b-d) * rcpna;
  3700. if (s0 >= 0.0 && s0 <= 1.0)
  3701. num_s = 1;
  3702. if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) {
  3703. if (num_s == 0) s0 = s1;
  3704. ++num_s;
  3705. }
  3706. }
  3707. } else {
  3708. // 2*b*s + c = 0
  3709. // s = -c / (2*b)
  3710. s0 = c / (-2 * b);
  3711. if (s0 >= 0.0 && s0 <= 1.0)
  3712. num_s = 1;
  3713. }
  3714. if (num_s == 0)
  3715. return 0;
  3716. else {
  3717. float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]);
  3718. float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2;
  3719. float q0d = q0[0]*rayn_x + q0[1]*rayn_y;
  3720. float q1d = q1[0]*rayn_x + q1[1]*rayn_y;
  3721. float q2d = q2[0]*rayn_x + q2[1]*rayn_y;
  3722. float rod = orig[0]*rayn_x + orig[1]*rayn_y;
  3723. float q10d = q1d - q0d;
  3724. float q20d = q2d - q0d;
  3725. float q0rd = q0d - rod;
  3726. hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d;
  3727. hits[0][1] = a*s0+b;
  3728. if (num_s > 1) {
  3729. hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d;
  3730. hits[1][1] = a*s1+b;
  3731. return 2;
  3732. } else {
  3733. return 1;
  3734. }
  3735. }
  3736. }
  3737. static int equal(float *a, float *b)
  3738. {
  3739. return (a[0] == b[0] && a[1] == b[1]);
  3740. }
  3741. static int stbtt__compute_crossings_x(float x, float y, int nverts, stbtt_vertex *verts)
  3742. {
  3743. int i;
  3744. float orig[2], ray[2] = { 1, 0 };
  3745. float y_frac;
  3746. int winding = 0;
  3747. orig[0] = x;
  3748. orig[1] = y;
  3749. // make sure y never passes through a vertex of the shape
  3750. y_frac = (float) STBTT_fmod(y, 1.0f);
  3751. if (y_frac < 0.01f)
  3752. y += 0.01f;
  3753. else if (y_frac > 0.99f)
  3754. y -= 0.01f;
  3755. orig[1] = y;
  3756. // test a ray from (-infinity,y) to (x,y)
  3757. for (i=0; i < nverts; ++i) {
  3758. if (verts[i].type == STBTT_vline) {
  3759. int x0 = (int) verts[i-1].x, y0 = (int) verts[i-1].y;
  3760. int x1 = (int) verts[i ].x, y1 = (int) verts[i ].y;
  3761. if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
  3762. float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
  3763. if (x_inter < x)
  3764. winding += (y0 < y1) ? 1 : -1;
  3765. }
  3766. }
  3767. if (verts[i].type == STBTT_vcurve) {
  3768. int x0 = (int) verts[i-1].x , y0 = (int) verts[i-1].y ;
  3769. int x1 = (int) verts[i ].cx, y1 = (int) verts[i ].cy;
  3770. int x2 = (int) verts[i ].x , y2 = (int) verts[i ].y ;
  3771. int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2));
  3772. int by = STBTT_max(y0,STBTT_max(y1,y2));
  3773. if (y > ay && y < by && x > ax) {
  3774. float q0[2],q1[2],q2[2];
  3775. float hits[2][2];
  3776. q0[0] = (float)x0;
  3777. q0[1] = (float)y0;
  3778. q1[0] = (float)x1;
  3779. q1[1] = (float)y1;
  3780. q2[0] = (float)x2;
  3781. q2[1] = (float)y2;
  3782. if (equal(q0,q1) || equal(q1,q2)) {
  3783. x0 = (int)verts[i-1].x;
  3784. y0 = (int)verts[i-1].y;
  3785. x1 = (int)verts[i ].x;
  3786. y1 = (int)verts[i ].y;
  3787. if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
  3788. float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
  3789. if (x_inter < x)
  3790. winding += (y0 < y1) ? 1 : -1;
  3791. }
  3792. } else {
  3793. int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits);
  3794. if (num_hits >= 1)
  3795. if (hits[0][0] < 0)
  3796. winding += (hits[0][1] < 0 ? -1 : 1);
  3797. if (num_hits >= 2)
  3798. if (hits[1][0] < 0)
  3799. winding += (hits[1][1] < 0 ? -1 : 1);
  3800. }
  3801. }
  3802. }
  3803. }
  3804. return winding;
  3805. }
  3806. static float stbtt__cuberoot( float x )
  3807. {
  3808. if (x<0)
  3809. return -(float) STBTT_pow(-x,1.0f/3.0f);
  3810. else
  3811. return (float) STBTT_pow( x,1.0f/3.0f);
  3812. }
  3813. // x^3 + c*x^2 + b*x + a = 0
  3814. static int stbtt__solve_cubic(float a, float b, float c, float* r)
  3815. {
  3816. float s = -a / 3;
  3817. float p = b - a*a / 3;
  3818. float q = a * (2*a*a - 9*b) / 27 + c;
  3819. float p3 = p*p*p;
  3820. float d = q*q + 4*p3 / 27;
  3821. if (d >= 0) {
  3822. float z = (float) STBTT_sqrt(d);
  3823. float u = (-q + z) / 2;
  3824. float v = (-q - z) / 2;
  3825. u = stbtt__cuberoot(u);
  3826. v = stbtt__cuberoot(v);
  3827. r[0] = s + u + v;
  3828. return 1;
  3829. } else {
  3830. float u = (float) STBTT_sqrt(-p/3);
  3831. float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3; // p3 must be negative, since d is negative
  3832. float m = (float) STBTT_cos(v);
  3833. float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f;
  3834. r[0] = s + u * 2 * m;
  3835. r[1] = s - u * (m + n);
  3836. r[2] = s - u * (m - n);
  3837. //STBTT_assert( STBTT_fabs(((r[0]+a)*r[0]+b)*r[0]+c) < 0.05f); // these asserts may not be safe at all scales, though they're in bezier t parameter units so maybe?
  3838. //STBTT_assert( STBTT_fabs(((r[1]+a)*r[1]+b)*r[1]+c) < 0.05f);
  3839. //STBTT_assert( STBTT_fabs(((r[2]+a)*r[2]+b)*r[2]+c) < 0.05f);
  3840. return 3;
  3841. }
  3842. }
  3843. 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)
  3844. {
  3845. float scale_x = scale, scale_y = scale;
  3846. int ix0,iy0,ix1,iy1;
  3847. int w,h;
  3848. unsigned char *data;
  3849. // if one scale is 0, use same scale for both
  3850. if (scale_x == 0) scale_x = scale_y;
  3851. if (scale_y == 0) {
  3852. if (scale_x == 0) return NULL; // if both scales are 0, return NULL
  3853. scale_y = scale_x;
  3854. }
  3855. stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale, scale, 0.0f,0.0f, &ix0,&iy0,&ix1,&iy1);
  3856. // if empty, return NULL
  3857. if (ix0 == ix1 || iy0 == iy1)
  3858. return NULL;
  3859. ix0 -= padding;
  3860. iy0 -= padding;
  3861. ix1 += padding;
  3862. iy1 += padding;
  3863. w = (ix1 - ix0);
  3864. h = (iy1 - iy0);
  3865. if (width ) *width = w;
  3866. if (height) *height = h;
  3867. if (xoff ) *xoff = ix0;
  3868. if (yoff ) *yoff = iy0;
  3869. // invert for y-downwards bitmaps
  3870. scale_y = -scale_y;
  3871. {
  3872. int x,y,i,j;
  3873. float *precompute;
  3874. stbtt_vertex *verts;
  3875. int num_verts = stbtt_GetGlyphShape(info, glyph, &verts);
  3876. data = (unsigned char *) STBTT_malloc(w * h, info->userdata);
  3877. precompute = (float *) STBTT_malloc(num_verts * sizeof(float), info->userdata);
  3878. for (i=0,j=num_verts-1; i < num_verts; j=i++) {
  3879. if (verts[i].type == STBTT_vline) {
  3880. float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y;
  3881. float x1 = verts[j].x*scale_x, y1 = verts[j].y*scale_y;
  3882. float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0));
  3883. precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist;
  3884. } else if (verts[i].type == STBTT_vcurve) {
  3885. float x2 = verts[j].x *scale_x, y2 = verts[j].y *scale_y;
  3886. float x1 = verts[i].cx*scale_x, y1 = verts[i].cy*scale_y;
  3887. float x0 = verts[i].x *scale_x, y0 = verts[i].y *scale_y;
  3888. float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
  3889. float len2 = bx*bx + by*by;
  3890. if (len2 != 0.0f)
  3891. precompute[i] = 1.0f / (bx*bx + by*by);
  3892. else
  3893. precompute[i] = 0.0f;
  3894. } else
  3895. precompute[i] = 0.0f;
  3896. }
  3897. for (y=iy0; y < iy1; ++y) {
  3898. for (x=ix0; x < ix1; ++x) {
  3899. float val;
  3900. float min_dist = 999999.0f;
  3901. float sx = (float) x + 0.5f;
  3902. float sy = (float) y + 0.5f;
  3903. float x_gspace = (sx / scale_x);
  3904. float y_gspace = (sy / scale_y);
  3905. int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts); // @OPTIMIZE: this could just be a rasterization, but needs to be line vs. non-tesselated curves so a new path
  3906. for (i=0; i < num_verts; ++i) {
  3907. float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y;
  3908. // check against every point here rather than inside line/curve primitives -- @TODO: wrong if multiple 'moves' in a row produce a garbage point, and given culling, probably more efficient to do within line/curve
  3909. float dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy);
  3910. if (dist2 < min_dist*min_dist)
  3911. min_dist = (float) STBTT_sqrt(dist2);
  3912. if (verts[i].type == STBTT_vline) {
  3913. float x1 = verts[i-1].x*scale_x, y1 = verts[i-1].y*scale_y;
  3914. // coarse culling against bbox
  3915. //if (sx > STBTT_min(x0,x1)-min_dist && sx < STBTT_max(x0,x1)+min_dist &&
  3916. // sy > STBTT_min(y0,y1)-min_dist && sy < STBTT_max(y0,y1)+min_dist)
  3917. float dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i];
  3918. STBTT_assert(i != 0);
  3919. if (dist < min_dist) {
  3920. // check position along line
  3921. // x' = x0 + t*(x1-x0), y' = y0 + t*(y1-y0)
  3922. // minimize (x'-sx)*(x'-sx)+(y'-sy)*(y'-sy)
  3923. float dx = x1-x0, dy = y1-y0;
  3924. float px = x0-sx, py = y0-sy;
  3925. // minimize (px+t*dx)^2 + (py+t*dy)^2 = px*px + 2*px*dx*t + t^2*dx*dx + py*py + 2*py*dy*t + t^2*dy*dy
  3926. // derivative: 2*px*dx + 2*py*dy + (2*dx*dx+2*dy*dy)*t, set to 0 and solve
  3927. float t = -(px*dx + py*dy) / (dx*dx + dy*dy);
  3928. if (t >= 0.0f && t <= 1.0f)
  3929. min_dist = dist;
  3930. }
  3931. } else if (verts[i].type == STBTT_vcurve) {
  3932. float x2 = verts[i-1].x *scale_x, y2 = verts[i-1].y *scale_y;
  3933. float x1 = verts[i ].cx*scale_x, y1 = verts[i ].cy*scale_y;
  3934. float box_x0 = STBTT_min(STBTT_min(x0,x1),x2);
  3935. float box_y0 = STBTT_min(STBTT_min(y0,y1),y2);
  3936. float box_x1 = STBTT_max(STBTT_max(x0,x1),x2);
  3937. float box_y1 = STBTT_max(STBTT_max(y0,y1),y2);
  3938. // coarse culling against bbox to avoid computing cubic unnecessarily
  3939. if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) {
  3940. int num=0;
  3941. float ax = x1-x0, ay = y1-y0;
  3942. float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
  3943. float mx = x0 - sx, my = y0 - sy;
  3944. float res[3],px,py,t,it;
  3945. float a_inv = precompute[i];
  3946. if (a_inv == 0.0) { // if a_inv is 0, it's 2nd degree so use quadratic formula
  3947. float a = 3*(ax*bx + ay*by);
  3948. float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by);
  3949. float c = mx*ax+my*ay;
  3950. if (a == 0.0) { // if a is 0, it's linear
  3951. if (b != 0.0) {
  3952. res[num++] = -c/b;
  3953. }
  3954. } else {
  3955. float discriminant = b*b - 4*a*c;
  3956. if (discriminant < 0)
  3957. num = 0;
  3958. else {
  3959. float root = (float) STBTT_sqrt(discriminant);
  3960. res[0] = (-b - root)/(2*a);
  3961. res[1] = (-b + root)/(2*a);
  3962. num = 2; // don't bother distinguishing 1-solution case, as code below will still work
  3963. }
  3964. }
  3965. } else {
  3966. float b = 3*(ax*bx + ay*by) * a_inv; // could precompute this as it doesn't depend on sample point
  3967. float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv;
  3968. float d = (mx*ax+my*ay) * a_inv;
  3969. num = stbtt__solve_cubic(b, c, d, res);
  3970. }
  3971. if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) {
  3972. t = res[0], it = 1.0f - t;
  3973. px = it*it*x0 + 2*t*it*x1 + t*t*x2;
  3974. py = it*it*y0 + 2*t*it*y1 + t*t*y2;
  3975. dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
  3976. if (dist2 < min_dist * min_dist)
  3977. min_dist = (float) STBTT_sqrt(dist2);
  3978. }
  3979. if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) {
  3980. t = res[1], it = 1.0f - t;
  3981. px = it*it*x0 + 2*t*it*x1 + t*t*x2;
  3982. py = it*it*y0 + 2*t*it*y1 + t*t*y2;
  3983. dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
  3984. if (dist2 < min_dist * min_dist)
  3985. min_dist = (float) STBTT_sqrt(dist2);
  3986. }
  3987. if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) {
  3988. t = res[2], it = 1.0f - t;
  3989. px = it*it*x0 + 2*t*it*x1 + t*t*x2;
  3990. py = it*it*y0 + 2*t*it*y1 + t*t*y2;
  3991. dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
  3992. if (dist2 < min_dist * min_dist)
  3993. min_dist = (float) STBTT_sqrt(dist2);
  3994. }
  3995. }
  3996. }
  3997. }
  3998. if (winding == 0)
  3999. min_dist = -min_dist; // if outside the shape, value is negative
  4000. val = onedge_value + pixel_dist_scale * min_dist;
  4001. if (val < 0)
  4002. val = 0;
  4003. else if (val > 255)
  4004. val = 255;
  4005. data[(y-iy0)*w+(x-ix0)] = (unsigned char) val;
  4006. }
  4007. }
  4008. STBTT_free(precompute, info->userdata);
  4009. STBTT_free(verts, info->userdata);
  4010. }
  4011. return data;
  4012. }
  4013. 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)
  4014. {
  4015. return stbtt_GetGlyphSDF(info, scale, stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff);
  4016. }
  4017. STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata)
  4018. {
  4019. STBTT_free(bitmap, userdata);
  4020. }
  4021. //////////////////////////////////////////////////////////////////////////////
  4022. //
  4023. // font name matching -- recommended not to use this
  4024. //
  4025. // check if a utf8 string contains a prefix which is the utf16 string; if so return length of matching utf8 string
  4026. static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2)
  4027. {
  4028. stbtt_int32 i=0;
  4029. // convert utf16 to utf8 and compare the results while converting
  4030. while (len2) {
  4031. stbtt_uint16 ch = s2[0]*256 + s2[1];
  4032. if (ch < 0x80) {
  4033. if (i >= len1) return -1;
  4034. if (s1[i++] != ch) return -1;
  4035. } else if (ch < 0x800) {
  4036. if (i+1 >= len1) return -1;
  4037. if (s1[i++] != 0xc0 + (ch >> 6)) return -1;
  4038. if (s1[i++] != 0x80 + (ch & 0x3f)) return -1;
  4039. } else if (ch >= 0xd800 && ch < 0xdc00) {
  4040. stbtt_uint32 c;
  4041. stbtt_uint16 ch2 = s2[2]*256 + s2[3];
  4042. if (i+3 >= len1) return -1;
  4043. c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000;
  4044. if (s1[i++] != 0xf0 + (c >> 18)) return -1;
  4045. if (s1[i++] != 0x80 + ((c >> 12) & 0x3f)) return -1;
  4046. if (s1[i++] != 0x80 + ((c >> 6) & 0x3f)) return -1;
  4047. if (s1[i++] != 0x80 + ((c ) & 0x3f)) return -1;
  4048. s2 += 2; // plus another 2 below
  4049. len2 -= 2;
  4050. } else if (ch >= 0xdc00 && ch < 0xe000) {
  4051. return -1;
  4052. } else {
  4053. if (i+2 >= len1) return -1;
  4054. if (s1[i++] != 0xe0 + (ch >> 12)) return -1;
  4055. if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f)) return -1;
  4056. if (s1[i++] != 0x80 + ((ch ) & 0x3f)) return -1;
  4057. }
  4058. s2 += 2;
  4059. len2 -= 2;
  4060. }
  4061. return i;
  4062. }
  4063. static int stbtt_CompareUTF8toUTF16_bigendian_internal(char *s1, int len1, char *s2, int len2)
  4064. {
  4065. return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2);
  4066. }
  4067. // returns results in whatever encoding you request... but note that 2-byte encodings
  4068. // will be BIG-ENDIAN... use stbtt_CompareUTF8toUTF16_bigendian() to compare
  4069. STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID)
  4070. {
  4071. stbtt_int32 i,count,stringOffset;
  4072. stbtt_uint8 *fc = font->data;
  4073. stbtt_uint32 offset = font->fontstart;
  4074. stbtt_uint32 nm = stbtt__find_table(fc, offset, "name");
  4075. if (!nm) return NULL;
  4076. count = ttUSHORT(fc+nm+2);
  4077. stringOffset = nm + ttUSHORT(fc+nm+4);
  4078. for (i=0; i < count; ++i) {
  4079. stbtt_uint32 loc = nm + 6 + 12 * i;
  4080. if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2)
  4081. && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) {
  4082. *length = ttUSHORT(fc+loc+8);
  4083. return (const char *) (fc+stringOffset+ttUSHORT(fc+loc+10));
  4084. }
  4085. }
  4086. return NULL;
  4087. }
  4088. static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id)
  4089. {
  4090. stbtt_int32 i;
  4091. stbtt_int32 count = ttUSHORT(fc+nm+2);
  4092. stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4);
  4093. for (i=0; i < count; ++i) {
  4094. stbtt_uint32 loc = nm + 6 + 12 * i;
  4095. stbtt_int32 id = ttUSHORT(fc+loc+6);
  4096. if (id == target_id) {
  4097. // find the encoding
  4098. stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4);
  4099. // is this a Unicode encoding?
  4100. if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) {
  4101. stbtt_int32 slen = ttUSHORT(fc+loc+8);
  4102. stbtt_int32 off = ttUSHORT(fc+loc+10);
  4103. // check if there's a prefix match
  4104. stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen);
  4105. if (matchlen >= 0) {
  4106. // check for target_id+1 immediately following, with same encoding & language
  4107. 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) {
  4108. slen = ttUSHORT(fc+loc+12+8);
  4109. off = ttUSHORT(fc+loc+12+10);
  4110. if (slen == 0) {
  4111. if (matchlen == nlen)
  4112. return 1;
  4113. } else if (matchlen < nlen && name[matchlen] == ' ') {
  4114. ++matchlen;
  4115. if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc+stringOffset+off),slen))
  4116. return 1;
  4117. }
  4118. } else {
  4119. // if nothing immediately following
  4120. if (matchlen == nlen)
  4121. return 1;
  4122. }
  4123. }
  4124. }
  4125. // @TODO handle other encodings
  4126. }
  4127. }
  4128. return 0;
  4129. }
  4130. static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags)
  4131. {
  4132. stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((char *) name);
  4133. stbtt_uint32 nm,hd;
  4134. if (!stbtt__isfont(fc+offset)) return 0;
  4135. // check italics/bold/underline flags in macStyle...
  4136. if (flags) {
  4137. hd = stbtt__find_table(fc, offset, "head");
  4138. if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7)) return 0;
  4139. }
  4140. nm = stbtt__find_table(fc, offset, "name");
  4141. if (!nm) return 0;
  4142. if (flags) {
  4143. // if we checked the macStyle flags, then just check the family and ignore the subfamily
  4144. if (stbtt__matchpair(fc, nm, name, nlen, 16, -1)) return 1;
  4145. if (stbtt__matchpair(fc, nm, name, nlen, 1, -1)) return 1;
  4146. if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1;
  4147. } else {
  4148. if (stbtt__matchpair(fc, nm, name, nlen, 16, 17)) return 1;
  4149. if (stbtt__matchpair(fc, nm, name, nlen, 1, 2)) return 1;
  4150. if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1;
  4151. }
  4152. return 0;
  4153. }
  4154. static int stbtt_FindMatchingFont_internal(unsigned char *font_collection, char *name_utf8, stbtt_int32 flags)
  4155. {
  4156. stbtt_int32 i;
  4157. for (i=0;;++i) {
  4158. stbtt_int32 off = stbtt_GetFontOffsetForIndex(font_collection, i);
  4159. if (off < 0) return off;
  4160. if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags))
  4161. return off;
  4162. }
  4163. }
  4164. #if defined(__GNUC__) || defined(__clang__)
  4165. #pragma GCC diagnostic push
  4166. #pragma GCC diagnostic ignored "-Wcast-qual"
  4167. #endif
  4168. STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset,
  4169. float pixel_height, unsigned char *pixels, int pw, int ph,
  4170. int first_char, int num_chars, stbtt_bakedchar *chardata)
  4171. {
  4172. return stbtt_BakeFontBitmap_internal((unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata);
  4173. }
  4174. STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index)
  4175. {
  4176. return stbtt_GetFontOffsetForIndex_internal((unsigned char *) data, index);
  4177. }
  4178. STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data)
  4179. {
  4180. return stbtt_GetNumberOfFonts_internal((unsigned char *) data);
  4181. }
  4182. STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset)
  4183. {
  4184. return stbtt_InitFont_internal(info, (unsigned char *) data, offset);
  4185. }
  4186. STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags)
  4187. {
  4188. return stbtt_FindMatchingFont_internal((unsigned char *) fontdata, (char *) name, flags);
  4189. }
  4190. STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2)
  4191. {
  4192. return stbtt_CompareUTF8toUTF16_bigendian_internal((char *) s1, len1, (char *) s2, len2);
  4193. }
  4194. #if defined(__GNUC__) || defined(__clang__)
  4195. #pragma GCC diagnostic pop
  4196. #endif
  4197. #endif // STB_TRUETYPE_IMPLEMENTATION
  4198. // FULL VERSION HISTORY
  4199. //
  4200. // 1.19 (2018-02-11) OpenType GPOS kerning (horizontal only), STBTT_fmod
  4201. // 1.18 (2018-01-29) add missing function
  4202. // 1.17 (2017-07-23) make more arguments const; doc fix
  4203. // 1.16 (2017-07-12) SDF support
  4204. // 1.15 (2017-03-03) make more arguments const
  4205. // 1.14 (2017-01-16) num-fonts-in-TTC function
  4206. // 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts
  4207. // 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual
  4208. // 1.11 (2016-04-02) fix unused-variable warning
  4209. // 1.10 (2016-04-02) allow user-defined fabs() replacement
  4210. // fix memory leak if fontsize=0.0
  4211. // fix warning from duplicate typedef
  4212. // 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use alloc userdata for PackFontRanges
  4213. // 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges
  4214. // 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints;
  4215. // allow PackFontRanges to pack and render in separate phases;
  4216. // fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?);
  4217. // fixed an assert() bug in the new rasterizer
  4218. // replace assert() with STBTT_assert() in new rasterizer
  4219. // 1.06 (2015-07-14) performance improvements (~35% faster on x86 and x64 on test machine)
  4220. // also more precise AA rasterizer, except if shapes overlap
  4221. // remove need for STBTT_sort
  4222. // 1.05 (2015-04-15) fix misplaced definitions for STBTT_STATIC
  4223. // 1.04 (2015-04-15) typo in example
  4224. // 1.03 (2015-04-12) STBTT_STATIC, fix memory leak in new packing, various fixes
  4225. // 1.02 (2014-12-10) fix various warnings & compile issues w/ stb_rect_pack, C++
  4226. // 1.01 (2014-12-08) fix subpixel position when oversampling to exactly match
  4227. // non-oversampled; STBTT_POINT_SIZE for packed case only
  4228. // 1.00 (2014-12-06) add new PackBegin etc. API, w/ support for oversampling
  4229. // 0.99 (2014-09-18) fix multiple bugs with subpixel rendering (ryg)
  4230. // 0.9 (2014-08-07) support certain mac/iOS fonts without an MS platformID
  4231. // 0.8b (2014-07-07) fix a warning
  4232. // 0.8 (2014-05-25) fix a few more warnings
  4233. // 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back
  4234. // 0.6c (2012-07-24) improve documentation
  4235. // 0.6b (2012-07-20) fix a few more warnings
  4236. // 0.6 (2012-07-17) fix warnings; added stbtt_ScaleForMappingEmToPixels,
  4237. // stbtt_GetFontBoundingBox, stbtt_IsGlyphEmpty
  4238. // 0.5 (2011-12-09) bugfixes:
  4239. // subpixel glyph renderer computed wrong bounding box
  4240. // first vertex of shape can be off-curve (FreeSans)
  4241. // 0.4b (2011-12-03) fixed an error in the font baking example
  4242. // 0.4 (2011-12-01) kerning, subpixel rendering (tor)
  4243. // bugfixes for:
  4244. // codepoint-to-glyph conversion using table fmt=12
  4245. // codepoint-to-glyph conversion using table fmt=4
  4246. // stbtt_GetBakedQuad with non-square texture (Zer)
  4247. // updated Hello World! sample to use kerning and subpixel
  4248. // fixed some warnings
  4249. // 0.3 (2009-06-24) cmap fmt=12, compound shapes (MM)
  4250. // userdata, malloc-from-userdata, non-zero fill (stb)
  4251. // 0.2 (2009-03-11) Fix unsigned/signed char warnings
  4252. // 0.1 (2009-03-09) First public release
  4253. //
  4254. /*
  4255. ------------------------------------------------------------------------------
  4256. This software is available under 2 licenses -- choose whichever you prefer.
  4257. ------------------------------------------------------------------------------
  4258. ALTERNATIVE A - MIT License
  4259. Copyright (c) 2017 Sean Barrett
  4260. Permission is hereby granted, free of charge, to any person obtaining a copy of
  4261. this software and associated documentation files (the "Software"), to deal in
  4262. the Software without restriction, including without limitation the rights to
  4263. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  4264. of the Software, and to permit persons to whom the Software is furnished to do
  4265. so, subject to the following conditions:
  4266. The above copyright notice and this permission notice shall be included in all
  4267. copies or substantial portions of the Software.
  4268. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4269. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4270. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4271. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  4272. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  4273. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  4274. SOFTWARE.
  4275. ------------------------------------------------------------------------------
  4276. ALTERNATIVE B - Public Domain (www.unlicense.org)
  4277. This is free and unencumbered software released into the public domain.
  4278. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
  4279. software, either in source code form or as a compiled binary, for any purpose,
  4280. commercial or non-commercial, and by any means.
  4281. In jurisdictions that recognize copyright laws, the author or authors of this
  4282. software dedicate any and all copyright interest in the software to the public
  4283. domain. We make this dedication for the benefit of the public at large and to
  4284. the detriment of our heirs and successors. We intend this dedication to be an
  4285. overt act of relinquishment in perpetuity of all present and future rights to
  4286. this software under copyright law.
  4287. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  4288. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  4289. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  4290. AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  4291. ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  4292. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  4293. ------------------------------------------------------------------------------
  4294. */