A 2D tile-based sandbox game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tags 1.4MB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459
  1. !_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
  2. !_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
  3. !_TAG_OUTPUT_MODE u-ctags /u-ctags or e-ctags/
  4. !_TAG_PROGRAM_AUTHOR Universal Ctags Team //
  5. !_TAG_PROGRAM_NAME Universal Ctags /Derived from Exuberant Ctags/
  6. !_TAG_PROGRAM_URL https://ctags.io/ /official site/
  7. !_TAG_PROGRAM_VERSION 0.0.0 //
  8. $(EXE) third_party/imgui/examples/example_emscripten/Makefile /^$(EXE): $(OBJS)$/;" t
  9. $(EXE) third_party/imgui/examples/example_glfw_metal/Makefile /^$(EXE): $(OBJS)$/;" t
  10. $(EXE) third_party/imgui/examples/example_glfw_opengl2/Makefile /^$(EXE): $(OBJS)$/;" t
  11. $(EXE) third_party/imgui/examples/example_glfw_opengl3/Makefile /^$(EXE): $(OBJS)$/;" t
  12. $(EXE) third_party/imgui/examples/example_glut_opengl2/Makefile /^$(EXE): $(OBJS)$/;" t
  13. $(EXE) third_party/imgui/examples/example_null/Makefile /^$(EXE): $(OBJS)$/;" t
  14. $(EXE) third_party/imgui/examples/example_sdl_opengl2/Makefile /^$(EXE): $(OBJS)$/;" t
  15. $(EXE) third_party/imgui/examples/example_sdl_opengl3/Makefile /^$(EXE): $(OBJS)$/;" t
  16. %.o third_party/imgui/examples/example_emscripten/Makefile /^%.o:%.cpp$/;" t
  17. %.o third_party/imgui/examples/example_emscripten/Makefile /^%.o:..\/%.cpp$/;" t
  18. %.o third_party/imgui/examples/example_emscripten/Makefile /^%.o:..\/..\/%.cpp$/;" t
  19. %.o third_party/imgui/examples/example_emscripten/Makefile /^%.o:..\/libs\/gl3w\/GL\/%.c$/;" t
  20. %.o third_party/imgui/examples/example_glfw_metal/Makefile /^%.o:%.cpp$/;" t
  21. %.o third_party/imgui/examples/example_glfw_metal/Makefile /^%.o:%.mm$/;" t
  22. %.o third_party/imgui/examples/example_glfw_metal/Makefile /^%.o:..\/%.cpp$/;" t
  23. %.o third_party/imgui/examples/example_glfw_metal/Makefile /^%.o:..\/%.mm$/;" t
  24. %.o third_party/imgui/examples/example_glfw_metal/Makefile /^%.o:..\/..\/%.cpp$/;" t
  25. %.o third_party/imgui/examples/example_glfw_opengl2/Makefile /^%.o:%.cpp$/;" t
  26. %.o third_party/imgui/examples/example_glfw_opengl2/Makefile /^%.o:..\/%.cpp$/;" t
  27. %.o third_party/imgui/examples/example_glfw_opengl2/Makefile /^%.o:..\/..\/%.cpp$/;" t
  28. %.o third_party/imgui/examples/example_glfw_opengl3/Makefile /^%.o:%.cpp$/;" t
  29. %.o third_party/imgui/examples/example_glfw_opengl3/Makefile /^%.o:..\/%.cpp$/;" t
  30. %.o third_party/imgui/examples/example_glfw_opengl3/Makefile /^%.o:..\/..\/%.cpp$/;" t
  31. %.o third_party/imgui/examples/example_glfw_opengl3/Makefile /^%.o:..\/libs\/gl3w\/GL\/%.c$/;" t
  32. %.o third_party/imgui/examples/example_glfw_opengl3/Makefile /^%.o:..\/libs\/glad\/src\/%.c$/;" t
  33. %.o third_party/imgui/examples/example_glut_opengl2/Makefile /^%.o:%.cpp$/;" t
  34. %.o third_party/imgui/examples/example_glut_opengl2/Makefile /^%.o:..\/%.cpp$/;" t
  35. %.o third_party/imgui/examples/example_glut_opengl2/Makefile /^%.o:..\/..\/%.cpp$/;" t
  36. %.o third_party/imgui/examples/example_null/Makefile /^%.o:%.cpp$/;" t
  37. %.o third_party/imgui/examples/example_null/Makefile /^%.o:..\/%.cpp$/;" t
  38. %.o third_party/imgui/examples/example_null/Makefile /^%.o:..\/..\/%.cpp$/;" t
  39. %.o third_party/imgui/examples/example_null/Makefile /^%.o:..\/libs\/gl3w\/GL\/%.c$/;" t
  40. %.o third_party/imgui/examples/example_sdl_opengl2/Makefile /^%.o:%.cpp$/;" t
  41. %.o third_party/imgui/examples/example_sdl_opengl2/Makefile /^%.o:..\/%.cpp$/;" t
  42. %.o third_party/imgui/examples/example_sdl_opengl2/Makefile /^%.o:..\/..\/%.cpp$/;" t
  43. %.o third_party/imgui/examples/example_sdl_opengl3/Makefile /^%.o:%.cpp$/;" t
  44. %.o third_party/imgui/examples/example_sdl_opengl3/Makefile /^%.o:..\/%.cpp$/;" t
  45. %.o third_party/imgui/examples/example_sdl_opengl3/Makefile /^%.o:..\/..\/%.cpp$/;" t
  46. %.o third_party/imgui/examples/example_sdl_opengl3/Makefile /^%.o:..\/libs\/gl3w\/GL\/%.c$/;" t
  47. %.o third_party/imgui/examples/example_sdl_opengl3/Makefile /^%.o:..\/libs\/glad\/src\/%.c$/;" t
  48. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.1.pitches
  49. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.10.pitches
  50. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.11.pitches
  51. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.2.pitches
  52. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.3.pitches
  53. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.7.pitches
  54. 0 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.patterns.0.notes.8.pitches
  55. 0 assets-src/music/happy-1.json /^ 24$/;" n array:channels.2.patterns.0.notes.0.pitches
  56. 0 assets-src/music/happy-1.json /^ 24$/;" n array:channels.2.patterns.0.notes.1.pitches
  57. 0 assets-src/music/happy-1.json /^ 24$/;" n array:channels.2.patterns.0.notes.2.pitches
  58. 0 assets-src/music/happy-1.json /^ 24$/;" n array:channels.2.patterns.0.notes.4.pitches
  59. 0 assets-src/music/happy-1.json /^ 24$/;" n array:channels.2.patterns.0.notes.6.pitches
  60. 0 assets-src/music/happy-1.json /^ 26$/;" n array:channels.2.patterns.0.notes.3.pitches
  61. 0 assets-src/music/happy-1.json /^ 26$/;" n array:channels.2.patterns.0.notes.7.pitches
  62. 0 assets-src/music/happy-1.json /^ 28$/;" n array:channels.2.patterns.0.notes.5.pitches
  63. 0 assets-src/music/happy-1.json /^ 48$/;" n array:channels.0.patterns.0.notes.0.pitches
  64. 0 assets-src/music/happy-1.json /^ 48$/;" n array:channels.0.patterns.0.notes.1.pitches
  65. 0 assets-src/music/happy-1.json /^ 48$/;" n array:channels.0.patterns.0.notes.3.pitches
  66. 0 assets-src/music/happy-1.json /^ 48$/;" n array:channels.0.patterns.0.notes.5.pitches
  67. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.1.notes.0.pitches
  68. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.1.notes.1.pitches
  69. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.1.notes.3.pitches
  70. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.1.notes.5.pitches
  71. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.2.notes.0.pitches
  72. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.2.notes.1.pitches
  73. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.2.notes.3.pitches
  74. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.2.notes.5.pitches
  75. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.3.notes.0.pitches
  76. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.3.notes.1.pitches
  77. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.3.notes.3.pitches
  78. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.3.notes.4.pitches
  79. 0 assets-src/music/happy-1.json /^ 48,$/;" n array:channels.0.patterns.3.notes.5.pitches
  80. 0 assets-src/music/happy-1.json /^ 5$/;" n array:channels.3.patterns.0.notes.0.pitches
  81. 0 assets-src/music/happy-1.json /^ 5$/;" n array:channels.3.patterns.0.notes.6.pitches
  82. 0 assets-src/music/happy-1.json /^ 50$/;" n array:channels.0.patterns.0.notes.2.pitches
  83. 0 assets-src/music/happy-1.json /^ 50$/;" n array:channels.0.patterns.0.notes.6.pitches
  84. 0 assets-src/music/happy-1.json /^ 50,$/;" n array:channels.0.patterns.1.notes.2.pitches
  85. 0 assets-src/music/happy-1.json /^ 50,$/;" n array:channels.0.patterns.1.notes.6.pitches
  86. 0 assets-src/music/happy-1.json /^ 50,$/;" n array:channels.0.patterns.2.notes.2.pitches
  87. 0 assets-src/music/happy-1.json /^ 50,$/;" n array:channels.0.patterns.2.notes.6.pitches
  88. 0 assets-src/music/happy-1.json /^ 50,$/;" n array:channels.0.patterns.3.notes.2.pitches
  89. 0 assets-src/music/happy-1.json /^ 52$/;" n array:channels.0.patterns.0.notes.4.pitches
  90. 0 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.1.notes.4.pitches
  91. 0 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.2.notes.4.pitches
  92. 0 assets-src/music/happy-1.json /^ 7$/;" n array:channels.3.patterns.0.notes.4.pitches
  93. 0 assets-src/music/happy-1.json /^ 7$/;" n array:channels.3.patterns.0.notes.5.pitches
  94. 0 assets-src/music/happy-1.json /^ 7$/;" n array:channels.3.patterns.0.notes.9.pitches
  95. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.0.points
  96. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.1.points
  97. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.2.points
  98. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.3.points
  99. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.4.points
  100. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.5.points
  101. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.6.points
  102. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.0.points
  103. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.1.points
  104. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.2.points
  105. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.3.points
  106. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.4.points
  107. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.5.points
  108. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.6.points
  109. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.0.points
  110. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.1.points
  111. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.2.points
  112. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.3.points
  113. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.4.points
  114. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.5.points
  115. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.6.points
  116. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.0.points
  117. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.1.points
  118. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.2.points
  119. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.3.points
  120. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.4.points
  121. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.5.points
  122. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.0.points
  123. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.1.points
  124. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.2.points
  125. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.3.points
  126. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.4.points
  127. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.5.points
  128. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.6.points
  129. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.7.points
  130. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.0.points
  131. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.1.points
  132. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.10.points
  133. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.11.points
  134. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.2.points
  135. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.3.points
  136. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.4.points
  137. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.5.points
  138. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.6.points
  139. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.7.points
  140. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.8.points
  141. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.9.points
  142. 0 assets-src/music/happy-1.json /^ 71,$/;" n array:channels.3.instruments.0.spectrum
  143. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  144. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  145. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  146. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  147. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.instruments.0.operators
  148. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.instruments.0.operators
  149. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  150. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  151. 0 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  152. 0 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  153. 0 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  154. 0 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  155. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.instruments
  156. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  157. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.instruments
  158. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  159. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.instruments
  160. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  161. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.instruments
  162. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  163. 0 assets-src/music/happy-1.json /^ {$/;" o array:channels
  164. 0 compile_commands.json /^{$/;" o
  165. 1 assets-src/music/happy-1.json /^ 52$/;" n array:channels.0.patterns.1.notes.0.pitches
  166. 1 assets-src/music/happy-1.json /^ 52$/;" n array:channels.0.patterns.1.notes.1.pitches
  167. 1 assets-src/music/happy-1.json /^ 52$/;" n array:channels.0.patterns.1.notes.3.pitches
  168. 1 assets-src/music/happy-1.json /^ 52$/;" n array:channels.0.patterns.1.notes.5.pitches
  169. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.2.notes.0.pitches
  170. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.2.notes.1.pitches
  171. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.2.notes.3.pitches
  172. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.2.notes.5.pitches
  173. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.3.notes.0.pitches
  174. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.3.notes.1.pitches
  175. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.3.notes.3.pitches
  176. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.3.notes.4.pitches
  177. 1 assets-src/music/happy-1.json /^ 52,$/;" n array:channels.0.patterns.3.notes.5.pitches
  178. 1 assets-src/music/happy-1.json /^ 55$/;" n array:channels.0.patterns.1.notes.2.pitches
  179. 1 assets-src/music/happy-1.json /^ 55$/;" n array:channels.0.patterns.1.notes.6.pitches
  180. 1 assets-src/music/happy-1.json /^ 55,$/;" n array:channels.0.patterns.2.notes.2.pitches
  181. 1 assets-src/music/happy-1.json /^ 55,$/;" n array:channels.0.patterns.2.notes.6.pitches
  182. 1 assets-src/music/happy-1.json /^ 55,$/;" n array:channels.0.patterns.3.notes.2.pitches
  183. 1 assets-src/music/happy-1.json /^ 57$/;" n array:channels.0.patterns.1.notes.4.pitches
  184. 1 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.2.notes.4.pitches
  185. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.0.points
  186. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.1.points
  187. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.2.points
  188. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.3.points
  189. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.4.points
  190. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.5.points
  191. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes.6.points
  192. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.0.points
  193. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.1.points
  194. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.2.points
  195. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.3.points
  196. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.4.points
  197. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.5.points
  198. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes.6.points
  199. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.0.points
  200. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.1.points
  201. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.2.points
  202. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.3.points
  203. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.4.points
  204. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.5.points
  205. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes.6.points
  206. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.0.points
  207. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.1.points
  208. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.2.points
  209. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.3.points
  210. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.4.points
  211. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes.5.points
  212. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.0.points
  213. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.1.points
  214. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.2.points
  215. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.3.points
  216. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.4.points
  217. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.5.points
  218. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.6.points
  219. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes.7.points
  220. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.0.points
  221. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.1.points
  222. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.10.points
  223. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.11.points
  224. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.2.points
  225. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.3.points
  226. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.4.points
  227. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.5.points
  228. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.6.points
  229. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.7.points
  230. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.8.points
  231. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes.9.points
  232. 1 assets-src/music/happy-1.json /^ 100,$/;" n array:channels.3.instruments.0.spectrum
  233. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  234. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  235. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  236. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  237. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.instruments.0.operators
  238. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.instruments.0.operators
  239. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  240. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  241. 1 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  242. 1 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  243. 1 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  244. 1 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  245. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  246. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  247. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  248. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  249. 1 assets-src/music/happy-1.json /^ {$/;" o array:channels
  250. 1 compile_commands.json /^{$/;" o
  251. 10 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  252. 10 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  253. 10 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  254. 10 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  255. 10 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  256. 10 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  257. 10 compile_commands.json /^{$/;" o
  258. 100 compile_commands.json /^{$/;" o
  259. 101 compile_commands.json /^{$/;" o
  260. 102 compile_commands.json /^{$/;" o
  261. 103 compile_commands.json /^{$/;" o
  262. 104 compile_commands.json /^{$/;" o
  263. 105 compile_commands.json /^{$/;" o
  264. 106 compile_commands.json /^{$/;" o
  265. 107 compile_commands.json /^{$/;" o
  266. 108 compile_commands.json /^{$/;" o
  267. 109 compile_commands.json /^{$/;" o
  268. 11 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  269. 11 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  270. 11 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  271. 11 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  272. 11 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  273. 11 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  274. 11 compile_commands.json /^{$/;" o
  275. 110 compile_commands.json /^{$/;" o
  276. 111 compile_commands.json /^{$/;" o
  277. 112 compile_commands.json /^{$/;" o
  278. 12 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  279. 12 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  280. 12 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  281. 12 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  282. 12 assets-src/music/happy-1.json /^ 3,$/;" n array:channels.0.sequence
  283. 12 compile_commands.json /^{$/;" o
  284. 13 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.3.instruments.0.spectrum
  285. 13 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  286. 13 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  287. 13 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  288. 13 assets-src/music/happy-1.json /^ 3,$/;" n array:channels.0.sequence
  289. 13 compile_commands.json /^{$/;" o
  290. 14 assets-src/music/happy-1.json /^ 29,$/;" n array:channels.3.instruments.0.spectrum
  291. 14 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  292. 14 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  293. 14 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  294. 14 assets-src/music/happy-1.json /^ 4,$/;" n array:channels.0.sequence
  295. 14 compile_commands.json /^{$/;" o
  296. 15 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.3.instruments.0.spectrum
  297. 15 assets-src/music/happy-1.json /^ 1$/;" n array:channels.1.sequence
  298. 15 assets-src/music/happy-1.json /^ 1$/;" n array:channels.2.sequence
  299. 15 assets-src/music/happy-1.json /^ 1$/;" n array:channels.3.sequence
  300. 15 assets-src/music/happy-1.json /^ 4$/;" n array:channels.0.sequence
  301. 15 compile_commands.json /^{$/;" o
  302. 16 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  303. 16 compile_commands.json /^{$/;" o
  304. 17 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.3.instruments.0.spectrum
  305. 17 compile_commands.json /^{$/;" o
  306. 18 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  307. 18 compile_commands.json /^{$/;" o
  308. 19 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  309. 19 compile_commands.json /^{$/;" o
  310. 2 assets-src/music/happy-1.json /^ 57$/;" n array:channels.0.patterns.2.notes.0.pitches
  311. 2 assets-src/music/happy-1.json /^ 57$/;" n array:channels.0.patterns.2.notes.1.pitches
  312. 2 assets-src/music/happy-1.json /^ 57$/;" n array:channels.0.patterns.2.notes.3.pitches
  313. 2 assets-src/music/happy-1.json /^ 57$/;" n array:channels.0.patterns.2.notes.5.pitches
  314. 2 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.3.notes.0.pitches
  315. 2 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.3.notes.1.pitches
  316. 2 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.3.notes.3.pitches
  317. 2 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.3.notes.4.pitches
  318. 2 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.0.patterns.3.notes.5.pitches
  319. 2 assets-src/music/happy-1.json /^ 60$/;" n array:channels.0.patterns.2.notes.2.pitches
  320. 2 assets-src/music/happy-1.json /^ 60$/;" n array:channels.0.patterns.2.notes.6.pitches
  321. 2 assets-src/music/happy-1.json /^ 60,$/;" n array:channels.0.patterns.3.notes.2.pitches
  322. 2 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.2.notes.4.pitches
  323. 2 assets-src/music/happy-1.json /^ 100,$/;" n array:channels.3.instruments.0.spectrum
  324. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  325. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  326. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  327. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  328. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.instruments.0.operators
  329. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.instruments.0.operators
  330. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  331. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  332. 2 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  333. 2 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  334. 2 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  335. 2 assets-src/music/happy-1.json /^ 2,$/;" n array:channels.0.sequence
  336. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  337. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  338. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  339. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  340. 2 assets-src/music/happy-1.json /^ {$/;" o array:channels
  341. 2 compile_commands.json /^{$/;" o
  342. 20 assets-src/music/happy-1.json /^ 57,$/;" n array:channels.3.instruments.0.spectrum
  343. 20 compile_commands.json /^{$/;" o
  344. 21 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  345. 21 compile_commands.json /^{$/;" o
  346. 22 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  347. 22 compile_commands.json /^{$/;" o
  348. 23 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  349. 23 compile_commands.json /^{$/;" o
  350. 24 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  351. 24 compile_commands.json /^{$/;" o
  352. 25 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  353. 25 compile_commands.json /^{$/;" o
  354. 26 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  355. 26 compile_commands.json /^{$/;" o
  356. 27 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  357. 27 compile_commands.json /^{$/;" o
  358. 28 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  359. 28 compile_commands.json /^{$/;" o
  360. 29 assets-src/music/happy-1.json /^ 43$/;" n array:channels.3.instruments.0.spectrum
  361. 29 compile_commands.json /^{$/;" o
  362. 3 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.3.notes.0.pitches
  363. 3 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.3.notes.1.pitches
  364. 3 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.3.notes.3.pitches
  365. 3 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.3.notes.4.pitches
  366. 3 assets-src/music/happy-1.json /^ 62$/;" n array:channels.0.patterns.3.notes.5.pitches
  367. 3 assets-src/music/happy-1.json /^ 64$/;" n array:channels.0.patterns.3.notes.2.pitches
  368. 3 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  369. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  370. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  371. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  372. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  373. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.instruments.0.operators
  374. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.instruments.0.operators
  375. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  376. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  377. 3 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  378. 3 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  379. 3 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  380. 3 assets-src/music/happy-1.json /^ 2,$/;" n array:channels.0.sequence
  381. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  382. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  383. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  384. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  385. 3 assets-src/music/happy-1.json /^ {$/;" o array:channels
  386. 3 compile_commands.json /^{$/;" o
  387. 30 compile_commands.json /^{$/;" o
  388. 31 compile_commands.json /^{$/;" o
  389. 32 compile_commands.json /^{$/;" o
  390. 33 compile_commands.json /^{$/;" o
  391. 34 compile_commands.json /^{$/;" o
  392. 35 compile_commands.json /^{$/;" o
  393. 36 compile_commands.json /^{$/;" o
  394. 37 compile_commands.json /^{$/;" o
  395. 38 compile_commands.json /^{$/;" o
  396. 39 compile_commands.json /^{$/;" o
  397. 4 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  398. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  399. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  400. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  401. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  402. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  403. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  404. 4 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  405. 4 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  406. 4 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  407. 4 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  408. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  409. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  410. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  411. 4 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  412. 4 compile_commands.json /^{$/;" o
  413. 40 compile_commands.json /^{$/;" o
  414. 41 compile_commands.json /^{$/;" o
  415. 42 compile_commands.json /^{$/;" o
  416. 43 compile_commands.json /^{$/;" o
  417. 44 compile_commands.json /^{$/;" o
  418. 45 compile_commands.json /^{$/;" o
  419. 46 compile_commands.json /^{$/;" o
  420. 47 compile_commands.json /^{$/;" o
  421. 48 compile_commands.json /^{$/;" o
  422. 49 compile_commands.json /^{$/;" o
  423. 5 assets-src/music/happy-1.json /^ 71,$/;" n array:channels.3.instruments.0.spectrum
  424. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  425. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  426. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  427. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.3.notes
  428. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  429. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  430. 5 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.0.sequence
  431. 5 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  432. 5 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  433. 5 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  434. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  435. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  436. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  437. 5 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  438. 5 compile_commands.json /^{$/;" o
  439. 50 compile_commands.json /^{$/;" o
  440. 51 compile_commands.json /^{$/;" o
  441. 52 compile_commands.json /^{$/;" o
  442. 53 compile_commands.json /^{$/;" o
  443. 54 compile_commands.json /^{$/;" o
  444. 55 compile_commands.json /^{$/;" o
  445. 56 compile_commands.json /^{$/;" o
  446. 57 compile_commands.json /^{$/;" o
  447. 58 compile_commands.json /^{$/;" o
  448. 59 compile_commands.json /^{$/;" o
  449. 6 assets-src/music/happy-1.json /^ 71,$/;" n array:channels.3.instruments.0.spectrum
  450. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.0.notes
  451. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.1.notes
  452. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns.2.notes
  453. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  454. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  455. 6 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  456. 6 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  457. 6 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  458. 6 assets-src/music/happy-1.json /^ 2,$/;" n array:channels.0.sequence
  459. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  460. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  461. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  462. 6 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  463. 6 compile_commands.json /^{$/;" o
  464. 60 compile_commands.json /^{$/;" o
  465. 61 compile_commands.json /^{$/;" o
  466. 62 compile_commands.json /^{$/;" o
  467. 63 compile_commands.json /^{$/;" o
  468. 64 compile_commands.json /^{$/;" o
  469. 65 compile_commands.json /^{$/;" o
  470. 66 compile_commands.json /^{$/;" o
  471. 67 compile_commands.json /^{$/;" o
  472. 68 compile_commands.json /^{$/;" o
  473. 69 compile_commands.json /^{$/;" o
  474. 7 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  475. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns.0.notes
  476. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  477. 7 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  478. 7 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  479. 7 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  480. 7 assets-src/music/happy-1.json /^ 3,$/;" n array:channels.0.sequence
  481. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.0.patterns
  482. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.1.patterns
  483. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.2.patterns
  484. 7 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns
  485. 7 compile_commands.json /^{$/;" o
  486. 70 compile_commands.json /^{$/;" o
  487. 71 compile_commands.json /^{$/;" o
  488. 72 compile_commands.json /^{$/;" o
  489. 73 compile_commands.json /^{$/;" o
  490. 74 compile_commands.json /^{$/;" o
  491. 75 compile_commands.json /^{$/;" o
  492. 76 compile_commands.json /^{$/;" o
  493. 77 compile_commands.json /^{$/;" o
  494. 78 compile_commands.json /^{$/;" o
  495. 79 compile_commands.json /^{$/;" o
  496. 8 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  497. 8 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  498. 8 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  499. 8 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  500. 8 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  501. 8 assets-src/music/happy-1.json /^ 2,$/;" n array:channels.0.sequence
  502. 8 compile_commands.json /^{$/;" o
  503. 80 compile_commands.json /^{$/;" o
  504. 81 compile_commands.json /^{$/;" o
  505. 82 compile_commands.json /^{$/;" o
  506. 83 compile_commands.json /^{$/;" o
  507. 84 compile_commands.json /^{$/;" o
  508. 85 compile_commands.json /^{$/;" o
  509. 86 compile_commands.json /^{$/;" o
  510. 87 compile_commands.json /^{$/;" o
  511. 88 compile_commands.json /^{$/;" o
  512. 89 compile_commands.json /^{$/;" o
  513. 9 assets-src/music/happy-1.json /^ 43,$/;" n array:channels.3.instruments.0.spectrum
  514. 9 assets-src/music/happy-1.json /^ {$/;" o array:channels.3.patterns.0.notes
  515. 9 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.1.sequence
  516. 9 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.2.sequence
  517. 9 assets-src/music/happy-1.json /^ 1,$/;" n array:channels.3.sequence
  518. 9 assets-src/music/happy-1.json /^ 3,$/;" n array:channels.0.sequence
  519. 9 compile_commands.json /^{$/;" o
  520. 90 compile_commands.json /^{$/;" o
  521. 91 compile_commands.json /^{$/;" o
  522. 92 compile_commands.json /^{$/;" o
  523. 93 compile_commands.json /^{$/;" o
  524. 94 compile_commands.json /^{$/;" o
  525. 95 compile_commands.json /^{$/;" o
  526. 96 compile_commands.json /^{$/;" o
  527. 97 compile_commands.json /^{$/;" o
  528. 98 compile_commands.json /^{$/;" o
  529. 99 compile_commands.json /^{$/;" o
  530. A third_party/imgui_sdl/imgui_sdl.cpp /^ const float R, G, B, A;$/;" m struct:__anonaaadc0580110::Color typeref:typename:const float file:
  531. ALLEGRO_HAS_CLIPBOARD third_party/imgui/examples/imgui_impl_allegro5.cpp /^#define ALLEGRO_HAS_CLIPBOARD /;" d file:
  532. APIENTRY third_party/imgui/examples/imgui_impl_opengl2.cpp /^#define APIENTRY /;" d file:
  533. APIENTRY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define APIENTRY$/;" d
  534. APIENTRY third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define APIENTRY /;" d
  535. APIENTRYP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define APIENTRYP /;" d
  536. ARRAY libswan/src/SRF.cc /^ ARRAY = 1,$/;" e enum:Swan::Type file:
  537. AcceptDragDropPayload third_party/imgui/imgui.cpp /^const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags)$/;" f class:ImGui typeref:typename:const ImGuiPayload *
  538. ActivateItem third_party/imgui/imgui.cpp /^void ImGui::ActivateItem(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  539. Active third_party/imgui/imgui_internal.h /^ bool Active; \/\/ Set to true on Begin(), unl/;" m struct:ImGuiWindow typeref:typename:bool
  540. ActiveId third_party/imgui/imgui_internal.h /^ ImGuiID ActiveId; \/\/ Active widget$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  541. ActiveIdAllowNavDirFlags third_party/imgui/imgui_internal.h /^ int ActiveIdAllowNavDirFlags; \/\/ Active widget allows using /;" m struct:ImGuiContext typeref:typename:int
  542. ActiveIdAllowOverlap third_party/imgui/imgui_internal.h /^ bool ActiveIdAllowOverlap; \/\/ Active widget allows anothe/;" m struct:ImGuiContext typeref:typename:bool
  543. ActiveIdBlockNavInputFlags third_party/imgui/imgui_internal.h /^ int ActiveIdBlockNavInputFlags;$/;" m struct:ImGuiContext typeref:typename:int
  544. ActiveIdClickOffset third_party/imgui/imgui_internal.h /^ ImVec2 ActiveIdClickOffset; \/\/ Clicked offset from upper-l/;" m struct:ImGuiContext typeref:typename:ImVec2
  545. ActiveIdHasBeenEditedBefore third_party/imgui/imgui_internal.h /^ bool ActiveIdHasBeenEditedBefore; \/\/ Was the value associated to/;" m struct:ImGuiContext typeref:typename:bool
  546. ActiveIdHasBeenEditedThisFrame third_party/imgui/imgui_internal.h /^ bool ActiveIdHasBeenEditedThisFrame;$/;" m struct:ImGuiContext typeref:typename:bool
  547. ActiveIdHasBeenPressedBefore third_party/imgui/imgui_internal.h /^ bool ActiveIdHasBeenPressedBefore; \/\/ Track whether the active id/;" m struct:ImGuiContext typeref:typename:bool
  548. ActiveIdIsAlive third_party/imgui/imgui_internal.h /^ ImGuiID ActiveIdIsAlive; \/\/ Active widget has been seen/;" m struct:ImGuiContext typeref:typename:ImGuiID
  549. ActiveIdIsJustActivated third_party/imgui/imgui_internal.h /^ bool ActiveIdIsJustActivated; \/\/ Set at the time of activati/;" m struct:ImGuiContext typeref:typename:bool
  550. ActiveIdPreviousFrame third_party/imgui/imgui_internal.h /^ ImGuiID ActiveIdPreviousFrame;$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  551. ActiveIdPreviousFrameHasBeenEditedBefore third_party/imgui/imgui_internal.h /^ bool ActiveIdPreviousFrameHasBeenEditedBefore;$/;" m struct:ImGuiContext typeref:typename:bool
  552. ActiveIdPreviousFrameIsAlive third_party/imgui/imgui_internal.h /^ bool ActiveIdPreviousFrameIsAlive;$/;" m struct:ImGuiContext typeref:typename:bool
  553. ActiveIdPreviousFrameWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* ActiveIdPreviousFrameWindow;$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  554. ActiveIdSource third_party/imgui/imgui_internal.h /^ ImGuiInputSource ActiveIdSource; \/\/ Activating with mouse or na/;" m struct:ImGuiContext typeref:typename:ImGuiInputSource
  555. ActiveIdTimer third_party/imgui/imgui_internal.h /^ float ActiveIdTimer;$/;" m struct:ImGuiContext typeref:typename:float
  556. ActiveIdWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* ActiveIdWindow;$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  557. Add third_party/imgui/imgui_internal.h /^ T* Add() { int idx = FreeIdx; if (idx == Data.Size) {/;" f struct:ImPool typeref:typename:T *
  558. Add third_party/imgui/imgui_internal.h /^ void Add(const ImRect& r) { if (Min.x > r.Min.x) Min.x = r.Min.x; if (/;" f struct:ImRect typeref:typename:void
  559. Add third_party/imgui/imgui_internal.h /^ void Add(const ImVec2& p) { if (Min.x > p.x) Min.x = p.x; if (/;" f struct:ImRect typeref:typename:void
  560. AddBezierCurve third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddBezierCurve(const ImVec2& pos0, const ImVec2& cp0, const ImVec2& cp1, const /;" f class:ImDrawList typeref:typename:void
  561. AddCallback third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddCallback(ImDrawCallback callback, void* callback_data)$/;" f class:ImDrawList typeref:typename:void
  562. AddChar third_party/imgui/imgui.h /^ inline void AddChar(ImWchar c) { SetBit(c); } \/\/ Add charact/;" f struct:ImFontGlyphRangesBuilder typeref:typename:void
  563. AddCircle third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, floa/;" f class:ImDrawList typeref:typename:void
  564. AddCircleFilled third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments/;" f class:ImDrawList typeref:typename:void
  565. AddConvexPolyFilled third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddConvexPolyFilled(const ImVec2* points, const int points_count, ImU32 col)$/;" f class:ImDrawList typeref:typename:void
  566. AddCustomRectFontGlyph third_party/imgui/imgui_draw.cpp /^int ImFontAtlas::AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float a/;" f class:ImFontAtlas typeref:typename:int
  567. AddCustomRectRegular third_party/imgui/imgui_draw.cpp /^int ImFontAtlas::AddCustomRectRegular(unsigned int id, int width, int height)$/;" f class:ImFontAtlas typeref:typename:int
  568. AddDrawCmd third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddDrawCmd()$/;" f class:ImDrawList typeref:typename:void
  569. AddDrawListToDrawData third_party/imgui/imgui.cpp /^static void AddDrawListToDrawData(ImVector<ImDrawList*>* out_list, ImDrawList* draw_list)$/;" f typeref:typename:void file:
  570. AddFont third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg)$/;" f class:ImFontAtlas typeref:typename:ImFont *
  571. AddFontDefault third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template)$/;" f class:ImFontAtlas typeref:typename:ImFont *
  572. AddFontFromFileTTF third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontCon/;" f class:ImFontAtlas typeref:typename:ImFont *
  573. AddFontFromMemoryCompressedBase85TTF third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFontFromMemoryCompressedBase85TTF(const char* compressed_ttf_data_base85/;" f class:ImFontAtlas typeref:typename:ImFont *
  574. AddFontFromMemoryCompressedTTF third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFontFromMemoryCompressedTTF(const void* compressed_ttf_data, int compres/;" f class:ImFontAtlas typeref:typename:ImFont *
  575. AddFontFromMemoryTTF third_party/imgui/imgui_draw.cpp /^ImFont* ImFontAtlas::AddFontFromMemoryTTF(void* ttf_data, int ttf_size, float size_pixels, const/;" f class:ImFontAtlas typeref:typename:ImFont *
  576. AddGlyph third_party/imgui/imgui_draw.cpp /^void ImFont::AddGlyph(ImWchar codepoint, float x0, float y0, float x1, float y1, float u0, float/;" f class:ImFont typeref:typename:void
  577. AddImage third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max,/;" f class:ImDrawList typeref:typename:void
  578. AddImageQuad third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, c/;" f class:ImDrawList typeref:typename:void
  579. AddImageRounded third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2&/;" f class:ImDrawList typeref:typename:void
  580. AddInputCharacter third_party/imgui/imgui.cpp /^void ImGuiIO::AddInputCharacter(unsigned int c)$/;" f class:ImGuiIO typeref:typename:void
  581. AddInputCharactersUTF8 third_party/imgui/imgui.cpp /^void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars)$/;" f class:ImGuiIO typeref:typename:void
  582. AddLine third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness)$/;" f class:ImDrawList typeref:typename:void
  583. AddLog third_party/imgui/imgui_demo.cpp /^ void AddLog(const char* fmt, ...) IM_FMTARGS(2)$/;" f struct:ExampleAppConsole typeref:typename:void file:
  584. AddLog third_party/imgui/imgui_demo.cpp /^ void AddLog(const char* fmt, ...) IM_FMTARGS(2)$/;" f struct:ExampleAppLog typeref:typename:void file:
  585. AddPolyline third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32 col, bool close/;" f class:ImDrawList typeref:typename:void
  586. AddQuad third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4,/;" f class:ImDrawList typeref:typename:void
  587. AddQuadFilled third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec/;" f class:ImDrawList typeref:typename:void
  588. AddRanges third_party/imgui/imgui_draw.cpp /^void ImFontGlyphRangesBuilder::AddRanges(const ImWchar* ranges)$/;" f class:ImFontGlyphRangesBuilder typeref:typename:void
  589. AddRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, Im/;" f class:ImDrawList typeref:typename:void
  590. AddRectFilled third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float roundi/;" f class:ImDrawList typeref:typename:void
  591. AddRectFilledMultiColor third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr/;" f class:ImDrawList typeref:typename:void
  592. AddRemapChar third_party/imgui/imgui_draw.cpp /^void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)$/;" f class:ImFont typeref:typename:void
  593. AddRootWindowToDrawData third_party/imgui/imgui.cpp /^static void AddRootWindowToDrawData(ImGuiWindow* window)$/;" f typeref:typename:void file:
  594. AddText third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, cons/;" f class:ImDrawList typeref:typename:void
  595. AddText third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_/;" f class:ImDrawList typeref:typename:void
  596. AddText third_party/imgui/imgui_draw.cpp /^void ImFontGlyphRangesBuilder::AddText(const char* text, const char* text_end)$/;" f class:ImFontGlyphRangesBuilder typeref:typename:void
  597. AddTriangle third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, fl/;" f class:ImDrawList typeref:typename:void
  598. AddTriangleFilled third_party/imgui/imgui_draw.cpp /^void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 c/;" f class:ImDrawList typeref:typename:void
  599. AddWindowToDrawData third_party/imgui/imgui.cpp /^static void AddWindowToDrawData(ImVector<ImDrawList*>* out_render_list, ImGuiWindow* window)$/;" f typeref:typename:void file:
  600. AddWindowToSortBuffer third_party/imgui/imgui.cpp /^static void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWindow* windo/;" f typeref:typename:void file:
  601. AdvanceX third_party/imgui/imgui.h /^ float AdvanceX; \/\/ Distance to next character (= data from font + ImFo/;" m struct:ImFontGlyph typeref:typename:float
  602. AdvanceX third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float AdvanceX; \/\/ The distance from the origin to the origin of the n/;" m struct:__anond3bafd850110::GlyphInfo typeref:typename:float file:
  603. AlignFirstTextHeightToWidgets third_party/imgui/imgui.h /^ static inline void AlignFirstTextHeightToWidgets() { AlignTextToFramePadding(); }$/;" f namespace:ImGui typeref:typename:void
  604. AlignTextToFramePadding third_party/imgui/imgui_widgets.cpp /^void ImGui::AlignTextToFramePadding()$/;" f class:ImGui typeref:typename:void
  605. Allocator third_party/imgui/examples/imgui_impl_vulkan.h /^ const VkAllocationCallbacks* Allocator;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:const VkAllocationCallbacks *
  606. Alpha third_party/imgui/imgui.h /^ float Alpha; \/\/ Global alpha applies to everything in Dear ImGu/;" m struct:ImGuiStyle typeref:typename:float
  607. AngleMax12 third_party/imgui/imgui.cpp /^ int AngleMin12, AngleMax12;$/;" m struct:ImGuiResizeGripDef typeref:typename:int file:
  608. AngleMin12 third_party/imgui/imgui.cpp /^ int AngleMin12, AngleMax12;$/;" m struct:ImGuiResizeGripDef typeref:typename:int file:
  609. Animation libswan/include/swan/Animation.h /^ Animation(ImageResource &resource, float interval, SDL_RendererFlip flip = SDL_FLIP_NONE):$/;" f class:Swan::Animation
  610. Animation libswan/include/swan/Animation.h /^class Animation {$/;" c namespace:Swan
  611. AntiAliasedFill third_party/imgui/imgui.h /^ bool AntiAliasedFill; \/\/ Enable anti-aliasing on filled shapes (rounded /;" m struct:ImGuiStyle typeref:typename:bool
  612. AntiAliasedLines third_party/imgui/imgui.h /^ bool AntiAliasedLines; \/\/ Enable anti-aliasing on lines\/borders. Disable/;" m struct:ImGuiStyle typeref:typename:bool
  613. AppDelegate third_party/imgui/examples/example_apple_metal/Shared/AppDelegate.h /^@interface AppDelegate : NSObject <NSApplicationDelegate>$/;" i
  614. AppDelegate third_party/imgui/examples/example_apple_metal/Shared/AppDelegate.h /^@interface AppDelegate : UIResponder <UIApplicationDelegate>$/;" i
  615. AppDelegate third_party/imgui/examples/example_apple_metal/Shared/AppDelegate.m /^@implementation AppDelegate$/;" I
  616. Appearing third_party/imgui/imgui_internal.h /^ bool Appearing; \/\/ Set during the frame where /;" m struct:ImGuiWindow typeref:typename:bool
  617. ArrowButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::ArrowButton(const char* str_id, ImGuiDir dir)$/;" f class:ImGui typeref:typename:bool
  618. ArrowButtonEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size, ImGuiButtonFlags flags)$/;" f class:ImGui typeref:typename:bool
  619. Ascender third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float Ascender; \/\/ The pixel extents above the baseline in pixels (typ/;" m struct:__anond3bafd850110::FontInfo typeref:typename:float file:
  620. Ascent third_party/imgui/imgui.h /^ float Ascent, Descent; \/\/ 4+4 \/\/ out \/\/ \/\/ Asc/;" m struct:ImFont typeref:typename:float
  621. At third_party/imgui_sdl/imgui_sdl.cpp /^ const Value& At(const Key& key)$/;" f class:__anonaaadc0580110::LRUCache typeref:typename:const Value & file:
  622. AutoFitChildAxises third_party/imgui/imgui_internal.h /^ ImS8 AutoFitChildAxises;$/;" m struct:ImGuiWindow typeref:typename:ImS8
  623. AutoFitFramesX third_party/imgui/imgui_internal.h /^ ImS8 AutoFitFramesX, AutoFitFramesY;$/;" m struct:ImGuiWindow typeref:typename:ImS8
  624. AutoFitFramesY third_party/imgui/imgui_internal.h /^ ImS8 AutoFitFramesX, AutoFitFramesY;$/;" m struct:ImGuiWindow typeref:typename:ImS8
  625. AutoFitOnlyGrows third_party/imgui/imgui_internal.h /^ bool AutoFitOnlyGrows;$/;" m struct:ImGuiWindow typeref:typename:bool
  626. AutoPosLastDirection third_party/imgui/imgui_internal.h /^ ImGuiDir AutoPosLastDirection;$/;" m struct:ImGuiWindow typeref:typename:ImGuiDir
  627. AutoScroll third_party/imgui/imgui_demo.cpp /^ bool AutoScroll;$/;" m struct:ExampleAppConsole typeref:typename:bool file:
  628. AutoScroll third_party/imgui/imgui_demo.cpp /^ bool AutoScroll; \/\/ Keep scrolling if already at the bottom$/;" m struct:ExampleAppLog typeref:typename:bool file:
  629. B third_party/imgui_sdl/imgui_sdl.cpp /^ const float R, G, B, A;$/;" m struct:__anonaaadc0580110::Color typeref:typename:const float file:
  630. BACKUP_DX10_STATE third_party/imgui/examples/imgui_impl_dx10.cpp /^ struct BACKUP_DX10_STATE$/;" s function:ImGui_ImplDX10_RenderDrawData file:
  631. BACKUP_DX11_STATE third_party/imgui/examples/imgui_impl_dx11.cpp /^ struct BACKUP_DX11_STATE$/;" s function:ImGui_ImplDX11_RenderDrawData file:
  632. BMPHeader third_party/PerlinNoise/Test_PerlinNoise.cpp /^struct BMPHeader$/;" s file:
  633. BYTE libswan/src/SRF.cc /^ BYTE = 3,$/;" e enum:Swan::Type file:
  634. BYTE_ARRAY libswan/src/SRF.cc /^ BYTE_ARRAY = 9,$/;" e enum:Swan::Type file:
  635. Backbuffer third_party/imgui/examples/imgui_impl_vulkan.h /^ VkImage Backbuffer;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkImage
  636. BackbufferView third_party/imgui/examples/imgui_impl_vulkan.h /^ VkImageView BackbufferView;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkImageView
  637. BackendFlags third_party/imgui/imgui.h /^ ImGuiBackendFlags BackendFlags; \/\/ = 0 \/\/ See ImGuiBackendFlags/;" m struct:ImGuiIO typeref:typename:ImGuiBackendFlags
  638. BackendLanguageUserData third_party/imgui/imgui.h /^ void* BackendLanguageUserData; \/\/ = NULL$/;" m struct:ImGuiIO typeref:typename:void *
  639. BackendPlatformName third_party/imgui/imgui.h /^ const char* BackendPlatformName; \/\/ = NULL$/;" m struct:ImGuiIO typeref:typename:const char *
  640. BackendPlatformUserData third_party/imgui/imgui.h /^ void* BackendPlatformUserData; \/\/ = NULL$/;" m struct:ImGuiIO typeref:typename:void *
  641. BackendRendererName third_party/imgui/imgui.h /^ const char* BackendRendererName; \/\/ = NULL$/;" m struct:ImGuiIO typeref:typename:const char *
  642. BackendRendererUserData third_party/imgui/imgui.h /^ void* BackendRendererUserData; \/\/ = NULL$/;" m struct:ImGuiIO typeref:typename:void *
  643. BackgroundDrawList third_party/imgui/imgui_internal.h /^ ImDrawList BackgroundDrawList; \/\/ First draw list to be rende/;" m struct:ImGuiContext typeref:typename:ImDrawList
  644. Backup third_party/imgui/imgui_internal.h /^ void Backup() { ImGuiWindow* window = GImGui->CurrentWindow; LastItemId = window->/;" f struct:ImGuiItemHoveredDataBackup typeref:typename:void
  645. BackupActiveIdIsAlive third_party/imgui/imgui_internal.h /^ ImGuiID BackupActiveIdIsAlive;$/;" m struct:ImGuiGroupData typeref:typename:ImGuiID
  646. BackupActiveIdPreviousFrameIsAlive third_party/imgui/imgui_internal.h /^ bool BackupActiveIdPreviousFrameIsAlive;$/;" m struct:ImGuiGroupData typeref:typename:bool
  647. BackupCurrLineSize third_party/imgui/imgui_internal.h /^ ImVec2 BackupCurrLineSize;$/;" m struct:ImGuiGroupData typeref:typename:ImVec2
  648. BackupCurrLineTextBaseOffset third_party/imgui/imgui_internal.h /^ float BackupCurrLineTextBaseOffset;$/;" m struct:ImGuiGroupData typeref:typename:float
  649. BackupCursorMaxPos third_party/imgui/imgui_internal.h /^ ImVec2 BackupCursorMaxPos;$/;" m struct:ImGuiGroupData typeref:typename:ImVec2
  650. BackupCursorPos third_party/imgui/imgui_internal.h /^ ImVec2 BackupCursorPos;$/;" m struct:ImGuiGroupData typeref:typename:ImVec2
  651. BackupFloat third_party/imgui/imgui_internal.h /^ union { int BackupInt[2]; float BackupFloat[2]; };$/;" m union:ImGuiStyleMod::__anon217a55d5010a typeref:typename:float[2]
  652. BackupGroupOffset third_party/imgui/imgui_internal.h /^ ImVec1 BackupGroupOffset;$/;" m struct:ImGuiGroupData typeref:typename:ImVec1
  653. BackupIndent third_party/imgui/imgui_internal.h /^ ImVec1 BackupIndent;$/;" m struct:ImGuiGroupData typeref:typename:ImVec1
  654. BackupInt third_party/imgui/imgui_internal.h /^ union { int BackupInt[2]; float BackupFloat[2]; };$/;" m union:ImGuiStyleMod::__anon217a55d5010a typeref:typename:int[2]
  655. BackupValue third_party/imgui/imgui_internal.h /^ ImVec4 BackupValue;$/;" m struct:ImGuiColorMod typeref:typename:ImVec4
  656. BarRect third_party/imgui/imgui_internal.h /^ ImRect BarRect;$/;" m struct:ImGuiTabBar typeref:typename:ImRect
  657. BasicInventory libswan/include/swan/traits/InventoryTrait.h /^ BasicInventory(int size): size_(size), content_(size) {}$/;" f class:Swan::InventoryTrait::BasicInventory
  658. BasicInventory libswan/include/swan/traits/InventoryTrait.h /^class BasicInventory: public Inventory {$/;" c namespace:Swan::InventoryTrait
  659. Begin third_party/imgui/imgui.cpp /^bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags)$/;" f class:ImGui typeref:typename:bool
  660. Begin third_party/imgui/imgui.cpp /^bool ImGui::Begin(const char* name, bool* p_open, const ImVec2& size_first_use, float bg_alpha_o/;" f class:ImGui typeref:typename:bool
  661. Begin third_party/imgui/imgui.cpp /^void ImGuiListClipper::Begin(int count, float items_height)$/;" f class:ImGuiListClipper typeref:typename:void
  662. BeginChild third_party/imgui/imgui.cpp /^bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_f/;" f class:ImGui typeref:typename:bool
  663. BeginChild third_party/imgui/imgui.cpp /^bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags/;" f class:ImGui typeref:typename:bool
  664. BeginChildEx third_party/imgui/imgui.cpp /^static bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, bool borde/;" f class:ImGui typeref:typename:bool file:
  665. BeginChildFrame third_party/imgui/imgui.cpp /^bool ImGui::BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags extra_flags)$/;" f class:ImGui typeref:typename:bool
  666. BeginColumns third_party/imgui/imgui_widgets.cpp /^void ImGui::BeginColumns(const char* str_id, int columns_count, ImGuiColumnsFlags flags)$/;" f class:ImGui typeref:typename:void
  667. BeginCombo third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags)$/;" f class:ImGui typeref:typename:bool
  668. BeginCount third_party/imgui/imgui_internal.h /^ short BeginCount; \/\/ Number of Begin() during th/;" m struct:ImGuiWindow typeref:typename:short
  669. BeginDragDropSource third_party/imgui/imgui.cpp /^bool ImGui::BeginDragDropSource(ImGuiDragDropFlags flags)$/;" f class:ImGui typeref:typename:bool
  670. BeginDragDropTarget third_party/imgui/imgui.cpp /^bool ImGui::BeginDragDropTarget()$/;" f class:ImGui typeref:typename:bool
  671. BeginDragDropTargetCustom third_party/imgui/imgui.cpp /^bool ImGui::BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id)$/;" f class:ImGui typeref:typename:bool
  672. BeginGroup third_party/imgui/imgui.cpp /^void ImGui::BeginGroup()$/;" f class:ImGui typeref:typename:void
  673. BeginMainMenuBar third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginMainMenuBar()$/;" f class:ImGui typeref:typename:bool
  674. BeginMenu third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginMenu(const char* label, bool enabled)$/;" f class:ImGui typeref:typename:bool
  675. BeginMenuBar third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginMenuBar()$/;" f class:ImGui typeref:typename:bool
  676. BeginOrderWithinContext third_party/imgui/imgui_internal.h /^ short BeginOrderWithinContext; \/\/ Order within entire imgui c/;" m struct:ImGuiWindow typeref:typename:short
  677. BeginOrderWithinParent third_party/imgui/imgui_internal.h /^ short BeginOrderWithinParent; \/\/ Order within immediate pare/;" m struct:ImGuiWindow typeref:typename:short
  678. BeginPopup third_party/imgui/imgui.cpp /^bool ImGui::BeginPopup(const char* str_id, ImGuiWindowFlags flags)$/;" f class:ImGui typeref:typename:bool
  679. BeginPopupContextItem third_party/imgui/imgui.cpp /^bool ImGui::BeginPopupContextItem(const char* str_id, int mouse_button)$/;" f class:ImGui typeref:typename:bool
  680. BeginPopupContextVoid third_party/imgui/imgui.cpp /^bool ImGui::BeginPopupContextVoid(const char* str_id, int mouse_button)$/;" f class:ImGui typeref:typename:bool
  681. BeginPopupContextWindow third_party/imgui/imgui.cpp /^bool ImGui::BeginPopupContextWindow(const char* str_id, int mouse_button, bool also_over_items)$/;" f class:ImGui typeref:typename:bool
  682. BeginPopupEx third_party/imgui/imgui.cpp /^bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_flags)$/;" f class:ImGui typeref:typename:bool
  683. BeginPopupModal third_party/imgui/imgui.cpp /^bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags)$/;" f class:ImGui typeref:typename:bool
  684. BeginPopupStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiPopupData>BeginPopupStack; \/\/ Which level of BeginPopup()/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiPopupData>
  685. BeginTabBar third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginTabBar(const char* str_id, ImGuiTabBarFlags flags)$/;" f class:ImGui typeref:typename:bool
  686. BeginTabBarEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& tab_bar_bb, ImGuiTabBarFlags fl/;" f class:ImGui typeref:typename:bool
  687. BeginTabItem third_party/imgui/imgui_widgets.cpp /^bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags)$/;" f class:ImGui typeref:typename:bool
  688. BeginTooltip third_party/imgui/imgui.cpp /^void ImGui::BeginTooltip()$/;" f class:ImGui typeref:typename:void
  689. BeginTooltipEx third_party/imgui/imgui.cpp /^void ImGui::BeginTooltipEx(ImGuiWindowFlags extra_flags, bool override_previous_tooltip)$/;" f class:ImGui typeref:typename:void
  690. Behaviour conventions.md /^## Behaviour$/;" s
  691. BgAlphaVal third_party/imgui/imgui_internal.h /^ float BgAlphaVal;$/;" m struct:ImGuiNextWindowData typeref:typename:float
  692. BitmapData third_party/imgui/misc/freetype/imgui_freetype.cpp /^ unsigned char* BitmapData; \/\/ Point within one of the dst_tmp_bitmap_buffers[/;" m struct:ImFontBuildSrcGlyphFT typeref:typename:unsigned char * file:
  693. BlendFactor third_party/imgui/examples/imgui_impl_dx10.cpp /^ FLOAT BlendFactor[4];$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:FLOAT[4] file:
  694. BlendFactor third_party/imgui/examples/imgui_impl_dx11.cpp /^ FLOAT BlendFactor[4];$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:FLOAT[4] file:
  695. BlendState third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10BlendState* BlendState;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10BlendState * file:
  696. BlendState third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11BlendState* BlendState;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11BlendState * file:
  697. BlitGlyph third_party/imgui/misc/freetype/imgui_freetype.cpp /^ void FreeTypeFont::BlitGlyph(const FT_Bitmap* ft_bitmap, uint8_t* dst, uint32_t dst_pitch, u/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:void
  698. Body libswan/include/swan/traits/BodyTrait.h /^class Body {$/;" c namespace:Swan::BodyTrait
  699. BodyTrait libswan/include/swan/traits/BodyTrait.h /^namespace BodyTrait {$/;" n namespace:Swan
  700. BodyTrait libswan/src/traits/BodyTrait.cc /^namespace BodyTrait {$/;" n namespace:Swan file:
  701. Bold third_party/imgui/misc/freetype/imgui_freetype.h /^ Bold = 1 << 5, \/\/ Styling: Should we artificially embolden the font?$/;" e enum:ImGuiFreeType::RasterizerFlags
  702. Bounds libswan/include/swan/traits/BodyTrait.h /^struct Bounds {$/;" s namespace:Swan::BodyTrait
  703. BringWindowToDisplayBack third_party/imgui/imgui.cpp /^void ImGui::BringWindowToDisplayBack(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  704. BringWindowToDisplayFront third_party/imgui/imgui.cpp /^void ImGui::BringWindowToDisplayFront(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  705. BringWindowToFocusFront third_party/imgui/imgui.cpp /^void ImGui::BringWindowToFocusFront(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  706. Buf third_party/imgui/imgui.h /^ ImVector<char> Buf;$/;" m struct:ImGuiTextBuffer typeref:typename:ImVector<char>
  707. Buf third_party/imgui/imgui.h /^ char* Buf; \/\/ Text buffer \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:char *
  708. Buf third_party/imgui/imgui_demo.cpp /^ ImGuiTextBuffer Buf;$/;" m struct:ExampleAppLog typeref:typename:ImGuiTextBuffer file:
  709. BufCapacityA third_party/imgui/imgui_internal.h /^ int BufCapacityA; \/\/ end-user buffer capacity$/;" m struct:ImGuiInputTextState typeref:typename:int
  710. BufDirty third_party/imgui/imgui.h /^ bool BufDirty; \/\/ Set if you modify Buf\/BufTextLen! \/\/ Write /;" m struct:ImGuiInputTextCallbackData typeref:typename:bool
  711. BufSize third_party/imgui/imgui.h /^ int BufSize; \/\/ Buffer size (in bytes) = capacity+1 \/\/ Read-only/;" m struct:ImGuiInputTextCallbackData typeref:typename:int
  712. BufTextLen third_party/imgui/imgui.h /^ int BufTextLen; \/\/ Text length (in bytes) \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:int
  713. Build third_party/imgui/imgui.cpp /^void ImGuiTextFilter::Build()$/;" f class:ImGuiTextFilter typeref:typename:void
  714. Build third_party/imgui/imgui_draw.cpp /^bool ImFontAtlas::Build()$/;" f class:ImFontAtlas typeref:typename:bool
  715. BuildFontAtlas third_party/imgui/misc/freetype/imgui_freetype.cpp /^bool ImGuiFreeType::BuildFontAtlas(ImFontAtlas* atlas, unsigned int extra_flags)$/;" f class:ImGuiFreeType typeref:typename:bool
  716. BuildLookupTable third_party/imgui/imgui_draw.cpp /^void ImFont::BuildLookupTable()$/;" f class:ImFont typeref:typename:void
  717. BuildRanges third_party/imgui/imgui_draw.cpp /^void ImFontGlyphRangesBuilder::BuildRanges(ImVector<ImWchar>* out_ranges)$/;" f class:ImFontGlyphRangesBuilder typeref:typename:void
  718. BuildSortByKey third_party/imgui/imgui.cpp /^void ImGuiStorage::BuildSortByKey()$/;" f class:ImGuiStorage typeref:typename:void
  719. Builder libswan/include/swan/Item.h /^ struct Builder {$/;" s class:Swan::Item
  720. Builder libswan/include/swan/Resource.h /^ struct Builder {$/;" s class:Swan::ImageResource
  721. Builder libswan/include/swan/Tile.h /^ struct Builder {$/;" s class:Swan::Tile
  722. Bullet third_party/imgui/imgui_widgets.cpp /^void ImGui::Bullet()$/;" f class:ImGui typeref:typename:void
  723. BulletText third_party/imgui/imgui_widgets.cpp /^void ImGui::BulletText(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  724. BulletTextV third_party/imgui/imgui_widgets.cpp /^void ImGui::BulletTextV(const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  725. Button third_party/imgui/imgui_widgets.cpp /^bool ImGui::Button(const char* label, const ImVec2& size_arg)$/;" f class:ImGui typeref:typename:bool
  726. ButtonBehavior third_party/imgui/imgui_widgets.cpp /^bool ImGui::ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGu/;" f class:ImGui typeref:typename:bool
  727. ButtonEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::ButtonEx(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags)$/;" f class:ImGui typeref:typename:bool
  728. ButtonTextAlign third_party/imgui/imgui.h /^ ImVec2 ButtonTextAlign; \/\/ Alignment of button text when button is larger /;" m struct:ImGuiStyle typeref:typename:ImVec2
  729. CALLBACK third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define CALLBACK /;" d
  730. CC third_party/imgui/examples/example_emscripten/Makefile /^CC = emcc$/;" m
  731. CFBundleDevelopmentRegion third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleDevelopmentRegion<\/key>$/;" k
  732. CFBundleDevelopmentRegion third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleDevelopmentRegion<\/key>$/;" k
  733. CFBundleExecutable third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleExecutable<\/key>$/;" k
  734. CFBundleExecutable third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleExecutable<\/key>$/;" k
  735. CFBundleIconFile third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleIconFile<\/key>$/;" k
  736. CFBundleIdentifier third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleIdentifier<\/key>$/;" k
  737. CFBundleIdentifier third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleIdentifier<\/key>$/;" k
  738. CFBundleInfoDictionaryVersion third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleInfoDictionaryVersion<\/key>$/;" k
  739. CFBundleInfoDictionaryVersion third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleInfoDictionaryVersion<\/key>$/;" k
  740. CFBundleName third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleName<\/key>$/;" k
  741. CFBundleName third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleName<\/key>$/;" k
  742. CFBundlePackageType third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundlePackageType<\/key>$/;" k
  743. CFBundlePackageType third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundlePackageType<\/key>$/;" k
  744. CFBundleShortVersionString third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleShortVersionString<\/key>$/;" k
  745. CFBundleShortVersionString third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleShortVersionString<\/key>$/;" k
  746. CFBundleVersion third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>CFBundleVersion<\/key>$/;" k
  747. CFBundleVersion third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>CFBundleVersion<\/key>$/;" k
  748. CFLAGS third_party/imgui/examples/example_glfw_metal/Makefile /^CFLAGS = $(CXXFLAGS)$/;" m
  749. CFLAGS third_party/imgui/examples/example_glfw_opengl2/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  750. CFLAGS third_party/imgui/examples/example_glfw_opengl3/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  751. CFLAGS third_party/imgui/examples/example_glut_opengl2/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  752. CFLAGS third_party/imgui/examples/example_null/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  753. CFLAGS third_party/imgui/examples/example_sdl_opengl2/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  754. CFLAGS third_party/imgui/examples/example_sdl_opengl3/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  755. CFLAGS third_party/imgui/examples/example_sdl_opengl3/Makefile /^ CFLAGS = $(CXXFLAGS)$/;" m
  756. CHUNK_HEIGHT libswan/include/swan/common.h /^static constexpr int CHUNK_HEIGHT = 20;$/;" v namespace:Swan typeref:typename:int
  757. CHUNK_WIDTH libswan/include/swan/common.h /^static constexpr int CHUNK_WIDTH = 32;$/;" v namespace:Swan typeref:typename:int
  758. CMAKE_BUILD_TYPE third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^ set(CMAKE_BUILD_TYPE Debug CACHE STRING "" FORCE)$/;" v
  759. CMAKE_CXX_CLANG_TIDY CMakeLists.txt /^ set(CMAKE_CXX_CLANG_TIDY$/;" v
  760. CMAKE_CXX_FLAGS third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DVK_PROTOTYPES")$/;" v
  761. CMAKE_C_FLAGS third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DVK_PROTOTYPES")$/;" v
  762. CMAKE_EXE_LINKER_FLAGS CMakeLists.txt /^ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -flto")$/;" v
  763. CMAKE_INSTALL_RPATH CMakeLists.txt /^set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}\/lib;${CMAKE_INSTALL_PREFIX}\/lib64;${CMAKE_INS/;" v
  764. CMake third_party/imgui-plot/README.md /^### CMake$/;" S
  765. COLUMNS_HIT_RECT_HALF_WIDTH third_party/imgui/imgui_widgets.cpp /^static const float COLUMNS_HIT_RECT_HALF_WIDTH = 4.0f;$/;" v typeref:typename:const float file:
  766. COUNT core.mod/src/entities/EntPlayer.h /^ COUNT,$/;" e enum:EntPlayer::State
  767. CPPFLAGS third_party/imgui/examples/example_emscripten/Makefile /^CPPFLAGS = -I..\/ -I..\/..\/$/;" m
  768. CPtr libswan/include/swan/util.h /^using CPtr = std::unique_ptr<T, CPtrDeleter<T, Func>>;$/;" t namespace:Swan typeref:typename:std::unique_ptr<T,CPtrDeleter<T,Func>>
  769. CPtrDeleter libswan/include/swan/util.h /^class CPtrDeleter {$/;" c namespace:Swan
  770. CUSTOMVERTEX third_party/imgui/examples/imgui_impl_dx9.cpp /^struct CUSTOMVERTEX$/;" s file:
  771. CXX third_party/imgui/examples/example_emscripten/Makefile /^CXX = em++$/;" m
  772. CXXFLAGS third_party/imgui/examples/example_glfw_metal/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/ -I\/usr\/local\/include$/;" m
  773. CXXFLAGS third_party/imgui/examples/example_glfw_opengl2/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  774. CXXFLAGS third_party/imgui/examples/example_glfw_opengl3/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  775. CXXFLAGS third_party/imgui/examples/example_glut_opengl2/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  776. CXXFLAGS third_party/imgui/examples/example_null/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  777. CXXFLAGS third_party/imgui/examples/example_sdl_opengl2/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  778. CXXFLAGS third_party/imgui/examples/example_sdl_opengl3/Makefile /^CXXFLAGS = -I..\/ -I..\/..\/$/;" m
  779. CalcCustomRectUV third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2/;" f class:ImFontAtlas typeref:typename:void
  780. CalcExtraSpace third_party/imgui/imgui_widgets.cpp /^float ImGuiMenuColumns::CalcExtraSpace(float avail_w)$/;" f class:ImGuiMenuColumns typeref:typename:float
  781. CalcFontSize third_party/imgui/imgui_internal.h /^ float CalcFontSize() const { ImGuiContext& g = *GImGui; float scale = g.FontBas/;" f struct:ImGuiWindow typeref:typename:float
  782. CalcItemRectClosestPoint third_party/imgui/imgui.h /^ static inline ImVec2 CalcItemRectClosestPoint(const ImVec2& pos, bool on_edge = false, float/;" f namespace:ImGui typeref:typename:ImVec2
  783. CalcItemSize third_party/imgui/imgui.cpp /^ImVec2 ImGui::CalcItemSize(ImVec2 size, float default_w, float default_h)$/;" f class:ImGui typeref:typename:ImVec2
  784. CalcItemWidth third_party/imgui/imgui.cpp /^float ImGui::CalcItemWidth()$/;" f class:ImGui typeref:typename:float
  785. CalcListClipping third_party/imgui/imgui.cpp /^void ImGui::CalcListClipping(int items_count, float items_height, int* out_items_display_start, /;" f class:ImGui typeref:typename:void
  786. CalcMaxPopupHeightFromItemCount third_party/imgui/imgui_widgets.cpp /^static float CalcMaxPopupHeightFromItemCount(int items_count)$/;" f typeref:typename:float file:
  787. CalcNextScrollFromScrollTargetAndClamp third_party/imgui/imgui.cpp /^static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window, bool snap_on_edges)$/;" f typeref:typename:ImVec2 file:
  788. CalcResizePosSizeFromAnyCorner third_party/imgui/imgui.cpp /^static void CalcResizePosSizeFromAnyCorner(ImGuiWindow* window, const ImVec2& corner_target, con/;" f typeref:typename:void file:
  789. CalcTextSize third_party/imgui/imgui.cpp /^ImVec2 ImGui::CalcTextSize(const char* text, const char* text_end, bool hide_text_after_double_h/;" f class:ImGui typeref:typename:ImVec2
  790. CalcTextSizeA third_party/imgui/imgui_draw.cpp /^ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_beg/;" f class:ImFont typeref:typename:ImVec2
  791. CalcTypematicPressedRepeatAmount third_party/imgui/imgui.cpp /^int ImGui::CalcTypematicPressedRepeatAmount(float t, float t_prev, float repeat_delay, float rep/;" f class:ImGui typeref:typename:int
  792. CalcWindowAutoFitSize third_party/imgui/imgui.cpp /^static ImVec2 CalcWindowAutoFitSize(ImGuiWindow* window, const ImVec2& size_contents)$/;" f typeref:typename:ImVec2 file:
  793. CalcWindowContentSize third_party/imgui/imgui.cpp /^static ImVec2 CalcWindowContentSize(ImGuiWindow* window)$/;" f typeref:typename:ImVec2 file:
  794. CalcWindowExpectedSize third_party/imgui/imgui.cpp /^ImVec2 ImGui::CalcWindowExpectedSize(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:ImVec2
  795. CalcWindowSizeAfterConstraint third_party/imgui/imgui.cpp /^static ImVec2 CalcWindowSizeAfterConstraint(ImGuiWindow* window, ImVec2 new_size)$/;" f typeref:typename:ImVec2 file:
  796. CalcWordWrapPositionA third_party/imgui/imgui_draw.cpp /^const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, f/;" f class:ImFont typeref:typename:const char *
  797. CalcWrapWidthForPos third_party/imgui/imgui.cpp /^float ImGui::CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x)$/;" f class:ImGui typeref:typename:float
  798. CalculateBoundingBox third_party/imgui_sdl/imgui_sdl.cpp /^ static Rect CalculateBoundingBox(const ImDrawVert& v0, const ImDrawVert& v1, const ImDrawVert&/;" f struct:__anonaaadc0580110::Rect typeref:typename:Rect file:
  799. CalculateFixedPointTriangleInfo third_party/imgui_sdl/imgui_sdl.cpp /^ static FixedPointTriangleRenderInfo CalculateFixedPointTriangleInfo(const ImVec2& v1, const Im/;" f struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:FixedPointTriangleRenderInfo file:
  800. CanMergeDrawCommands third_party/imgui/imgui_draw.cpp /^static inline bool CanMergeDrawCommands(ImDrawCmd* a, ImDrawCmd* b)$/;" f typeref:typename:bool file:
  801. Capacity third_party/imgui/imgui.h /^ int Capacity;$/;" m struct:ImVector typeref:typename:int
  802. CaptureKeyboardFromApp third_party/imgui/imgui.cpp /^void ImGui::CaptureKeyboardFromApp(bool capture)$/;" f class:ImGui typeref:typename:void
  803. CaptureMouseFromApp third_party/imgui/imgui.cpp /^void ImGui::CaptureMouseFromApp(bool capture)$/;" f class:ImGui typeref:typename:void
  804. ChainCallback third_party/imgui/misc/cpp/imgui_stdlib.cpp /^ ImGuiInputTextCallback ChainCallback;$/;" m struct:InputTextCallback_UserData typeref:typename:ImGuiInputTextCallback file:
  805. ChainCallbackUserData third_party/imgui/misc/cpp/imgui_stdlib.cpp /^ void* ChainCallbackUserData;$/;" m struct:InputTextCallback_UserData typeref:typename:void * file:
  806. ChannelsMerge third_party/imgui/imgui.h /^ inline void ChannelsMerge() { _Splitter.Merge(this); }$/;" f struct:ImDrawList typeref:typename:void
  807. ChannelsSetCurrent third_party/imgui/imgui.h /^ inline void ChannelsSetCurrent(int n) { _Splitter.SetCurrentChannel(this, n); }$/;" f struct:ImDrawList typeref:typename:void
  808. ChannelsSplit third_party/imgui/imgui.h /^ inline void ChannelsSplit(int count) { _Splitter.Split(this, count); }$/;" f struct:ImDrawList typeref:typename:void
  809. CheckProgram third_party/imgui/examples/imgui_impl_opengl3.cpp /^static bool CheckProgram(GLuint handle, const char* desc)$/;" f typeref:typename:bool file:
  810. CheckShader third_party/imgui/examples/imgui_impl_opengl3.cpp /^static bool CheckShader(GLuint handle, const char* desc)$/;" f typeref:typename:bool file:
  811. CheckStacksSize third_party/imgui/imgui.cpp /^static void CheckStacksSize(ImGuiWindow* window, bool write)$/;" f typeref:typename:void file:
  812. CheckVkResultFn third_party/imgui/examples/imgui_impl_vulkan.h /^ void (*CheckVkResultFn)(VkResult err);$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:void (*)(VkResult err)
  813. Checkbox third_party/imgui/imgui_widgets.cpp /^bool ImGui::Checkbox(const char* label, bool* v)$/;" f class:ImGui typeref:typename:bool
  814. CheckboxFlags third_party/imgui/imgui_widgets.cpp /^bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value)$/;" f class:ImGui typeref:typename:bool
  815. ChildBorderSize third_party/imgui/imgui.h /^ float ChildBorderSize; \/\/ Thickness of border around child windows. Gener/;" m struct:ImGuiStyle typeref:typename:float
  816. ChildId third_party/imgui/imgui_internal.h /^ ImGuiID ChildId; \/\/ ID of corresponding item in/;" m struct:ImGuiWindow typeref:typename:ImGuiID
  817. ChildRounding third_party/imgui/imgui.h /^ float ChildRounding; \/\/ Radius of child window corners rounding. Set to/;" m struct:ImGuiStyle typeref:typename:float
  818. ChildWindowComparer third_party/imgui/imgui.cpp /^static int IMGUI_CDECL ChildWindowComparer(const void* lhs, const void* rhs)$/;" f typeref:typename:int IMGUI_CDECL file:
  819. ChildWindows third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindow*> ChildWindows;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVector<ImGuiWindow * >
  820. Chunk libswan/include/swan/Chunk.h /^ Chunk(ChunkPos pos): pos_(pos) {$/;" f class:Swan::Chunk
  821. Chunk libswan/include/swan/Chunk.h /^class Chunk {$/;" c namespace:Swan
  822. ChunkPos libswan/include/swan/common.h /^using ChunkPos = Vec2i;$/;" t namespace:Swan typeref:typename:Vec2i
  823. ChunkRenderer libswan/include/swan/World.h /^ class ChunkRenderer {$/;" c class:Swan::World
  824. CircleVtx12 third_party/imgui/imgui_internal.h /^ ImVec2 CircleVtx12[12];$/;" m struct:ImDrawListSharedData typeref:typename:ImVec2[12]
  825. ClampWindowRect third_party/imgui/imgui.cpp /^static inline void ClampWindowRect(ImGuiWindow* window, const ImRect& rect, const ImVec2& paddin/;" f typeref:typename:void file:
  826. Clean third_party/imgui_sdl/imgui_sdl.cpp /^ void Clean()$/;" f class:__anonaaadc0580110::LRUCache typeref:typename:void file:
  827. CleanupDeviceD3D third_party/imgui/examples/example_sdl_directx11/main.cpp /^void CleanupDeviceD3D()$/;" f typeref:typename:void
  828. CleanupDeviceD3D third_party/imgui/examples/example_win32_directx10/main.cpp /^void CleanupDeviceD3D()$/;" f typeref:typename:void
  829. CleanupDeviceD3D third_party/imgui/examples/example_win32_directx11/main.cpp /^void CleanupDeviceD3D()$/;" f typeref:typename:void
  830. CleanupDeviceD3D third_party/imgui/examples/example_win32_directx12/main.cpp /^void CleanupDeviceD3D()$/;" f typeref:typename:void
  831. CleanupDeviceD3D third_party/imgui/examples/example_win32_directx9/main.cpp /^void CleanupDeviceD3D()$/;" f typeref:typename:void
  832. CleanupRenderTarget third_party/imgui/examples/example_sdl_directx11/main.cpp /^void CleanupRenderTarget()$/;" f typeref:typename:void
  833. CleanupRenderTarget third_party/imgui/examples/example_win32_directx10/main.cpp /^void CleanupRenderTarget()$/;" f typeref:typename:void
  834. CleanupRenderTarget third_party/imgui/examples/example_win32_directx11/main.cpp /^void CleanupRenderTarget()$/;" f typeref:typename:void
  835. CleanupRenderTarget third_party/imgui/examples/example_win32_directx12/main.cpp /^void CleanupRenderTarget()$/;" f typeref:typename:void
  836. CleanupVulkan third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void CleanupVulkan()$/;" f typeref:typename:void file:
  837. CleanupVulkan third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void CleanupVulkan()$/;" f typeref:typename:void file:
  838. CleanupVulkanWindow third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void CleanupVulkanWindow()$/;" f typeref:typename:void file:
  839. CleanupVulkanWindow third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void CleanupVulkanWindow()$/;" f typeref:typename:void file:
  840. Clear third_party/imgui/imgui.h /^ inline void Clear() { _Current = 0; _Count = 1; } \/\/ Do not clear Channels/;" f struct:ImDrawListSplitter typeref:typename:void
  841. Clear third_party/imgui/imgui.h /^ inline void Clear() { int size_in_bytes = 0x10000 \/ 8; UsedChars.resize(siz/;" f struct:ImFontGlyphRangesBuilder typeref:typename:void
  842. Clear third_party/imgui/imgui.h /^ void Clear() { InputBuf[0] = 0; Build(); }$/;" f struct:ImGuiTextFilter typeref:typename:void
  843. Clear third_party/imgui/imgui.h /^ void Clear() { Data.clear(); }$/;" f struct:ImGuiStorage typeref:typename:void
  844. Clear third_party/imgui/imgui.h /^ void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType,/;" f struct:ImGuiPayload typeref:typename:void
  845. Clear third_party/imgui/imgui.h /^ void Clear() { Valid = false; CmdLists = NULL; CmdListsCount = TotalVtxCount = TotalIdxCo/;" f struct:ImDrawData typeref:typename:void
  846. Clear third_party/imgui/imgui_demo.cpp /^ void Clear()$/;" f struct:ExampleAppLog typeref:typename:void file:
  847. Clear third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::Clear()$/;" f class:ImFontAtlas typeref:typename:void
  848. Clear third_party/imgui/imgui_draw.cpp /^void ImDrawList::Clear()$/;" f class:ImDrawList typeref:typename:void
  849. Clear third_party/imgui/imgui_internal.h /^ void Clear() { Storage.clear(); }$/;" f struct:ImBoolVector typeref:typename:void
  850. Clear third_party/imgui/imgui_internal.h /^ void Clear() { for (int n = 0; n < Map.Data.Size; n++) { /;" f struct:ImPool typeref:typename:void
  851. Clear third_party/imgui/imgui_internal.h /^ void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Layers); n++) Layers[n].resize(0)/;" f struct:ImDrawDataBuilder typeref:typename:void
  852. Clear third_party/imgui/imgui_internal.h /^ void Clear() { ID = SelectScopeId = 0; Window = NULL; DistBox = DistCenter = DistAxi/;" f struct:ImGuiNavMoveResult typeref:typename:void
  853. Clear third_party/imgui/imgui_internal.h /^ void Clear()$/;" f struct:ImGuiColumns typeref:typename:void
  854. ClearActiveID third_party/imgui/imgui.cpp /^void ImGui::ClearActiveID()$/;" f class:ImGui typeref:typename:void
  855. ClearDragDrop third_party/imgui/imgui.cpp /^void ImGui::ClearDragDrop()$/;" f class:ImGui typeref:typename:void
  856. ClearEnable third_party/imgui/examples/imgui_impl_vulkan.h /^ bool ClearEnable;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:bool
  857. ClearFlags third_party/imgui/imgui_internal.h /^ inline void ClearFlags() { Flags = ImGuiNextItemDataFlags_None; }$/;" f struct:ImGuiNextItemData typeref:typename:void
  858. ClearFlags third_party/imgui/imgui_internal.h /^ inline void ClearFlags() { Flags = ImGuiNextWindowDataFlags_None; }$/;" f struct:ImGuiNextWindowData typeref:typename:void
  859. ClearFonts third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::ClearFonts()$/;" f class:ImFontAtlas typeref:typename:void
  860. ClearFreeMemory third_party/imgui/imgui_draw.cpp /^void ImDrawList::ClearFreeMemory()$/;" f class:ImDrawList typeref:typename:void
  861. ClearFreeMemory third_party/imgui/imgui_draw.cpp /^void ImDrawListSplitter::ClearFreeMemory()$/;" f class:ImDrawListSplitter typeref:typename:void
  862. ClearFreeMemory third_party/imgui/imgui_internal.h /^ void ClearFreeMemory() { TextW.clear(); TextA.clear(); InitialTextA.clear()/;" f struct:ImGuiInputTextState typeref:typename:void
  863. ClearFreeMemory third_party/imgui/imgui_internal.h /^ void ClearFreeMemory() { for (int n = 0; n < IM_ARRAYSIZE(Layers); n++) Layers[n].clear(); /;" f struct:ImDrawDataBuilder typeref:typename:void
  864. ClearInputCharacters third_party/imgui/imgui.cpp /^void ImGuiIO::ClearInputCharacters()$/;" f class:ImGuiIO typeref:typename:void
  865. ClearInputData third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::ClearInputData()$/;" f class:ImFontAtlas typeref:typename:void
  866. ClearLog third_party/imgui/imgui_demo.cpp /^ void ClearLog()$/;" f struct:ExampleAppConsole typeref:typename:void file:
  867. ClearOutputData third_party/imgui/imgui_draw.cpp /^void ImFont::ClearOutputData()$/;" f class:ImFont typeref:typename:void
  868. ClearSelection third_party/imgui/imgui_internal.h /^ void ClearSelection() { Stb.select_start = Stb.select_end = Stb.cursor; }$/;" f struct:ImGuiInputTextState typeref:typename:void
  869. ClearTexData third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::ClearTexData()$/;" f class:ImFontAtlas typeref:typename:void
  870. ClearText third_party/imgui/imgui_internal.h /^ void ClearText() { CurLenW = CurLenA = 0; TextW[0] = 0; TextA[0] = 0;/;" f struct:ImGuiInputTextState typeref:typename:void
  871. ClearValue third_party/imgui/examples/imgui_impl_vulkan.h /^ VkClearValue ClearValue;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkClearValue
  872. Clip third_party/imgui_sdl/imgui_sdl.cpp /^ } Clip;$/;" m struct:__anonaaadc0580110::Device typeref:struct:__anonaaadc0580110::Device::ClipRect file:
  873. ClipRect third_party/imgui/imgui.h /^ ImVec4 ClipRect; \/\/ Clipping rectangle (x1, y1, x2, y2). Subtract I/;" m struct:ImDrawCmd typeref:typename:ImVec4
  874. ClipRect third_party/imgui/imgui_internal.h /^ ImRect ClipRect; \/\/ Current clipping\/scissorin/;" m struct:ImGuiWindow typeref:typename:ImRect
  875. ClipRect third_party/imgui/imgui_internal.h /^ ImRect ClipRect;$/;" m struct:ImGuiColumnData typeref:typename:ImRect
  876. ClipRect third_party/imgui_sdl/imgui_sdl.cpp /^ struct ClipRect$/;" s struct:__anonaaadc0580110::Device file:
  877. ClipRectFullscreen third_party/imgui/imgui_internal.h /^ ImVec4 ClipRectFullscreen; \/\/ Value for PushClipRectFullscreen()$/;" m struct:ImDrawListSharedData typeref:typename:ImVec4
  878. ClipWith third_party/imgui/imgui_internal.h /^ void ClipWith(const ImRect& r) { Min = ImMax(Min, r.Min); Max = ImMin(Max, /;" f struct:ImRect typeref:typename:void
  879. ClipWithFull third_party/imgui/imgui_internal.h /^ void ClipWithFull(const ImRect& r) { Min = ImClamp(Min, r.Min, r.Max); Max = Im/;" f struct:ImRect typeref:typename:void
  880. ClipboardUserData third_party/imgui/imgui.h /^ void* ClipboardUserData;$/;" m struct:ImGuiIO typeref:typename:void *
  881. Clock libswan/include/swan/Clock.h /^class Clock {$/;" c namespace:Swan
  882. CloneOutput third_party/imgui/imgui_draw.cpp /^ImDrawList* ImDrawList::CloneOutput() const$/;" f class:ImDrawList typeref:typename:ImDrawList *
  883. CloseButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::CloseButton(ImGuiID id, const ImVec2& pos)\/\/, float size)$/;" f class:ImGui typeref:typename:bool
  884. CloseCurrentPopup third_party/imgui/imgui.cpp /^void ImGui::CloseCurrentPopup()$/;" f class:ImGui typeref:typename:void
  885. CloseFont third_party/imgui/misc/freetype/imgui_freetype.cpp /^ void FreeTypeFont::CloseFont()$/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:void
  886. ClosePopupToLevel third_party/imgui/imgui.cpp /^void ImGui::ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup)$/;" f class:ImGui typeref:typename:void
  887. ClosePopupsOverWindow third_party/imgui/imgui.cpp /^void ImGui::ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_po/;" f class:ImGui typeref:typename:void
  888. CmdBuffer third_party/imgui/imgui.h /^ ImVector<ImDrawCmd> CmdBuffer; \/\/ Draw commands. Typically 1 command = 1 GPU /;" m struct:ImDrawList typeref:typename:ImVector<ImDrawCmd>
  889. CmdLists third_party/imgui/imgui.h /^ ImDrawList** CmdLists; \/\/ Array of ImDrawList* to render. The ImDrawList /;" m struct:ImDrawData typeref:typename:ImDrawList **
  890. CmdListsCount third_party/imgui/imgui.h /^ int CmdListsCount; \/\/ Number of ImDrawList* to render$/;" m struct:ImDrawData typeref:typename:int
  891. Codepoint third_party/imgui/imgui.h /^ ImWchar Codepoint; \/\/ 0x0000..0xFFFF$/;" m struct:ImFontGlyph typeref:typename:ImWchar
  892. Codepoint third_party/imgui/misc/freetype/imgui_freetype.cpp /^ uint32_t Codepoint;$/;" m struct:ImFontBuildSrcGlyphFT typeref:typename:uint32_t file:
  893. Col third_party/imgui/imgui_internal.h /^ ImGuiCol Col;$/;" m struct:ImGuiColorMod typeref:typename:ImGuiCol
  894. CollapseButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::CollapseButton(ImGuiID id, const ImVec2& pos)$/;" f class:ImGui typeref:typename:bool
  895. Collapsed third_party/imgui/imgui_internal.h /^ bool Collapsed; \/\/ Set when collapsing window /;" m struct:ImGuiWindow typeref:typename:bool
  896. Collapsed third_party/imgui/imgui_internal.h /^ bool Collapsed;$/;" m struct:ImGuiWindowSettings typeref:typename:bool
  897. CollapsedCond third_party/imgui/imgui_internal.h /^ ImGuiCond CollapsedCond;$/;" m struct:ImGuiNextWindowData typeref:typename:ImGuiCond
  898. CollapsedVal third_party/imgui/imgui_internal.h /^ bool CollapsedVal;$/;" m struct:ImGuiNextWindowData typeref:typename:bool
  899. CollapsingHeader third_party/imgui/imgui_widgets.cpp /^bool ImGui::CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags)$/;" f class:ImGui typeref:typename:bool
  900. CollapsingHeader third_party/imgui/imgui_widgets.cpp /^bool ImGui::CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags)$/;" f class:ImGui typeref:typename:bool
  901. Color third_party/imgui/imgui_demo.cpp /^ ImVec4 Color; \/\/ An arbitrary variable associated to the document$/;" m struct:MyDocument typeref:typename:ImVec4 file:
  902. Color third_party/imgui_sdl/imgui_sdl.cpp /^ Color(float r, float g, float b, float a) : R(r), G(g), B(b), A(a) { }$/;" f struct:__anonaaadc0580110::Color file:
  903. Color third_party/imgui_sdl/imgui_sdl.cpp /^ explicit Color(uint32_t color)$/;" f struct:__anonaaadc0580110::Color file:
  904. Color third_party/imgui_sdl/imgui_sdl.cpp /^ struct Color$/;" s namespace:__anonaaadc0580110 file:
  905. ColorButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags, ImVec/;" f class:ImGui typeref:typename:bool
  906. ColorButtonPosition third_party/imgui/imgui.h /^ ImGuiDir ColorButtonPosition; \/\/ Side of the color button in the ColorEdit4 widg/;" m struct:ImGuiStyle typeref:typename:ImGuiDir
  907. ColorConvertFloat4ToU32 third_party/imgui/imgui.cpp /^ImU32 ImGui::ColorConvertFloat4ToU32(const ImVec4& in)$/;" f class:ImGui typeref:typename:ImU32
  908. ColorConvertHSVtoRGB third_party/imgui/imgui.cpp /^void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& o/;" f class:ImGui typeref:typename:void
  909. ColorConvertRGBtoHSV third_party/imgui/imgui.cpp /^void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& o/;" f class:ImGui typeref:typename:void
  910. ColorConvertU32ToFloat4 third_party/imgui/imgui.cpp /^ImVec4 ImGui::ColorConvertU32ToFloat4(ImU32 in)$/;" f class:ImGui typeref:typename:ImVec4
  911. ColorEdit3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:bool
  912. ColorEdit4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:bool
  913. ColorEditLastColor third_party/imgui/imgui_internal.h /^ float ColorEditLastColor[3];$/;" m struct:ImGuiContext typeref:typename:float[3]
  914. ColorEditLastHue third_party/imgui/imgui_internal.h /^ float ColorEditLastHue;$/;" m struct:ImGuiContext typeref:typename:float
  915. ColorEditOptions third_party/imgui/imgui_internal.h /^ ImGuiColorEditFlags ColorEditOptions; \/\/ Store user options for colo/;" m struct:ImGuiContext typeref:typename:ImGuiColorEditFlags
  916. ColorEditOptionsPopup third_party/imgui/imgui_widgets.cpp /^void ImGui::ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:void
  917. ColorModifiers third_party/imgui/imgui_internal.h /^ ImVector<ImGuiColorMod> ColorModifiers; \/\/ Stack for PushStyleColor()\//;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiColorMod>
  918. ColorPicker3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:bool
  919. ColorPicker4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags, const float/;" f class:ImGui typeref:typename:bool
  920. ColorPickerOptionsPopup third_party/imgui/imgui_widgets.cpp /^void ImGui::ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:void
  921. ColorPickerRef third_party/imgui/imgui_internal.h /^ ImVec4 ColorPickerRef;$/;" m struct:ImGuiContext typeref:typename:ImVec4
  922. ColorTooltip third_party/imgui/imgui_widgets.cpp /^void ImGui::ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:void
  923. Colors third_party/imgui/imgui.h /^ ImVec4 Colors[ImGuiCol_COUNT];$/;" m struct:ImGuiStyle typeref:typename:ImVec4[]
  924. Columns third_party/imgui/imgui_internal.h /^ ImVector<ImGuiColumnData> Columns;$/;" m struct:ImGuiColumns typeref:typename:ImVector<ImGuiColumnData>
  925. Columns third_party/imgui/imgui_widgets.cpp /^void ImGui::Columns(int columns_count, const char* id, bool border)$/;" f class:ImGui typeref:typename:void
  926. ColumnsMinSpacing third_party/imgui/imgui.h /^ float ColumnsMinSpacing; \/\/ Minimum horizontal spacing between two columns./;" m struct:ImGuiStyle typeref:typename:float
  927. ColumnsOffset third_party/imgui/imgui_internal.h /^ ImVec1 ColumnsOffset; \/\/ Offset to the current column (if Column/;" m struct:ImGuiWindowTempData typeref:typename:ImVec1
  928. ColumnsStorage third_party/imgui/imgui_internal.h /^ ImVector<ImGuiColumns> ColumnsStorage;$/;" m struct:ImGuiWindow typeref:typename:ImVector<ImGuiColumns>
  929. CombineHash third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename T> void CombineHash(std::size_t& seed, const T& value)$/;" f namespace:__anonaaadc0580110::TupleHash typeref:typename:void
  930. Combo third_party/imgui/imgui_widgets.cpp /^bool ImGui::Combo(const char* label, int* current_item, bool (*items_getter)(void*, int, const c/;" f class:ImGui typeref:typename:bool
  931. Combo third_party/imgui/imgui_widgets.cpp /^bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_cou/;" f class:ImGui typeref:typename:bool
  932. Combo third_party/imgui/imgui_widgets.cpp /^bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, in/;" f class:ImGui typeref:typename:bool
  933. CommandAllocator third_party/imgui/examples/example_win32_directx12/main.cpp /^ ID3D12CommandAllocator* CommandAllocator;$/;" m struct:FrameContext typeref:typename:ID3D12CommandAllocator * file:
  934. CommandBuffer third_party/imgui/examples/imgui_impl_vulkan.h /^ VkCommandBuffer CommandBuffer;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkCommandBuffer
  935. CommandPool third_party/imgui/examples/imgui_impl_vulkan.h /^ VkCommandPool CommandPool;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkCommandPool
  936. Commands third_party/imgui/imgui_demo.cpp /^ ImVector<const char*> Commands;$/;" m struct:ExampleAppConsole typeref:typename:ImVector<const char * > file:
  937. ConfigData third_party/imgui/imgui.h /^ ImVector<ImFontConfig> ConfigData; \/\/ Internal data$/;" m struct:ImFontAtlas typeref:typename:ImVector<ImFontConfig>
  938. ConfigData third_party/imgui/imgui.h /^ const ImFontConfig* ConfigData; \/\/ 4-8 \/\/ in \/\/ \/\/ Poi/;" m struct:ImFont typeref:typename:const ImFontConfig *
  939. ConfigDataCount third_party/imgui/imgui.h /^ short ConfigDataCount; \/\/ 2 \/\/ in \/\/ ~ 1 \/\/ Num/;" m struct:ImFont typeref:typename:short
  940. ConfigFlags third_party/imgui/imgui.h /^ ImGuiConfigFlags ConfigFlags; \/\/ = 0 \/\/ See ImGuiConfigFlags_/;" m struct:ImGuiIO typeref:typename:ImGuiConfigFlags
  941. ConfigInputTextCursorBlink third_party/imgui/imgui.h /^ bool ConfigInputTextCursorBlink; \/\/ = true \/\/ Set to false to disab/;" m struct:ImGuiIO typeref:typename:bool
  942. ConfigMacOSXBehaviors third_party/imgui/imgui.h /^ bool ConfigMacOSXBehaviors; \/\/ = defined(__APPLE__) \/\/ OS X style: Text /;" m struct:ImGuiIO typeref:typename:bool
  943. ConfigWindowsMemoryCompactTimer third_party/imgui/imgui.h /^ float ConfigWindowsMemoryCompactTimer;\/\/ = 60.0f \/\/ [BETA] Compact window/;" m struct:ImGuiIO typeref:typename:float
  944. ConfigWindowsMoveFromTitleBarOnly third_party/imgui/imgui.h /^ bool ConfigWindowsMoveFromTitleBarOnly; \/\/ = false \/\/ [BETA] Set to true to/;" m struct:ImGuiIO typeref:typename:bool
  945. ConfigWindowsResizeFromEdges third_party/imgui/imgui.h /^ bool ConfigWindowsResizeFromEdges; \/\/ = true \/\/ Enable resizing of wi/;" m struct:ImGuiIO typeref:typename:bool
  946. Configuration third_party/imgui/examples/example_allegro5/README.md /^# Configuration$/;" c
  947. Container third_party/imgui_sdl/imgui_sdl.cpp /^ std::unordered_map<Key, decltype(Order.begin()), TupleHash::Hash<Key>> Container;$/;" m class:__anonaaadc0580110::LRUCache typeref:typename:std::unordered_map<Key,decltype (Order.begin ()),TupleHash::Hash<Key>> file:
  948. ContainerAtlas third_party/imgui/imgui.h /^ ImFontAtlas* ContainerAtlas; \/\/ 4-8 \/\/ out \/\/ \/\/ Wha/;" m struct:ImFont typeref:typename:ImFontAtlas *
  949. Contains third_party/imgui/imgui_internal.h /^ bool Contains(const ImRect& r) const { return r.Min.x >= Min.x && r.Min.y >= Min./;" f struct:ImRect typeref:typename:bool
  950. Contains third_party/imgui/imgui_internal.h /^ bool Contains(const ImVec2& p) const { return p.x >= Min.x && p.y >= Min./;" f struct:ImRect typeref:typename:bool
  951. Contains third_party/imgui/imgui_internal.h /^ bool Contains(const T* p) const { return (p >= Data.Data && p < Data.Data + /;" f struct:ImPool typeref:typename:bool
  952. Contains third_party/imgui_sdl/imgui_sdl.cpp /^ bool Contains(const Key& key) const$/;" f class:__anonaaadc0580110::LRUCache typeref:typename:bool file:
  953. ContentSize third_party/imgui/imgui_internal.h /^ ImVec2 ContentSize; \/\/ Size of contents\/scrollabl/;" m struct:ImGuiWindow typeref:typename:ImVec2
  954. ContentSizeExplicit third_party/imgui/imgui_internal.h /^ ImVec2 ContentSizeExplicit; \/\/ Size of contents\/scrollabl/;" m struct:ImGuiWindow typeref:typename:ImVec2
  955. ContentSizeVal third_party/imgui/imgui_internal.h /^ ImVec2 ContentSizeVal;$/;" m struct:ImGuiNextWindowData typeref:typename:ImVec2
  956. ContentsRegionRect third_party/imgui/imgui_internal.h /^ ImRect ContentsRegionRect; \/\/ FIXME: This is currently co/;" m struct:ImGuiWindow typeref:typename:ImRect
  957. Context libswan/include/swan/common.h /^struct Context {$/;" s namespace:Swan
  958. Conventions conventions.md /^# Conventions$/;" c
  959. CornerPosN third_party/imgui/imgui.cpp /^ ImVec2 CornerPosN;$/;" m struct:ImGuiResizeGripDef typeref:typename:ImVec2 file:
  960. CornerPosN1 third_party/imgui/imgui.cpp /^ ImVec2 CornerPosN1, CornerPosN2;$/;" m struct:ImGui::RenderWindowOuterBorders::ImGuiResizeBorderDef typeref:typename:ImVec2 file:
  961. CornerPosN2 third_party/imgui/imgui.cpp /^ ImVec2 CornerPosN1, CornerPosN2;$/;" m struct:ImGui::RenderWindowOuterBorders::ImGuiResizeBorderDef typeref:typename:ImVec2 file:
  962. Count third_party/imgui/examples/imgui_impl_vulkan.cpp /^ uint32_t Count;$/;" m struct:ImGui_ImplVulkanH_WindowRenderBuffers typeref:typename:uint32_t file:
  963. Count third_party/imgui/imgui.cpp /^ ImU32 Count;$/;" m struct:ImGuiStyleVarInfo typeref:typename:ImU32 file:
  964. Count third_party/imgui/imgui_internal.h /^ int Count;$/;" m struct:ImGuiColumns typeref:typename:int
  965. CountGrep third_party/imgui/imgui.h /^ int CountGrep;$/;" m struct:ImGuiTextFilter typeref:typename:int
  966. Counter libswan/include/swan/PerfCounter.h /^ class Counter {$/;" c class:Swan::PerfCounter
  967. CreateContext third_party/imgui/imgui.cpp /^ImGuiContext* ImGui::CreateContext(ImFontAtlas* shared_font_atlas)$/;" f class:ImGui typeref:typename:ImGuiContext *
  968. CreateDeviceD3D third_party/imgui/examples/example_sdl_directx11/main.cpp /^bool CreateDeviceD3D(HWND hWnd)$/;" f typeref:typename:bool
  969. CreateDeviceD3D third_party/imgui/examples/example_win32_directx10/main.cpp /^bool CreateDeviceD3D(HWND hWnd)$/;" f typeref:typename:bool
  970. CreateDeviceD3D third_party/imgui/examples/example_win32_directx11/main.cpp /^bool CreateDeviceD3D(HWND hWnd)$/;" f typeref:typename:bool
  971. CreateDeviceD3D third_party/imgui/examples/example_win32_directx12/main.cpp /^bool CreateDeviceD3D(HWND hWnd)$/;" f typeref:typename:bool
  972. CreateDeviceD3D third_party/imgui/examples/example_win32_directx9/main.cpp /^bool CreateDeviceD3D(HWND hWnd)$/;" f typeref:typename:bool
  973. CreateNewWindow third_party/imgui/imgui.cpp /^static ImGuiWindow* CreateNewWindow(const char* name, ImVec2 size, ImGuiWindowFlags flags)$/;" f typeref:typename:ImGuiWindow * file:
  974. CreateNewWindowSettings third_party/imgui/imgui.cpp /^ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name)$/;" f class:ImGui typeref:typename:ImGuiWindowSettings *
  975. CreateOrResizeBuffer third_party/imgui/examples/imgui_impl_vulkan.cpp /^static void CreateOrResizeBuffer(VkBuffer& buffer, VkDeviceMemory& buffer_memory, VkDeviceSize& /;" f typeref:typename:void file:
  976. CreateRenderTarget third_party/imgui/examples/example_sdl_directx11/main.cpp /^void CreateRenderTarget()$/;" f typeref:typename:void
  977. CreateRenderTarget third_party/imgui/examples/example_win32_directx10/main.cpp /^void CreateRenderTarget()$/;" f typeref:typename:void
  978. CreateRenderTarget third_party/imgui/examples/example_win32_directx11/main.cpp /^void CreateRenderTarget()$/;" f typeref:typename:void
  979. CreateRenderTarget third_party/imgui/examples/example_win32_directx12/main.cpp /^void CreateRenderTarget()$/;" f typeref:typename:void
  980. Credits third_party/imgui/docs/README.md /^Credits$/;" s
  981. CurLenA third_party/imgui/imgui_internal.h /^ int CurLenW, CurLenA; \/\/ we need to maintain our buffer length i/;" m struct:ImGuiInputTextState typeref:typename:int
  982. CurLenW third_party/imgui/imgui_internal.h /^ int CurLenW, CurLenA; \/\/ we need to maintain our buffer length i/;" m struct:ImGuiInputTextState typeref:typename:int
  983. CurrFrameVisible third_party/imgui/imgui_internal.h /^ int CurrFrameVisible;$/;" m struct:ImGuiTabBar typeref:typename:int
  984. CurrLineSize third_party/imgui/imgui_internal.h /^ ImVec2 CurrLineSize;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  985. CurrLineTextBaseOffset third_party/imgui/imgui_internal.h /^ float CurrLineTextBaseOffset; \/\/ Baseline offset (0.0f by default on a n/;" m struct:ImGuiWindowTempData typeref:typename:float
  986. Current third_party/imgui/imgui_internal.h /^ int Current;$/;" m struct:ImGuiColumns typeref:typename:int
  987. CurrentColumns third_party/imgui/imgui_internal.h /^ ImGuiColumns* CurrentColumns; \/\/ Current columns set$/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiColumns *
  988. CurrentDevice third_party/imgui_sdl/imgui_sdl.cpp /^ struct Device* CurrentDevice = nullptr;$/;" v namespace:__anonaaadc0580110 typeref:struct:Device *
  989. CurrentSize third_party/imgui/imgui.h /^ ImVec2 CurrentSize; \/\/ Read-only. Current window size.$/;" m struct:ImGuiSizeCallbackData typeref:typename:ImVec2
  990. CurrentTabBar third_party/imgui/imgui_internal.h /^ ImGuiTabBar* CurrentTabBar;$/;" m struct:ImGuiContext typeref:typename:ImGuiTabBar *
  991. CurrentTabBarStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiPtrOrIndex> CurrentTabBarStack;$/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiPtrOrIndex>
  992. CurrentWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* CurrentWindow; \/\/ Being drawn into$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  993. CurrentWindowStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindow*> CurrentWindowStack;$/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiWindow * >
  994. CursorAnim third_party/imgui/imgui_internal.h /^ float CursorAnim; \/\/ timer for cursor blink, reset on every /;" m struct:ImGuiInputTextState typeref:typename:float
  995. CursorAnimReset third_party/imgui/imgui_internal.h /^ void CursorAnimReset() { CursorAnim = -0.30f; } /;" f struct:ImGuiInputTextState typeref:typename:void
  996. CursorClamp third_party/imgui/imgui_internal.h /^ void CursorClamp() { Stb.cursor = ImMin(Stb.cursor, CurLenW); Stb.selec/;" f struct:ImGuiInputTextState typeref:typename:void
  997. CursorFollow third_party/imgui/imgui_internal.h /^ bool CursorFollow; \/\/ set when we want scrolling to follow th/;" m struct:ImGuiInputTextState typeref:typename:bool
  998. CursorMaxPos third_party/imgui/imgui_internal.h /^ ImVec2 CursorMaxPos; \/\/ Used to implicitly calculate the size o/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  999. CursorPos third_party/imgui/imgui.h /^ int CursorPos; \/\/ \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:int
  1000. CursorPos third_party/imgui/imgui_internal.h /^ ImVec2 CursorPos; \/\/ Current emitting position, in absolute /;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  1001. CursorPosPrevLine third_party/imgui/imgui_internal.h /^ ImVec2 CursorPosPrevLine;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  1002. CursorStartPos third_party/imgui/imgui_internal.h /^ ImVec2 CursorStartPos; \/\/ Initial position after Begin(), general/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  1003. CurveTessellationTol third_party/imgui/imgui.h /^ float CurveTessellationTol; \/\/ Tessellation tolerance when using PathBezierCur/;" m struct:ImGuiStyle typeref:typename:float
  1004. CurveTessellationTol third_party/imgui/imgui_internal.h /^ float CurveTessellationTol;$/;" m struct:ImDrawListSharedData typeref:typename:float
  1005. CustomConstraints third_party/imgui/imgui_demo.cpp /^ struct CustomConstraints \/\/ Helper functions to demonstrate programmatic constraints$/;" s function:ShowExampleAppConstrainedResize file:
  1006. CustomRect third_party/imgui/imgui.h /^ typedef ImFontAtlasCustomRect CustomRect; \/\/ OBSOLETED in 1.72+$/;" t struct:ImFontAtlas typeref:typename:ImFontAtlasCustomRect
  1007. CustomRectIds third_party/imgui/imgui.h /^ int CustomRectIds[1]; \/\/ Identifiers of custom texture rectangle/;" m struct:ImFontAtlas typeref:typename:int[1]
  1008. CustomRects third_party/imgui/imgui.h /^ ImVector<ImFontAtlasCustomRect> CustomRects; \/\/ Rectangles for packing custom texture d/;" m struct:ImFontAtlas typeref:typename:ImVector<ImFontAtlasCustomRect>
  1009. D3DFVF_CUSTOMVERTEX third_party/imgui/examples/imgui_impl_dx9.cpp /^#define D3DFVF_CUSTOMVERTEX /;" d file:
  1010. DBT_DEVNODES_CHANGED third_party/imgui/examples/imgui_impl_win32.cpp /^#define DBT_DEVNODES_CHANGED /;" d file:
  1011. DC third_party/imgui/imgui_internal.h /^ ImGuiWindowTempData DC; \/\/ Temporary per-window data, /;" m struct:ImGuiWindow typeref:typename:ImGuiWindowTempData
  1012. DEACTIVATE_INTERVAL libswan/include/swan/Chunk.h /^ static constexpr float DEACTIVATE_INTERVAL = 20;$/;" m class:Swan::Chunk typeref:typename:float
  1013. DESPAWN_TIME core.mod/src/entities/EntItemStack.h /^ static constexpr float DESPAWN_TIME = 5 * 60;$/;" m class:EntItemStack typeref:typename:float
  1014. DIRECTINPUT_VERSION third_party/imgui/examples/example_win32_directx10/main.cpp /^#define DIRECTINPUT_VERSION /;" d file:
  1015. DIRECTINPUT_VERSION third_party/imgui/examples/example_win32_directx11/main.cpp /^#define DIRECTINPUT_VERSION /;" d file:
  1016. DIRECTINPUT_VERSION third_party/imgui/examples/example_win32_directx9/main.cpp /^#define DIRECTINPUT_VERSION /;" d file:
  1017. DIRECTINPUT_VERSION third_party/imgui/examples/imgui_impl_dx9.cpp /^#define DIRECTINPUT_VERSION /;" d file:
  1018. DOUBLE libswan/src/SRF.cc /^ DOUBLE = 7,$/;" e enum:Swan::Type file:
  1019. DOUBLE_ARRAY libswan/src/SRF.cc /^ DOUBLE_ARRAY = 13,$/;" e enum:Swan::Type file:
  1020. DOWN_FORCE core.mod/src/entities/EntPlayer.h /^ static constexpr float DOWN_FORCE = 20 * MASS;$/;" m class:EntPlayer typeref:typename:float
  1021. DX12_ENABLE_DEBUG_LAYER third_party/imgui/examples/example_win32_directx12/main.cpp /^#define DX12_ENABLE_DEBUG_LAYER /;" d file:
  1022. Data third_party/imgui/imgui.h /^ ImVector<ImGuiStoragePair> Data;$/;" m struct:ImGuiStorage typeref:typename:ImVector<ImGuiStoragePair>
  1023. Data third_party/imgui/imgui.h /^ T* Data;$/;" m struct:ImVector typeref:typename:T *
  1024. Data third_party/imgui/imgui.h /^ void* Data; \/\/ Data (copied and owned by dear imgui)$/;" m struct:ImGuiPayload typeref:typename:void *
  1025. Data third_party/imgui/imgui_internal.h /^ ImVector<T> Data; \/\/ Contiguous data$/;" m struct:ImPool typeref:typename:ImVector<T>
  1026. DataFrameCount third_party/imgui/imgui.h /^ int DataFrameCount; \/\/ Data timestamp$/;" m struct:ImGuiPayload typeref:typename:int
  1027. DataSize third_party/imgui/imgui.h /^ int DataSize; \/\/ Data size$/;" m struct:ImGuiPayload typeref:typename:int
  1028. DataType third_party/imgui/imgui.h /^ char DataType[32+1]; \/\/ Data type tag (short user-supplied string, 32 chara/;" m struct:ImGuiPayload typeref:typename:char[]
  1029. DataTypeApplyOp third_party/imgui/imgui_widgets.cpp /^void ImGui::DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, void* arg1, const voi/;" f class:ImGui typeref:typename:void
  1030. DataTypeApplyOpFromText third_party/imgui/imgui_widgets.cpp /^bool ImGui::DataTypeApplyOpFromText(const char* buf, const char* initial_value_buf, ImGuiDataTyp/;" f class:ImGui typeref:typename:bool
  1031. DataTypeFormatString third_party/imgui/imgui_widgets.cpp /^int ImGui::DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* da/;" f class:ImGui typeref:typename:int
  1032. DataTypeGetInfo third_party/imgui/imgui_widgets.cpp /^const ImGuiDataTypeInfo* ImGui::DataTypeGetInfo(ImGuiDataType data_type)$/;" f class:ImGui typeref:typename:const ImGuiDataTypeInfo *
  1033. DeIndexAllBuffers third_party/imgui/imgui_draw.cpp /^void ImDrawData::DeIndexAllBuffers()$/;" f class:ImDrawData typeref:typename:void
  1034. DebugCheckVersionAndDataLayout third_party/imgui/imgui.cpp /^bool ImGui::DebugCheckVersionAndDataLayout(const char* version, size_t sz_io, size_t sz_style, s/;" f class:ImGui typeref:typename:bool
  1035. DebugItemPickerActive third_party/imgui/imgui_internal.h /^ bool DebugItemPickerActive;$/;" m struct:ImGuiContext typeref:typename:bool
  1036. DebugItemPickerBreakID third_party/imgui/imgui_internal.h /^ ImGuiID DebugItemPickerBreakID; \/\/ Will call IM_DEBUG_BREAK() /;" m struct:ImGuiContext typeref:typename:ImGuiID
  1037. DebugStartItemPicker third_party/imgui/imgui_internal.h /^ inline void DebugStartItemPicker() { GImGui->DebugItemPickerActive = true; }$/;" f namespace:ImGui typeref:typename:void
  1038. DeclColumns third_party/imgui/imgui_widgets.cpp /^float ImGuiMenuColumns::DeclColumns(float w0, float w1, float w2) \/\/ not using va_arg because /;" f class:ImGuiMenuColumns typeref:typename:float
  1039. Decode85 third_party/imgui/imgui_draw.cpp /^static void Decode85(const unsigned char* src, unsigned char* dst)$/;" f typeref:typename:void file:
  1040. Decode85Byte third_party/imgui/imgui_draw.cpp /^static unsigned int Decode85Byte(char c) { return c >= '\\\\'/;" f typeref:typename:unsigned int file:
  1041. Deferred libswan/include/swan/util.h /^class Deferred: NonCopyable {$/;" c namespace:Swan
  1042. Deinitialize third_party/imgui_sdl/imgui_sdl.cpp /^ void Deinitialize()$/;" f namespace:ImGuiSDL typeref:typename:void
  1043. DeleteChars third_party/imgui/imgui_widgets.cpp /^void ImGuiInputTextCallbackData::DeleteChars(int pos, int bytes_count)$/;" f class:ImGuiInputTextCallbackData typeref:typename:void
  1044. Delivery third_party/imgui/imgui.h /^ bool Delivery; \/\/ Set when AcceptDragDropPayload() was called and mou/;" m struct:ImGuiPayload typeref:typename:bool
  1045. DeltaTime third_party/imgui/imgui.h /^ float DeltaTime; \/\/ = 1.0f\/60.0f \/\/ Time elapsed since l/;" m struct:ImGuiIO typeref:typename:float
  1046. Demo third_party/imgui/docs/README.md /^### Demo$/;" S
  1047. DepthStencilState third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10DepthStencilState* DepthStencilState;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10DepthStencilState * file:
  1048. DepthStencilState third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11DepthStencilState* DepthStencilState;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11DepthStencilState * file:
  1049. Descender third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float Descender; \/\/ The extents below the baseline in pixels (typically/;" m struct:__anond3bafd850110::FontInfo typeref:typename:float file:
  1050. Descent third_party/imgui/imgui.h /^ float Ascent, Descent; \/\/ 4+4 \/\/ out \/\/ \/\/ Asc/;" m struct:ImFont typeref:typename:float
  1051. DescriptorPool third_party/imgui/examples/imgui_impl_vulkan.h /^ VkDescriptorPool DescriptorPool;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkDescriptorPool
  1052. DesiredSize third_party/imgui/imgui.h /^ ImVec2 DesiredSize; \/\/ Read-write. Desired size, based on user's mouse position. Writ/;" m struct:ImGuiSizeCallbackData typeref:typename:ImVec2
  1053. DestroyContext third_party/imgui/imgui.cpp /^void ImGui::DestroyContext(ImGuiContext* ctx)$/;" f class:ImGui typeref:typename:void
  1054. Device third_party/imgui/examples/imgui_impl_vulkan.h /^ VkDevice Device;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkDevice
  1055. Device third_party/imgui_sdl/imgui_sdl.cpp /^ Device(SDL_Renderer* renderer) : Renderer(renderer) { }$/;" f struct:__anonaaadc0580110::Device file:
  1056. Device third_party/imgui_sdl/imgui_sdl.cpp /^ struct Device$/;" s namespace:__anonaaadc0580110 file:
  1057. DimBgRatio third_party/imgui/imgui_internal.h /^ float DimBgRatio; \/\/ 0.0..1.0 animation when fad/;" m struct:ImGuiContext typeref:typename:float
  1058. Dirty third_party/imgui/imgui_demo.cpp /^ bool Dirty; \/\/ Set when the document has been modified$/;" m struct:MyDocument typeref:typename:bool file:
  1059. DirtyLookupTables third_party/imgui/imgui.h /^ bool DirtyLookupTables; \/\/ 1 \/\/ out \/\/$/;" m struct:ImFont typeref:typename:bool
  1060. DisableClip third_party/imgui_sdl/imgui_sdl.cpp /^ void DisableClip() { SDL_RenderSetClipRect(Renderer, nullptr); }$/;" f struct:__anonaaadc0580110::Device typeref:typename:void file:
  1061. DisplayContents third_party/imgui/imgui_demo.cpp /^ static void DisplayContents(MyDocument* doc)$/;" f struct:MyDocument typeref:typename:void file:
  1062. DisplayContextMenu third_party/imgui/imgui_demo.cpp /^ static void DisplayContextMenu(MyDocument* doc)$/;" f struct:MyDocument typeref:typename:void file:
  1063. DisplayEnd third_party/imgui/imgui.h /^ int ItemsCount, StepNo, DisplayStart, DisplayEnd;$/;" m struct:ImGuiListClipper typeref:typename:int
  1064. DisplayFramebufferScale third_party/imgui/imgui.h /^ ImVec2 DisplayFramebufferScale; \/\/ = (1, 1) \/\/ For retina display or/;" m struct:ImGuiIO typeref:typename:ImVec2
  1065. DisplayOffset third_party/imgui/imgui.h /^ ImVec2 DisplayOffset; \/\/ 8 \/\/ in \/\/ = (0,0) \/\/ Off/;" m struct:ImFont typeref:typename:ImVec2
  1066. DisplayPos third_party/imgui/imgui.h /^ ImVec2 DisplayPos; \/\/ Upper-left position of the viewport to render (/;" m struct:ImDrawData typeref:typename:ImVec2
  1067. DisplaySafeAreaPadding third_party/imgui/imgui.h /^ ImVec2 DisplaySafeAreaPadding; \/\/ If you cannot see the edges of your screen (e.g/;" m struct:ImGuiStyle typeref:typename:ImVec2
  1068. DisplaySize third_party/imgui/imgui.h /^ ImVec2 DisplaySize; \/\/ Size of the viewport to render (== io.DisplaySi/;" m struct:ImDrawData typeref:typename:ImVec2
  1069. DisplaySize third_party/imgui/imgui.h /^ ImVec2 DisplaySize; \/\/ <unset> \/\/ Main display size, in/;" m struct:ImGuiIO typeref:typename:ImVec2
  1070. DisplayStart third_party/imgui/imgui.h /^ int ItemsCount, StepNo, DisplayStart, DisplayEnd;$/;" m struct:ImGuiListClipper typeref:typename:int
  1071. DisplayWindowPadding third_party/imgui/imgui.h /^ ImVec2 DisplayWindowPadding; \/\/ Window position are clamped to be visible withi/;" m struct:ImGuiStyle typeref:typename:ImVec2
  1072. DistAxial third_party/imgui/imgui_internal.h /^ float DistAxial;$/;" m struct:ImGuiNavMoveResult typeref:typename:float
  1073. DistBox third_party/imgui/imgui_internal.h /^ float DistBox; \/\/ Best candidate box distance to current NavId$/;" m struct:ImGuiNavMoveResult typeref:typename:float
  1074. DistCenter third_party/imgui/imgui_internal.h /^ float DistCenter; \/\/ Best candidate center distance to current NavId$/;" m struct:ImGuiNavMoveResult typeref:typename:float
  1075. Divisor third_party/imgui_sdl/imgui_sdl.cpp /^ const float Divisor;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const float file:
  1076. DoForceClose third_party/imgui/imgui_demo.cpp /^ void DoForceClose() { Open = false; Dirty = false; }$/;" f struct:MyDocument typeref:typename:void file:
  1077. DoOpen third_party/imgui/imgui_demo.cpp /^ void DoOpen() { Open = true; }$/;" f struct:MyDocument typeref:typename:void file:
  1078. DoQueueClose third_party/imgui/imgui_demo.cpp /^ void DoQueueClose() { WantClose = true; }$/;" f struct:MyDocument typeref:typename:void file:
  1079. DoSave third_party/imgui/imgui_demo.cpp /^ void DoSave() { Dirty = false; }$/;" f struct:MyDocument typeref:typename:void file:
  1080. Documents third_party/imgui/imgui_demo.cpp /^ ImVector<MyDocument> Documents;$/;" m struct:ExampleAppDocuments typeref:typename:ImVector<MyDocument> file:
  1081. DragBehavior third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragBehavior(ImGuiID id, ImGuiDataType data_type, void* v, float v_speed, const void/;" f class:ImGui typeref:typename:bool
  1082. DragBehaviorT third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, con/;" f class:ImGui typeref:typename:bool
  1083. DragCurrentAccum third_party/imgui/imgui_internal.h /^ float DragCurrentAccum; \/\/ Accumulator for dragging mo/;" m struct:ImGuiContext typeref:typename:float
  1084. DragCurrentAccumDirty third_party/imgui/imgui_internal.h /^ bool DragCurrentAccumDirty;$/;" m struct:ImGuiContext typeref:typename:bool
  1085. DragDropAcceptFlags third_party/imgui/imgui_internal.h /^ ImGuiDragDropFlags DragDropAcceptFlags;$/;" m struct:ImGuiContext typeref:typename:ImGuiDragDropFlags
  1086. DragDropAcceptFrameCount third_party/imgui/imgui_internal.h /^ int DragDropAcceptFrameCount; \/\/ Last time a target expresse/;" m struct:ImGuiContext typeref:typename:int
  1087. DragDropAcceptIdCurr third_party/imgui/imgui_internal.h /^ ImGuiID DragDropAcceptIdCurr; \/\/ Target item id (set at the /;" m struct:ImGuiContext typeref:typename:ImGuiID
  1088. DragDropAcceptIdCurrRectSurface third_party/imgui/imgui_internal.h /^ float DragDropAcceptIdCurrRectSurface; \/\/ Target item surface (we res/;" m struct:ImGuiContext typeref:typename:float
  1089. DragDropAcceptIdPrev third_party/imgui/imgui_internal.h /^ ImGuiID DragDropAcceptIdPrev; \/\/ Target item id from previou/;" m struct:ImGuiContext typeref:typename:ImGuiID
  1090. DragDropActive third_party/imgui/imgui_internal.h /^ bool DragDropActive;$/;" m struct:ImGuiContext typeref:typename:bool
  1091. DragDropMouseButton third_party/imgui/imgui_internal.h /^ int DragDropMouseButton;$/;" m struct:ImGuiContext typeref:typename:int
  1092. DragDropPayload third_party/imgui/imgui_internal.h /^ ImGuiPayload DragDropPayload;$/;" m struct:ImGuiContext typeref:typename:ImGuiPayload
  1093. DragDropPayloadBufHeap third_party/imgui/imgui_internal.h /^ ImVector<unsigned char> DragDropPayloadBufHeap; \/\/ We don't expose the ImVecto/;" m struct:ImGuiContext typeref:typename:ImVector<unsigned char>
  1094. DragDropPayloadBufLocal third_party/imgui/imgui_internal.h /^ unsigned char DragDropPayloadBufLocal[8]; \/\/ Local buffer for small payl/;" m struct:ImGuiContext typeref:typename:unsigned char[8]
  1095. DragDropSourceFlags third_party/imgui/imgui_internal.h /^ ImGuiDragDropFlags DragDropSourceFlags;$/;" m struct:ImGuiContext typeref:typename:ImGuiDragDropFlags
  1096. DragDropSourceFrameCount third_party/imgui/imgui_internal.h /^ int DragDropSourceFrameCount;$/;" m struct:ImGuiContext typeref:typename:int
  1097. DragDropTargetId third_party/imgui/imgui_internal.h /^ ImGuiID DragDropTargetId;$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  1098. DragDropTargetRect third_party/imgui/imgui_internal.h /^ ImRect DragDropTargetRect;$/;" m struct:ImGuiContext typeref:typename:ImRect
  1099. DragDropWithinSourceOrTarget third_party/imgui/imgui_internal.h /^ bool DragDropWithinSourceOrTarget;$/;" m struct:ImGuiContext typeref:typename:bool
  1100. DragFloat third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, cons/;" f class:ImGui typeref:typename:bool
  1101. DragFloat2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, c/;" f class:ImGui typeref:typename:bool
  1102. DragFloat3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, c/;" f class:ImGui typeref:typename:bool
  1103. DragFloat4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, c/;" f class:ImGui typeref:typename:bool
  1104. DragFloatRange2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float/;" f class:ImGui typeref:typename:bool
  1105. DragInt third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragInt(const char* label, int* v, float v_speed, int v_min, int v_max, const char* /;" f class:ImGui typeref:typename:bool
  1106. DragInt2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragInt2(const char* label, int v[2], float v_speed, int v_min, int v_max, const cha/;" f class:ImGui typeref:typename:bool
  1107. DragInt3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const cha/;" f class:ImGui typeref:typename:bool
  1108. DragInt4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const cha/;" f class:ImGui typeref:typename:bool
  1109. DragIntRange2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_spe/;" f class:ImGui typeref:typename:bool
  1110. DragScalar third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragScalar(const char* label, ImGuiDataType data_type, void* v, float v_speed, const/;" f class:ImGui typeref:typename:bool
  1111. DragScalarN third_party/imgui/imgui_widgets.cpp /^bool ImGui::DragScalarN(const char* label, ImGuiDataType data_type, void* v, int components, flo/;" f class:ImGui typeref:typename:bool
  1112. DragSpeedDefaultRatio third_party/imgui/imgui_internal.h /^ float DragSpeedDefaultRatio; \/\/ If speed == 0.0f, uses (max/;" m struct:ImGuiContext typeref:typename:float
  1113. Draw third_party/imgui/imgui.cpp /^bool ImGuiTextFilter::Draw(const char* label, float width)$/;" f class:ImGuiTextFilter typeref:typename:bool
  1114. Draw third_party/imgui/imgui_demo.cpp /^ void Draw(const char* title, bool* p_open = NULL)$/;" f struct:ExampleAppLog typeref:typename:void file:
  1115. Draw third_party/imgui/imgui_demo.cpp /^ void Draw(const char* title, bool* p_open)$/;" f struct:ExampleAppConsole typeref:typename:void file:
  1116. DrawCachedTriangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawCachedTriangle(const Device::TriangleCacheItem& triangle, const FixedPointTriangleRend/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1117. DrawData third_party/imgui/imgui_internal.h /^ ImDrawData DrawData; \/\/ Main ImDrawData instance to/;" m struct:ImGuiContext typeref:typename:ImDrawData
  1118. DrawDataBuilder third_party/imgui/imgui_internal.h /^ ImDrawDataBuilder DrawDataBuilder;$/;" m struct:ImGuiContext typeref:typename:ImDrawDataBuilder
  1119. DrawList third_party/imgui/imgui_internal.h /^ ImDrawList* DrawList; \/\/ == &DrawListInst (for backw/;" m struct:ImGuiWindow typeref:typename:ImDrawList *
  1120. DrawListInst third_party/imgui/imgui_internal.h /^ ImDrawList DrawListInst;$/;" m struct:ImGuiWindow typeref:typename:ImDrawList
  1121. DrawListSharedData third_party/imgui/imgui_internal.h /^ ImDrawListSharedData DrawListSharedData;$/;" m struct:ImGuiContext typeref:typename:ImDrawListSharedData
  1122. DrawRectangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawRectangle(const Rect& bounding, SDL_Texture* texture, const Color& color, bool doHoriz/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1123. DrawRectangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawRectangle(const Rect& bounding, SDL_Texture* texture, int textureWidth, int textureHei/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1124. DrawRectangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawRectangle(const Rect& bounding, const Texture* texture, const Color& color, bool doHor/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1125. DrawTriangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawTriangle(const ImDrawVert& v1, const ImDrawVert& v2, const ImDrawVert& v3, const Textu/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1126. DrawTriangleWithColorFunction third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawTriangleWithColorFunction(const FixedPointTriangleRenderInfo& renderInfo, const std::f/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1127. DrawUniformColorTriangle third_party/imgui_sdl/imgui_sdl.cpp /^ void DrawUniformColorTriangle(const ImDrawVert& v1, const ImDrawVert& v2, const ImDrawVert& v3)$/;" f namespace:__anonaaadc0580110 typeref:typename:void
  1128. DstFont third_party/imgui/imgui.h /^ ImFont* DstFont;$/;" m struct:ImFontConfig typeref:typename:ImFont *
  1129. DstIndex third_party/imgui/imgui_draw.cpp /^ int DstIndex; \/\/ Index into atlas->Fonts[] and dst_tmp_array[]$/;" m struct:ImFontBuildSrcData typeref:typename:int file:
  1130. DstIndex third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int DstIndex; \/\/ Index into atlas->Fonts[] and dst_tmp_array[]$/;" m struct:ImFontBuildSrcDataFT typeref:typename:int file:
  1131. Dummy third_party/imgui/imgui_widgets.cpp /^void ImGui::Dummy(const ImVec2& size)$/;" f class:ImGui typeref:typename:void
  1132. Dynlib libswan/include/swan/OS.h /^class Dynlib: NonCopyable {$/;" c namespace:Swan::OS
  1133. Dynlib libswan/src/OS.cc /^Dynlib::Dynlib(Dynlib &&dl) noexcept: handle_(dl.handle_) {$/;" f class:Swan::OS::Dynlib
  1134. Dynlib libswan/src/OS.cc /^Dynlib::Dynlib(const std::string &path) {$/;" f class:Swan::OS::Dynlib
  1135. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl2/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1136. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl2/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1137. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl2/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1138. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl3/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1139. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl3/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1140. ECHO_MESSAGE third_party/imgui/examples/example_glfw_opengl3/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1141. ECHO_MESSAGE third_party/imgui/examples/example_glut_opengl2/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1142. ECHO_MESSAGE third_party/imgui/examples/example_glut_opengl2/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1143. ECHO_MESSAGE third_party/imgui/examples/example_glut_opengl2/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1144. ECHO_MESSAGE third_party/imgui/examples/example_null/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1145. ECHO_MESSAGE third_party/imgui/examples/example_null/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1146. ECHO_MESSAGE third_party/imgui/examples/example_null/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1147. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl2/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1148. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl2/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1149. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl2/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1150. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl3/Makefile /^ ECHO_MESSAGE = "Linux"$/;" m
  1151. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl3/Makefile /^ ECHO_MESSAGE = "Mac OS X"$/;" m
  1152. ECHO_MESSAGE third_party/imgui/examples/example_sdl_opengl3/Makefile /^ ECHO_MESSAGE = "MinGW"$/;" m
  1153. EMS third_party/imgui/examples/example_emscripten/Makefile /^EMS = -s USE_SDL=2 -s WASM=1$/;" m
  1154. EXE third_party/imgui/examples/example_glfw_metal/Makefile /^EXE = example_glfw_metal$/;" m
  1155. EXE third_party/imgui/examples/example_glfw_opengl2/Makefile /^EXE = example_glfw_opengl2$/;" m
  1156. EXE third_party/imgui/examples/example_glfw_opengl3/Makefile /^EXE = example_glfw_opengl3$/;" m
  1157. EXE third_party/imgui/examples/example_glut_opengl2/Makefile /^EXE = example_glut_opengl2$/;" m
  1158. EXE third_party/imgui/examples/example_null/Makefile /^EXE = example_null$/;" m
  1159. EXE third_party/imgui/examples/example_sdl_opengl2/Makefile /^EXE = example_sdl_opengl2$/;" m
  1160. EXE third_party/imgui/examples/example_sdl_opengl3/Makefile /^EXE = example_sdl_opengl3$/;" m
  1161. ElemCount third_party/imgui/imgui.h /^ unsigned int ElemCount; \/\/ Number of indices (multiple of 3) to be rendere/;" m struct:ImDrawCmd typeref:typename:unsigned int
  1162. Element third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" g function:ShowDemoWindowWidgets file:
  1163. Element_Air third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" e enum:ShowDemoWindowWidgets::Element file:
  1164. Element_COUNT third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" e enum:ShowDemoWindowWidgets::Element file:
  1165. Element_Earth third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" e enum:ShowDemoWindowWidgets::Element file:
  1166. Element_Fire third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" e enum:ShowDemoWindowWidgets::Element file:
  1167. Element_Water third_party/imgui/imgui_demo.cpp /^ enum Element { Element_Fire, Element_Earth, Element_Air, Element_Water, Element_COUN/;" e enum:ShowDemoWindowWidgets::Element file:
  1168. EllipsisChar third_party/imgui/imgui.h /^ ImWchar EllipsisChar; \/\/ 2 \/\/ out \/\/ = -1 \/\/ Cha/;" m struct:ImFont typeref:typename:ImWchar
  1169. EllipsisChar third_party/imgui/imgui.h /^ ImWchar EllipsisChar; \/\/ -1 \/\/ Explicitly specify unicode codepo/;" m struct:ImFontConfig typeref:typename:ImWchar
  1170. EmitItem third_party/imgui/imgui_internal.h /^ bool EmitItem;$/;" m struct:ImGuiGroupData typeref:typename:bool
  1171. EmptyString third_party/imgui/imgui.cpp /^char ImGuiTextBuffer::EmptyString[1] = { 0 };$/;" m class:ImGuiTextBuffer typeref:typename:char[1]
  1172. EmptyString third_party/imgui/imgui.h /^ IMGUI_API static char EmptyString[1];$/;" m struct:ImGuiTextBuffer typeref:typename:IMGUI_API char[1]
  1173. EnableClip third_party/imgui_sdl/imgui_sdl.cpp /^ void EnableClip() { SetClipRect(Clip); }$/;" f struct:__anonaaadc0580110::Device typeref:typename:void file:
  1174. Encode85Byte third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^char Encode85Byte(unsigned int x)$/;" f typeref:typename:char
  1175. End third_party/imgui/imgui.cpp /^void ImGui::End()$/;" f class:ImGui typeref:typename:void
  1176. End third_party/imgui/imgui.cpp /^void ImGuiListClipper::End()$/;" f class:ImGuiListClipper typeref:typename:void
  1177. EndChild third_party/imgui/imgui.cpp /^void ImGui::EndChild()$/;" f class:ImGui typeref:typename:void
  1178. EndChildFrame third_party/imgui/imgui.cpp /^void ImGui::EndChildFrame()$/;" f class:ImGui typeref:typename:void
  1179. EndColumns third_party/imgui/imgui_widgets.cpp /^void ImGui::EndColumns()$/;" f class:ImGui typeref:typename:void
  1180. EndCombo third_party/imgui/imgui_widgets.cpp /^void ImGui::EndCombo()$/;" f class:ImGui typeref:typename:void
  1181. EndDragDropSource third_party/imgui/imgui.cpp /^void ImGui::EndDragDropSource()$/;" f class:ImGui typeref:typename:void
  1182. EndDragDropTarget third_party/imgui/imgui.cpp /^void ImGui::EndDragDropTarget()$/;" f class:ImGui typeref:typename:void
  1183. EndFrame third_party/imgui/imgui.cpp /^void ImGui::EndFrame()$/;" f class:ImGui typeref:typename:void
  1184. EndGroup third_party/imgui/imgui.cpp /^void ImGui::EndGroup()$/;" f class:ImGui typeref:typename:void
  1185. EndMainMenuBar third_party/imgui/imgui_widgets.cpp /^void ImGui::EndMainMenuBar()$/;" f class:ImGui typeref:typename:void
  1186. EndMenu third_party/imgui/imgui_widgets.cpp /^void ImGui::EndMenu()$/;" f class:ImGui typeref:typename:void
  1187. EndMenuBar third_party/imgui/imgui_widgets.cpp /^void ImGui::EndMenuBar()$/;" f class:ImGui typeref:typename:void
  1188. EndPopup third_party/imgui/imgui.cpp /^void ImGui::EndPopup()$/;" f class:ImGui typeref:typename:void
  1189. EndTabBar third_party/imgui/imgui_widgets.cpp /^void ImGui::EndTabBar()$/;" f class:ImGui typeref:typename:void
  1190. EndTabItem third_party/imgui/imgui_widgets.cpp /^void ImGui::EndTabItem()$/;" f class:ImGui typeref:typename:void
  1191. EndTooltip third_party/imgui/imgui.cpp /^void ImGui::EndTooltip()$/;" f class:ImGui typeref:typename:void
  1192. EntItemStack core.mod/src/entities/EntItemStack.cc /^EntItemStack::EntItemStack(const Swan::Context &ctx, const Swan::SRF &params):$/;" f class:EntItemStack
  1193. EntItemStack core.mod/src/entities/EntItemStack.h /^class EntItemStack: public Swan::PhysicsEntity {$/;" c
  1194. EntPlayer core.mod/src/entities/EntPlayer.cc /^EntPlayer::EntPlayer(const Swan::Context &ctx, const Swan::SRF &params):$/;" f class:EntPlayer
  1195. EntPlayer core.mod/src/entities/EntPlayer.h /^class EntPlayer: public Swan::PhysicsEntity, public Swan::InventoryTrait::HasInventory {$/;" c
  1196. Entity libswan/include/swan/Entity.h /^class Entity {$/;" c namespace:Swan
  1197. Evaluate third_party/imgui_sdl/imgui_sdl.cpp /^ T Evaluate(float x, float y) const$/;" f class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:T file:
  1198. EventChar third_party/imgui/imgui.h /^ ImWchar EventChar; \/\/ Character input \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:ImWchar
  1199. EventFlag third_party/imgui/imgui.h /^ ImGuiInputTextFlags EventFlag; \/\/ One ImGuiInputTextFlags_Callback* \/\/ Read-only$/;" m struct:ImGuiInputTextCallbackData typeref:typename:ImGuiInputTextFlags
  1200. EventKey third_party/imgui/imgui.h /^ ImGuiKey EventKey; \/\/ Key pressed (Up\/Down\/TAB) \/\/ Read-on/;" m struct:ImGuiInputTextCallbackData typeref:typename:ImGuiKey
  1201. Example third_party/PerlinNoise/README.md /^## Example$/;" s
  1202. ExampleAppConsole third_party/imgui/imgui_demo.cpp /^ ExampleAppConsole()$/;" f struct:ExampleAppConsole file:
  1203. ExampleAppConsole third_party/imgui/imgui_demo.cpp /^struct ExampleAppConsole$/;" s file:
  1204. ExampleAppDocuments third_party/imgui/imgui_demo.cpp /^ ExampleAppDocuments()$/;" f struct:ExampleAppDocuments file:
  1205. ExampleAppDocuments third_party/imgui/imgui_demo.cpp /^struct ExampleAppDocuments$/;" s file:
  1206. ExampleAppLog third_party/imgui/imgui_demo.cpp /^ ExampleAppLog()$/;" f struct:ExampleAppLog file:
  1207. ExampleAppLog third_party/imgui/imgui_demo.cpp /^struct ExampleAppLog$/;" s file:
  1208. ExecCommand third_party/imgui/imgui_demo.cpp /^ void ExecCommand(const char* command_line)$/;" f struct:ExampleAppConsole typeref:typename:void file:
  1209. Expand third_party/imgui/imgui_internal.h /^ void Expand(const ImVec2& amount) { Min.x -= amount.x; Min.y -= amount.y; Max./;" f struct:ImRect typeref:typename:void
  1210. Expand third_party/imgui/imgui_internal.h /^ void Expand(const float amount) { Min.x -= amount; Min.y -= amount; Max./;" f struct:ImRect typeref:typename:void
  1211. FAQ third_party/imgui-plot/README.md /^## FAQ$/;" s
  1212. FLOAT libswan/src/SRF.cc /^ FLOAT = 6,$/;" e enum:Swan::Type file:
  1213. FLOAT_ARRAY libswan/src/SRF.cc /^ FLOAT_ARRAY = 12,$/;" e enum:Swan::Type file:
  1214. FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA third_party/imgui/imgui_draw.cpp /^static const ImVec2 FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[ImGuiMouseCursor_COUNT][3] =$/;" v typeref:typename:const ImVec2[][3] file:
  1215. FONT_ATLAS_DEFAULT_TEX_DATA_H third_party/imgui/imgui_draw.cpp /^const int FONT_ATLAS_DEFAULT_TEX_DATA_H = 27;$/;" v typeref:typename:const int
  1216. FONT_ATLAS_DEFAULT_TEX_DATA_ID third_party/imgui/imgui_draw.cpp /^const unsigned int FONT_ATLAS_DEFAULT_TEX_DATA_ID = 0x80000000;$/;" v typeref:typename:const unsigned int
  1217. FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS third_party/imgui/imgui_draw.cpp /^static const char FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS[FONT_ATLAS_DEFAULT_TEX_DATA_W_HALF * FONT_A/;" v typeref:typename:const char[] file:
  1218. FONT_ATLAS_DEFAULT_TEX_DATA_W_HALF third_party/imgui/imgui_draw.cpp /^const int FONT_ATLAS_DEFAULT_TEX_DATA_W_HALF = 108;$/;" v typeref:typename:const int
  1219. FT_CEIL third_party/imgui/misc/freetype/imgui_freetype.cpp /^ #define FT_CEIL(/;" d file:
  1220. Face third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FT_Face Face;$/;" m struct:__anond3bafd850110::FreeTypeFont typeref:typename:FT_Face file:
  1221. Factory core.mod/src/WGDefault.h /^ class Factory: public Swan::WorldGen::Factory {$/;" c class:WGDefault
  1222. Factory core.mod/src/entities/EntItemStack.h /^ class Factory: public Swan::Entity::Factory {$/;" c class:EntItemStack
  1223. Factory core.mod/src/entities/EntPlayer.h /^ class Factory: public Swan::Entity::Factory {$/;" c class:EntPlayer
  1224. Factory libswan/include/swan/Entity.h /^ class Factory {$/;" c class:Swan::Entity
  1225. Factory libswan/include/swan/WorldGen.h /^ class Factory {$/;" c class:Swan::WorldGen
  1226. Fade third_party/PerlinNoise/PerlinNoise.hpp /^ static double Fade(double t) noexcept$/;" f class:siv::PerlinNoise typeref:typename:double
  1227. FallbackAdvanceX third_party/imgui/imgui.h /^ float FallbackAdvanceX; \/\/ 4 \/\/ out \/\/ = FallbackGlyph->Ad/;" m struct:ImFont typeref:typename:float
  1228. FallbackChar third_party/imgui/imgui.h /^ ImWchar FallbackChar; \/\/ 2 \/\/ in \/\/ = '?' \/\/ Rep/;" m struct:ImFont typeref:typename:ImWchar
  1229. FallbackGlyph third_party/imgui/imgui.h /^ const ImFontGlyph* FallbackGlyph; \/\/ 4-8 \/\/ out \/\/ = FindGlyph(FontFal/;" m struct:ImFont typeref:typename:const ImFontGlyph *
  1230. Features third_party/PerlinNoise/README.md /^## Features$/;" s
  1231. Fence third_party/imgui/examples/imgui_impl_vulkan.h /^ VkFence Fence;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkFence
  1232. FenceValue third_party/imgui/examples/example_win32_directx12/main.cpp /^ UINT64 FenceValue;$/;" m struct:FrameContext typeref:typename:UINT64 file:
  1233. Filter third_party/imgui/imgui_demo.cpp /^ ImGuiTextFilter Filter;$/;" m struct:ExampleAppConsole typeref:typename:ImGuiTextFilter file:
  1234. Filter third_party/imgui/imgui_demo.cpp /^ ImGuiTextFilter Filter;$/;" m struct:ExampleAppLog typeref:typename:ImGuiTextFilter file:
  1235. FilterImGuiLetters third_party/imgui/imgui_demo.cpp /^ struct TextFilters { static int FilterImGuiLetters(ImGuiInputTextCallbackData* data)/;" f struct:ShowDemoWindowWidgets::TextFilters typeref:typename:int file:
  1236. Filters third_party/imgui/imgui.h /^ ImVector<ImGuiTextRange>Filters;$/;" m struct:ImGuiTextFilter typeref:typename:ImVector<ImGuiTextRange>
  1237. FindBestWindowPosForPopup third_party/imgui/imgui.cpp /^ImVec2 ImGui::FindBestWindowPosForPopup(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:ImVec2
  1238. FindBestWindowPosForPopupEx third_party/imgui/imgui.cpp /^ImVec2 ImGui::FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* l/;" f class:ImGui typeref:typename:ImVec2
  1239. FindGlyph third_party/imgui/imgui_draw.cpp /^const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const$/;" f class:ImFont typeref:typename:const ImFontGlyph *
  1240. FindGlyphNoFallback third_party/imgui/imgui_draw.cpp /^const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const$/;" f class:ImFont typeref:typename:const ImFontGlyph *
  1241. FindHoveredWindow third_party/imgui/imgui.cpp /^static void FindHoveredWindow()$/;" f typeref:typename:void file:
  1242. FindOrCreateColumns third_party/imgui/imgui_widgets.cpp /^ImGuiColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id)$/;" f class:ImGui typeref:typename:ImGuiColumns *
  1243. FindOrCreateWindowSettings third_party/imgui/imgui.cpp /^ImGuiWindowSettings* ImGui::FindOrCreateWindowSettings(const char* name)$/;" f class:ImGui typeref:typename:ImGuiWindowSettings *
  1244. FindRenderedTextEnd third_party/imgui/imgui.cpp /^const char* ImGui::FindRenderedTextEnd(const char* text, const char* text_end)$/;" f class:ImGui typeref:typename:const char *
  1245. FindSettingsHandler third_party/imgui/imgui.cpp /^ImGuiSettingsHandler* ImGui::FindSettingsHandler(const char* type_name)$/;" f class:ImGui typeref:typename:ImGuiSettingsHandler *
  1246. FindWindowByID third_party/imgui/imgui.cpp /^ImGuiWindow* ImGui::FindWindowByID(ImGuiID id)$/;" f class:ImGui typeref:typename:ImGuiWindow *
  1247. FindWindowByName third_party/imgui/imgui.cpp /^ImGuiWindow* ImGui::FindWindowByName(const char* name)$/;" f class:ImGui typeref:typename:ImGuiWindow *
  1248. FindWindowFocusIndex third_party/imgui/imgui.cpp /^static int ImGui::FindWindowFocusIndex(ImGuiWindow* window) \/\/ FIXME-OPT O(N)$/;" f class:ImGui typeref:typename:int file:
  1249. FindWindowNavFocusable third_party/imgui/imgui.cpp /^static ImGuiWindow* FindWindowNavFocusable(int i_start, int i_stop, int dir) \/\/ FIXME-OPT O(N)$/;" f typeref:typename:ImGuiWindow * file:
  1250. FindWindowSettings third_party/imgui/imgui.cpp /^ImGuiWindowSettings* ImGui::FindWindowSettings(ImGuiID id)$/;" f class:ImGui typeref:typename:ImGuiWindowSettings *
  1251. FixedPointTriangleRenderInfo third_party/imgui_sdl/imgui_sdl.cpp /^ struct FixedPointTriangleRenderInfo$/;" s namespace:__anonaaadc0580110 file:
  1252. Flags third_party/imgui/imgui.h /^ ImDrawListFlags Flags; \/\/ Flags, you may poke into these to adjust an/;" m struct:ImDrawList typeref:typename:ImDrawListFlags
  1253. Flags third_party/imgui/imgui.h /^ ImFontAtlasFlags Flags; \/\/ Build flags (see ImFontAtlasFlags_)$/;" m struct:ImFontAtlas typeref:typename:ImFontAtlasFlags
  1254. Flags third_party/imgui/imgui.h /^ ImGuiInputTextFlags Flags; \/\/ What user passed to InputText() \/\/ Read-only$/;" m struct:ImGuiInputTextCallbackData typeref:typename:ImGuiInputTextFlags
  1255. Flags third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags Flags; \/\/ Not exposed$/;" m struct:ImGuiColumnData typeref:typename:ImGuiColumnsFlags
  1256. Flags third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags Flags;$/;" m struct:ImGuiColumns typeref:typename:ImGuiColumnsFlags
  1257. Flags third_party/imgui/imgui_internal.h /^ ImGuiNextItemDataFlags Flags;$/;" m struct:ImGuiNextItemData typeref:typename:ImGuiNextItemDataFlags
  1258. Flags third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags Flags;$/;" m struct:ImGuiNextWindowData typeref:typename:ImGuiNextWindowDataFlags
  1259. Flags third_party/imgui/imgui_internal.h /^ ImGuiTabBarFlags Flags;$/;" m struct:ImGuiTabBar typeref:typename:ImGuiTabBarFlags
  1260. Flags third_party/imgui/imgui_internal.h /^ ImGuiTabItemFlags Flags;$/;" m struct:ImGuiTabItem typeref:typename:ImGuiTabItemFlags
  1261. Flags third_party/imgui/imgui_internal.h /^ ImGuiWindowFlags Flags; \/\/ See enum ImGuiWindowFlags_$/;" m struct:ImGuiWindow typeref:typename:ImGuiWindowFlags
  1262. FlattenIntoSingleLayer third_party/imgui/imgui.cpp /^void ImDrawDataBuilder::FlattenIntoSingleLayer()$/;" f class:ImDrawDataBuilder typeref:typename:void
  1263. Floor third_party/imgui/imgui_internal.h /^ void Floor() { Min.x = (float)(int)Min.x; Min.y = (float)/;" f struct:ImRect typeref:typename:void
  1264. FocusCounterAll third_party/imgui/imgui_internal.h /^ int FocusCounterAll; \/\/ Counter for focus\/tabbing system. Star/;" m struct:ImGuiWindowTempData typeref:typename:int
  1265. FocusCounterTab third_party/imgui/imgui_internal.h /^ int FocusCounterTab; \/\/ (same, but only count widgets which you/;" m struct:ImGuiWindowTempData typeref:typename:int
  1266. FocusRequestCurrCounterAll third_party/imgui/imgui_internal.h /^ int FocusRequestCurrCounterAll; \/\/ Any item being requested fo/;" m struct:ImGuiContext typeref:typename:int
  1267. FocusRequestCurrCounterTab third_party/imgui/imgui_internal.h /^ int FocusRequestCurrCounterTab; \/\/ Tab item being requested fo/;" m struct:ImGuiContext typeref:typename:int
  1268. FocusRequestCurrWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* FocusRequestCurrWindow; \/\/$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  1269. FocusRequestNextCounterAll third_party/imgui/imgui_internal.h /^ int FocusRequestNextCounterAll; \/\/ Stored for next frame$/;" m struct:ImGuiContext typeref:typename:int
  1270. FocusRequestNextCounterTab third_party/imgui/imgui_internal.h /^ int FocusRequestNextCounterTab; \/\/ "$/;" m struct:ImGuiContext typeref:typename:int
  1271. FocusRequestNextWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* FocusRequestNextWindow; \/\/$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  1272. FocusTabPressed third_party/imgui/imgui_internal.h /^ bool FocusTabPressed; \/\/$/;" m struct:ImGuiContext typeref:typename:bool
  1273. FocusTopMostWindowUnderOne third_party/imgui/imgui.cpp /^void ImGui::FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_windo/;" f class:ImGui typeref:typename:void
  1274. FocusWindow third_party/imgui/imgui.cpp /^void ImGui::FocusWindow(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  1275. FocusableItemRegister third_party/imgui/imgui.cpp /^bool ImGui::FocusableItemRegister(ImGuiWindow* window, ImGuiID id)$/;" f class:ImGui typeref:typename:bool
  1276. FocusableItemUnregister third_party/imgui/imgui.cpp /^void ImGui::FocusableItemUnregister(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  1277. Font third_party/imgui/imgui.h /^ ImFont* Font; \/\/ Input \/\/ For custom font glyphs only (ID<0x10000):/;" m struct:ImFontAtlasCustomRect typeref:typename:ImFont *
  1278. Font third_party/imgui/imgui_internal.h /^ ImFont* Font; \/\/ (Shortcut) == FontStack.emp/;" m struct:ImGuiContext typeref:typename:ImFont *
  1279. Font third_party/imgui/imgui_internal.h /^ ImFont* Font; \/\/ Current\/default font (optional, for simpli/;" m struct:ImDrawListSharedData typeref:typename:ImFont *
  1280. Font third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FreeTypeFont Font;$/;" m struct:ImFontBuildSrcDataFT typeref:typename:FreeTypeFont file:
  1281. FontAllowUserScaling third_party/imgui/imgui.h /^ bool FontAllowUserScaling; \/\/ = false \/\/ Allow user scaling te/;" m struct:ImGuiIO typeref:typename:bool
  1282. FontAtlasOwnedByContext third_party/imgui/imgui_internal.h /^ bool FontAtlasOwnedByContext; \/\/ Io.Fonts-> is owned by the /;" m struct:ImGuiContext typeref:typename:bool
  1283. FontBaseSize third_party/imgui/imgui_internal.h /^ float FontBaseSize; \/\/ (Shortcut) == IO.FontGlobal/;" m struct:ImGuiContext typeref:typename:float
  1284. FontData third_party/imgui/imgui.h /^ void* FontData; \/\/ \/\/ TTF\/OTF data$/;" m struct:ImFontConfig typeref:typename:void *
  1285. FontDataOwnedByAtlas third_party/imgui/imgui.h /^ bool FontDataOwnedByAtlas; \/\/ true \/\/ TTF\/OTF data ownership taken by /;" m struct:ImFontConfig typeref:typename:bool
  1286. FontDataSize third_party/imgui/imgui.h /^ int FontDataSize; \/\/ \/\/ TTF\/OTF data size$/;" m struct:ImFontConfig typeref:typename:int
  1287. FontDefault third_party/imgui/imgui.h /^ ImFont* FontDefault; \/\/ = NULL \/\/ Font to use on NewFra/;" m struct:ImGuiIO typeref:typename:ImFont *
  1288. FontGlobalScale third_party/imgui/imgui.h /^ float FontGlobalScale; \/\/ = 1.0f \/\/ Global scale all font/;" m struct:ImGuiIO typeref:typename:float
  1289. FontInfo third_party/imgui/imgui_draw.cpp /^ stbtt_fontinfo FontInfo;$/;" m struct:ImFontBuildSrcData typeref:typename:stbtt_fontinfo file:
  1290. FontInfo third_party/imgui/misc/freetype/imgui_freetype.cpp /^ struct FontInfo$/;" s namespace:__anond3bafd850110 file:
  1291. FontNo third_party/imgui/imgui.h /^ int FontNo; \/\/ 0 \/\/ Index of font within TTF\/OTF fil/;" m struct:ImFontConfig typeref:typename:int
  1292. FontSize third_party/imgui/imgui.h /^ float FontSize; \/\/ 4 \/\/ in \/\/ \/\/ Hei/;" m struct:ImFont typeref:typename:float
  1293. FontSize third_party/imgui/imgui_internal.h /^ float FontSize; \/\/ (Shortcut) == FontBaseSize /;" m struct:ImGuiContext typeref:typename:float
  1294. FontSize third_party/imgui/imgui_internal.h /^ float FontSize; \/\/ Current\/default font size (optional, for s/;" m struct:ImDrawListSharedData typeref:typename:float
  1295. FontStack third_party/imgui/imgui_internal.h /^ ImVector<ImFont*> FontStack; \/\/ Stack for PushFont()\/PopFo/;" m struct:ImGuiContext typeref:typename:ImVector<ImFont * >
  1296. FontWindowScale third_party/imgui/imgui_internal.h /^ float FontWindowScale; \/\/ User scale multiplier per-w/;" m struct:ImGuiWindow typeref:typename:float
  1297. Fonts third_party/imgui/imgui.h /^ ImFontAtlas*Fonts; \/\/ <auto> \/\/ Font atlas: load, ras/;" m struct:ImGuiIO typeref:typename:ImFontAtlas *
  1298. Fonts third_party/imgui/imgui.h /^ ImVector<ImFont*> Fonts; \/\/ Hold all the fonts returned by AddFont*/;" m struct:ImFontAtlas typeref:typename:ImVector<ImFont * >
  1299. ForceAutoHint third_party/imgui/misc/freetype/imgui_freetype.h /^ ForceAutoHint = 1 << 2, \/\/ Indicates that the auto-hinter is preferred over the fo/;" e enum:ImGuiFreeType::RasterizerFlags
  1300. ForegroundDrawList third_party/imgui/imgui_internal.h /^ ImDrawList ForegroundDrawList; \/\/ Last draw list to be render/;" m struct:ImGuiContext typeref:typename:ImDrawList
  1301. FrameBorderSize third_party/imgui/imgui.h /^ float FrameBorderSize; \/\/ Thickness of border around frames. Generally se/;" m struct:ImGuiStyle typeref:typename:float
  1302. FrameContext third_party/imgui/examples/example_win32_directx12/main.cpp /^struct FrameContext$/;" s file:
  1303. FrameCount third_party/imgui/imgui_internal.h /^ int FrameCount;$/;" m struct:ImGuiContext typeref:typename:int
  1304. FrameCountEnded third_party/imgui/imgui_internal.h /^ int FrameCountEnded;$/;" m struct:ImGuiContext typeref:typename:int
  1305. FrameCountRendered third_party/imgui/imgui_internal.h /^ int FrameCountRendered;$/;" m struct:ImGuiContext typeref:typename:int
  1306. FrameIndex third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t FrameIndex; \/\/ Current frame being rendered to (0 <= Frame/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:uint32_t
  1307. FramePadding third_party/imgui/imgui.h /^ ImVec2 FramePadding; \/\/ Padding within a framed rectangle (used by most/;" m struct:ImGuiStyle typeref:typename:ImVec2
  1308. FramePadding third_party/imgui/imgui_internal.h /^ ImVec2 FramePadding; \/\/ style.FramePadding locked at the time of Be/;" m struct:ImGuiTabBar typeref:typename:ImVec2
  1309. FramePresent third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void FramePresent(ImGui_ImplVulkanH_Window* wd)$/;" f typeref:typename:void file:
  1310. FramePresent third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void FramePresent(ImGui_ImplVulkanH_Window* wd)$/;" f typeref:typename:void file:
  1311. FrameRender third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void FrameRender(ImGui_ImplVulkanH_Window* wd)$/;" f typeref:typename:void file:
  1312. FrameRender third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void FrameRender(ImGui_ImplVulkanH_Window* wd)$/;" f typeref:typename:void file:
  1313. FrameRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^ ImGui_ImplVulkanH_FrameRenderBuffers* FrameRenderBuffers;$/;" m struct:ImGui_ImplVulkanH_WindowRenderBuffers typeref:typename:ImGui_ImplVulkanH_FrameRenderBuffers * file:
  1314. FrameResources third_party/imgui/examples/imgui_impl_dx12.cpp /^struct FrameResources$/;" s file:
  1315. FrameRounding third_party/imgui/imgui.h /^ float FrameRounding; \/\/ Radius of frame corners rounding. Set to 0.0f t/;" m struct:ImGuiStyle typeref:typename:float
  1316. FrameScopeActive third_party/imgui/imgui_internal.h /^ bool FrameScopeActive; \/\/ Set by NewFrame(), cleared /;" m struct:ImGuiContext typeref:typename:bool
  1317. FrameScopePushedImplicitWindow third_party/imgui/imgui_internal.h /^ bool FrameScopePushedImplicitWindow; \/\/ Set by NewFrame(), cleared /;" m struct:ImGuiContext typeref:typename:bool
  1318. FrameSemaphores third_party/imgui/examples/imgui_impl_vulkan.h /^ ImGui_ImplVulkanH_FrameSemaphores* FrameSemaphores;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:ImGui_ImplVulkanH_FrameSemaphores *
  1319. Framebuffer third_party/imgui/examples/imgui_impl_vulkan.h /^ VkFramebuffer Framebuffer;$/;" m struct:ImGui_ImplVulkanH_Frame typeref:typename:VkFramebuffer
  1320. FramebufferDescriptor third_party/imgui/examples/imgui_impl_metal.mm /^@implementation FramebufferDescriptor$/;" I
  1321. FramebufferDescriptor third_party/imgui/examples/imgui_impl_metal.mm /^@interface FramebufferDescriptor : NSObject<NSCopying>$/;" i
  1322. FramebufferScale third_party/imgui/imgui.h /^ ImVec2 FramebufferScale; \/\/ Amount of pixels for each unit of DisplaySize. /;" m struct:ImDrawData typeref:typename:ImVec2
  1323. Framerate third_party/imgui/imgui.h /^ float Framerate; \/\/ Application framerate estimation, in frame /;" m struct:ImGuiIO typeref:typename:float
  1324. FramerateSecPerFrame third_party/imgui/imgui_internal.h /^ float FramerateSecPerFrame[120]; \/\/ Calculate estimate of frame/;" m struct:ImGuiContext typeref:typename:float[120]
  1325. FramerateSecPerFrameAccum third_party/imgui/imgui_internal.h /^ float FramerateSecPerFrameAccum;$/;" m struct:ImGuiContext typeref:typename:float
  1326. FramerateSecPerFrameIdx third_party/imgui/imgui_internal.h /^ int FramerateSecPerFrameIdx;$/;" m struct:ImGuiContext typeref:typename:int
  1327. Frames third_party/imgui/examples/imgui_impl_vulkan.h /^ ImGui_ImplVulkanH_Frame* Frames;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:ImGui_ImplVulkanH_Frame *
  1328. FreeIdx third_party/imgui/imgui_internal.h /^ ImPoolIdx FreeIdx; \/\/ Next free idx to use$/;" m struct:ImPool typeref:typename:ImPoolIdx
  1329. FreeTypeFont third_party/imgui/misc/freetype/imgui_freetype.cpp /^ struct FreeTypeFont$/;" s namespace:__anond3bafd850110 file:
  1330. FreeType_Alloc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void* FreeType_Alloc(FT_Memory \/*memory*\/, long size)$/;" f typeref:typename:void * file:
  1331. FreeType_Free third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void FreeType_Free(FT_Memory \/*memory*\/, void* block)$/;" f typeref:typename:void file:
  1332. FreeType_Realloc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void* FreeType_Realloc(FT_Memory \/*memory*\/, long cur_size, long new_size, void* block)$/;" f typeref:typename:void * file:
  1333. FreeWrapper third_party/imgui/imgui.cpp /^static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(/;" f typeref:typename:void file:
  1334. FreeWrapper third_party/imgui/imgui.cpp /^static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); free(ptr);/;" f typeref:typename:void file:
  1335. FuncHolder third_party/imgui/imgui_demo.cpp /^ struct FuncHolder { static bool ItemGetter(void* data, int idx, const char** out_str) { /;" s function:ShowDemoWindowWidgets file:
  1336. Funcs third_party/imgui/imgui.cpp /^ struct Funcs$/;" s function:ImGui::ShowMetricsWindow file:
  1337. Funcs third_party/imgui/imgui_demo.cpp /^ struct Funcs$/;" s function:ShowDemoWindowWidgets file:
  1338. Funcs third_party/imgui/imgui_demo.cpp /^ struct Funcs$/;" s function:ShowDemoWindowWidgets file:
  1339. G third_party/imgui_sdl/imgui_sdl.cpp /^ const float R, G, B, A;$/;" m struct:__anonaaadc0580110::Color typeref:typename:const float file:
  1340. GCrc32LookupTable third_party/imgui/imgui.cpp /^static const ImU32 GCrc32LookupTable[256] =$/;" v typeref:typename:const ImU32[256] file:
  1341. GDataTypeInfo third_party/imgui/imgui_widgets.cpp /^static const ImGuiDataTypeInfo GDataTypeInfo[] =$/;" v typeref:typename:const ImGuiDataTypeInfo[] file:
  1342. GImAllocatorAllocFunc third_party/imgui/imgui.cpp /^static void* (*GImAllocatorAllocFunc)(size_t size, void* user_data) = MallocWrapper;$/;" v typeref:typename:void * (*)(size_t size,void * user_data) file:
  1343. GImAllocatorFreeFunc third_party/imgui/imgui.cpp /^static void (*GImAllocatorFreeFunc)(void* ptr, void* user_data) = FreeWrapper;$/;" v typeref:typename:void (*)(void * ptr,void * user_data) file:
  1344. GImAllocatorUserData third_party/imgui/imgui.cpp /^static void* GImAllocatorUserData = NULL;$/;" v typeref:typename:void * file:
  1345. GImFreeTypeAllocFunc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void* (*GImFreeTypeAllocFunc)(size_t size, void* user_data) = ImFreeTypeDefaultAllocFunc;$/;" v typeref:typename:void * (*)(size_t size,void * user_data) file:
  1346. GImFreeTypeAllocatorUserData third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void* GImFreeTypeAllocatorUserData = NULL;$/;" v typeref:typename:void * file:
  1347. GImFreeTypeFreeFunc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void (*GImFreeTypeFreeFunc)(void* ptr, void* user_data) = ImFreeTypeDefaultFreeFunc;$/;" v typeref:typename:void (*)(void * ptr,void * user_data) file:
  1348. GImGui third_party/imgui/imgui.cpp /^ImGuiContext* GImGui = NULL;$/;" v typeref:typename:ImGuiContext *
  1349. GLAPI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GLAPI /;" d
  1350. GLDEBUGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRY *GLDEBUGPROC)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei/;" t typeref:typename:void (APIENTRY *)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar * message,GLvoid * userParam)
  1351. GLDEBUGPROCAMD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRY *GLDEBUGPROCAMD)(GLuint id,GLenum category,GLenum severity,GLsizei length/;" t typeref:typename:void (APIENTRY *)(GLuint id,GLenum category,GLenum severity,GLsizei length,const GLchar * message,GLvoid * userParam)
  1352. GLDEBUGPROCARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRY *GLDEBUGPROCARB)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsi/;" t typeref:typename:void (APIENTRY *)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar * message,GLvoid * userParam)
  1353. GLEXT_64_TYPES_DEFINED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GLEXT_64_TYPES_DEFINED$/;" d
  1354. GLFWAPI third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define GLFWAPI /;" d
  1355. GLFW_ACCUM_ALPHA_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ACCUM_ALPHA_BITS /;" d
  1356. GLFW_ACCUM_BLUE_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ACCUM_BLUE_BITS /;" d
  1357. GLFW_ACCUM_GREEN_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ACCUM_GREEN_BITS /;" d
  1358. GLFW_ACCUM_RED_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ACCUM_RED_BITS /;" d
  1359. GLFW_ALPHA_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ALPHA_BITS /;" d
  1360. GLFW_ANY_RELEASE_BEHAVIOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ANY_RELEASE_BEHAVIOR /;" d
  1361. GLFW_API_UNAVAILABLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_API_UNAVAILABLE /;" d
  1362. GLFW_ARROW_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ARROW_CURSOR /;" d
  1363. GLFW_AUTO_ICONIFY third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_AUTO_ICONIFY /;" d
  1364. GLFW_AUX_BUFFERS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_AUX_BUFFERS /;" d
  1365. GLFW_BLUE_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_BLUE_BITS /;" d
  1366. GLFW_BUILD_DOCS third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^option(GLFW_BUILD_DOCS "Build the GLFW documentation" OFF)$/;" D
  1367. GLFW_BUILD_EXAMPLES third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^option(GLFW_BUILD_EXAMPLES "Build the GLFW example programs" OFF)$/;" D
  1368. GLFW_BUILD_TESTS third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^option(GLFW_BUILD_TESTS "Build the GLFW test programs" OFF)$/;" D
  1369. GLFW_CALLBACK_DEFINED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define GLFW_CALLBACK_DEFINED$/;" d
  1370. GLFW_CLIENT_API third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CLIENT_API /;" d
  1371. GLFW_CONNECTED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONNECTED /;" d
  1372. GLFW_CONTEXT_NO_ERROR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_NO_ERROR /;" d
  1373. GLFW_CONTEXT_RELEASE_BEHAVIOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_RELEASE_BEHAVIOR /;" d
  1374. GLFW_CONTEXT_REVISION third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_REVISION /;" d
  1375. GLFW_CONTEXT_ROBUSTNESS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_ROBUSTNESS /;" d
  1376. GLFW_CONTEXT_VERSION_MAJOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_VERSION_MAJOR /;" d
  1377. GLFW_CONTEXT_VERSION_MINOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CONTEXT_VERSION_MINOR /;" d
  1378. GLFW_CROSSHAIR_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CROSSHAIR_CURSOR /;" d
  1379. GLFW_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CURSOR /;" d
  1380. GLFW_CURSOR_DISABLED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CURSOR_DISABLED /;" d
  1381. GLFW_CURSOR_HIDDEN third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CURSOR_HIDDEN /;" d
  1382. GLFW_CURSOR_NORMAL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_CURSOR_NORMAL /;" d
  1383. GLFW_DECORATED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_DECORATED /;" d
  1384. GLFW_DEPTH_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_DEPTH_BITS /;" d
  1385. GLFW_DIR third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^set(GLFW_DIR ..\/..\/..\/glfw) # Set this to point to an up-to-date GLFW repo$/;" v
  1386. GLFW_DISCONNECTED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_DISCONNECTED /;" d
  1387. GLFW_DOCUMENT_INTERNALS third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^option(GLFW_DOCUMENT_INTERNALS "Include internals in documentation" OFF)$/;" D
  1388. GLFW_DONT_CARE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_DONT_CARE /;" d
  1389. GLFW_DOUBLEBUFFER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_DOUBLEBUFFER /;" d
  1390. GLFW_EXPOSE_NATIVE_COCOA third_party/imgui/examples/example_glfw_metal/main.mm /^#define GLFW_EXPOSE_NATIVE_COCOA$/;" M
  1391. GLFW_EXPOSE_NATIVE_WIN32 third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_EXPOSE_NATIVE_WIN32$/;" d file:
  1392. GLFW_FALSE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_FALSE /;" d
  1393. GLFW_FLOATING third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_FLOATING /;" d
  1394. GLFW_FOCUSED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_FOCUSED /;" d
  1395. GLFW_FORMAT_UNAVAILABLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_FORMAT_UNAVAILABLE /;" d
  1396. GLFW_GREEN_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_GREEN_BITS /;" d
  1397. GLFW_HAND_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_HAND_CURSOR /;" d
  1398. GLFW_HAS_PER_MONITOR_DPI third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_HAS_PER_MONITOR_DPI /;" d file:
  1399. GLFW_HAS_VULKAN third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_HAS_VULKAN /;" d file:
  1400. GLFW_HAS_WINDOW_ALPHA third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_HAS_WINDOW_ALPHA /;" d file:
  1401. GLFW_HAS_WINDOW_HOVERED third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_HAS_WINDOW_HOVERED /;" d file:
  1402. GLFW_HAS_WINDOW_TOPMOST third_party/imgui/examples/imgui_impl_glfw.cpp /^#define GLFW_HAS_WINDOW_TOPMOST /;" d file:
  1403. GLFW_HRESIZE_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_HRESIZE_CURSOR /;" d
  1404. GLFW_IBEAM_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_IBEAM_CURSOR /;" d
  1405. GLFW_ICONIFIED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_ICONIFIED /;" d
  1406. GLFW_INCLUDE_NONE third_party/imgui/examples/example_glfw_metal/main.mm /^#define GLFW_INCLUDE_NONE$/;" M
  1407. GLFW_INCLUDE_NONE third_party/imgui/examples/example_glfw_vulkan/main.cpp /^#define GLFW_INCLUDE_NONE$/;" d file:
  1408. GLFW_INCLUDE_VULKAN third_party/imgui/examples/example_glfw_vulkan/main.cpp /^#define GLFW_INCLUDE_VULKAN$/;" d file:
  1409. GLFW_INSTALL third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^option(GLFW_INSTALL "Generate installation target" OFF)$/;" D
  1410. GLFW_INVALID_ENUM third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_INVALID_ENUM /;" d
  1411. GLFW_INVALID_VALUE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_INVALID_VALUE /;" d
  1412. GLFW_JOYSTICK_1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_1 /;" d
  1413. GLFW_JOYSTICK_10 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_10 /;" d
  1414. GLFW_JOYSTICK_11 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_11 /;" d
  1415. GLFW_JOYSTICK_12 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_12 /;" d
  1416. GLFW_JOYSTICK_13 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_13 /;" d
  1417. GLFW_JOYSTICK_14 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_14 /;" d
  1418. GLFW_JOYSTICK_15 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_15 /;" d
  1419. GLFW_JOYSTICK_16 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_16 /;" d
  1420. GLFW_JOYSTICK_2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_2 /;" d
  1421. GLFW_JOYSTICK_3 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_3 /;" d
  1422. GLFW_JOYSTICK_4 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_4 /;" d
  1423. GLFW_JOYSTICK_5 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_5 /;" d
  1424. GLFW_JOYSTICK_6 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_6 /;" d
  1425. GLFW_JOYSTICK_7 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_7 /;" d
  1426. GLFW_JOYSTICK_8 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_8 /;" d
  1427. GLFW_JOYSTICK_9 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_9 /;" d
  1428. GLFW_JOYSTICK_LAST third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_JOYSTICK_LAST /;" d
  1429. GLFW_KEY_0 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_0 /;" d
  1430. GLFW_KEY_1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_1 /;" d
  1431. GLFW_KEY_2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_2 /;" d
  1432. GLFW_KEY_3 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_3 /;" d
  1433. GLFW_KEY_4 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_4 /;" d
  1434. GLFW_KEY_5 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_5 /;" d
  1435. GLFW_KEY_6 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_6 /;" d
  1436. GLFW_KEY_7 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_7 /;" d
  1437. GLFW_KEY_8 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_8 /;" d
  1438. GLFW_KEY_9 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_9 /;" d
  1439. GLFW_KEY_A third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_A /;" d
  1440. GLFW_KEY_APOSTROPHE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_APOSTROPHE /;" d
  1441. GLFW_KEY_B third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_B /;" d
  1442. GLFW_KEY_BACKSLASH third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_BACKSLASH /;" d
  1443. GLFW_KEY_BACKSPACE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_BACKSPACE /;" d
  1444. GLFW_KEY_C third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_C /;" d
  1445. GLFW_KEY_CAPS_LOCK third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_CAPS_LOCK /;" d
  1446. GLFW_KEY_COMMA third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_COMMA /;" d
  1447. GLFW_KEY_D third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_D /;" d
  1448. GLFW_KEY_DELETE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_DELETE /;" d
  1449. GLFW_KEY_DOWN third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_DOWN /;" d
  1450. GLFW_KEY_E third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_E /;" d
  1451. GLFW_KEY_END third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_END /;" d
  1452. GLFW_KEY_ENTER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_ENTER /;" d
  1453. GLFW_KEY_EQUAL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_EQUAL /;" d
  1454. GLFW_KEY_ESCAPE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_ESCAPE /;" d
  1455. GLFW_KEY_F third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F /;" d
  1456. GLFW_KEY_F1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F1 /;" d
  1457. GLFW_KEY_F10 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F10 /;" d
  1458. GLFW_KEY_F11 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F11 /;" d
  1459. GLFW_KEY_F12 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F12 /;" d
  1460. GLFW_KEY_F13 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F13 /;" d
  1461. GLFW_KEY_F14 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F14 /;" d
  1462. GLFW_KEY_F15 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F15 /;" d
  1463. GLFW_KEY_F16 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F16 /;" d
  1464. GLFW_KEY_F17 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F17 /;" d
  1465. GLFW_KEY_F18 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F18 /;" d
  1466. GLFW_KEY_F19 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F19 /;" d
  1467. GLFW_KEY_F2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F2 /;" d
  1468. GLFW_KEY_F20 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F20 /;" d
  1469. GLFW_KEY_F21 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F21 /;" d
  1470. GLFW_KEY_F22 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F22 /;" d
  1471. GLFW_KEY_F23 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F23 /;" d
  1472. GLFW_KEY_F24 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F24 /;" d
  1473. GLFW_KEY_F25 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F25 /;" d
  1474. GLFW_KEY_F3 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F3 /;" d
  1475. GLFW_KEY_F4 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F4 /;" d
  1476. GLFW_KEY_F5 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F5 /;" d
  1477. GLFW_KEY_F6 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F6 /;" d
  1478. GLFW_KEY_F7 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F7 /;" d
  1479. GLFW_KEY_F8 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F8 /;" d
  1480. GLFW_KEY_F9 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_F9 /;" d
  1481. GLFW_KEY_G third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_G /;" d
  1482. GLFW_KEY_GRAVE_ACCENT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_GRAVE_ACCENT /;" d
  1483. GLFW_KEY_H third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_H /;" d
  1484. GLFW_KEY_HOME third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_HOME /;" d
  1485. GLFW_KEY_I third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_I /;" d
  1486. GLFW_KEY_INSERT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_INSERT /;" d
  1487. GLFW_KEY_J third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_J /;" d
  1488. GLFW_KEY_K third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_K /;" d
  1489. GLFW_KEY_KP_0 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_0 /;" d
  1490. GLFW_KEY_KP_1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_1 /;" d
  1491. GLFW_KEY_KP_2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_2 /;" d
  1492. GLFW_KEY_KP_3 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_3 /;" d
  1493. GLFW_KEY_KP_4 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_4 /;" d
  1494. GLFW_KEY_KP_5 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_5 /;" d
  1495. GLFW_KEY_KP_6 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_6 /;" d
  1496. GLFW_KEY_KP_7 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_7 /;" d
  1497. GLFW_KEY_KP_8 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_8 /;" d
  1498. GLFW_KEY_KP_9 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_9 /;" d
  1499. GLFW_KEY_KP_ADD third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_ADD /;" d
  1500. GLFW_KEY_KP_DECIMAL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_DECIMAL /;" d
  1501. GLFW_KEY_KP_DIVIDE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_DIVIDE /;" d
  1502. GLFW_KEY_KP_ENTER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_ENTER /;" d
  1503. GLFW_KEY_KP_EQUAL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_EQUAL /;" d
  1504. GLFW_KEY_KP_MULTIPLY third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_MULTIPLY /;" d
  1505. GLFW_KEY_KP_SUBTRACT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_KP_SUBTRACT /;" d
  1506. GLFW_KEY_L third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_L /;" d
  1507. GLFW_KEY_LAST third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LAST /;" d
  1508. GLFW_KEY_LEFT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT /;" d
  1509. GLFW_KEY_LEFT_ALT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT_ALT /;" d
  1510. GLFW_KEY_LEFT_BRACKET third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT_BRACKET /;" d
  1511. GLFW_KEY_LEFT_CONTROL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT_CONTROL /;" d
  1512. GLFW_KEY_LEFT_SHIFT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT_SHIFT /;" d
  1513. GLFW_KEY_LEFT_SUPER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_LEFT_SUPER /;" d
  1514. GLFW_KEY_M third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_M /;" d
  1515. GLFW_KEY_MENU third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_MENU /;" d
  1516. GLFW_KEY_MINUS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_MINUS /;" d
  1517. GLFW_KEY_N third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_N /;" d
  1518. GLFW_KEY_NUM_LOCK third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_NUM_LOCK /;" d
  1519. GLFW_KEY_O third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_O /;" d
  1520. GLFW_KEY_P third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_P /;" d
  1521. GLFW_KEY_PAGE_DOWN third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_PAGE_DOWN /;" d
  1522. GLFW_KEY_PAGE_UP third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_PAGE_UP /;" d
  1523. GLFW_KEY_PAUSE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_PAUSE /;" d
  1524. GLFW_KEY_PERIOD third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_PERIOD /;" d
  1525. GLFW_KEY_PRINT_SCREEN third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_PRINT_SCREEN /;" d
  1526. GLFW_KEY_Q third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_Q /;" d
  1527. GLFW_KEY_R third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_R /;" d
  1528. GLFW_KEY_RIGHT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT /;" d
  1529. GLFW_KEY_RIGHT_ALT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT_ALT /;" d
  1530. GLFW_KEY_RIGHT_BRACKET third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT_BRACKET /;" d
  1531. GLFW_KEY_RIGHT_CONTROL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT_CONTROL /;" d
  1532. GLFW_KEY_RIGHT_SHIFT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT_SHIFT /;" d
  1533. GLFW_KEY_RIGHT_SUPER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_RIGHT_SUPER /;" d
  1534. GLFW_KEY_S third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_S /;" d
  1535. GLFW_KEY_SCROLL_LOCK third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_SCROLL_LOCK /;" d
  1536. GLFW_KEY_SEMICOLON third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_SEMICOLON /;" d
  1537. GLFW_KEY_SLASH third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_SLASH /;" d
  1538. GLFW_KEY_SPACE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_SPACE /;" d
  1539. GLFW_KEY_T third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_T /;" d
  1540. GLFW_KEY_TAB third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_TAB /;" d
  1541. GLFW_KEY_U third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_U /;" d
  1542. GLFW_KEY_UNKNOWN third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_UNKNOWN /;" d
  1543. GLFW_KEY_UP third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_UP /;" d
  1544. GLFW_KEY_V third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_V /;" d
  1545. GLFW_KEY_W third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_W /;" d
  1546. GLFW_KEY_WORLD_1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_WORLD_1 /;" d
  1547. GLFW_KEY_WORLD_2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_WORLD_2 /;" d
  1548. GLFW_KEY_X third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_X /;" d
  1549. GLFW_KEY_Y third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_Y /;" d
  1550. GLFW_KEY_Z third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_KEY_Z /;" d
  1551. GLFW_LOSE_CONTEXT_ON_RESET third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_LOSE_CONTEXT_ON_RESET /;" d
  1552. GLFW_MAXIMIZED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MAXIMIZED /;" d
  1553. GLFW_MOD_ALT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOD_ALT /;" d
  1554. GLFW_MOD_CONTROL third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOD_CONTROL /;" d
  1555. GLFW_MOD_SHIFT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOD_SHIFT /;" d
  1556. GLFW_MOD_SUPER third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOD_SUPER /;" d
  1557. GLFW_MOUSE_BUTTON_1 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_1 /;" d
  1558. GLFW_MOUSE_BUTTON_2 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_2 /;" d
  1559. GLFW_MOUSE_BUTTON_3 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_3 /;" d
  1560. GLFW_MOUSE_BUTTON_4 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_4 /;" d
  1561. GLFW_MOUSE_BUTTON_5 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_5 /;" d
  1562. GLFW_MOUSE_BUTTON_6 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_6 /;" d
  1563. GLFW_MOUSE_BUTTON_7 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_7 /;" d
  1564. GLFW_MOUSE_BUTTON_8 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_8 /;" d
  1565. GLFW_MOUSE_BUTTON_LAST third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_LAST /;" d
  1566. GLFW_MOUSE_BUTTON_LEFT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_LEFT /;" d
  1567. GLFW_MOUSE_BUTTON_MIDDLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_MIDDLE /;" d
  1568. GLFW_MOUSE_BUTTON_RIGHT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_MOUSE_BUTTON_RIGHT /;" d
  1569. GLFW_NOT_INITIALIZED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NOT_INITIALIZED /;" d
  1570. GLFW_NO_API third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NO_API /;" d
  1571. GLFW_NO_CURRENT_CONTEXT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NO_CURRENT_CONTEXT /;" d
  1572. GLFW_NO_RESET_NOTIFICATION third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NO_RESET_NOTIFICATION /;" d
  1573. GLFW_NO_ROBUSTNESS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NO_ROBUSTNESS /;" d
  1574. GLFW_NO_WINDOW_CONTEXT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_NO_WINDOW_CONTEXT /;" d
  1575. GLFW_OPENGL_ANY_PROFILE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_ANY_PROFILE /;" d
  1576. GLFW_OPENGL_API third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_API /;" d
  1577. GLFW_OPENGL_COMPAT_PROFILE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_COMPAT_PROFILE /;" d
  1578. GLFW_OPENGL_CORE_PROFILE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_CORE_PROFILE /;" d
  1579. GLFW_OPENGL_DEBUG_CONTEXT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_DEBUG_CONTEXT /;" d
  1580. GLFW_OPENGL_ES_API third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_ES_API /;" d
  1581. GLFW_OPENGL_FORWARD_COMPAT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_FORWARD_COMPAT /;" d
  1582. GLFW_OPENGL_PROFILE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OPENGL_PROFILE /;" d
  1583. GLFW_OUT_OF_MEMORY third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_OUT_OF_MEMORY /;" d
  1584. GLFW_PLATFORM_ERROR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_PLATFORM_ERROR /;" d
  1585. GLFW_PRESS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_PRESS /;" d
  1586. GLFW_RED_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_RED_BITS /;" d
  1587. GLFW_REFRESH_RATE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_REFRESH_RATE /;" d
  1588. GLFW_RELEASE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_RELEASE /;" d
  1589. GLFW_RELEASE_BEHAVIOR_FLUSH third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_RELEASE_BEHAVIOR_FLUSH /;" d
  1590. GLFW_RELEASE_BEHAVIOR_NONE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_RELEASE_BEHAVIOR_NONE /;" d
  1591. GLFW_REPEAT third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_REPEAT /;" d
  1592. GLFW_RESIZABLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_RESIZABLE /;" d
  1593. GLFW_SAMPLES third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_SAMPLES /;" d
  1594. GLFW_SRGB_CAPABLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_SRGB_CAPABLE /;" d
  1595. GLFW_STENCIL_BITS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_STENCIL_BITS /;" d
  1596. GLFW_STEREO third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_STEREO /;" d
  1597. GLFW_STICKY_KEYS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_STICKY_KEYS /;" d
  1598. GLFW_STICKY_MOUSE_BUTTONS third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_STICKY_MOUSE_BUTTONS /;" d
  1599. GLFW_TRUE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_TRUE /;" d
  1600. GLFW_VERSION_MAJOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VERSION_MAJOR /;" d
  1601. GLFW_VERSION_MINOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VERSION_MINOR /;" d
  1602. GLFW_VERSION_REVISION third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VERSION_REVISION /;" d
  1603. GLFW_VERSION_UNAVAILABLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VERSION_UNAVAILABLE /;" d
  1604. GLFW_VISIBLE third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VISIBLE /;" d
  1605. GLFW_VRESIZE_CURSOR third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define GLFW_VRESIZE_CURSOR /;" d
  1606. GLFW_WINGDIAPI_DEFINED third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define GLFW_WINGDIAPI_DEFINED$/;" d
  1607. GLFWcharfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWcharfun)(GLFWwindow*,unsigned int);$/;" t typeref:typename:void (*)(GLFWwindow *,unsigned int)
  1608. GLFWcharmodsfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWcharmodsfun)(GLFWwindow*,unsigned int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,unsigned int,int)
  1609. GLFWcursor third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWcursor GLFWcursor;$/;" t typeref:struct:GLFWcursor
  1610. GLFWcursorenterfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWcursorenterfun)(GLFWwindow*,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int)
  1611. GLFWcursorposfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWcursorposfun)(GLFWwindow*,double,double);$/;" t typeref:typename:void (*)(GLFWwindow *,double,double)
  1612. GLFWdropfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWdropfun)(GLFWwindow*,int,const char**);$/;" t typeref:typename:void (*)(GLFWwindow *,int,const char **)
  1613. GLFWerrorfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWerrorfun)(int,const char*);$/;" t typeref:typename:void (*)(int,const char *)
  1614. GLFWframebuffersizefun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWframebuffersizefun)(GLFWwindow*,int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int,int)
  1615. GLFWgammaramp third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWgammaramp$/;" s
  1616. GLFWgammaramp third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^} GLFWgammaramp;$/;" t typeref:struct:GLFWgammaramp
  1617. GLFWglproc third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (*GLFWglproc)(void);$/;" t typeref:typename:void (*)(void)
  1618. GLFWimage third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWimage$/;" s
  1619. GLFWimage third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^} GLFWimage;$/;" t typeref:struct:GLFWimage
  1620. GLFWjoystickfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWjoystickfun)(int,int);$/;" t typeref:typename:void (*)(int,int)
  1621. GLFWkeyfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWkeyfun)(GLFWwindow*,int,int,int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int,int,int,int)
  1622. GLFWmonitor third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWmonitor GLFWmonitor;$/;" t typeref:struct:GLFWmonitor
  1623. GLFWmonitorfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWmonitorfun)(GLFWmonitor*,int);$/;" t typeref:typename:void (*)(GLFWmonitor *,int)
  1624. GLFWmousebuttonfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWmousebuttonfun)(GLFWwindow*,int,int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int,int,int)
  1625. GLFWscrollfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWscrollfun)(GLFWwindow*,double,double);$/;" t typeref:typename:void (*)(GLFWwindow *,double,double)
  1626. GLFWvidmode third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWvidmode$/;" s
  1627. GLFWvidmode third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^} GLFWvidmode;$/;" t typeref:struct:GLFWvidmode
  1628. GLFWvkproc third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (*GLFWvkproc)(void);$/;" t typeref:typename:void (*)(void)
  1629. GLFWwindow third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef struct GLFWwindow GLFWwindow;$/;" t typeref:struct:GLFWwindow
  1630. GLFWwindowclosefun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowclosefun)(GLFWwindow*);$/;" t typeref:typename:void (*)(GLFWwindow *)
  1631. GLFWwindowfocusfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowfocusfun)(GLFWwindow*,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int)
  1632. GLFWwindowiconifyfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowiconifyfun)(GLFWwindow*,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int)
  1633. GLFWwindowposfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowposfun)(GLFWwindow*,int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int,int)
  1634. GLFWwindowrefreshfun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowrefreshfun)(GLFWwindow*);$/;" t typeref:typename:void (*)(GLFWwindow *)
  1635. GLFWwindowsizefun third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^typedef void (* GLFWwindowsizefun)(GLFWwindow*,int,int);$/;" t typeref:typename:void (*)(GLFWwindow *,int,int)
  1636. GL_ACTIVE_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_ATOMIC_COUNTER_BUFFERS /;" d
  1637. GL_ACTIVE_ATTRIBUTES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_ATTRIBUTES /;" d
  1638. GL_ACTIVE_ATTRIBUTE_MAX_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_ATTRIBUTE_MAX_LENGTH /;" d
  1639. GL_ACTIVE_PROGRAM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_PROGRAM /;" d
  1640. GL_ACTIVE_RESOURCES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_RESOURCES /;" d
  1641. GL_ACTIVE_SUBROUTINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_SUBROUTINES /;" d
  1642. GL_ACTIVE_SUBROUTINE_MAX_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_SUBROUTINE_MAX_LENGTH /;" d
  1643. GL_ACTIVE_SUBROUTINE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_SUBROUTINE_UNIFORMS /;" d
  1644. GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS /;" d
  1645. GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH /;" d
  1646. GL_ACTIVE_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_TEXTURE /;" d
  1647. GL_ACTIVE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_UNIFORMS /;" d
  1648. GL_ACTIVE_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_UNIFORM_BLOCKS /;" d
  1649. GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH /;" d
  1650. GL_ACTIVE_UNIFORM_MAX_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_UNIFORM_MAX_LENGTH /;" d
  1651. GL_ACTIVE_VARIABLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ACTIVE_VARIABLES /;" d
  1652. GL_ALIASED_LINE_WIDTH_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALIASED_LINE_WIDTH_RANGE /;" d
  1653. GL_ALL_BARRIER_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALL_BARRIER_BITS /;" d
  1654. GL_ALL_SHADER_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALL_SHADER_BITS /;" d
  1655. GL_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALPHA /;" d
  1656. GL_ALREADY_SIGNALED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALREADY_SIGNALED /;" d
  1657. GL_ALWAYS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ALWAYS /;" d
  1658. GL_AND third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_AND /;" d
  1659. GL_AND_INVERTED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_AND_INVERTED /;" d
  1660. GL_AND_REVERSE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_AND_REVERSE /;" d
  1661. GL_ANY_SAMPLES_PASSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ANY_SAMPLES_PASSED /;" d
  1662. GL_ANY_SAMPLES_PASSED_CONSERVATIVE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ANY_SAMPLES_PASSED_CONSERVATIVE /;" d
  1663. GL_ARB_ES2_compatibility third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_ES2_compatibility /;" d
  1664. GL_ARB_ES3_compatibility third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_ES3_compatibility /;" d
  1665. GL_ARB_arrays_of_arrays third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_arrays_of_arrays /;" d
  1666. GL_ARB_base_instance third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_base_instance /;" d
  1667. GL_ARB_blend_func_extended third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_blend_func_extended /;" d
  1668. GL_ARB_cl_event third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_cl_event /;" d
  1669. GL_ARB_clear_buffer_object third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_clear_buffer_object /;" d
  1670. GL_ARB_compressed_texture_pixel_storage third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_compressed_texture_pixel_storage /;" d
  1671. GL_ARB_compute_shader third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_compute_shader /;" d
  1672. GL_ARB_conservative_depth third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_conservative_depth /;" d
  1673. GL_ARB_copy_buffer third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_copy_buffer /;" d
  1674. GL_ARB_copy_image third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_copy_image /;" d
  1675. GL_ARB_debug_output third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_debug_output /;" d
  1676. GL_ARB_depth_buffer_float third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_depth_buffer_float /;" d
  1677. GL_ARB_depth_clamp third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_depth_clamp /;" d
  1678. GL_ARB_draw_buffers_blend third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_draw_buffers_blend /;" d
  1679. GL_ARB_draw_elements_base_vertex third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_draw_elements_base_vertex /;" d
  1680. GL_ARB_draw_indirect third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_draw_indirect /;" d
  1681. GL_ARB_explicit_attrib_location third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_explicit_attrib_location /;" d
  1682. GL_ARB_explicit_uniform_location third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_explicit_uniform_location /;" d
  1683. GL_ARB_fragment_coord_conventions third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_fragment_coord_conventions /;" d
  1684. GL_ARB_fragment_layer_viewport third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_fragment_layer_viewport /;" d
  1685. GL_ARB_framebuffer_no_attachments third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_framebuffer_no_attachments /;" d
  1686. GL_ARB_framebuffer_object third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_framebuffer_object /;" d
  1687. GL_ARB_framebuffer_sRGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_framebuffer_sRGB /;" d
  1688. GL_ARB_get_program_binary third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_get_program_binary /;" d
  1689. GL_ARB_gpu_shader5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_gpu_shader5 /;" d
  1690. GL_ARB_gpu_shader_fp64 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_gpu_shader_fp64 /;" d
  1691. GL_ARB_half_float_vertex third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_half_float_vertex /;" d
  1692. GL_ARB_internalformat_query third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_internalformat_query /;" d
  1693. GL_ARB_internalformat_query2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_internalformat_query2 /;" d
  1694. GL_ARB_invalidate_subdata third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_invalidate_subdata /;" d
  1695. GL_ARB_map_buffer_alignment third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_map_buffer_alignment /;" d
  1696. GL_ARB_map_buffer_range third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_map_buffer_range /;" d
  1697. GL_ARB_multi_draw_indirect third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_multi_draw_indirect /;" d
  1698. GL_ARB_occlusion_query2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_occlusion_query2 /;" d
  1699. GL_ARB_program_interface_query third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_program_interface_query /;" d
  1700. GL_ARB_provoking_vertex third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_provoking_vertex /;" d
  1701. GL_ARB_robust_buffer_access_behavior third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_robust_buffer_access_behavior /;" d
  1702. GL_ARB_robustness third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_robustness /;" d
  1703. GL_ARB_robustness_isolation third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_robustness_isolation /;" d
  1704. GL_ARB_sample_shading third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_sample_shading /;" d
  1705. GL_ARB_sampler_objects third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_sampler_objects /;" d
  1706. GL_ARB_seamless_cube_map third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_seamless_cube_map /;" d
  1707. GL_ARB_separate_shader_objects third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_separate_shader_objects /;" d
  1708. GL_ARB_shader_atomic_counters third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_atomic_counters /;" d
  1709. GL_ARB_shader_bit_encoding third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_bit_encoding /;" d
  1710. GL_ARB_shader_image_load_store third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_image_load_store /;" d
  1711. GL_ARB_shader_image_size third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_image_size /;" d
  1712. GL_ARB_shader_stencil_export third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_stencil_export /;" d
  1713. GL_ARB_shader_storage_buffer_object third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_storage_buffer_object /;" d
  1714. GL_ARB_shader_subroutine third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shader_subroutine /;" d
  1715. GL_ARB_shading_language_420pack third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shading_language_420pack /;" d
  1716. GL_ARB_shading_language_include third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shading_language_include /;" d
  1717. GL_ARB_shading_language_packing third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_shading_language_packing /;" d
  1718. GL_ARB_stencil_texturing third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_stencil_texturing /;" d
  1719. GL_ARB_sync third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_sync /;" d
  1720. GL_ARB_tessellation_shader third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_tessellation_shader /;" d
  1721. GL_ARB_texture_buffer_object_rgb32 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_buffer_object_rgb32 /;" d
  1722. GL_ARB_texture_buffer_range third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_buffer_range /;" d
  1723. GL_ARB_texture_compression_bptc third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_compression_bptc /;" d
  1724. GL_ARB_texture_compression_rgtc third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_compression_rgtc /;" d
  1725. GL_ARB_texture_cube_map_array third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_cube_map_array /;" d
  1726. GL_ARB_texture_gather third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_gather /;" d
  1727. GL_ARB_texture_multisample third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_multisample /;" d
  1728. GL_ARB_texture_query_levels third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_query_levels /;" d
  1729. GL_ARB_texture_query_lod third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_query_lod /;" d
  1730. GL_ARB_texture_rg third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_rg /;" d
  1731. GL_ARB_texture_rgb10_a2ui third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_rgb10_a2ui /;" d
  1732. GL_ARB_texture_storage third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_storage /;" d
  1733. GL_ARB_texture_storage_multisample third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_storage_multisample /;" d
  1734. GL_ARB_texture_swizzle third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_swizzle /;" d
  1735. GL_ARB_texture_view third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_texture_view /;" d
  1736. GL_ARB_timer_query third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_timer_query /;" d
  1737. GL_ARB_transform_feedback2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_transform_feedback2 /;" d
  1738. GL_ARB_transform_feedback3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_transform_feedback3 /;" d
  1739. GL_ARB_transform_feedback_instanced third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_transform_feedback_instanced /;" d
  1740. GL_ARB_uniform_buffer_object third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_uniform_buffer_object /;" d
  1741. GL_ARB_vertex_array_bgra third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_vertex_array_bgra /;" d
  1742. GL_ARB_vertex_array_object third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_vertex_array_object /;" d
  1743. GL_ARB_vertex_attrib_64bit third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_vertex_attrib_64bit /;" d
  1744. GL_ARB_vertex_attrib_binding third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_vertex_attrib_binding /;" d
  1745. GL_ARB_vertex_type_2_10_10_10_rev third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_vertex_type_2_10_10_10_rev /;" d
  1746. GL_ARB_viewport_array third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARB_viewport_array /;" d
  1747. GL_ARRAY_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARRAY_BUFFER /;" d
  1748. GL_ARRAY_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARRAY_BUFFER_BINDING /;" d
  1749. GL_ARRAY_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARRAY_SIZE /;" d
  1750. GL_ARRAY_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ARRAY_STRIDE /;" d
  1751. GL_ATOMIC_COUNTER_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BARRIER_BIT /;" d
  1752. GL_ATOMIC_COUNTER_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER /;" d
  1753. GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS /;" d
  1754. GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES /;" d
  1755. GL_ATOMIC_COUNTER_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_BINDING /;" d
  1756. GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE /;" d
  1757. GL_ATOMIC_COUNTER_BUFFER_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_INDEX /;" d
  1758. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER /;" d
  1759. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER /;" d
  1760. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER /;" d
  1761. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER /;" d
  1762. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER /;" d
  1763. GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER /;" d
  1764. GL_ATOMIC_COUNTER_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_SIZE /;" d
  1765. GL_ATOMIC_COUNTER_BUFFER_START third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATOMIC_COUNTER_BUFFER_START /;" d
  1766. GL_ATTACHED_SHADERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ATTACHED_SHADERS /;" d
  1767. GL_AUTO_GENERATE_MIPMAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_AUTO_GENERATE_MIPMAP /;" d
  1768. GL_BACK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BACK /;" d
  1769. GL_BACK_LEFT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BACK_LEFT /;" d
  1770. GL_BACK_RIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BACK_RIGHT /;" d
  1771. GL_BGR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BGR /;" d
  1772. GL_BGRA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BGRA /;" d
  1773. GL_BGRA_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BGRA_INTEGER /;" d
  1774. GL_BGR_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BGR_INTEGER /;" d
  1775. GL_BLEND third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND /;" d
  1776. GL_BLEND_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_COLOR /;" d
  1777. GL_BLEND_DST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_DST /;" d
  1778. GL_BLEND_DST_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_DST_ALPHA /;" d
  1779. GL_BLEND_DST_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_DST_RGB /;" d
  1780. GL_BLEND_EQUATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_EQUATION /;" d
  1781. GL_BLEND_EQUATION_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_EQUATION_ALPHA /;" d
  1782. GL_BLEND_EQUATION_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_EQUATION_RGB /;" d
  1783. GL_BLEND_SRC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_SRC /;" d
  1784. GL_BLEND_SRC_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_SRC_ALPHA /;" d
  1785. GL_BLEND_SRC_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLEND_SRC_RGB /;" d
  1786. GL_BLOCK_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLOCK_INDEX /;" d
  1787. GL_BLUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLUE /;" d
  1788. GL_BLUE_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BLUE_INTEGER /;" d
  1789. GL_BOOL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BOOL /;" d
  1790. GL_BOOL_VEC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BOOL_VEC2 /;" d
  1791. GL_BOOL_VEC3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BOOL_VEC3 /;" d
  1792. GL_BOOL_VEC4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BOOL_VEC4 /;" d
  1793. GL_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER /;" d
  1794. GL_BUFFER_ACCESS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_ACCESS /;" d
  1795. GL_BUFFER_ACCESS_FLAGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_ACCESS_FLAGS /;" d
  1796. GL_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_BINDING /;" d
  1797. GL_BUFFER_DATA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_DATA_SIZE /;" d
  1798. GL_BUFFER_MAPPED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_MAPPED /;" d
  1799. GL_BUFFER_MAP_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_MAP_LENGTH /;" d
  1800. GL_BUFFER_MAP_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_MAP_OFFSET /;" d
  1801. GL_BUFFER_MAP_POINTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_MAP_POINTER /;" d
  1802. GL_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_SIZE /;" d
  1803. GL_BUFFER_UPDATE_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_UPDATE_BARRIER_BIT /;" d
  1804. GL_BUFFER_USAGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_USAGE /;" d
  1805. GL_BUFFER_VARIABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BUFFER_VARIABLE /;" d
  1806. GL_BYTE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_BYTE /;" d
  1807. GL_CAVEAT_SUPPORT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CAVEAT_SUPPORT /;" d
  1808. GL_CCW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CCW /;" d
  1809. GL_CLAMP_READ_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLAMP_READ_COLOR /;" d
  1810. GL_CLAMP_TO_BORDER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLAMP_TO_BORDER /;" d
  1811. GL_CLAMP_TO_EDGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLAMP_TO_EDGE /;" d
  1812. GL_CLEAR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLEAR /;" d
  1813. GL_CLEAR_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLEAR_BUFFER /;" d
  1814. GL_CLIP_DISTANCE0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE0 /;" d
  1815. GL_CLIP_DISTANCE1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE1 /;" d
  1816. GL_CLIP_DISTANCE2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE2 /;" d
  1817. GL_CLIP_DISTANCE3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE3 /;" d
  1818. GL_CLIP_DISTANCE4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE4 /;" d
  1819. GL_CLIP_DISTANCE5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE5 /;" d
  1820. GL_CLIP_DISTANCE6 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE6 /;" d
  1821. GL_CLIP_DISTANCE7 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CLIP_DISTANCE7 /;" d
  1822. GL_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR /;" d
  1823. GL_COLOR_ATTACHMENT0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT0 /;" d
  1824. GL_COLOR_ATTACHMENT1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT1 /;" d
  1825. GL_COLOR_ATTACHMENT10 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT10 /;" d
  1826. GL_COLOR_ATTACHMENT11 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT11 /;" d
  1827. GL_COLOR_ATTACHMENT12 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT12 /;" d
  1828. GL_COLOR_ATTACHMENT13 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT13 /;" d
  1829. GL_COLOR_ATTACHMENT14 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT14 /;" d
  1830. GL_COLOR_ATTACHMENT15 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT15 /;" d
  1831. GL_COLOR_ATTACHMENT2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT2 /;" d
  1832. GL_COLOR_ATTACHMENT3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT3 /;" d
  1833. GL_COLOR_ATTACHMENT4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT4 /;" d
  1834. GL_COLOR_ATTACHMENT5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT5 /;" d
  1835. GL_COLOR_ATTACHMENT6 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT6 /;" d
  1836. GL_COLOR_ATTACHMENT7 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT7 /;" d
  1837. GL_COLOR_ATTACHMENT8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT8 /;" d
  1838. GL_COLOR_ATTACHMENT9 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ATTACHMENT9 /;" d
  1839. GL_COLOR_BUFFER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_BUFFER_BIT /;" d
  1840. GL_COLOR_CLEAR_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_CLEAR_VALUE /;" d
  1841. GL_COLOR_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_COMPONENTS /;" d
  1842. GL_COLOR_ENCODING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_ENCODING /;" d
  1843. GL_COLOR_LOGIC_OP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_LOGIC_OP /;" d
  1844. GL_COLOR_RENDERABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_RENDERABLE /;" d
  1845. GL_COLOR_WRITEMASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COLOR_WRITEMASK /;" d
  1846. GL_COMMAND_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMMAND_BARRIER_BIT /;" d
  1847. GL_COMPARE_REF_TO_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPARE_REF_TO_TEXTURE /;" d
  1848. GL_COMPATIBLE_SUBROUTINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPATIBLE_SUBROUTINES /;" d
  1849. GL_COMPILE_STATUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPILE_STATUS /;" d
  1850. GL_COMPRESSED_R11_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_R11_EAC /;" d
  1851. GL_COMPRESSED_RED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RED /;" d
  1852. GL_COMPRESSED_RED_RGTC1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RED_RGTC1 /;" d
  1853. GL_COMPRESSED_RG third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RG /;" d
  1854. GL_COMPRESSED_RG11_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RG11_EAC /;" d
  1855. GL_COMPRESSED_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGB /;" d
  1856. GL_COMPRESSED_RGB8_ETC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGB8_ETC2 /;" d
  1857. GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2 /;" d
  1858. GL_COMPRESSED_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA /;" d
  1859. GL_COMPRESSED_RGBA8_ETC2_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA8_ETC2_EAC /;" d
  1860. GL_COMPRESSED_RGBA_ASTC_10x10_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_10x10_KHR /;" d
  1861. GL_COMPRESSED_RGBA_ASTC_10x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_10x5_KHR /;" d
  1862. GL_COMPRESSED_RGBA_ASTC_10x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_10x6_KHR /;" d
  1863. GL_COMPRESSED_RGBA_ASTC_10x8_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_10x8_KHR /;" d
  1864. GL_COMPRESSED_RGBA_ASTC_12x10_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_12x10_KHR /;" d
  1865. GL_COMPRESSED_RGBA_ASTC_12x12_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_12x12_KHR /;" d
  1866. GL_COMPRESSED_RGBA_ASTC_4x4_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_4x4_KHR /;" d
  1867. GL_COMPRESSED_RGBA_ASTC_5x4_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_5x4_KHR /;" d
  1868. GL_COMPRESSED_RGBA_ASTC_5x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_5x5_KHR /;" d
  1869. GL_COMPRESSED_RGBA_ASTC_6x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_6x5_KHR /;" d
  1870. GL_COMPRESSED_RGBA_ASTC_6x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_6x6_KHR /;" d
  1871. GL_COMPRESSED_RGBA_ASTC_8x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_8x5_KHR /;" d
  1872. GL_COMPRESSED_RGBA_ASTC_8x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_8x6_KHR /;" d
  1873. GL_COMPRESSED_RGBA_ASTC_8x8_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_ASTC_8x8_KHR /;" d
  1874. GL_COMPRESSED_RGBA_BPTC_UNORM_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGBA_BPTC_UNORM_ARB /;" d
  1875. GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB /;" d
  1876. GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB /;" d
  1877. GL_COMPRESSED_RG_RGTC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_RG_RGTC2 /;" d
  1878. GL_COMPRESSED_SIGNED_R11_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SIGNED_R11_EAC /;" d
  1879. GL_COMPRESSED_SIGNED_RED_RGTC1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SIGNED_RED_RGTC1 /;" d
  1880. GL_COMPRESSED_SIGNED_RG11_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SIGNED_RG11_EAC /;" d
  1881. GL_COMPRESSED_SIGNED_RG_RGTC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SIGNED_RG_RGTC2 /;" d
  1882. GL_COMPRESSED_SRGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB /;" d
  1883. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR /;" d
  1884. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR /;" d
  1885. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR /;" d
  1886. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR /;" d
  1887. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR /;" d
  1888. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR /;" d
  1889. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR /;" d
  1890. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR /;" d
  1891. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR /;" d
  1892. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR /;" d
  1893. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR /;" d
  1894. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR /;" d
  1895. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR /;" d
  1896. GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR /;" d
  1897. GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC /;" d
  1898. GL_COMPRESSED_SRGB8_ETC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_ETC2 /;" d
  1899. GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 /;" d
  1900. GL_COMPRESSED_SRGB_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB_ALPHA /;" d
  1901. GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB /;" d
  1902. GL_COMPRESSED_TEXTURE_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPRESSED_TEXTURE_FORMATS /;" d
  1903. GL_COMPUTE_LOCAL_WORK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_LOCAL_WORK_SIZE /;" d
  1904. GL_COMPUTE_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_SHADER /;" d
  1905. GL_COMPUTE_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_SHADER_BIT /;" d
  1906. GL_COMPUTE_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_SUBROUTINE /;" d
  1907. GL_COMPUTE_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_SUBROUTINE_UNIFORM /;" d
  1908. GL_COMPUTE_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COMPUTE_TEXTURE /;" d
  1909. GL_CONDITION_SATISFIED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONDITION_SATISFIED /;" d
  1910. GL_CONSTANT_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONSTANT_ALPHA /;" d
  1911. GL_CONSTANT_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONSTANT_COLOR /;" d
  1912. GL_CONTEXT_COMPATIBILITY_PROFILE_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_COMPATIBILITY_PROFILE_BIT /;" d
  1913. GL_CONTEXT_CORE_PROFILE_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_CORE_PROFILE_BIT /;" d
  1914. GL_CONTEXT_FLAGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_FLAGS /;" d
  1915. GL_CONTEXT_FLAG_DEBUG_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_FLAG_DEBUG_BIT /;" d
  1916. GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT /;" d
  1917. GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB /;" d
  1918. GL_CONTEXT_PROFILE_MASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CONTEXT_PROFILE_MASK /;" d
  1919. GL_COPY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY /;" d
  1920. GL_COPY_INVERTED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY_INVERTED /;" d
  1921. GL_COPY_READ_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY_READ_BUFFER /;" d
  1922. GL_COPY_READ_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY_READ_BUFFER_BINDING /;" d
  1923. GL_COPY_WRITE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY_WRITE_BUFFER /;" d
  1924. GL_COPY_WRITE_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_COPY_WRITE_BUFFER_BINDING /;" d
  1925. GL_CULL_FACE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CULL_FACE /;" d
  1926. GL_CULL_FACE_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CULL_FACE_MODE /;" d
  1927. GL_CURRENT_PROGRAM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CURRENT_PROGRAM /;" d
  1928. GL_CURRENT_QUERY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CURRENT_QUERY /;" d
  1929. GL_CURRENT_VERTEX_ATTRIB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CURRENT_VERTEX_ATTRIB /;" d
  1930. GL_CW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_CW /;" d
  1931. GL_DEBUG_CALLBACK_FUNCTION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_CALLBACK_FUNCTION /;" d
  1932. GL_DEBUG_CALLBACK_FUNCTION_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_CALLBACK_FUNCTION_ARB /;" d
  1933. GL_DEBUG_CALLBACK_USER_PARAM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_CALLBACK_USER_PARAM /;" d
  1934. GL_DEBUG_CALLBACK_USER_PARAM_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_CALLBACK_USER_PARAM_ARB /;" d
  1935. GL_DEBUG_GROUP_STACK_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_GROUP_STACK_DEPTH /;" d
  1936. GL_DEBUG_LOGGED_MESSAGES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_LOGGED_MESSAGES /;" d
  1937. GL_DEBUG_LOGGED_MESSAGES_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_LOGGED_MESSAGES_ARB /;" d
  1938. GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH /;" d
  1939. GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB /;" d
  1940. GL_DEBUG_OUTPUT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_OUTPUT /;" d
  1941. GL_DEBUG_OUTPUT_SYNCHRONOUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_OUTPUT_SYNCHRONOUS /;" d
  1942. GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB /;" d
  1943. GL_DEBUG_SEVERITY_HIGH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_HIGH /;" d
  1944. GL_DEBUG_SEVERITY_HIGH_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_HIGH_ARB /;" d
  1945. GL_DEBUG_SEVERITY_LOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_LOW /;" d
  1946. GL_DEBUG_SEVERITY_LOW_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_LOW_ARB /;" d
  1947. GL_DEBUG_SEVERITY_MEDIUM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_MEDIUM /;" d
  1948. GL_DEBUG_SEVERITY_MEDIUM_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_MEDIUM_ARB /;" d
  1949. GL_DEBUG_SEVERITY_NOTIFICATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SEVERITY_NOTIFICATION /;" d
  1950. GL_DEBUG_SOURCE_API third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_API /;" d
  1951. GL_DEBUG_SOURCE_API_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_API_ARB /;" d
  1952. GL_DEBUG_SOURCE_APPLICATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_APPLICATION /;" d
  1953. GL_DEBUG_SOURCE_APPLICATION_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_APPLICATION_ARB /;" d
  1954. GL_DEBUG_SOURCE_OTHER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_OTHER /;" d
  1955. GL_DEBUG_SOURCE_OTHER_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_OTHER_ARB /;" d
  1956. GL_DEBUG_SOURCE_SHADER_COMPILER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_SHADER_COMPILER /;" d
  1957. GL_DEBUG_SOURCE_SHADER_COMPILER_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_SHADER_COMPILER_ARB /;" d
  1958. GL_DEBUG_SOURCE_THIRD_PARTY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_THIRD_PARTY /;" d
  1959. GL_DEBUG_SOURCE_THIRD_PARTY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_THIRD_PARTY_ARB /;" d
  1960. GL_DEBUG_SOURCE_WINDOW_SYSTEM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_WINDOW_SYSTEM /;" d
  1961. GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB /;" d
  1962. GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR /;" d
  1963. GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB /;" d
  1964. GL_DEBUG_TYPE_ERROR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_ERROR /;" d
  1965. GL_DEBUG_TYPE_ERROR_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_ERROR_ARB /;" d
  1966. GL_DEBUG_TYPE_MARKER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_MARKER /;" d
  1967. GL_DEBUG_TYPE_OTHER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_OTHER /;" d
  1968. GL_DEBUG_TYPE_OTHER_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_OTHER_ARB /;" d
  1969. GL_DEBUG_TYPE_PERFORMANCE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_PERFORMANCE /;" d
  1970. GL_DEBUG_TYPE_PERFORMANCE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_PERFORMANCE_ARB /;" d
  1971. GL_DEBUG_TYPE_POP_GROUP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_POP_GROUP /;" d
  1972. GL_DEBUG_TYPE_PORTABILITY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_PORTABILITY /;" d
  1973. GL_DEBUG_TYPE_PORTABILITY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_PORTABILITY_ARB /;" d
  1974. GL_DEBUG_TYPE_PUSH_GROUP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_PUSH_GROUP /;" d
  1975. GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR /;" d
  1976. GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB /;" d
  1977. GL_DECR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DECR /;" d
  1978. GL_DECR_WRAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DECR_WRAP /;" d
  1979. GL_DELETE_STATUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DELETE_STATUS /;" d
  1980. GL_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH /;" d
  1981. GL_DEPTH24_STENCIL8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH24_STENCIL8 /;" d
  1982. GL_DEPTH32F_STENCIL8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH32F_STENCIL8 /;" d
  1983. GL_DEPTH_ATTACHMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_ATTACHMENT /;" d
  1984. GL_DEPTH_BUFFER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_BUFFER_BIT /;" d
  1985. GL_DEPTH_CLAMP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_CLAMP /;" d
  1986. GL_DEPTH_CLEAR_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_CLEAR_VALUE /;" d
  1987. GL_DEPTH_COMPONENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENT /;" d
  1988. GL_DEPTH_COMPONENT16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENT16 /;" d
  1989. GL_DEPTH_COMPONENT24 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENT24 /;" d
  1990. GL_DEPTH_COMPONENT32 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENT32 /;" d
  1991. GL_DEPTH_COMPONENT32F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENT32F /;" d
  1992. GL_DEPTH_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_COMPONENTS /;" d
  1993. GL_DEPTH_FUNC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_FUNC /;" d
  1994. GL_DEPTH_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_RANGE /;" d
  1995. GL_DEPTH_RENDERABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_RENDERABLE /;" d
  1996. GL_DEPTH_STENCIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_STENCIL /;" d
  1997. GL_DEPTH_STENCIL_ATTACHMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_STENCIL_ATTACHMENT /;" d
  1998. GL_DEPTH_STENCIL_TEXTURE_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_STENCIL_TEXTURE_MODE /;" d
  1999. GL_DEPTH_TEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_TEST /;" d
  2000. GL_DEPTH_WRITEMASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DEPTH_WRITEMASK /;" d
  2001. GL_DISPATCH_INDIRECT_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DISPATCH_INDIRECT_BUFFER /;" d
  2002. GL_DISPATCH_INDIRECT_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DISPATCH_INDIRECT_BUFFER_BINDING /;" d
  2003. GL_DISPLAY_LIST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DISPLAY_LIST /;" d
  2004. GL_DITHER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DITHER /;" d
  2005. GL_DONT_CARE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DONT_CARE /;" d
  2006. GL_DOUBLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE /;" d
  2007. GL_DOUBLEBUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLEBUFFER /;" d
  2008. GL_DOUBLE_MAT2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT2 /;" d
  2009. GL_DOUBLE_MAT2x3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT2x3 /;" d
  2010. GL_DOUBLE_MAT2x4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT2x4 /;" d
  2011. GL_DOUBLE_MAT3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT3 /;" d
  2012. GL_DOUBLE_MAT3x2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT3x2 /;" d
  2013. GL_DOUBLE_MAT3x4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT3x4 /;" d
  2014. GL_DOUBLE_MAT4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT4 /;" d
  2015. GL_DOUBLE_MAT4x2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT4x2 /;" d
  2016. GL_DOUBLE_MAT4x3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_MAT4x3 /;" d
  2017. GL_DOUBLE_VEC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_VEC2 /;" d
  2018. GL_DOUBLE_VEC3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_VEC3 /;" d
  2019. GL_DOUBLE_VEC4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DOUBLE_VEC4 /;" d
  2020. GL_DRAW_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER /;" d
  2021. GL_DRAW_BUFFER0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER0 /;" d
  2022. GL_DRAW_BUFFER1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER1 /;" d
  2023. GL_DRAW_BUFFER10 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER10 /;" d
  2024. GL_DRAW_BUFFER11 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER11 /;" d
  2025. GL_DRAW_BUFFER12 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER12 /;" d
  2026. GL_DRAW_BUFFER13 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER13 /;" d
  2027. GL_DRAW_BUFFER14 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER14 /;" d
  2028. GL_DRAW_BUFFER15 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER15 /;" d
  2029. GL_DRAW_BUFFER2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER2 /;" d
  2030. GL_DRAW_BUFFER3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER3 /;" d
  2031. GL_DRAW_BUFFER4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER4 /;" d
  2032. GL_DRAW_BUFFER5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER5 /;" d
  2033. GL_DRAW_BUFFER6 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER6 /;" d
  2034. GL_DRAW_BUFFER7 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER7 /;" d
  2035. GL_DRAW_BUFFER8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER8 /;" d
  2036. GL_DRAW_BUFFER9 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_BUFFER9 /;" d
  2037. GL_DRAW_FRAMEBUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_FRAMEBUFFER /;" d
  2038. GL_DRAW_FRAMEBUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_FRAMEBUFFER_BINDING /;" d
  2039. GL_DRAW_INDIRECT_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_INDIRECT_BUFFER /;" d
  2040. GL_DRAW_INDIRECT_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DRAW_INDIRECT_BUFFER_BINDING /;" d
  2041. GL_DST_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DST_ALPHA /;" d
  2042. GL_DST_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DST_COLOR /;" d
  2043. GL_DYNAMIC_COPY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DYNAMIC_COPY /;" d
  2044. GL_DYNAMIC_DRAW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DYNAMIC_DRAW /;" d
  2045. GL_DYNAMIC_READ third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_DYNAMIC_READ /;" d
  2046. GL_ELEMENT_ARRAY_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ELEMENT_ARRAY_BARRIER_BIT /;" d
  2047. GL_ELEMENT_ARRAY_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ELEMENT_ARRAY_BUFFER /;" d
  2048. GL_ELEMENT_ARRAY_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ELEMENT_ARRAY_BUFFER_BINDING /;" d
  2049. GL_EQUAL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_EQUAL /;" d
  2050. GL_EQUIV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_EQUIV /;" d
  2051. GL_EXTENSIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_EXTENSIONS /;" d
  2052. GL_FALSE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FALSE /;" d
  2053. GL_FASTEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FASTEST /;" d
  2054. GL_FILL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FILL /;" d
  2055. GL_FILTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FILTER /;" d
  2056. GL_FIRST_VERTEX_CONVENTION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FIRST_VERTEX_CONVENTION /;" d
  2057. GL_FIXED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FIXED /;" d
  2058. GL_FIXED_ONLY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FIXED_ONLY /;" d
  2059. GL_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT /;" d
  2060. GL_FLOAT_32_UNSIGNED_INT_24_8_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_32_UNSIGNED_INT_24_8_REV /;" d
  2061. GL_FLOAT_MAT2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT2 /;" d
  2062. GL_FLOAT_MAT2x3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT2x3 /;" d
  2063. GL_FLOAT_MAT2x4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT2x4 /;" d
  2064. GL_FLOAT_MAT3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT3 /;" d
  2065. GL_FLOAT_MAT3x2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT3x2 /;" d
  2066. GL_FLOAT_MAT3x4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT3x4 /;" d
  2067. GL_FLOAT_MAT4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT4 /;" d
  2068. GL_FLOAT_MAT4x2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT4x2 /;" d
  2069. GL_FLOAT_MAT4x3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_MAT4x3 /;" d
  2070. GL_FLOAT_VEC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_VEC2 /;" d
  2071. GL_FLOAT_VEC3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_VEC3 /;" d
  2072. GL_FLOAT_VEC4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FLOAT_VEC4 /;" d
  2073. GL_FRACTIONAL_EVEN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRACTIONAL_EVEN /;" d
  2074. GL_FRACTIONAL_ODD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRACTIONAL_ODD /;" d
  2075. GL_FRAGMENT_INTERPOLATION_OFFSET_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_INTERPOLATION_OFFSET_BITS /;" d
  2076. GL_FRAGMENT_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_SHADER /;" d
  2077. GL_FRAGMENT_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_SHADER_BIT /;" d
  2078. GL_FRAGMENT_SHADER_DERIVATIVE_HINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_SHADER_DERIVATIVE_HINT /;" d
  2079. GL_FRAGMENT_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_SUBROUTINE /;" d
  2080. GL_FRAGMENT_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_SUBROUTINE_UNIFORM /;" d
  2081. GL_FRAGMENT_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAGMENT_TEXTURE /;" d
  2082. GL_FRAMEBUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER /;" d
  2083. GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE /;" d
  2084. GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE /;" d
  2085. GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING /;" d
  2086. GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE /;" d
  2087. GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE /;" d
  2088. GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE /;" d
  2089. GL_FRAMEBUFFER_ATTACHMENT_LAYERED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_LAYERED /;" d
  2090. GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME /;" d
  2091. GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE /;" d
  2092. GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE /;" d
  2093. GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE /;" d
  2094. GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE /;" d
  2095. GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER /;" d
  2096. GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL /;" d
  2097. GL_FRAMEBUFFER_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_BARRIER_BIT /;" d
  2098. GL_FRAMEBUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_BINDING /;" d
  2099. GL_FRAMEBUFFER_BLEND third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_BLEND /;" d
  2100. GL_FRAMEBUFFER_COMPLETE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_COMPLETE /;" d
  2101. GL_FRAMEBUFFER_DEFAULT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT /;" d
  2102. GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS /;" d
  2103. GL_FRAMEBUFFER_DEFAULT_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT_HEIGHT /;" d
  2104. GL_FRAMEBUFFER_DEFAULT_LAYERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT_LAYERS /;" d
  2105. GL_FRAMEBUFFER_DEFAULT_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT_SAMPLES /;" d
  2106. GL_FRAMEBUFFER_DEFAULT_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_DEFAULT_WIDTH /;" d
  2107. GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT /;" d
  2108. GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER /;" d
  2109. GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS /;" d
  2110. GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT /;" d
  2111. GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE /;" d
  2112. GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER /;" d
  2113. GL_FRAMEBUFFER_RENDERABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_RENDERABLE /;" d
  2114. GL_FRAMEBUFFER_RENDERABLE_LAYERED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_RENDERABLE_LAYERED /;" d
  2115. GL_FRAMEBUFFER_SRGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_SRGB /;" d
  2116. GL_FRAMEBUFFER_UNDEFINED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_UNDEFINED /;" d
  2117. GL_FRAMEBUFFER_UNSUPPORTED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRAMEBUFFER_UNSUPPORTED /;" d
  2118. GL_FRONT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRONT /;" d
  2119. GL_FRONT_AND_BACK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRONT_AND_BACK /;" d
  2120. GL_FRONT_FACE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRONT_FACE /;" d
  2121. GL_FRONT_LEFT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRONT_LEFT /;" d
  2122. GL_FRONT_RIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FRONT_RIGHT /;" d
  2123. GL_FULL_SUPPORT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FULL_SUPPORT /;" d
  2124. GL_FUNC_ADD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FUNC_ADD /;" d
  2125. GL_FUNC_REVERSE_SUBTRACT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FUNC_REVERSE_SUBTRACT /;" d
  2126. GL_FUNC_SUBTRACT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_FUNC_SUBTRACT /;" d
  2127. GL_GEOMETRY_INPUT_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_INPUT_TYPE /;" d
  2128. GL_GEOMETRY_OUTPUT_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_OUTPUT_TYPE /;" d
  2129. GL_GEOMETRY_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_SHADER /;" d
  2130. GL_GEOMETRY_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_SHADER_BIT /;" d
  2131. GL_GEOMETRY_SHADER_INVOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_SHADER_INVOCATIONS /;" d
  2132. GL_GEOMETRY_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_SUBROUTINE /;" d
  2133. GL_GEOMETRY_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_SUBROUTINE_UNIFORM /;" d
  2134. GL_GEOMETRY_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_TEXTURE /;" d
  2135. GL_GEOMETRY_VERTICES_OUT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEOMETRY_VERTICES_OUT /;" d
  2136. GL_GEQUAL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GEQUAL /;" d
  2137. GL_GET_TEXTURE_IMAGE_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GET_TEXTURE_IMAGE_FORMAT /;" d
  2138. GL_GET_TEXTURE_IMAGE_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GET_TEXTURE_IMAGE_TYPE /;" d
  2139. GL_GREATER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GREATER /;" d
  2140. GL_GREEN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GREEN /;" d
  2141. GL_GREEN_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GREEN_INTEGER /;" d
  2142. GL_GUILTY_CONTEXT_RESET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_GUILTY_CONTEXT_RESET_ARB /;" d
  2143. GL_HALF_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_HALF_FLOAT /;" d
  2144. GL_HIGH_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_HIGH_FLOAT /;" d
  2145. GL_HIGH_INT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_HIGH_INT /;" d
  2146. GL_IMAGE_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_1D /;" d
  2147. GL_IMAGE_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_1D_ARRAY /;" d
  2148. GL_IMAGE_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_2D /;" d
  2149. GL_IMAGE_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_2D_ARRAY /;" d
  2150. GL_IMAGE_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_2D_MULTISAMPLE /;" d
  2151. GL_IMAGE_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_2D_MULTISAMPLE_ARRAY /;" d
  2152. GL_IMAGE_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_2D_RECT /;" d
  2153. GL_IMAGE_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_3D /;" d
  2154. GL_IMAGE_BINDING_ACCESS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_ACCESS /;" d
  2155. GL_IMAGE_BINDING_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_FORMAT /;" d
  2156. GL_IMAGE_BINDING_LAYER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_LAYER /;" d
  2157. GL_IMAGE_BINDING_LAYERED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_LAYERED /;" d
  2158. GL_IMAGE_BINDING_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_LEVEL /;" d
  2159. GL_IMAGE_BINDING_NAME third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BINDING_NAME /;" d
  2160. GL_IMAGE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_BUFFER /;" d
  2161. GL_IMAGE_CLASS_10_10_10_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_10_10_10_2 /;" d
  2162. GL_IMAGE_CLASS_11_11_10 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_11_11_10 /;" d
  2163. GL_IMAGE_CLASS_1_X_16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_1_X_16 /;" d
  2164. GL_IMAGE_CLASS_1_X_32 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_1_X_32 /;" d
  2165. GL_IMAGE_CLASS_1_X_8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_1_X_8 /;" d
  2166. GL_IMAGE_CLASS_2_X_16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_2_X_16 /;" d
  2167. GL_IMAGE_CLASS_2_X_32 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_2_X_32 /;" d
  2168. GL_IMAGE_CLASS_2_X_8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_2_X_8 /;" d
  2169. GL_IMAGE_CLASS_4_X_16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_4_X_16 /;" d
  2170. GL_IMAGE_CLASS_4_X_32 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_4_X_32 /;" d
  2171. GL_IMAGE_CLASS_4_X_8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CLASS_4_X_8 /;" d
  2172. GL_IMAGE_COMPATIBILITY_CLASS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_COMPATIBILITY_CLASS /;" d
  2173. GL_IMAGE_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CUBE /;" d
  2174. GL_IMAGE_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_CUBE_MAP_ARRAY /;" d
  2175. GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS /;" d
  2176. GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE /;" d
  2177. GL_IMAGE_FORMAT_COMPATIBILITY_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_FORMAT_COMPATIBILITY_TYPE /;" d
  2178. GL_IMAGE_PIXEL_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_PIXEL_FORMAT /;" d
  2179. GL_IMAGE_PIXEL_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_PIXEL_TYPE /;" d
  2180. GL_IMAGE_TEXEL_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMAGE_TEXEL_SIZE /;" d
  2181. GL_IMPLEMENTATION_COLOR_READ_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMPLEMENTATION_COLOR_READ_FORMAT /;" d
  2182. GL_IMPLEMENTATION_COLOR_READ_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IMPLEMENTATION_COLOR_READ_TYPE /;" d
  2183. GL_INCR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INCR /;" d
  2184. GL_INCR_WRAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INCR_WRAP /;" d
  2185. GL_INFO_LOG_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INFO_LOG_LENGTH /;" d
  2186. GL_INNOCENT_CONTEXT_RESET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INNOCENT_CONTEXT_RESET_ARB /;" d
  2187. GL_INT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT /;" d
  2188. GL_INTERLEAVED_ATTRIBS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERLEAVED_ATTRIBS /;" d
  2189. GL_INTERNALFORMAT_ALPHA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_ALPHA_SIZE /;" d
  2190. GL_INTERNALFORMAT_ALPHA_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_ALPHA_TYPE /;" d
  2191. GL_INTERNALFORMAT_BLUE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_BLUE_SIZE /;" d
  2192. GL_INTERNALFORMAT_BLUE_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_BLUE_TYPE /;" d
  2193. GL_INTERNALFORMAT_DEPTH_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_DEPTH_SIZE /;" d
  2194. GL_INTERNALFORMAT_DEPTH_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_DEPTH_TYPE /;" d
  2195. GL_INTERNALFORMAT_GREEN_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_GREEN_SIZE /;" d
  2196. GL_INTERNALFORMAT_GREEN_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_GREEN_TYPE /;" d
  2197. GL_INTERNALFORMAT_PREFERRED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_PREFERRED /;" d
  2198. GL_INTERNALFORMAT_RED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_RED_SIZE /;" d
  2199. GL_INTERNALFORMAT_RED_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_RED_TYPE /;" d
  2200. GL_INTERNALFORMAT_SHARED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_SHARED_SIZE /;" d
  2201. GL_INTERNALFORMAT_STENCIL_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_STENCIL_SIZE /;" d
  2202. GL_INTERNALFORMAT_STENCIL_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_STENCIL_TYPE /;" d
  2203. GL_INTERNALFORMAT_SUPPORTED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INTERNALFORMAT_SUPPORTED /;" d
  2204. GL_INT_2_10_10_10_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_2_10_10_10_REV /;" d
  2205. GL_INT_IMAGE_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_1D /;" d
  2206. GL_INT_IMAGE_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_1D_ARRAY /;" d
  2207. GL_INT_IMAGE_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_2D /;" d
  2208. GL_INT_IMAGE_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_2D_ARRAY /;" d
  2209. GL_INT_IMAGE_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_2D_MULTISAMPLE /;" d
  2210. GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY /;" d
  2211. GL_INT_IMAGE_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_2D_RECT /;" d
  2212. GL_INT_IMAGE_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_3D /;" d
  2213. GL_INT_IMAGE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_BUFFER /;" d
  2214. GL_INT_IMAGE_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_CUBE /;" d
  2215. GL_INT_IMAGE_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_IMAGE_CUBE_MAP_ARRAY /;" d
  2216. GL_INT_SAMPLER_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_1D /;" d
  2217. GL_INT_SAMPLER_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_1D_ARRAY /;" d
  2218. GL_INT_SAMPLER_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_2D /;" d
  2219. GL_INT_SAMPLER_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_2D_ARRAY /;" d
  2220. GL_INT_SAMPLER_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_2D_MULTISAMPLE /;" d
  2221. GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY /;" d
  2222. GL_INT_SAMPLER_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_2D_RECT /;" d
  2223. GL_INT_SAMPLER_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_3D /;" d
  2224. GL_INT_SAMPLER_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_BUFFER /;" d
  2225. GL_INT_SAMPLER_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_CUBE /;" d
  2226. GL_INT_SAMPLER_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_CUBE_MAP_ARRAY /;" d
  2227. GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB /;" d
  2228. GL_INT_VEC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_VEC2 /;" d
  2229. GL_INT_VEC3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_VEC3 /;" d
  2230. GL_INT_VEC4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INT_VEC4 /;" d
  2231. GL_INVALID_ENUM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVALID_ENUM /;" d
  2232. GL_INVALID_FRAMEBUFFER_OPERATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVALID_FRAMEBUFFER_OPERATION /;" d
  2233. GL_INVALID_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVALID_INDEX /;" d
  2234. GL_INVALID_OPERATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVALID_OPERATION /;" d
  2235. GL_INVALID_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVALID_VALUE /;" d
  2236. GL_INVERT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_INVERT /;" d
  2237. GL_ISOLINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ISOLINES /;" d
  2238. GL_IS_PER_PATCH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IS_PER_PATCH /;" d
  2239. GL_IS_ROW_MAJOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_IS_ROW_MAJOR /;" d
  2240. GL_KEEP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_KEEP /;" d
  2241. GL_KHR_debug third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_KHR_debug /;" d
  2242. GL_KHR_texture_compression_astc_ldr third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_KHR_texture_compression_astc_ldr /;" d
  2243. GL_LAST_VERTEX_CONVENTION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LAST_VERTEX_CONVENTION /;" d
  2244. GL_LAYER_PROVOKING_VERTEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LAYER_PROVOKING_VERTEX /;" d
  2245. GL_LEFT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LEFT /;" d
  2246. GL_LEQUAL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LEQUAL /;" d
  2247. GL_LESS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LESS /;" d
  2248. GL_LINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE /;" d
  2249. GL_LINEAR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINEAR /;" d
  2250. GL_LINEAR_MIPMAP_LINEAR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINEAR_MIPMAP_LINEAR /;" d
  2251. GL_LINEAR_MIPMAP_NEAREST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINEAR_MIPMAP_NEAREST /;" d
  2252. GL_LINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINES /;" d
  2253. GL_LINES_ADJACENCY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINES_ADJACENCY /;" d
  2254. GL_LINE_LOOP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_LOOP /;" d
  2255. GL_LINE_SMOOTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_SMOOTH /;" d
  2256. GL_LINE_SMOOTH_HINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_SMOOTH_HINT /;" d
  2257. GL_LINE_STRIP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_STRIP /;" d
  2258. GL_LINE_STRIP_ADJACENCY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_STRIP_ADJACENCY /;" d
  2259. GL_LINE_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_WIDTH /;" d
  2260. GL_LINE_WIDTH_GRANULARITY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_WIDTH_GRANULARITY /;" d
  2261. GL_LINE_WIDTH_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINE_WIDTH_RANGE /;" d
  2262. GL_LINK_STATUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LINK_STATUS /;" d
  2263. GL_LOCATION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOCATION /;" d
  2264. GL_LOCATION_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOCATION_INDEX /;" d
  2265. GL_LOGIC_OP_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOGIC_OP_MODE /;" d
  2266. GL_LOSE_CONTEXT_ON_RESET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOSE_CONTEXT_ON_RESET_ARB /;" d
  2267. GL_LOWER_LEFT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOWER_LEFT /;" d
  2268. GL_LOW_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOW_FLOAT /;" d
  2269. GL_LOW_INT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_LOW_INT /;" d
  2270. GL_MAJOR_VERSION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAJOR_VERSION /;" d
  2271. GL_MANUAL_GENERATE_MIPMAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MANUAL_GENERATE_MIPMAP /;" d
  2272. GL_MAP_FLUSH_EXPLICIT_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_FLUSH_EXPLICIT_BIT /;" d
  2273. GL_MAP_INVALIDATE_BUFFER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_INVALIDATE_BUFFER_BIT /;" d
  2274. GL_MAP_INVALIDATE_RANGE_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_INVALIDATE_RANGE_BIT /;" d
  2275. GL_MAP_READ_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_READ_BIT /;" d
  2276. GL_MAP_UNSYNCHRONIZED_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_UNSYNCHRONIZED_BIT /;" d
  2277. GL_MAP_WRITE_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAP_WRITE_BIT /;" d
  2278. GL_MATRIX_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MATRIX_STRIDE /;" d
  2279. GL_MAX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX /;" d
  2280. GL_MAX_3D_TEXTURE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_3D_TEXTURE_SIZE /;" d
  2281. GL_MAX_ARRAY_TEXTURE_LAYERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ARRAY_TEXTURE_LAYERS /;" d
  2282. GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS /;" d
  2283. GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE /;" d
  2284. GL_MAX_CLIP_DISTANCES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_CLIP_DISTANCES /;" d
  2285. GL_MAX_COLOR_ATTACHMENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COLOR_ATTACHMENTS /;" d
  2286. GL_MAX_COLOR_TEXTURE_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COLOR_TEXTURE_SAMPLES /;" d
  2287. GL_MAX_COMBINED_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_ATOMIC_COUNTERS /;" d
  2288. GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS /;" d
  2289. GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS /;" d
  2290. GL_MAX_COMBINED_DIMENSIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_DIMENSIONS /;" d
  2291. GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS /;" d
  2292. GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS /;" d
  2293. GL_MAX_COMBINED_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_IMAGE_UNIFORMS /;" d
  2294. GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS /;" d
  2295. GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES /;" d
  2296. GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS /;" d
  2297. GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS /;" d
  2298. GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS /;" d
  2299. GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS /;" d
  2300. GL_MAX_COMBINED_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_UNIFORM_BLOCKS /;" d
  2301. GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS /;" d
  2302. GL_MAX_COMPUTE_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_ATOMIC_COUNTERS /;" d
  2303. GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS /;" d
  2304. GL_MAX_COMPUTE_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_IMAGE_UNIFORMS /;" d
  2305. GL_MAX_COMPUTE_LOCAL_INVOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_LOCAL_INVOCATIONS /;" d
  2306. GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS /;" d
  2307. GL_MAX_COMPUTE_SHARED_MEMORY_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_SHARED_MEMORY_SIZE /;" d
  2308. GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS /;" d
  2309. GL_MAX_COMPUTE_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_UNIFORM_BLOCKS /;" d
  2310. GL_MAX_COMPUTE_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_UNIFORM_COMPONENTS /;" d
  2311. GL_MAX_COMPUTE_WORK_GROUP_COUNT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_WORK_GROUP_COUNT /;" d
  2312. GL_MAX_COMPUTE_WORK_GROUP_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_COMPUTE_WORK_GROUP_SIZE /;" d
  2313. GL_MAX_CUBE_MAP_TEXTURE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_CUBE_MAP_TEXTURE_SIZE /;" d
  2314. GL_MAX_DEBUG_GROUP_STACK_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEBUG_GROUP_STACK_DEPTH /;" d
  2315. GL_MAX_DEBUG_LOGGED_MESSAGES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEBUG_LOGGED_MESSAGES /;" d
  2316. GL_MAX_DEBUG_LOGGED_MESSAGES_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEBUG_LOGGED_MESSAGES_ARB /;" d
  2317. GL_MAX_DEBUG_MESSAGE_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEBUG_MESSAGE_LENGTH /;" d
  2318. GL_MAX_DEBUG_MESSAGE_LENGTH_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEBUG_MESSAGE_LENGTH_ARB /;" d
  2319. GL_MAX_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEPTH /;" d
  2320. GL_MAX_DEPTH_TEXTURE_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DEPTH_TEXTURE_SAMPLES /;" d
  2321. GL_MAX_DRAW_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DRAW_BUFFERS /;" d
  2322. GL_MAX_DUAL_SOURCE_DRAW_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS /;" d
  2323. GL_MAX_ELEMENTS_INDICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ELEMENTS_INDICES /;" d
  2324. GL_MAX_ELEMENTS_VERTICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ELEMENTS_VERTICES /;" d
  2325. GL_MAX_ELEMENT_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_ELEMENT_INDEX /;" d
  2326. GL_MAX_FRAGMENT_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_ATOMIC_COUNTERS /;" d
  2327. GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS /;" d
  2328. GL_MAX_FRAGMENT_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_IMAGE_UNIFORMS /;" d
  2329. GL_MAX_FRAGMENT_INPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_INPUT_COMPONENTS /;" d
  2330. GL_MAX_FRAGMENT_INTERPOLATION_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_INTERPOLATION_OFFSET /;" d
  2331. GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS /;" d
  2332. GL_MAX_FRAGMENT_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_UNIFORM_BLOCKS /;" d
  2333. GL_MAX_FRAGMENT_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_UNIFORM_COMPONENTS /;" d
  2334. GL_MAX_FRAGMENT_UNIFORM_VECTORS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAGMENT_UNIFORM_VECTORS /;" d
  2335. GL_MAX_FRAMEBUFFER_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAMEBUFFER_HEIGHT /;" d
  2336. GL_MAX_FRAMEBUFFER_LAYERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAMEBUFFER_LAYERS /;" d
  2337. GL_MAX_FRAMEBUFFER_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAMEBUFFER_SAMPLES /;" d
  2338. GL_MAX_FRAMEBUFFER_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_FRAMEBUFFER_WIDTH /;" d
  2339. GL_MAX_GEOMETRY_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_ATOMIC_COUNTERS /;" d
  2340. GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS /;" d
  2341. GL_MAX_GEOMETRY_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_IMAGE_UNIFORMS /;" d
  2342. GL_MAX_GEOMETRY_INPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_INPUT_COMPONENTS /;" d
  2343. GL_MAX_GEOMETRY_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_OUTPUT_COMPONENTS /;" d
  2344. GL_MAX_GEOMETRY_OUTPUT_VERTICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_OUTPUT_VERTICES /;" d
  2345. GL_MAX_GEOMETRY_SHADER_INVOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_SHADER_INVOCATIONS /;" d
  2346. GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS /;" d
  2347. GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS /;" d
  2348. GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS /;" d
  2349. GL_MAX_GEOMETRY_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_UNIFORM_BLOCKS /;" d
  2350. GL_MAX_GEOMETRY_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_GEOMETRY_UNIFORM_COMPONENTS /;" d
  2351. GL_MAX_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_HEIGHT /;" d
  2352. GL_MAX_IMAGE_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_IMAGE_SAMPLES /;" d
  2353. GL_MAX_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_IMAGE_UNITS /;" d
  2354. GL_MAX_INTEGER_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_INTEGER_SAMPLES /;" d
  2355. GL_MAX_LABEL_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_LABEL_LENGTH /;" d
  2356. GL_MAX_LAYERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_LAYERS /;" d
  2357. GL_MAX_NAME_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_NAME_LENGTH /;" d
  2358. GL_MAX_NUM_ACTIVE_VARIABLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_NUM_ACTIVE_VARIABLES /;" d
  2359. GL_MAX_NUM_COMPATIBLE_SUBROUTINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_NUM_COMPATIBLE_SUBROUTINES /;" d
  2360. GL_MAX_PATCH_VERTICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_PATCH_VERTICES /;" d
  2361. GL_MAX_PROGRAM_TEXEL_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_PROGRAM_TEXEL_OFFSET /;" d
  2362. GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB /;" d
  2363. GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET /;" d
  2364. GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB /;" d
  2365. GL_MAX_RECTANGLE_TEXTURE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_RECTANGLE_TEXTURE_SIZE /;" d
  2366. GL_MAX_RENDERBUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_RENDERBUFFER_SIZE /;" d
  2367. GL_MAX_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SAMPLES /;" d
  2368. GL_MAX_SAMPLE_MASK_WORDS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SAMPLE_MASK_WORDS /;" d
  2369. GL_MAX_SERVER_WAIT_TIMEOUT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SERVER_WAIT_TIMEOUT /;" d
  2370. GL_MAX_SHADER_STORAGE_BLOCK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SHADER_STORAGE_BLOCK_SIZE /;" d
  2371. GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS /;" d
  2372. GL_MAX_SUBROUTINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SUBROUTINES /;" d
  2373. GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS /;" d
  2374. GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS /;" d
  2375. GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS /;" d
  2376. GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS /;" d
  2377. GL_MAX_TESS_CONTROL_INPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_INPUT_COMPONENTS /;" d
  2378. GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS /;" d
  2379. GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS /;" d
  2380. GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS /;" d
  2381. GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS /;" d
  2382. GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS /;" d
  2383. GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS /;" d
  2384. GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS /;" d
  2385. GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS /;" d
  2386. GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS /;" d
  2387. GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS /;" d
  2388. GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS /;" d
  2389. GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS /;" d
  2390. GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS /;" d
  2391. GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS /;" d
  2392. GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS /;" d
  2393. GL_MAX_TESS_GEN_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_GEN_LEVEL /;" d
  2394. GL_MAX_TESS_PATCH_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TESS_PATCH_COMPONENTS /;" d
  2395. GL_MAX_TEXTURE_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TEXTURE_BUFFER_SIZE /;" d
  2396. GL_MAX_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TEXTURE_IMAGE_UNITS /;" d
  2397. GL_MAX_TEXTURE_LOD_BIAS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TEXTURE_LOD_BIAS /;" d
  2398. GL_MAX_TEXTURE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TEXTURE_SIZE /;" d
  2399. GL_MAX_TRANSFORM_FEEDBACK_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TRANSFORM_FEEDBACK_BUFFERS /;" d
  2400. GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS /;" d
  2401. GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS /;" d
  2402. GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS /;" d
  2403. GL_MAX_UNIFORM_BLOCK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_UNIFORM_BLOCK_SIZE /;" d
  2404. GL_MAX_UNIFORM_BUFFER_BINDINGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_UNIFORM_BUFFER_BINDINGS /;" d
  2405. GL_MAX_UNIFORM_LOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_UNIFORM_LOCATIONS /;" d
  2406. GL_MAX_VARYING_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VARYING_COMPONENTS /;" d
  2407. GL_MAX_VARYING_FLOATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VARYING_FLOATS /;" d
  2408. GL_MAX_VARYING_VECTORS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VARYING_VECTORS /;" d
  2409. GL_MAX_VERTEX_ATOMIC_COUNTERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_ATOMIC_COUNTERS /;" d
  2410. GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS /;" d
  2411. GL_MAX_VERTEX_ATTRIBS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_ATTRIBS /;" d
  2412. GL_MAX_VERTEX_ATTRIB_BINDINGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_ATTRIB_BINDINGS /;" d
  2413. GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET /;" d
  2414. GL_MAX_VERTEX_IMAGE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_IMAGE_UNIFORMS /;" d
  2415. GL_MAX_VERTEX_OUTPUT_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_OUTPUT_COMPONENTS /;" d
  2416. GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS /;" d
  2417. GL_MAX_VERTEX_STREAMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_STREAMS /;" d
  2418. GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS /;" d
  2419. GL_MAX_VERTEX_UNIFORM_BLOCKS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_UNIFORM_BLOCKS /;" d
  2420. GL_MAX_VERTEX_UNIFORM_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_UNIFORM_COMPONENTS /;" d
  2421. GL_MAX_VERTEX_UNIFORM_VECTORS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VERTEX_UNIFORM_VECTORS /;" d
  2422. GL_MAX_VIEWPORTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VIEWPORTS /;" d
  2423. GL_MAX_VIEWPORT_DIMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_VIEWPORT_DIMS /;" d
  2424. GL_MAX_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MAX_WIDTH /;" d
  2425. GL_MEDIUM_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MEDIUM_FLOAT /;" d
  2426. GL_MEDIUM_INT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MEDIUM_INT /;" d
  2427. GL_MIN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN /;" d
  2428. GL_MINOR_VERSION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MINOR_VERSION /;" d
  2429. GL_MIN_FRAGMENT_INTERPOLATION_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_FRAGMENT_INTERPOLATION_OFFSET /;" d
  2430. GL_MIN_MAP_BUFFER_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_MAP_BUFFER_ALIGNMENT /;" d
  2431. GL_MIN_PROGRAM_TEXEL_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_PROGRAM_TEXEL_OFFSET /;" d
  2432. GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET /;" d
  2433. GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB /;" d
  2434. GL_MIN_SAMPLE_SHADING_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_SAMPLE_SHADING_VALUE /;" d
  2435. GL_MIN_SAMPLE_SHADING_VALUE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIN_SAMPLE_SHADING_VALUE_ARB /;" d
  2436. GL_MIPMAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIPMAP /;" d
  2437. GL_MIRRORED_REPEAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MIRRORED_REPEAT /;" d
  2438. GL_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_MULTISAMPLE /;" d
  2439. GL_NAMED_STRING_LENGTH_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NAMED_STRING_LENGTH_ARB /;" d
  2440. GL_NAMED_STRING_TYPE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NAMED_STRING_TYPE_ARB /;" d
  2441. GL_NAME_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NAME_LENGTH /;" d
  2442. GL_NAND third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NAND /;" d
  2443. GL_NEAREST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NEAREST /;" d
  2444. GL_NEAREST_MIPMAP_LINEAR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NEAREST_MIPMAP_LINEAR /;" d
  2445. GL_NEAREST_MIPMAP_NEAREST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NEAREST_MIPMAP_NEAREST /;" d
  2446. GL_NEVER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NEVER /;" d
  2447. GL_NICEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NICEST /;" d
  2448. GL_NONE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NONE /;" d
  2449. GL_NOOP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NOOP /;" d
  2450. GL_NOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NOR /;" d
  2451. GL_NOTEQUAL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NOTEQUAL /;" d
  2452. GL_NO_ERROR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NO_ERROR /;" d
  2453. GL_NO_RESET_NOTIFICATION_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NO_RESET_NOTIFICATION_ARB /;" d
  2454. GL_NUM_ACTIVE_VARIABLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_ACTIVE_VARIABLES /;" d
  2455. GL_NUM_COMPATIBLE_SUBROUTINES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_COMPATIBLE_SUBROUTINES /;" d
  2456. GL_NUM_COMPRESSED_TEXTURE_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_COMPRESSED_TEXTURE_FORMATS /;" d
  2457. GL_NUM_EXTENSIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_EXTENSIONS /;" d
  2458. GL_NUM_PROGRAM_BINARY_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_PROGRAM_BINARY_FORMATS /;" d
  2459. GL_NUM_SAMPLE_COUNTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_SAMPLE_COUNTS /;" d
  2460. GL_NUM_SHADER_BINARY_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_SHADER_BINARY_FORMATS /;" d
  2461. GL_NUM_SHADING_LANGUAGE_VERSIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_NUM_SHADING_LANGUAGE_VERSIONS /;" d
  2462. GL_OBJECT_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OBJECT_TYPE /;" d
  2463. GL_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OFFSET /;" d
  2464. GL_ONE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE /;" d
  2465. GL_ONE_MINUS_CONSTANT_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_CONSTANT_ALPHA /;" d
  2466. GL_ONE_MINUS_CONSTANT_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_CONSTANT_COLOR /;" d
  2467. GL_ONE_MINUS_DST_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_DST_ALPHA /;" d
  2468. GL_ONE_MINUS_DST_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_DST_COLOR /;" d
  2469. GL_ONE_MINUS_SRC1_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_SRC1_ALPHA /;" d
  2470. GL_ONE_MINUS_SRC1_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_SRC1_COLOR /;" d
  2471. GL_ONE_MINUS_SRC_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_SRC_ALPHA /;" d
  2472. GL_ONE_MINUS_SRC_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ONE_MINUS_SRC_COLOR /;" d
  2473. GL_OR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OR /;" d
  2474. GL_OR_INVERTED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OR_INVERTED /;" d
  2475. GL_OR_REVERSE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OR_REVERSE /;" d
  2476. GL_OUT_OF_MEMORY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_OUT_OF_MEMORY /;" d
  2477. GL_PACK_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_ALIGNMENT /;" d
  2478. GL_PACK_COMPRESSED_BLOCK_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_COMPRESSED_BLOCK_DEPTH /;" d
  2479. GL_PACK_COMPRESSED_BLOCK_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_COMPRESSED_BLOCK_HEIGHT /;" d
  2480. GL_PACK_COMPRESSED_BLOCK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_COMPRESSED_BLOCK_SIZE /;" d
  2481. GL_PACK_COMPRESSED_BLOCK_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_COMPRESSED_BLOCK_WIDTH /;" d
  2482. GL_PACK_IMAGE_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_IMAGE_HEIGHT /;" d
  2483. GL_PACK_LSB_FIRST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_LSB_FIRST /;" d
  2484. GL_PACK_ROW_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_ROW_LENGTH /;" d
  2485. GL_PACK_SKIP_IMAGES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_SKIP_IMAGES /;" d
  2486. GL_PACK_SKIP_PIXELS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_SKIP_PIXELS /;" d
  2487. GL_PACK_SKIP_ROWS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_SKIP_ROWS /;" d
  2488. GL_PACK_SWAP_BYTES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PACK_SWAP_BYTES /;" d
  2489. GL_PATCHES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PATCHES /;" d
  2490. GL_PATCH_DEFAULT_INNER_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PATCH_DEFAULT_INNER_LEVEL /;" d
  2491. GL_PATCH_DEFAULT_OUTER_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PATCH_DEFAULT_OUTER_LEVEL /;" d
  2492. GL_PATCH_VERTICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PATCH_VERTICES /;" d
  2493. GL_PIXEL_BUFFER_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PIXEL_BUFFER_BARRIER_BIT /;" d
  2494. GL_PIXEL_PACK_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PIXEL_PACK_BUFFER /;" d
  2495. GL_PIXEL_PACK_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PIXEL_PACK_BUFFER_BINDING /;" d
  2496. GL_PIXEL_UNPACK_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PIXEL_UNPACK_BUFFER /;" d
  2497. GL_PIXEL_UNPACK_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PIXEL_UNPACK_BUFFER_BINDING /;" d
  2498. GL_POINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT /;" d
  2499. GL_POINTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINTS /;" d
  2500. GL_POINT_FADE_THRESHOLD_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT_FADE_THRESHOLD_SIZE /;" d
  2501. GL_POINT_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT_SIZE /;" d
  2502. GL_POINT_SIZE_GRANULARITY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT_SIZE_GRANULARITY /;" d
  2503. GL_POINT_SIZE_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT_SIZE_RANGE /;" d
  2504. GL_POINT_SPRITE_COORD_ORIGIN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POINT_SPRITE_COORD_ORIGIN /;" d
  2505. GL_POLYGON_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_MODE /;" d
  2506. GL_POLYGON_OFFSET_FACTOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_OFFSET_FACTOR /;" d
  2507. GL_POLYGON_OFFSET_FILL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_OFFSET_FILL /;" d
  2508. GL_POLYGON_OFFSET_LINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_OFFSET_LINE /;" d
  2509. GL_POLYGON_OFFSET_POINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_OFFSET_POINT /;" d
  2510. GL_POLYGON_OFFSET_UNITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_OFFSET_UNITS /;" d
  2511. GL_POLYGON_SMOOTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_SMOOTH /;" d
  2512. GL_POLYGON_SMOOTH_HINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_POLYGON_SMOOTH_HINT /;" d
  2513. GL_PRIMITIVES_GENERATED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PRIMITIVES_GENERATED /;" d
  2514. GL_PRIMITIVE_RESTART third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PRIMITIVE_RESTART /;" d
  2515. GL_PRIMITIVE_RESTART_FIXED_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PRIMITIVE_RESTART_FIXED_INDEX /;" d
  2516. GL_PRIMITIVE_RESTART_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PRIMITIVE_RESTART_INDEX /;" d
  2517. GL_PROGRAM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM /;" d
  2518. GL_PROGRAM_BINARY_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_BINARY_FORMATS /;" d
  2519. GL_PROGRAM_BINARY_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_BINARY_LENGTH /;" d
  2520. GL_PROGRAM_BINARY_RETRIEVABLE_HINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_BINARY_RETRIEVABLE_HINT /;" d
  2521. GL_PROGRAM_INPUT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_INPUT /;" d
  2522. GL_PROGRAM_OUTPUT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_OUTPUT /;" d
  2523. GL_PROGRAM_PIPELINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_PIPELINE /;" d
  2524. GL_PROGRAM_PIPELINE_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_PIPELINE_BINDING /;" d
  2525. GL_PROGRAM_POINT_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_POINT_SIZE /;" d
  2526. GL_PROGRAM_SEPARABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROGRAM_SEPARABLE /;" d
  2527. GL_PROVOKING_VERTEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROVOKING_VERTEX /;" d
  2528. GL_PROXY_TEXTURE_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_1D /;" d
  2529. GL_PROXY_TEXTURE_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_1D_ARRAY /;" d
  2530. GL_PROXY_TEXTURE_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_2D /;" d
  2531. GL_PROXY_TEXTURE_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_2D_ARRAY /;" d
  2532. GL_PROXY_TEXTURE_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_2D_MULTISAMPLE /;" d
  2533. GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY /;" d
  2534. GL_PROXY_TEXTURE_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_3D /;" d
  2535. GL_PROXY_TEXTURE_CUBE_MAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_CUBE_MAP /;" d
  2536. GL_PROXY_TEXTURE_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY /;" d
  2537. GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB /;" d
  2538. GL_PROXY_TEXTURE_RECTANGLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_PROXY_TEXTURE_RECTANGLE /;" d
  2539. GL_QUADS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUADS /;" d
  2540. GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION /;" d
  2541. GL_QUERY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY /;" d
  2542. GL_QUERY_BY_REGION_NO_WAIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_BY_REGION_NO_WAIT /;" d
  2543. GL_QUERY_BY_REGION_WAIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_BY_REGION_WAIT /;" d
  2544. GL_QUERY_COUNTER_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_COUNTER_BITS /;" d
  2545. GL_QUERY_NO_WAIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_NO_WAIT /;" d
  2546. GL_QUERY_RESULT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_RESULT /;" d
  2547. GL_QUERY_RESULT_AVAILABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_RESULT_AVAILABLE /;" d
  2548. GL_QUERY_WAIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_QUERY_WAIT /;" d
  2549. GL_R11F_G11F_B10F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R11F_G11F_B10F /;" d
  2550. GL_R16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R16 /;" d
  2551. GL_R16F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R16F /;" d
  2552. GL_R16I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R16I /;" d
  2553. GL_R16UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R16UI /;" d
  2554. GL_R16_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R16_SNORM /;" d
  2555. GL_R32F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R32F /;" d
  2556. GL_R32I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R32I /;" d
  2557. GL_R32UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R32UI /;" d
  2558. GL_R3_G3_B2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R3_G3_B2 /;" d
  2559. GL_R8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R8 /;" d
  2560. GL_R8I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R8I /;" d
  2561. GL_R8UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R8UI /;" d
  2562. GL_R8_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_R8_SNORM /;" d
  2563. GL_RASTERIZER_DISCARD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RASTERIZER_DISCARD /;" d
  2564. GL_READ_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_BUFFER /;" d
  2565. GL_READ_FRAMEBUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_FRAMEBUFFER /;" d
  2566. GL_READ_FRAMEBUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_FRAMEBUFFER_BINDING /;" d
  2567. GL_READ_ONLY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_ONLY /;" d
  2568. GL_READ_PIXELS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_PIXELS /;" d
  2569. GL_READ_PIXELS_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_PIXELS_FORMAT /;" d
  2570. GL_READ_PIXELS_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_PIXELS_TYPE /;" d
  2571. GL_READ_WRITE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_READ_WRITE /;" d
  2572. GL_RED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RED /;" d
  2573. GL_RED_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RED_INTEGER /;" d
  2574. GL_RED_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RED_SNORM /;" d
  2575. GL_REFERENCED_BY_COMPUTE_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_COMPUTE_SHADER /;" d
  2576. GL_REFERENCED_BY_FRAGMENT_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_FRAGMENT_SHADER /;" d
  2577. GL_REFERENCED_BY_GEOMETRY_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_GEOMETRY_SHADER /;" d
  2578. GL_REFERENCED_BY_TESS_CONTROL_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_TESS_CONTROL_SHADER /;" d
  2579. GL_REFERENCED_BY_TESS_EVALUATION_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_TESS_EVALUATION_SHADER /;" d
  2580. GL_REFERENCED_BY_VERTEX_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REFERENCED_BY_VERTEX_SHADER /;" d
  2581. GL_RENDERBUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER /;" d
  2582. GL_RENDERBUFFER_ALPHA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_ALPHA_SIZE /;" d
  2583. GL_RENDERBUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_BINDING /;" d
  2584. GL_RENDERBUFFER_BLUE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_BLUE_SIZE /;" d
  2585. GL_RENDERBUFFER_DEPTH_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_DEPTH_SIZE /;" d
  2586. GL_RENDERBUFFER_GREEN_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_GREEN_SIZE /;" d
  2587. GL_RENDERBUFFER_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_HEIGHT /;" d
  2588. GL_RENDERBUFFER_INTERNAL_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_INTERNAL_FORMAT /;" d
  2589. GL_RENDERBUFFER_RED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_RED_SIZE /;" d
  2590. GL_RENDERBUFFER_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_SAMPLES /;" d
  2591. GL_RENDERBUFFER_STENCIL_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_STENCIL_SIZE /;" d
  2592. GL_RENDERBUFFER_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERBUFFER_WIDTH /;" d
  2593. GL_RENDERER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RENDERER /;" d
  2594. GL_REPEAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REPEAT /;" d
  2595. GL_REPLACE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_REPLACE /;" d
  2596. GL_RESET_NOTIFICATION_STRATEGY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RESET_NOTIFICATION_STRATEGY_ARB /;" d
  2597. GL_RG third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG /;" d
  2598. GL_RG16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG16 /;" d
  2599. GL_RG16F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG16F /;" d
  2600. GL_RG16I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG16I /;" d
  2601. GL_RG16UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG16UI /;" d
  2602. GL_RG16_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG16_SNORM /;" d
  2603. GL_RG32F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG32F /;" d
  2604. GL_RG32I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG32I /;" d
  2605. GL_RG32UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG32UI /;" d
  2606. GL_RG8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG8 /;" d
  2607. GL_RG8I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG8I /;" d
  2608. GL_RG8UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG8UI /;" d
  2609. GL_RG8_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG8_SNORM /;" d
  2610. GL_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB /;" d
  2611. GL_RGB10 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB10 /;" d
  2612. GL_RGB10_A2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB10_A2 /;" d
  2613. GL_RGB10_A2UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB10_A2UI /;" d
  2614. GL_RGB12 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB12 /;" d
  2615. GL_RGB16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB16 /;" d
  2616. GL_RGB16F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB16F /;" d
  2617. GL_RGB16I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB16I /;" d
  2618. GL_RGB16UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB16UI /;" d
  2619. GL_RGB16_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB16_SNORM /;" d
  2620. GL_RGB32F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB32F /;" d
  2621. GL_RGB32I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB32I /;" d
  2622. GL_RGB32UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB32UI /;" d
  2623. GL_RGB4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB4 /;" d
  2624. GL_RGB5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB5 /;" d
  2625. GL_RGB565 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB565 /;" d
  2626. GL_RGB5_A1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB5_A1 /;" d
  2627. GL_RGB8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB8 /;" d
  2628. GL_RGB8I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB8I /;" d
  2629. GL_RGB8UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB8UI /;" d
  2630. GL_RGB8_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB8_SNORM /;" d
  2631. GL_RGB9_E5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB9_E5 /;" d
  2632. GL_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA /;" d
  2633. GL_RGBA12 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA12 /;" d
  2634. GL_RGBA16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA16 /;" d
  2635. GL_RGBA16F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA16F /;" d
  2636. GL_RGBA16I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA16I /;" d
  2637. GL_RGBA16UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA16UI /;" d
  2638. GL_RGBA16_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA16_SNORM /;" d
  2639. GL_RGBA2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA2 /;" d
  2640. GL_RGBA32F third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA32F /;" d
  2641. GL_RGBA32I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA32I /;" d
  2642. GL_RGBA32UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA32UI /;" d
  2643. GL_RGBA4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA4 /;" d
  2644. GL_RGBA8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA8 /;" d
  2645. GL_RGBA8I third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA8I /;" d
  2646. GL_RGBA8UI third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA8UI /;" d
  2647. GL_RGBA8_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA8_SNORM /;" d
  2648. GL_RGBA_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA_INTEGER /;" d
  2649. GL_RGBA_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGBA_SNORM /;" d
  2650. GL_RGB_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB_INTEGER /;" d
  2651. GL_RGB_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RGB_SNORM /;" d
  2652. GL_RG_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG_INTEGER /;" d
  2653. GL_RG_SNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RG_SNORM /;" d
  2654. GL_RIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_RIGHT /;" d
  2655. GL_SAMPLER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER /;" d
  2656. GL_SAMPLER_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_1D /;" d
  2657. GL_SAMPLER_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_1D_ARRAY /;" d
  2658. GL_SAMPLER_1D_ARRAY_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_1D_ARRAY_SHADOW /;" d
  2659. GL_SAMPLER_1D_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_1D_SHADOW /;" d
  2660. GL_SAMPLER_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D /;" d
  2661. GL_SAMPLER_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_ARRAY /;" d
  2662. GL_SAMPLER_2D_ARRAY_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_ARRAY_SHADOW /;" d
  2663. GL_SAMPLER_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_MULTISAMPLE /;" d
  2664. GL_SAMPLER_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_MULTISAMPLE_ARRAY /;" d
  2665. GL_SAMPLER_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_RECT /;" d
  2666. GL_SAMPLER_2D_RECT_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_RECT_SHADOW /;" d
  2667. GL_SAMPLER_2D_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_2D_SHADOW /;" d
  2668. GL_SAMPLER_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_3D /;" d
  2669. GL_SAMPLER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_BINDING /;" d
  2670. GL_SAMPLER_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_BUFFER /;" d
  2671. GL_SAMPLER_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE /;" d
  2672. GL_SAMPLER_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE_MAP_ARRAY /;" d
  2673. GL_SAMPLER_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE_MAP_ARRAY_ARB /;" d
  2674. GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW /;" d
  2675. GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB /;" d
  2676. GL_SAMPLER_CUBE_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLER_CUBE_SHADOW /;" d
  2677. GL_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLES /;" d
  2678. GL_SAMPLES_PASSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLES_PASSED /;" d
  2679. GL_SAMPLE_ALPHA_TO_COVERAGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_ALPHA_TO_COVERAGE /;" d
  2680. GL_SAMPLE_ALPHA_TO_ONE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_ALPHA_TO_ONE /;" d
  2681. GL_SAMPLE_BUFFERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_BUFFERS /;" d
  2682. GL_SAMPLE_COVERAGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_COVERAGE /;" d
  2683. GL_SAMPLE_COVERAGE_INVERT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_COVERAGE_INVERT /;" d
  2684. GL_SAMPLE_COVERAGE_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_COVERAGE_VALUE /;" d
  2685. GL_SAMPLE_MASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_MASK /;" d
  2686. GL_SAMPLE_MASK_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_MASK_VALUE /;" d
  2687. GL_SAMPLE_POSITION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_POSITION /;" d
  2688. GL_SAMPLE_SHADING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_SHADING /;" d
  2689. GL_SAMPLE_SHADING_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SAMPLE_SHADING_ARB /;" d
  2690. GL_SCISSOR_BOX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SCISSOR_BOX /;" d
  2691. GL_SCISSOR_TEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SCISSOR_TEST /;" d
  2692. GL_SEPARATE_ATTRIBS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SEPARATE_ATTRIBS /;" d
  2693. GL_SET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SET /;" d
  2694. GL_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER /;" d
  2695. GL_SHADER_BINARY_FORMATS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_BINARY_FORMATS /;" d
  2696. GL_SHADER_COMPILER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_COMPILER /;" d
  2697. GL_SHADER_IMAGE_ACCESS_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_IMAGE_ACCESS_BARRIER_BIT /;" d
  2698. GL_SHADER_IMAGE_ATOMIC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_IMAGE_ATOMIC /;" d
  2699. GL_SHADER_IMAGE_LOAD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_IMAGE_LOAD /;" d
  2700. GL_SHADER_IMAGE_STORE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_IMAGE_STORE /;" d
  2701. GL_SHADER_INCLUDE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_INCLUDE_ARB /;" d
  2702. GL_SHADER_SOURCE_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_SOURCE_LENGTH /;" d
  2703. GL_SHADER_STORAGE_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BARRIER_BIT /;" d
  2704. GL_SHADER_STORAGE_BLOCK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BLOCK /;" d
  2705. GL_SHADER_STORAGE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BUFFER /;" d
  2706. GL_SHADER_STORAGE_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BUFFER_BINDING /;" d
  2707. GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT /;" d
  2708. GL_SHADER_STORAGE_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BUFFER_SIZE /;" d
  2709. GL_SHADER_STORAGE_BUFFER_START third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_STORAGE_BUFFER_START /;" d
  2710. GL_SHADER_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADER_TYPE /;" d
  2711. GL_SHADING_LANGUAGE_VERSION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHADING_LANGUAGE_VERSION /;" d
  2712. GL_SHORT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SHORT /;" d
  2713. GL_SIGNALED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIGNALED /;" d
  2714. GL_SIGNED_NORMALIZED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIGNED_NORMALIZED /;" d
  2715. GL_SILENCE_DEPRECATION third_party/imgui/examples/example_glfw_opengl2/main.cpp /^#define GL_SILENCE_DEPRECATION$/;" d file:
  2716. GL_SILENCE_DEPRECATION third_party/imgui/examples/imgui_impl_opengl2.cpp /^#define GL_SILENCE_DEPRECATION$/;" d file:
  2717. GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST /;" d
  2718. GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE /;" d
  2719. GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST /;" d
  2720. GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE /;" d
  2721. GL_SMOOTH_LINE_WIDTH_GRANULARITY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SMOOTH_LINE_WIDTH_GRANULARITY /;" d
  2722. GL_SMOOTH_LINE_WIDTH_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SMOOTH_LINE_WIDTH_RANGE /;" d
  2723. GL_SMOOTH_POINT_SIZE_GRANULARITY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SMOOTH_POINT_SIZE_GRANULARITY /;" d
  2724. GL_SMOOTH_POINT_SIZE_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SMOOTH_POINT_SIZE_RANGE /;" d
  2725. GL_SRC1_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRC1_ALPHA /;" d
  2726. GL_SRC1_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRC1_COLOR /;" d
  2727. GL_SRC_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRC_ALPHA /;" d
  2728. GL_SRC_ALPHA_SATURATE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRC_ALPHA_SATURATE /;" d
  2729. GL_SRC_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRC_COLOR /;" d
  2730. GL_SRGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB /;" d
  2731. GL_SRGB8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB8 /;" d
  2732. GL_SRGB8_ALPHA8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB8_ALPHA8 /;" d
  2733. GL_SRGB_ALPHA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB_ALPHA /;" d
  2734. GL_SRGB_DECODE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB_DECODE_ARB /;" d
  2735. GL_SRGB_READ third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB_READ /;" d
  2736. GL_SRGB_WRITE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SRGB_WRITE /;" d
  2737. GL_STACK_OVERFLOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STACK_OVERFLOW /;" d
  2738. GL_STACK_UNDERFLOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STACK_UNDERFLOW /;" d
  2739. GL_STATIC_COPY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STATIC_COPY /;" d
  2740. GL_STATIC_DRAW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STATIC_DRAW /;" d
  2741. GL_STATIC_READ third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STATIC_READ /;" d
  2742. GL_STENCIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL /;" d
  2743. GL_STENCIL_ATTACHMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_ATTACHMENT /;" d
  2744. GL_STENCIL_BACK_FAIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_FAIL /;" d
  2745. GL_STENCIL_BACK_FUNC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_FUNC /;" d
  2746. GL_STENCIL_BACK_PASS_DEPTH_FAIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_PASS_DEPTH_FAIL /;" d
  2747. GL_STENCIL_BACK_PASS_DEPTH_PASS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_PASS_DEPTH_PASS /;" d
  2748. GL_STENCIL_BACK_REF third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_REF /;" d
  2749. GL_STENCIL_BACK_VALUE_MASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_VALUE_MASK /;" d
  2750. GL_STENCIL_BACK_WRITEMASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BACK_WRITEMASK /;" d
  2751. GL_STENCIL_BUFFER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_BUFFER_BIT /;" d
  2752. GL_STENCIL_CLEAR_VALUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_CLEAR_VALUE /;" d
  2753. GL_STENCIL_COMPONENTS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_COMPONENTS /;" d
  2754. GL_STENCIL_FAIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_FAIL /;" d
  2755. GL_STENCIL_FUNC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_FUNC /;" d
  2756. GL_STENCIL_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_INDEX /;" d
  2757. GL_STENCIL_INDEX1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_INDEX1 /;" d
  2758. GL_STENCIL_INDEX16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_INDEX16 /;" d
  2759. GL_STENCIL_INDEX4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_INDEX4 /;" d
  2760. GL_STENCIL_INDEX8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_INDEX8 /;" d
  2761. GL_STENCIL_PASS_DEPTH_FAIL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_PASS_DEPTH_FAIL /;" d
  2762. GL_STENCIL_PASS_DEPTH_PASS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_PASS_DEPTH_PASS /;" d
  2763. GL_STENCIL_REF third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_REF /;" d
  2764. GL_STENCIL_RENDERABLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_RENDERABLE /;" d
  2765. GL_STENCIL_TEST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_TEST /;" d
  2766. GL_STENCIL_VALUE_MASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_VALUE_MASK /;" d
  2767. GL_STENCIL_WRITEMASK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STENCIL_WRITEMASK /;" d
  2768. GL_STEREO third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STEREO /;" d
  2769. GL_STREAM_COPY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STREAM_COPY /;" d
  2770. GL_STREAM_DRAW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STREAM_DRAW /;" d
  2771. GL_STREAM_READ third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_STREAM_READ /;" d
  2772. GL_SUBPIXEL_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SUBPIXEL_BITS /;" d
  2773. GL_SYNC_CL_EVENT_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_CL_EVENT_ARB /;" d
  2774. GL_SYNC_CL_EVENT_COMPLETE_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_CL_EVENT_COMPLETE_ARB /;" d
  2775. GL_SYNC_CONDITION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_CONDITION /;" d
  2776. GL_SYNC_FENCE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_FENCE /;" d
  2777. GL_SYNC_FLAGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_FLAGS /;" d
  2778. GL_SYNC_FLUSH_COMMANDS_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_FLUSH_COMMANDS_BIT /;" d
  2779. GL_SYNC_GPU_COMMANDS_COMPLETE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_GPU_COMMANDS_COMPLETE /;" d
  2780. GL_SYNC_STATUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_SYNC_STATUS /;" d
  2781. GL_TESS_CONTROL_OUTPUT_VERTICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_OUTPUT_VERTICES /;" d
  2782. GL_TESS_CONTROL_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_SHADER /;" d
  2783. GL_TESS_CONTROL_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_SHADER_BIT /;" d
  2784. GL_TESS_CONTROL_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_SUBROUTINE /;" d
  2785. GL_TESS_CONTROL_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_SUBROUTINE_UNIFORM /;" d
  2786. GL_TESS_CONTROL_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_CONTROL_TEXTURE /;" d
  2787. GL_TESS_EVALUATION_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_EVALUATION_SHADER /;" d
  2788. GL_TESS_EVALUATION_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_EVALUATION_SHADER_BIT /;" d
  2789. GL_TESS_EVALUATION_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_EVALUATION_SUBROUTINE /;" d
  2790. GL_TESS_EVALUATION_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_EVALUATION_SUBROUTINE_UNIFORM /;" d
  2791. GL_TESS_EVALUATION_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_EVALUATION_TEXTURE /;" d
  2792. GL_TESS_GEN_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_GEN_MODE /;" d
  2793. GL_TESS_GEN_POINT_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_GEN_POINT_MODE /;" d
  2794. GL_TESS_GEN_SPACING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_GEN_SPACING /;" d
  2795. GL_TESS_GEN_VERTEX_ORDER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TESS_GEN_VERTEX_ORDER /;" d
  2796. GL_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE /;" d
  2797. GL_TEXTURE0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE0 /;" d
  2798. GL_TEXTURE1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE1 /;" d
  2799. GL_TEXTURE10 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE10 /;" d
  2800. GL_TEXTURE11 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE11 /;" d
  2801. GL_TEXTURE12 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE12 /;" d
  2802. GL_TEXTURE13 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE13 /;" d
  2803. GL_TEXTURE14 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE14 /;" d
  2804. GL_TEXTURE15 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE15 /;" d
  2805. GL_TEXTURE16 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE16 /;" d
  2806. GL_TEXTURE17 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE17 /;" d
  2807. GL_TEXTURE18 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE18 /;" d
  2808. GL_TEXTURE19 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE19 /;" d
  2809. GL_TEXTURE2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE2 /;" d
  2810. GL_TEXTURE20 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE20 /;" d
  2811. GL_TEXTURE21 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE21 /;" d
  2812. GL_TEXTURE22 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE22 /;" d
  2813. GL_TEXTURE23 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE23 /;" d
  2814. GL_TEXTURE24 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE24 /;" d
  2815. GL_TEXTURE25 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE25 /;" d
  2816. GL_TEXTURE26 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE26 /;" d
  2817. GL_TEXTURE27 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE27 /;" d
  2818. GL_TEXTURE28 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE28 /;" d
  2819. GL_TEXTURE29 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE29 /;" d
  2820. GL_TEXTURE3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE3 /;" d
  2821. GL_TEXTURE30 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE30 /;" d
  2822. GL_TEXTURE31 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE31 /;" d
  2823. GL_TEXTURE4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE4 /;" d
  2824. GL_TEXTURE5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE5 /;" d
  2825. GL_TEXTURE6 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE6 /;" d
  2826. GL_TEXTURE7 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE7 /;" d
  2827. GL_TEXTURE8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE8 /;" d
  2828. GL_TEXTURE9 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE9 /;" d
  2829. GL_TEXTURE_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_1D /;" d
  2830. GL_TEXTURE_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_1D_ARRAY /;" d
  2831. GL_TEXTURE_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_2D /;" d
  2832. GL_TEXTURE_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_2D_ARRAY /;" d
  2833. GL_TEXTURE_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_2D_MULTISAMPLE /;" d
  2834. GL_TEXTURE_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_2D_MULTISAMPLE_ARRAY /;" d
  2835. GL_TEXTURE_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_3D /;" d
  2836. GL_TEXTURE_ALPHA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_ALPHA_SIZE /;" d
  2837. GL_TEXTURE_ALPHA_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_ALPHA_TYPE /;" d
  2838. GL_TEXTURE_BASE_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BASE_LEVEL /;" d
  2839. GL_TEXTURE_BINDING_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_1D /;" d
  2840. GL_TEXTURE_BINDING_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_1D_ARRAY /;" d
  2841. GL_TEXTURE_BINDING_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_2D /;" d
  2842. GL_TEXTURE_BINDING_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_2D_ARRAY /;" d
  2843. GL_TEXTURE_BINDING_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_2D_MULTISAMPLE /;" d
  2844. GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY /;" d
  2845. GL_TEXTURE_BINDING_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_3D /;" d
  2846. GL_TEXTURE_BINDING_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_BUFFER /;" d
  2847. GL_TEXTURE_BINDING_CUBE_MAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_CUBE_MAP /;" d
  2848. GL_TEXTURE_BINDING_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY /;" d
  2849. GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB /;" d
  2850. GL_TEXTURE_BINDING_RECTANGLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BINDING_RECTANGLE /;" d
  2851. GL_TEXTURE_BLUE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BLUE_SIZE /;" d
  2852. GL_TEXTURE_BLUE_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BLUE_TYPE /;" d
  2853. GL_TEXTURE_BORDER_COLOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BORDER_COLOR /;" d
  2854. GL_TEXTURE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BUFFER /;" d
  2855. GL_TEXTURE_BUFFER_DATA_STORE_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BUFFER_DATA_STORE_BINDING /;" d
  2856. GL_TEXTURE_BUFFER_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BUFFER_OFFSET /;" d
  2857. GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT /;" d
  2858. GL_TEXTURE_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_BUFFER_SIZE /;" d
  2859. GL_TEXTURE_COMPARE_FUNC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPARE_FUNC /;" d
  2860. GL_TEXTURE_COMPARE_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPARE_MODE /;" d
  2861. GL_TEXTURE_COMPRESSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSED /;" d
  2862. GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT /;" d
  2863. GL_TEXTURE_COMPRESSED_BLOCK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSED_BLOCK_SIZE /;" d
  2864. GL_TEXTURE_COMPRESSED_BLOCK_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSED_BLOCK_WIDTH /;" d
  2865. GL_TEXTURE_COMPRESSED_IMAGE_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSED_IMAGE_SIZE /;" d
  2866. GL_TEXTURE_COMPRESSION_HINT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_COMPRESSION_HINT /;" d
  2867. GL_TEXTURE_CUBE_MAP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP /;" d
  2868. GL_TEXTURE_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_ARRAY /;" d
  2869. GL_TEXTURE_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_ARRAY_ARB /;" d
  2870. GL_TEXTURE_CUBE_MAP_NEGATIVE_X third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_NEGATIVE_X /;" d
  2871. GL_TEXTURE_CUBE_MAP_NEGATIVE_Y third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Y /;" d
  2872. GL_TEXTURE_CUBE_MAP_NEGATIVE_Z third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_NEGATIVE_Z /;" d
  2873. GL_TEXTURE_CUBE_MAP_POSITIVE_X third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_POSITIVE_X /;" d
  2874. GL_TEXTURE_CUBE_MAP_POSITIVE_Y third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_POSITIVE_Y /;" d
  2875. GL_TEXTURE_CUBE_MAP_POSITIVE_Z third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_POSITIVE_Z /;" d
  2876. GL_TEXTURE_CUBE_MAP_SEAMLESS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_CUBE_MAP_SEAMLESS /;" d
  2877. GL_TEXTURE_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_DEPTH /;" d
  2878. GL_TEXTURE_DEPTH_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_DEPTH_SIZE /;" d
  2879. GL_TEXTURE_DEPTH_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_DEPTH_TYPE /;" d
  2880. GL_TEXTURE_FETCH_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_FETCH_BARRIER_BIT /;" d
  2881. GL_TEXTURE_FIXED_SAMPLE_LOCATIONS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_FIXED_SAMPLE_LOCATIONS /;" d
  2882. GL_TEXTURE_GATHER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_GATHER /;" d
  2883. GL_TEXTURE_GATHER_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_GATHER_SHADOW /;" d
  2884. GL_TEXTURE_GREEN_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_GREEN_SIZE /;" d
  2885. GL_TEXTURE_GREEN_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_GREEN_TYPE /;" d
  2886. GL_TEXTURE_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_HEIGHT /;" d
  2887. GL_TEXTURE_IMAGE_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_IMAGE_FORMAT /;" d
  2888. GL_TEXTURE_IMAGE_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_IMAGE_TYPE /;" d
  2889. GL_TEXTURE_IMMUTABLE_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_IMMUTABLE_FORMAT /;" d
  2890. GL_TEXTURE_IMMUTABLE_LEVELS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_IMMUTABLE_LEVELS /;" d
  2891. GL_TEXTURE_INTERNAL_FORMAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_INTERNAL_FORMAT /;" d
  2892. GL_TEXTURE_LOD_BIAS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_LOD_BIAS /;" d
  2893. GL_TEXTURE_MAG_FILTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_MAG_FILTER /;" d
  2894. GL_TEXTURE_MAX_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_MAX_LEVEL /;" d
  2895. GL_TEXTURE_MAX_LOD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_MAX_LOD /;" d
  2896. GL_TEXTURE_MIN_FILTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_MIN_FILTER /;" d
  2897. GL_TEXTURE_MIN_LOD third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_MIN_LOD /;" d
  2898. GL_TEXTURE_RECTANGLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_RECTANGLE /;" d
  2899. GL_TEXTURE_RED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_RED_SIZE /;" d
  2900. GL_TEXTURE_RED_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_RED_TYPE /;" d
  2901. GL_TEXTURE_SAMPLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SAMPLES /;" d
  2902. GL_TEXTURE_SHADOW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SHADOW /;" d
  2903. GL_TEXTURE_SHARED_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SHARED_SIZE /;" d
  2904. GL_TEXTURE_STENCIL_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_STENCIL_SIZE /;" d
  2905. GL_TEXTURE_SWIZZLE_A third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SWIZZLE_A /;" d
  2906. GL_TEXTURE_SWIZZLE_B third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SWIZZLE_B /;" d
  2907. GL_TEXTURE_SWIZZLE_G third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SWIZZLE_G /;" d
  2908. GL_TEXTURE_SWIZZLE_R third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SWIZZLE_R /;" d
  2909. GL_TEXTURE_SWIZZLE_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_SWIZZLE_RGBA /;" d
  2910. GL_TEXTURE_UPDATE_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_UPDATE_BARRIER_BIT /;" d
  2911. GL_TEXTURE_VIEW third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_VIEW /;" d
  2912. GL_TEXTURE_VIEW_MIN_LAYER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_VIEW_MIN_LAYER /;" d
  2913. GL_TEXTURE_VIEW_MIN_LEVEL third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_VIEW_MIN_LEVEL /;" d
  2914. GL_TEXTURE_VIEW_NUM_LAYERS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_VIEW_NUM_LAYERS /;" d
  2915. GL_TEXTURE_VIEW_NUM_LEVELS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_VIEW_NUM_LEVELS /;" d
  2916. GL_TEXTURE_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_WIDTH /;" d
  2917. GL_TEXTURE_WRAP_R third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_WRAP_R /;" d
  2918. GL_TEXTURE_WRAP_S third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_WRAP_S /;" d
  2919. GL_TEXTURE_WRAP_T third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TEXTURE_WRAP_T /;" d
  2920. GL_TIMEOUT_EXPIRED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TIMEOUT_EXPIRED /;" d
  2921. GL_TIMEOUT_IGNORED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TIMEOUT_IGNORED /;" d
  2922. GL_TIMESTAMP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TIMESTAMP /;" d
  2923. GL_TIME_ELAPSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TIME_ELAPSED /;" d
  2924. GL_TOP_LEVEL_ARRAY_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TOP_LEVEL_ARRAY_SIZE /;" d
  2925. GL_TOP_LEVEL_ARRAY_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TOP_LEVEL_ARRAY_STRIDE /;" d
  2926. GL_TRANSFORM_FEEDBACK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK /;" d
  2927. GL_TRANSFORM_FEEDBACK_ACTIVE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_ACTIVE /;" d
  2928. GL_TRANSFORM_FEEDBACK_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BARRIER_BIT /;" d
  2929. GL_TRANSFORM_FEEDBACK_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BINDING /;" d
  2930. GL_TRANSFORM_FEEDBACK_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER /;" d
  2931. GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE /;" d
  2932. GL_TRANSFORM_FEEDBACK_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_BINDING /;" d
  2933. GL_TRANSFORM_FEEDBACK_BUFFER_MODE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_MODE /;" d
  2934. GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED /;" d
  2935. GL_TRANSFORM_FEEDBACK_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_SIZE /;" d
  2936. GL_TRANSFORM_FEEDBACK_BUFFER_START third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_BUFFER_START /;" d
  2937. GL_TRANSFORM_FEEDBACK_PAUSED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_PAUSED /;" d
  2938. GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN /;" d
  2939. GL_TRANSFORM_FEEDBACK_VARYING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_VARYING /;" d
  2940. GL_TRANSFORM_FEEDBACK_VARYINGS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_VARYINGS /;" d
  2941. GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH /;" d
  2942. GL_TRIANGLES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRIANGLES /;" d
  2943. GL_TRIANGLES_ADJACENCY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRIANGLES_ADJACENCY /;" d
  2944. GL_TRIANGLE_FAN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRIANGLE_FAN /;" d
  2945. GL_TRIANGLE_STRIP third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRIANGLE_STRIP /;" d
  2946. GL_TRIANGLE_STRIP_ADJACENCY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRIANGLE_STRIP_ADJACENCY /;" d
  2947. GL_TRUE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TRUE /;" d
  2948. GL_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_TYPE /;" d
  2949. GL_UNDEFINED_VERTEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNDEFINED_VERTEX /;" d
  2950. GL_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM /;" d
  2951. GL_UNIFORM_ARRAY_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_ARRAY_STRIDE /;" d
  2952. GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX /;" d
  2953. GL_UNIFORM_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BARRIER_BIT /;" d
  2954. GL_UNIFORM_BLOCK third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK /;" d
  2955. GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS /;" d
  2956. GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES /;" d
  2957. GL_UNIFORM_BLOCK_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_BINDING /;" d
  2958. GL_UNIFORM_BLOCK_DATA_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_DATA_SIZE /;" d
  2959. GL_UNIFORM_BLOCK_INDEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_INDEX /;" d
  2960. GL_UNIFORM_BLOCK_NAME_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_NAME_LENGTH /;" d
  2961. GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER /;" d
  2962. GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER /;" d
  2963. GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER /;" d
  2964. GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER /;" d
  2965. GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER /;" d
  2966. GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER /;" d
  2967. GL_UNIFORM_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BUFFER /;" d
  2968. GL_UNIFORM_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BUFFER_BINDING /;" d
  2969. GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT /;" d
  2970. GL_UNIFORM_BUFFER_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BUFFER_SIZE /;" d
  2971. GL_UNIFORM_BUFFER_START third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_BUFFER_START /;" d
  2972. GL_UNIFORM_IS_ROW_MAJOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_IS_ROW_MAJOR /;" d
  2973. GL_UNIFORM_MATRIX_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_MATRIX_STRIDE /;" d
  2974. GL_UNIFORM_NAME_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_NAME_LENGTH /;" d
  2975. GL_UNIFORM_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_OFFSET /;" d
  2976. GL_UNIFORM_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_SIZE /;" d
  2977. GL_UNIFORM_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNIFORM_TYPE /;" d
  2978. GL_UNKNOWN_CONTEXT_RESET_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNKNOWN_CONTEXT_RESET_ARB /;" d
  2979. GL_UNPACK_ALIGNMENT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_ALIGNMENT /;" d
  2980. GL_UNPACK_COMPRESSED_BLOCK_DEPTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_COMPRESSED_BLOCK_DEPTH /;" d
  2981. GL_UNPACK_COMPRESSED_BLOCK_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_COMPRESSED_BLOCK_HEIGHT /;" d
  2982. GL_UNPACK_COMPRESSED_BLOCK_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_COMPRESSED_BLOCK_SIZE /;" d
  2983. GL_UNPACK_COMPRESSED_BLOCK_WIDTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_COMPRESSED_BLOCK_WIDTH /;" d
  2984. GL_UNPACK_IMAGE_HEIGHT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_IMAGE_HEIGHT /;" d
  2985. GL_UNPACK_LSB_FIRST third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_LSB_FIRST /;" d
  2986. GL_UNPACK_ROW_LENGTH third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_ROW_LENGTH /;" d
  2987. GL_UNPACK_SKIP_IMAGES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_SKIP_IMAGES /;" d
  2988. GL_UNPACK_SKIP_PIXELS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_SKIP_PIXELS /;" d
  2989. GL_UNPACK_SKIP_ROWS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_SKIP_ROWS /;" d
  2990. GL_UNPACK_SWAP_BYTES third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNPACK_SWAP_BYTES /;" d
  2991. GL_UNSIGNALED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNALED /;" d
  2992. GL_UNSIGNED_BYTE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_BYTE /;" d
  2993. GL_UNSIGNED_BYTE_2_3_3_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_BYTE_2_3_3_REV /;" d
  2994. GL_UNSIGNED_BYTE_3_3_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_BYTE_3_3_2 /;" d
  2995. GL_UNSIGNED_INT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT /;" d
  2996. GL_UNSIGNED_INT_10F_11F_11F_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_10F_11F_11F_REV /;" d
  2997. GL_UNSIGNED_INT_10_10_10_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_10_10_10_2 /;" d
  2998. GL_UNSIGNED_INT_24_8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_24_8 /;" d
  2999. GL_UNSIGNED_INT_2_10_10_10_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_2_10_10_10_REV /;" d
  3000. GL_UNSIGNED_INT_5_9_9_9_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_5_9_9_9_REV /;" d
  3001. GL_UNSIGNED_INT_8_8_8_8 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_8_8_8_8 /;" d
  3002. GL_UNSIGNED_INT_8_8_8_8_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_8_8_8_8_REV /;" d
  3003. GL_UNSIGNED_INT_ATOMIC_COUNTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_ATOMIC_COUNTER /;" d
  3004. GL_UNSIGNED_INT_IMAGE_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_1D /;" d
  3005. GL_UNSIGNED_INT_IMAGE_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_1D_ARRAY /;" d
  3006. GL_UNSIGNED_INT_IMAGE_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_2D /;" d
  3007. GL_UNSIGNED_INT_IMAGE_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_2D_ARRAY /;" d
  3008. GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE /;" d
  3009. GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY /;" d
  3010. GL_UNSIGNED_INT_IMAGE_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_2D_RECT /;" d
  3011. GL_UNSIGNED_INT_IMAGE_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_3D /;" d
  3012. GL_UNSIGNED_INT_IMAGE_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_BUFFER /;" d
  3013. GL_UNSIGNED_INT_IMAGE_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_CUBE /;" d
  3014. GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY /;" d
  3015. GL_UNSIGNED_INT_SAMPLER_1D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_1D /;" d
  3016. GL_UNSIGNED_INT_SAMPLER_1D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_1D_ARRAY /;" d
  3017. GL_UNSIGNED_INT_SAMPLER_2D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_2D /;" d
  3018. GL_UNSIGNED_INT_SAMPLER_2D_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_2D_ARRAY /;" d
  3019. GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE /;" d
  3020. GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY /;" d
  3021. GL_UNSIGNED_INT_SAMPLER_2D_RECT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_2D_RECT /;" d
  3022. GL_UNSIGNED_INT_SAMPLER_3D third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_3D /;" d
  3023. GL_UNSIGNED_INT_SAMPLER_BUFFER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_BUFFER /;" d
  3024. GL_UNSIGNED_INT_SAMPLER_CUBE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_CUBE /;" d
  3025. GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY /;" d
  3026. GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB /;" d
  3027. GL_UNSIGNED_INT_VEC2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_VEC2 /;" d
  3028. GL_UNSIGNED_INT_VEC3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_VEC3 /;" d
  3029. GL_UNSIGNED_INT_VEC4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_INT_VEC4 /;" d
  3030. GL_UNSIGNED_NORMALIZED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_NORMALIZED /;" d
  3031. GL_UNSIGNED_SHORT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT /;" d
  3032. GL_UNSIGNED_SHORT_1_5_5_5_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_1_5_5_5_REV /;" d
  3033. GL_UNSIGNED_SHORT_4_4_4_4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_4_4_4_4 /;" d
  3034. GL_UNSIGNED_SHORT_4_4_4_4_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_4_4_4_4_REV /;" d
  3035. GL_UNSIGNED_SHORT_5_5_5_1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_5_5_5_1 /;" d
  3036. GL_UNSIGNED_SHORT_5_6_5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_5_6_5 /;" d
  3037. GL_UNSIGNED_SHORT_5_6_5_REV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UNSIGNED_SHORT_5_6_5_REV /;" d
  3038. GL_UPPER_LEFT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_UPPER_LEFT /;" d
  3039. GL_VALIDATE_STATUS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VALIDATE_STATUS /;" d
  3040. GL_VENDOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VENDOR /;" d
  3041. GL_VERSION third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION /;" d
  3042. GL_VERSION_1_0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_0 /;" d
  3043. GL_VERSION_1_1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_1 /;" d
  3044. GL_VERSION_1_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_2 /;" d
  3045. GL_VERSION_1_3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_3 /;" d
  3046. GL_VERSION_1_4 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_4 /;" d
  3047. GL_VERSION_1_5 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_1_5 /;" d
  3048. GL_VERSION_2_0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_2_0 /;" d
  3049. GL_VERSION_2_1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_2_1 /;" d
  3050. GL_VERSION_3_0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_3_0 /;" d
  3051. GL_VERSION_3_1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_3_1 /;" d
  3052. GL_VERSION_3_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_3_2 /;" d
  3053. GL_VERSION_3_3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_3_3 /;" d
  3054. GL_VERSION_4_0 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_4_0 /;" d
  3055. GL_VERSION_4_1 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_4_1 /;" d
  3056. GL_VERSION_4_2 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_4_2 /;" d
  3057. GL_VERSION_4_3 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERSION_4_3 /;" d
  3058. GL_VERTEX_ARRAY_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ARRAY_BINDING /;" d
  3059. GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT /;" d
  3060. GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING /;" d
  3061. GL_VERTEX_ATTRIB_ARRAY_DIVISOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_DIVISOR /;" d
  3062. GL_VERTEX_ATTRIB_ARRAY_ENABLED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_ENABLED /;" d
  3063. GL_VERTEX_ATTRIB_ARRAY_INTEGER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_INTEGER /;" d
  3064. GL_VERTEX_ATTRIB_ARRAY_LONG third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_LONG /;" d
  3065. GL_VERTEX_ATTRIB_ARRAY_NORMALIZED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_NORMALIZED /;" d
  3066. GL_VERTEX_ATTRIB_ARRAY_POINTER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_POINTER /;" d
  3067. GL_VERTEX_ATTRIB_ARRAY_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_SIZE /;" d
  3068. GL_VERTEX_ATTRIB_ARRAY_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_STRIDE /;" d
  3069. GL_VERTEX_ATTRIB_ARRAY_TYPE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_ARRAY_TYPE /;" d
  3070. GL_VERTEX_ATTRIB_BINDING third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_BINDING /;" d
  3071. GL_VERTEX_ATTRIB_RELATIVE_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_ATTRIB_RELATIVE_OFFSET /;" d
  3072. GL_VERTEX_BINDING_DIVISOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_BINDING_DIVISOR /;" d
  3073. GL_VERTEX_BINDING_OFFSET third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_BINDING_OFFSET /;" d
  3074. GL_VERTEX_BINDING_STRIDE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_BINDING_STRIDE /;" d
  3075. GL_VERTEX_PROGRAM_POINT_SIZE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_PROGRAM_POINT_SIZE /;" d
  3076. GL_VERTEX_SHADER third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_SHADER /;" d
  3077. GL_VERTEX_SHADER_BIT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_SHADER_BIT /;" d
  3078. GL_VERTEX_SUBROUTINE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_SUBROUTINE /;" d
  3079. GL_VERTEX_SUBROUTINE_UNIFORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_SUBROUTINE_UNIFORM /;" d
  3080. GL_VERTEX_TEXTURE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VERTEX_TEXTURE /;" d
  3081. GL_VIEWPORT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEWPORT /;" d
  3082. GL_VIEWPORT_BOUNDS_RANGE third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEWPORT_BOUNDS_RANGE /;" d
  3083. GL_VIEWPORT_INDEX_PROVOKING_VERTEX third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEWPORT_INDEX_PROVOKING_VERTEX /;" d
  3084. GL_VIEWPORT_SUBPIXEL_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEWPORT_SUBPIXEL_BITS /;" d
  3085. GL_VIEW_CLASS_128_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_128_BITS /;" d
  3086. GL_VIEW_CLASS_16_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_16_BITS /;" d
  3087. GL_VIEW_CLASS_24_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_24_BITS /;" d
  3088. GL_VIEW_CLASS_32_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_32_BITS /;" d
  3089. GL_VIEW_CLASS_48_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_48_BITS /;" d
  3090. GL_VIEW_CLASS_64_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_64_BITS /;" d
  3091. GL_VIEW_CLASS_8_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_8_BITS /;" d
  3092. GL_VIEW_CLASS_96_BITS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_96_BITS /;" d
  3093. GL_VIEW_CLASS_BPTC_FLOAT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_BPTC_FLOAT /;" d
  3094. GL_VIEW_CLASS_BPTC_UNORM third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_BPTC_UNORM /;" d
  3095. GL_VIEW_CLASS_RGTC1_RED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_RGTC1_RED /;" d
  3096. GL_VIEW_CLASS_RGTC2_RG third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_RGTC2_RG /;" d
  3097. GL_VIEW_CLASS_S3TC_DXT1_RGB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_S3TC_DXT1_RGB /;" d
  3098. GL_VIEW_CLASS_S3TC_DXT1_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_S3TC_DXT1_RGBA /;" d
  3099. GL_VIEW_CLASS_S3TC_DXT3_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_S3TC_DXT3_RGBA /;" d
  3100. GL_VIEW_CLASS_S3TC_DXT5_RGBA third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_CLASS_S3TC_DXT5_RGBA /;" d
  3101. GL_VIEW_COMPATIBILITY_CLASS third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_VIEW_COMPATIBILITY_CLASS /;" d
  3102. GL_WAIT_FAILED third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_WAIT_FAILED /;" d
  3103. GL_WRITE_ONLY third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_WRITE_ONLY /;" d
  3104. GL_XOR third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_XOR /;" d
  3105. GL_ZERO third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define GL_ZERO /;" d
  3106. GLbitfield third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned int GLbitfield;$/;" t typeref:typename:unsigned int
  3107. GLboolean third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned char GLboolean;$/;" t typeref:typename:unsigned char
  3108. GLbyte third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef signed char GLbyte;$/;" t typeref:typename:signed char
  3109. GLchar third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef char GLchar;$/;" t typeref:typename:char
  3110. GLcharARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef char GLcharARB;$/;" t typeref:typename:char
  3111. GLclampd third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef double GLclampd;$/;" t typeref:typename:double
  3112. GLclampf third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef float GLclampf;$/;" t typeref:typename:float
  3113. GLdouble third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef double GLdouble;$/;" t typeref:typename:double
  3114. GLenum third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned int GLenum;$/;" t typeref:typename:unsigned int
  3115. GLfloat third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef float GLfloat;$/;" t typeref:typename:float
  3116. GLhalf third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned short GLhalf;$/;" t typeref:typename:unsigned short
  3117. GLhalfARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned short GLhalfARB;$/;" t typeref:typename:unsigned short
  3118. GLhalfNV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned short GLhalfNV;$/;" t typeref:typename:unsigned short
  3119. GLhandleARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned int GLhandleARB;$/;" t typeref:typename:unsigned int
  3120. GLint third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef int GLint;$/;" t typeref:typename:int
  3121. GLint64 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef int64_t GLint64;$/;" t typeref:typename:int64_t
  3122. GLint64EXT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef int64_t GLint64EXT;$/;" t typeref:typename:int64_t
  3123. GLintptr third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef ptrdiff_t GLintptr;$/;" t typeref:typename:ptrdiff_t
  3124. GLintptrARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef ptrdiff_t GLintptrARB;$/;" t typeref:typename:ptrdiff_t
  3125. GLshort third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef short GLshort;$/;" t typeref:typename:short
  3126. GLsizei third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef int GLsizei;$/;" t typeref:typename:int
  3127. GLsizeiptr third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef ptrdiff_t GLsizeiptr;$/;" t typeref:typename:ptrdiff_t
  3128. GLsizeiptrARB third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef ptrdiff_t GLsizeiptrARB;$/;" t typeref:typename:ptrdiff_t
  3129. GLsync third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef struct __GLsync *GLsync;$/;" t typeref:struct:__GLsync *
  3130. GLubyte third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned char GLubyte;$/;" t typeref:typename:unsigned char
  3131. GLuint third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned int GLuint;$/;" t typeref:typename:unsigned int
  3132. GLuint64 third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef uint64_t GLuint64;$/;" t typeref:typename:uint64_t
  3133. GLuint64EXT third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef uint64_t GLuint64EXT;$/;" t typeref:typename:uint64_t
  3134. GLushort third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned short GLushort;$/;" t typeref:typename:unsigned short
  3135. GLvdpauSurfaceNV third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLintptr GLvdpauSurfaceNV;$/;" t typeref:typename:GLintptr
  3136. GLvoid third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void GLvoid;$/;" t typeref:typename:void
  3137. GS third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10GeometryShader* GS;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10GeometryShader * file:
  3138. GS third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11GeometryShader* GS;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11GeometryShader * file:
  3139. GSInstances third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11ClassInstance *PSInstances[256], *VSInstances[256], *GSInstances[256]; \//;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11ClassInstance * [256]* [256]* [256] file:
  3140. GSInstancesCount third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT PSInstancesCount, VSInstancesCount, GSInstancesCount;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  3141. GStyleVarInfo third_party/imgui/imgui.cpp /^static const ImGuiStyleVarInfo GStyleVarInfo[] =$/;" v typeref:typename:const ImGuiStyleVarInfo[] file:
  3142. Gallery third_party/imgui/docs/README.md /^### Gallery$/;" S
  3143. Game libswan/include/swan/Game.h /^ Game(Win &win):$/;" f class:Swan::Game
  3144. Game libswan/include/swan/Game.h /^class Game {$/;" c namespace:Swan
  3145. Game Idea: Swan idea.md /^# Game Idea: Swan$/;" c
  3146. Gamma Correct Blending third_party/imgui/misc/freetype/README.md /^### Gamma Correct Blending$/;" S
  3147. GcAwakeTransientWindowBuffers third_party/imgui/imgui.cpp /^void ImGui::GcAwakeTransientWindowBuffers(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  3148. GcCompactTransientWindowBuffers third_party/imgui/imgui.cpp /^void ImGui::GcCompactTransientWindowBuffers(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  3149. GenericTriangleCache third_party/imgui_sdl/imgui_sdl.cpp /^ LRUCache<GenericTriangleKey, std::unique_ptr<TriangleCacheItem>, GenericTriangleCacheSize> Gen/;" m struct:__anonaaadc0580110::Device typeref:typename:LRUCache<GenericTriangleKey,std::unique_ptr<TriangleCacheItem>,GenericTriangleCacheSize> file:
  3150. GenericTriangleCacheSize third_party/imgui_sdl/imgui_sdl.cpp /^ static constexpr std::size_t GenericTriangleCacheSize = 64;$/;" m struct:__anonaaadc0580110::Device typeref:typename:std::size_t file:
  3151. GenericTriangleKey third_party/imgui_sdl/imgui_sdl.cpp /^ using GenericTriangleKey = std::tuple<GenericTriangleVertexKey, GenericTriangleVertexKey, Gene/;" t struct:__anonaaadc0580110::Device typeref:typename:std::tuple<GenericTriangleVertexKey,GenericTriangleVertexKey,GenericTriangleVertexKey> file:
  3152. GenericTriangleVertexKey third_party/imgui_sdl/imgui_sdl.cpp /^ using GenericTriangleVertexKey = std::tuple<int, int, double, double, uint32_t>;$/;" t struct:__anonaaadc0580110::Device typeref:typename:std::tuple<int,int,double,double,uint32_t> file:
  3153. GetActiveID third_party/imgui/imgui_internal.h /^ inline ImGuiID GetActiveID() { ImGuiContext& g = *GImGui; return g.ActiveId; }$/;" f namespace:ImGui typeref:typename:ImGuiID
  3154. GetBL third_party/imgui/imgui_internal.h /^ ImVec2 GetBL() const { return ImVec2(Min.x, Max.y); } \/\/ Botto/;" f struct:ImRect typeref:typename:ImVec2
  3155. GetBR third_party/imgui/imgui_internal.h /^ ImVec2 GetBR() const { return Max; } \/\/ Botto/;" f struct:ImRect typeref:typename:ImVec2
  3156. GetBackgroundDrawList third_party/imgui/imgui.cpp /^ImDrawList* ImGui::GetBackgroundDrawList()$/;" f class:ImGui typeref:typename:ImDrawList *
  3157. GetBit third_party/imgui/imgui.h /^ inline bool GetBit(int n) const { int off = (n >> 5); ImU32 mask = 1u << (n & 31); retur/;" f struct:ImFontGlyphRangesBuilder typeref:typename:bool
  3158. GetBit third_party/imgui/imgui_internal.h /^ bool GetBit(int n) const { int off = (n >> 5); int mask = 1 << (n & 31); retu/;" f struct:ImBoolVector typeref:typename:bool
  3159. GetBool third_party/imgui/imgui.cpp /^bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const$/;" f class:ImGuiStorage typeref:typename:bool
  3160. GetBoolRef third_party/imgui/imgui.cpp /^bool* ImGuiStorage::GetBoolRef(ImGuiID key, bool default_val)$/;" f class:ImGuiStorage typeref:typename:bool *
  3161. GetByIndex third_party/imgui/imgui_internal.h /^ T* GetByIndex(ImPoolIdx n) { return &Data[n]; }$/;" f struct:ImPool typeref:typename:T *
  3162. GetByKey third_party/imgui/imgui_internal.h /^ T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx/;" f struct:ImPool typeref:typename:T *
  3163. GetCenter third_party/imgui/imgui_internal.h /^ ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min/;" f struct:ImRect typeref:typename:ImVec2
  3164. GetCharAdvance third_party/imgui/imgui.h /^ float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdva/;" f struct:ImFont typeref:typename:float
  3165. GetClipRectMax third_party/imgui/imgui.h /^ inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return Im/;" f struct:ImDrawList typeref:typename:ImVec2
  3166. GetClipRectMin third_party/imgui/imgui.h /^ inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return Im/;" f struct:ImDrawList typeref:typename:ImVec2
  3167. GetClipboardText third_party/imgui/imgui.cpp /^const char* ImGui::GetClipboardText()$/;" f class:ImGui typeref:typename:const char *
  3168. GetClipboardTextFn third_party/imgui/imgui.h /^ const char* (*GetClipboardTextFn)(void* user_data);$/;" m struct:ImGuiIO typeref:typename:const char * (*)(void * user_data)
  3169. GetClipboardTextFn_DefaultImpl third_party/imgui/imgui.cpp /^static const char* GetClipboardTextFn_DefaultImpl(void*)$/;" f typeref:typename:const char * file:
  3170. GetColorU32 third_party/imgui/imgui.cpp /^ImU32 ImGui::GetColorU32(ImGuiCol idx, float alpha_mul)$/;" f class:ImGui typeref:typename:ImU32
  3171. GetColorU32 third_party/imgui/imgui.cpp /^ImU32 ImGui::GetColorU32(ImU32 col)$/;" f class:ImGui typeref:typename:ImU32
  3172. GetColorU32 third_party/imgui/imgui.cpp /^ImU32 ImGui::GetColorU32(const ImVec4& col)$/;" f class:ImGui typeref:typename:ImU32
  3173. GetColumnIndex third_party/imgui/imgui_widgets.cpp /^int ImGui::GetColumnIndex()$/;" f class:ImGui typeref:typename:int
  3174. GetColumnNormFromOffset third_party/imgui/imgui_widgets.cpp /^float ImGui::GetColumnNormFromOffset(const ImGuiColumns* columns, float offset)$/;" f class:ImGui typeref:typename:float
  3175. GetColumnOffset third_party/imgui/imgui_widgets.cpp /^float ImGui::GetColumnOffset(int column_index)$/;" f class:ImGui typeref:typename:float
  3176. GetColumnOffsetFromNorm third_party/imgui/imgui_widgets.cpp /^float ImGui::GetColumnOffsetFromNorm(const ImGuiColumns* columns, float offset_norm)$/;" f class:ImGui typeref:typename:float
  3177. GetColumnWidth third_party/imgui/imgui_widgets.cpp /^float ImGui::GetColumnWidth(int column_index)$/;" f class:ImGui typeref:typename:float
  3178. GetColumnWidthEx third_party/imgui/imgui_widgets.cpp /^static float GetColumnWidthEx(ImGuiColumns* columns, int column_index, bool before_resize = fals/;" f typeref:typename:float file:
  3179. GetColumnsCount third_party/imgui/imgui_widgets.cpp /^int ImGui::GetColumnsCount()$/;" f class:ImGui typeref:typename:int
  3180. GetColumnsID third_party/imgui/imgui_widgets.cpp /^ImGuiID ImGui::GetColumnsID(const char* str_id, int columns_count)$/;" f class:ImGui typeref:typename:ImGuiID
  3181. GetContentRegionAvail third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetContentRegionAvail()$/;" f class:ImGui typeref:typename:ImVec2
  3182. GetContentRegionAvailWidth third_party/imgui/imgui.h /^ static inline float GetContentRegionAvailWidth() { return GetContentRegionAvail().x/;" f namespace:ImGui typeref:typename:float
  3183. GetContentRegionMax third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetContentRegionMax()$/;" f class:ImGui typeref:typename:ImVec2
  3184. GetContentRegionMaxAbs third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetContentRegionMaxAbs()$/;" f class:ImGui typeref:typename:ImVec2
  3185. GetCurrentClipRect third_party/imgui/imgui_draw.cpp /^#define GetCurrentClipRect(/;" d file:
  3186. GetCurrentContext third_party/imgui/imgui.cpp /^ImGuiContext* ImGui::GetCurrentContext()$/;" f class:ImGui typeref:typename:ImGuiContext *
  3187. GetCurrentTextureId third_party/imgui/imgui_draw.cpp /^#define GetCurrentTextureId(/;" d file:
  3188. GetCurrentWindow third_party/imgui/imgui_internal.h /^ inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWi/;" f namespace:ImGui typeref:typename:ImGuiWindow *
  3189. GetCurrentWindowRead third_party/imgui/imgui_internal.h /^ inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.Cu/;" f namespace:ImGui typeref:typename:ImGuiWindow *
  3190. GetCursorPos third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetCursorPos()$/;" f class:ImGui typeref:typename:ImVec2
  3191. GetCursorPosX third_party/imgui/imgui.cpp /^float ImGui::GetCursorPosX()$/;" f class:ImGui typeref:typename:float
  3192. GetCursorPosY third_party/imgui/imgui.cpp /^float ImGui::GetCursorPosY()$/;" f class:ImGui typeref:typename:float
  3193. GetCursorScreenPos third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetCursorScreenPos()$/;" f class:ImGui typeref:typename:ImVec2
  3194. GetCursorStartPos third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetCursorStartPos()$/;" f class:ImGui typeref:typename:ImVec2
  3195. GetCustomRectByIndex third_party/imgui/imgui.h /^ const ImFontAtlasCustomRect*GetCustomRectByIndex(int index) const { if (index < 0) return NU/;" f struct:ImFontAtlas typeref:typename:const ImFontAtlasCustomRect *
  3196. GetDebugName third_party/imgui/imgui.h /^ const char* GetDebugName() const { return ConfigData ? Config/;" f struct:ImFont typeref:typename:const char *
  3197. GetDefaultCompressedFontDataTTFBase85 third_party/imgui/imgui_draw.cpp /^static const char* GetDefaultCompressedFontDataTTFBase85()$/;" f typeref:typename:const char * file:
  3198. GetDefaultFont third_party/imgui/imgui_internal.h /^ inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefaul/;" f namespace:ImGui typeref:typename:ImFont *
  3199. GetDragDropPayload third_party/imgui/imgui.cpp /^const ImGuiPayload* ImGui::GetDragDropPayload()$/;" f class:ImGui typeref:typename:const ImGuiPayload *
  3200. GetDraggedColumnOffset third_party/imgui/imgui_widgets.cpp /^static float GetDraggedColumnOffset(ImGuiColumns* columns, int column_index)$/;" f typeref:typename:float file:
  3201. GetDrawData third_party/imgui/imgui.cpp /^ImDrawData* ImGui::GetDrawData()$/;" f class:ImGui typeref:typename:ImDrawData *
  3202. GetDrawListSharedData third_party/imgui/imgui.cpp /^ImDrawListSharedData* ImGui::GetDrawListSharedData()$/;" f class:ImGui typeref:typename:ImDrawListSharedData *
  3203. GetFallbackWindowNameForWindowingList third_party/imgui/imgui.cpp /^static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window)$/;" f typeref:typename:const char * file:
  3204. GetFloat third_party/imgui/imgui.cpp /^float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const$/;" f class:ImGuiStorage typeref:typename:float
  3205. GetFloatRef third_party/imgui/imgui.cpp /^float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val)$/;" f class:ImGuiStorage typeref:typename:float *
  3206. GetFocusID third_party/imgui/imgui_internal.h /^ inline ImGuiID GetFocusID() { ImGuiContext& g = *GImGui; return g.NavId; }$/;" f namespace:ImGui typeref:typename:ImGuiID
  3207. GetFont third_party/imgui/imgui.cpp /^ImFont* ImGui::GetFont()$/;" f class:ImGui typeref:typename:ImFont *
  3208. GetFontSize third_party/imgui/imgui.cpp /^float ImGui::GetFontSize()$/;" f class:ImGui typeref:typename:float
  3209. GetFontTexUvWhitePixel third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetFontTexUvWhitePixel()$/;" f class:ImGui typeref:typename:ImVec2
  3210. GetForegroundDrawList third_party/imgui/imgui.cpp /^ImDrawList* ImGui::GetForegroundDrawList()$/;" f class:ImGui typeref:typename:ImDrawList *
  3211. GetForegroundDrawList third_party/imgui/imgui_internal.h /^ inline ImDrawList* GetForegroundDrawList(ImGuiWindow*) { ImGuiContext& g = *GImGui; ret/;" f namespace:ImGui typeref:typename:ImDrawList *
  3212. GetFrameCount third_party/imgui/imgui.cpp /^int ImGui::GetFrameCount()$/;" f class:ImGui typeref:typename:int
  3213. GetFrameHeight third_party/imgui/imgui.cpp /^float ImGui::GetFrameHeight()$/;" f class:ImGui typeref:typename:float
  3214. GetFrameHeightWithSpacing third_party/imgui/imgui.cpp /^float ImGui::GetFrameHeightWithSpacing()$/;" f class:ImGui typeref:typename:float
  3215. GetGlyphRangesChineseFull third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesChineseFull()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3216. GetGlyphRangesChineseSimplifiedCommon third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesChineseSimplifiedCommon()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3217. GetGlyphRangesCyrillic third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesCyrillic()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3218. GetGlyphRangesDefault third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesDefault()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3219. GetGlyphRangesJapanese third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesJapanese()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3220. GetGlyphRangesKorean third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesKorean()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3221. GetGlyphRangesThai third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesThai()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3222. GetGlyphRangesVietnamese third_party/imgui/imgui_draw.cpp /^const ImWchar* ImFontAtlas::GetGlyphRangesVietnamese()$/;" f class:ImFontAtlas typeref:typename:const ImWchar *
  3223. GetHeight third_party/imgui/imgui_internal.h /^ float GetHeight() const { return Max.y - Min.y; }$/;" f struct:ImRect typeref:typename:float
  3224. GetHoveredID third_party/imgui/imgui.cpp /^ImGuiID ImGui::GetHoveredID()$/;" f class:ImGui typeref:typename:ImGuiID
  3225. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGui::GetID(const char* str_id)$/;" f class:ImGui typeref:typename:ImGuiID
  3226. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end)$/;" f class:ImGui typeref:typename:ImGuiID
  3227. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGui::GetID(const void* ptr_id)$/;" f class:ImGui typeref:typename:ImGuiID
  3228. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3229. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetID(const void* ptr)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3230. GetID third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetID(int n)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3231. GetIDFromRectangle third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetIDFromRectangle(const ImRect& r_abs)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3232. GetIDNoKeepAlive third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetIDNoKeepAlive(const char* str, const char* str_end)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3233. GetIDNoKeepAlive third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetIDNoKeepAlive(const void* ptr)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3234. GetIDNoKeepAlive third_party/imgui/imgui.cpp /^ImGuiID ImGuiWindow::GetIDNoKeepAlive(int n)$/;" f class:ImGuiWindow typeref:typename:ImGuiID
  3235. GetIO third_party/imgui/imgui.cpp /^ImGuiIO& ImGui::GetIO()$/;" f class:ImGui typeref:typename:ImGuiIO &
  3236. GetIndex third_party/imgui/imgui_internal.h /^ ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Data.Data && p < Data.Data /;" f struct:ImPool typeref:typename:ImPoolIdx
  3237. GetInt third_party/imgui/imgui.cpp /^int ImGuiStorage::GetInt(ImGuiID key, int default_val) const$/;" f class:ImGuiStorage typeref:typename:int
  3238. GetIntRef third_party/imgui/imgui.cpp /^int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val)$/;" f class:ImGuiStorage typeref:typename:int *
  3239. GetItemID third_party/imgui/imgui_internal.h /^ inline ImGuiID GetItemID() { ImGuiContext& g = *GImGui; return g.CurrentWindow-/;" f namespace:ImGui typeref:typename:ImGuiID
  3240. GetItemRectMax third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetItemRectMax()$/;" f class:ImGui typeref:typename:ImVec2
  3241. GetItemRectMin third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetItemRectMin()$/;" f class:ImGui typeref:typename:ImVec2
  3242. GetItemRectSize third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetItemRectSize()$/;" f class:ImGui typeref:typename:ImVec2
  3243. GetItemsLineHeightWithSpacing third_party/imgui/imgui.h /^ static inline float GetItemsLineHeightWithSpacing() { return GetFrameHeightWithSpacing/;" f namespace:ImGui typeref:typename:float
  3244. GetKeyIndex third_party/imgui/imgui.cpp /^int ImGui::GetKeyIndex(ImGuiKey imgui_key)$/;" f class:ImGui typeref:typename:int
  3245. GetKeyPressedAmount third_party/imgui/imgui.cpp /^int ImGui::GetKeyPressedAmount(int key_index, float repeat_delay, float repeat_rate)$/;" f class:ImGui typeref:typename:int
  3246. GetMinimumStepAtDecimalPrecision third_party/imgui/imgui_widgets.cpp /^static float GetMinimumStepAtDecimalPrecision(int decimal_precision)$/;" f typeref:typename:float file:
  3247. GetMouseCursor third_party/imgui/imgui.cpp /^ImGuiMouseCursor ImGui::GetMouseCursor()$/;" f class:ImGui typeref:typename:ImGuiMouseCursor
  3248. GetMouseCursorTexData third_party/imgui/imgui_draw.cpp /^bool ImFontAtlas::GetMouseCursorTexData(ImGuiMouseCursor cursor_type, ImVec2* out_offset, ImVec2/;" f class:ImFontAtlas typeref:typename:bool
  3249. GetMouseDragDelta third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetMouseDragDelta(int button, float lock_threshold)$/;" f class:ImGui typeref:typename:ImVec2
  3250. GetMousePos third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetMousePos()$/;" f class:ImGui typeref:typename:ImVec2
  3251. GetMousePosOnOpeningCurrentPopup third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetMousePosOnOpeningCurrentPopup()$/;" f class:ImGui typeref:typename:ImVec2
  3252. GetNavInputAmount third_party/imgui/imgui.cpp /^float ImGui::GetNavInputAmount(ImGuiNavInput n, ImGuiInputReadMode mode)$/;" f class:ImGui typeref:typename:float
  3253. GetNavInputAmount2d third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetNavInputAmount2d(ImGuiNavDirSourceFlags dir_sources, ImGuiInputReadMode mode, f/;" f class:ImGui typeref:typename:ImVec2
  3254. GetOrAddByKey third_party/imgui/imgui_internal.h /^ T* GetOrAddByKey(ImGuiID key) { int* p_idx = Map.GetIntRef(key, -1); if (*/;" f struct:ImPool typeref:typename:T *
  3255. GetOverlayDrawList third_party/imgui/imgui.h /^ static inline ImDrawList* GetOverlayDrawList() { return GetForegroundDrawList(); /;" f namespace:ImGui typeref:typename:ImDrawList *
  3256. GetRedoAvailCount third_party/imgui/imgui_internal.h /^ int GetRedoAvailCount() const { return STB_TEXTEDIT_UNDOSTATECOUNT - Stb.undostate/;" f struct:ImGuiInputTextState typeref:typename:int
  3257. GetResizeBorderRect third_party/imgui/imgui.cpp /^static ImRect GetResizeBorderRect(ImGuiWindow* window, int border_n, float perp_padding, float t/;" f typeref:typename:ImRect file:
  3258. GetScrollMaxX third_party/imgui/imgui.cpp /^float ImGui::GetScrollMaxX()$/;" f class:ImGui typeref:typename:float
  3259. GetScrollMaxY third_party/imgui/imgui.cpp /^float ImGui::GetScrollMaxY()$/;" f class:ImGui typeref:typename:float
  3260. GetScrollX third_party/imgui/imgui.cpp /^float ImGui::GetScrollX()$/;" f class:ImGui typeref:typename:float
  3261. GetScrollY third_party/imgui/imgui.cpp /^float ImGui::GetScrollY()$/;" f class:ImGui typeref:typename:float
  3262. GetScrollbarID third_party/imgui/imgui_widgets.cpp /^ImGuiID ImGui::GetScrollbarID(ImGuiWindow* window, ImGuiAxis axis)$/;" f class:ImGui typeref:typename:ImGuiID
  3263. GetSize third_party/imgui/imgui_internal.h /^ ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y/;" f struct:ImRect typeref:typename:ImVec2
  3264. GetSize third_party/imgui/imgui_internal.h /^ int GetSize() const { return Data.Size; }$/;" f struct:ImPool typeref:typename:int
  3265. GetStateStorage third_party/imgui/imgui.cpp /^ImGuiStorage* ImGui::GetStateStorage()$/;" f class:ImGui typeref:typename:ImGuiStorage *
  3266. GetStyle third_party/imgui/imgui.cpp /^ImGuiStyle& ImGui::GetStyle()$/;" f class:ImGui typeref:typename:ImGuiStyle &
  3267. GetStyleColorName third_party/imgui/imgui.cpp /^const char* ImGui::GetStyleColorName(ImGuiCol idx)$/;" f class:ImGui typeref:typename:const char *
  3268. GetStyleColorVec4 third_party/imgui/imgui.cpp /^const ImVec4& ImGui::GetStyleColorVec4(ImGuiCol idx)$/;" f class:ImGui typeref:typename:const ImVec4 &
  3269. GetStyleVarInfo third_party/imgui/imgui.cpp /^static const ImGuiStyleVarInfo* GetStyleVarInfo(ImGuiStyleVar idx)$/;" f typeref:typename:const ImGuiStyleVarInfo * file:
  3270. GetTL third_party/imgui/imgui_internal.h /^ ImVec2 GetTL() const { return Min; } \/\/ Top-l/;" f struct:ImRect typeref:typename:ImVec2
  3271. GetTR third_party/imgui/imgui_internal.h /^ ImVec2 GetTR() const { return ImVec2(Max.x, Min.y); } \/\/ Top-r/;" f struct:ImRect typeref:typename:ImVec2
  3272. GetTabBarFromTabBarRef third_party/imgui/imgui_widgets.cpp /^static ImGuiTabBar* GetTabBarFromTabBarRef(const ImGuiPtrOrIndex& ref)$/;" f typeref:typename:ImGuiTabBar * file:
  3273. GetTabBarRefFromTabBar third_party/imgui/imgui_widgets.cpp /^static ImGuiPtrOrIndex GetTabBarRefFromTabBar(ImGuiTabBar* tab_bar)$/;" f typeref:typename:ImGuiPtrOrIndex file:
  3274. GetTabName third_party/imgui/imgui_internal.h /^ const char* GetTabName(const ImGuiTabItem* tab) const$/;" f struct:ImGuiTabBar typeref:typename:const char *
  3275. GetTabOrder third_party/imgui/imgui_internal.h /^ int GetTabOrder(const ImGuiTabItem* tab) const { return Tabs.index_from_ptr/;" f struct:ImGuiTabBar typeref:typename:int
  3276. GetTexDataAsAlpha8 third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_hei/;" f class:ImFontAtlas typeref:typename:void
  3277. GetTexDataAsRGBA32 third_party/imgui/imgui_draw.cpp /^void ImFontAtlas::GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_hei/;" f class:ImFontAtlas typeref:typename:void
  3278. GetTextLineHeight third_party/imgui/imgui.cpp /^float ImGui::GetTextLineHeight()$/;" f class:ImGui typeref:typename:float
  3279. GetTextLineHeightWithSpacing third_party/imgui/imgui.cpp /^float ImGui::GetTextLineHeightWithSpacing()$/;" f class:ImGui typeref:typename:float
  3280. GetTime third_party/imgui/imgui.cpp /^double ImGui::GetTime()$/;" f class:ImGui typeref:typename:double
  3281. GetTopMostPopupModal third_party/imgui/imgui.cpp /^ImGuiWindow* ImGui::GetTopMostPopupModal()$/;" f class:ImGui typeref:typename:ImGuiWindow *
  3282. GetTreeNodeToLabelSpacing third_party/imgui/imgui_widgets.cpp /^float ImGui::GetTreeNodeToLabelSpacing()$/;" f class:ImGui typeref:typename:float
  3283. GetUndoAvailCount third_party/imgui/imgui_internal.h /^ int GetUndoAvailCount() const { return Stb.undostate.undo_point; }$/;" f struct:ImGuiInputTextState typeref:typename:int
  3284. GetVarPtr third_party/imgui/imgui.cpp /^ void* GetVarPtr(ImGuiStyle* style) const { return (void*)((unsigned char*)style + /;" f struct:ImGuiStyleVarInfo typeref:typename:void * file:
  3285. GetVersion third_party/imgui/imgui.cpp /^const char* ImGui::GetVersion()$/;" f class:ImGui typeref:typename:const char *
  3286. GetViewportRect third_party/imgui/imgui.cpp /^static ImRect GetViewportRect()$/;" f typeref:typename:ImRect file:
  3287. GetVoidPtr third_party/imgui/imgui.cpp /^void* ImGuiStorage::GetVoidPtr(ImGuiID key) const$/;" f class:ImGuiStorage typeref:typename:void *
  3288. GetVoidPtrRef third_party/imgui/imgui.cpp /^void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val)$/;" f class:ImGuiStorage typeref:typename:void **
  3289. GetWidth third_party/imgui/imgui_internal.h /^ float GetWidth() const { return Max.x - Min.x; }$/;" f struct:ImRect typeref:typename:float
  3290. GetWindowAllowedExtentRect third_party/imgui/imgui.cpp /^ImRect ImGui::GetWindowAllowedExtentRect(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:ImRect
  3291. GetWindowBgColorIdxFromFlags third_party/imgui/imgui.cpp /^static ImGuiCol GetWindowBgColorIdxFromFlags(ImGuiWindowFlags flags)$/;" f typeref:typename:ImGuiCol file:
  3292. GetWindowContentRegionMax third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetWindowContentRegionMax()$/;" f class:ImGui typeref:typename:ImVec2
  3293. GetWindowContentRegionMin third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetWindowContentRegionMin()$/;" f class:ImGui typeref:typename:ImVec2
  3294. GetWindowContentRegionWidth third_party/imgui/imgui.cpp /^float ImGui::GetWindowContentRegionWidth()$/;" f class:ImGui typeref:typename:float
  3295. GetWindowDrawList third_party/imgui/imgui.cpp /^ImDrawList* ImGui::GetWindowDrawList()$/;" f class:ImGui typeref:typename:ImDrawList *
  3296. GetWindowHeight third_party/imgui/imgui.cpp /^float ImGui::GetWindowHeight()$/;" f class:ImGui typeref:typename:float
  3297. GetWindowPos third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetWindowPos()$/;" f class:ImGui typeref:typename:ImVec2
  3298. GetWindowRect third_party/imgui/imgui.cpp /^ static ImRect GetWindowRect(ImGuiWindow* window, int rect_type)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:ImRect file:
  3299. GetWindowSize third_party/imgui/imgui.cpp /^ImVec2 ImGui::GetWindowSize()$/;" f class:ImGui typeref:typename:ImVec2
  3300. GetWindowWidth third_party/imgui/imgui.cpp /^float ImGui::GetWindowWidth()$/;" f class:ImGui typeref:typename:float
  3301. GlfwClientApi third_party/imgui/examples/imgui_impl_glfw.cpp /^enum GlfwClientApi$/;" g file:
  3302. GlfwClientApi_OpenGL third_party/imgui/examples/imgui_impl_glfw.cpp /^ GlfwClientApi_OpenGL,$/;" e enum:GlfwClientApi file:
  3303. GlfwClientApi_Unknown third_party/imgui/examples/imgui_impl_glfw.cpp /^ GlfwClientApi_Unknown,$/;" e enum:GlfwClientApi file:
  3304. GlfwClientApi_Vulkan third_party/imgui/examples/imgui_impl_glfw.cpp /^ GlfwClientApi_Vulkan$/;" e enum:GlfwClientApi file:
  3305. Glyph third_party/imgui/imgui.h /^ typedef ImFontGlyph Glyph; \/\/ OBSOLETED in 1.52+$/;" t struct:ImFont typeref:typename:ImFontGlyph
  3306. GlyphAdvanceX third_party/imgui/imgui.h /^ float GlyphAdvanceX; \/\/ Input \/\/ For custom font glyphs only (ID<0x10000):/;" m struct:ImFontAtlasCustomRect typeref:typename:float
  3307. GlyphExtraSpacing third_party/imgui/imgui.h /^ ImVec2 GlyphExtraSpacing; \/\/ 0, 0 \/\/ Extra spacing (in pixels) between/;" m struct:ImFontConfig typeref:typename:ImVec2
  3308. GlyphInfo third_party/imgui/misc/freetype/imgui_freetype.cpp /^ struct GlyphInfo$/;" s namespace:__anond3bafd850110 file:
  3309. GlyphMaxAdvanceX third_party/imgui/imgui.h /^ float GlyphMaxAdvanceX; \/\/ FLT_MAX \/\/ Maximum AdvanceX for glyphs$/;" m struct:ImFontConfig typeref:typename:float
  3310. GlyphMinAdvanceX third_party/imgui/imgui.h /^ float GlyphMinAdvanceX; \/\/ 0 \/\/ Minimum AdvanceX for glyphs, set /;" m struct:ImFontConfig typeref:typename:float
  3311. GlyphOffset third_party/imgui/imgui.h /^ ImVec2 GlyphOffset; \/\/ 0, 0 \/\/ Offset all glyphs from this font /;" m struct:ImFontConfig typeref:typename:ImVec2
  3312. GlyphOffset third_party/imgui/imgui.h /^ ImVec2 GlyphOffset; \/\/ Input \/\/ For custom font glyphs only (ID<0x10000):/;" m struct:ImFontAtlasCustomRect typeref:typename:ImVec2
  3313. GlyphRanges third_party/imgui/imgui.h /^ const ImWchar* GlyphRanges; \/\/ NULL \/\/ Pointer to a user-provided list o/;" m struct:ImFontConfig typeref:typename:const ImWchar *
  3314. GlyphRangesBuilder third_party/imgui/imgui.h /^ typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; \/\/ OBSOLETED in 1.67+$/;" t struct:ImFontAtlas typeref:typename:ImFontGlyphRangesBuilder
  3315. Glyphs third_party/imgui/imgui.h /^ ImVector<ImFontGlyph> Glyphs; \/\/ 12-16 \/\/ out \/\/ \/\/ All/;" m struct:ImFont typeref:typename:ImVector<ImFontGlyph>
  3316. GlyphsCount third_party/imgui/imgui_draw.cpp /^ int GlyphsCount; \/\/ Glyph count (excluding missing glyphs and glyph/;" m struct:ImFontBuildSrcData typeref:typename:int file:
  3317. GlyphsCount third_party/imgui/imgui_draw.cpp /^ int GlyphsCount;$/;" m struct:ImFontBuildDstData typeref:typename:int file:
  3318. GlyphsCount third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int GlyphsCount; \/\/ Glyph count (excluding missing glyphs and glyph/;" m struct:ImFontBuildSrcDataFT typeref:typename:int file:
  3319. GlyphsCount third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int GlyphsCount;$/;" m struct:ImFontBuildDstDataFT typeref:typename:int file:
  3320. GlyphsHighest third_party/imgui/imgui_draw.cpp /^ int GlyphsHighest; \/\/ Highest requested codepoint$/;" m struct:ImFontBuildSrcData typeref:typename:int file:
  3321. GlyphsHighest third_party/imgui/imgui_draw.cpp /^ int GlyphsHighest;$/;" m struct:ImFontBuildDstData typeref:typename:int file:
  3322. GlyphsHighest third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int GlyphsHighest; \/\/ Highest requested codepoint$/;" m struct:ImFontBuildSrcDataFT typeref:typename:int file:
  3323. GlyphsHighest third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int GlyphsHighest;$/;" m struct:ImFontBuildDstDataFT typeref:typename:int file:
  3324. GlyphsList third_party/imgui/imgui_draw.cpp /^ ImVector<int> GlyphsList; \/\/ Glyph codepoints list (flattened version of Gly/;" m struct:ImFontBuildSrcData typeref:typename:ImVector<int> file:
  3325. GlyphsList third_party/imgui/misc/freetype/imgui_freetype.cpp /^ ImVector<ImFontBuildSrcGlyphFT> GlyphsList;$/;" m struct:ImFontBuildSrcDataFT typeref:typename:ImVector<ImFontBuildSrcGlyphFT> file:
  3326. GlyphsSet third_party/imgui/imgui_draw.cpp /^ ImBoolVector GlyphsSet; \/\/ Glyph bit map (random access, 1-bit per codepoi/;" m struct:ImFontBuildSrcData typeref:typename:ImBoolVector file:
  3327. GlyphsSet third_party/imgui/imgui_draw.cpp /^ ImBoolVector GlyphsSet; \/\/ This is used to resolve collision when multiple/;" m struct:ImFontBuildDstData typeref:typename:ImBoolVector file:
  3328. GlyphsSet third_party/imgui/misc/freetype/imgui_freetype.cpp /^ ImBoolVector GlyphsSet; \/\/ Glyph bit map (random access, 1-bit per codepoi/;" m struct:ImFontBuildSrcDataFT typeref:typename:ImBoolVector file:
  3329. GlyphsSet third_party/imgui/misc/freetype/imgui_freetype.cpp /^ ImBoolVector GlyphsSet; \/\/ This is used to resolve collision when multiple/;" m struct:ImFontBuildDstDataFT typeref:typename:ImBoolVector file:
  3330. GrabMinSize third_party/imgui/imgui.h /^ float GrabMinSize; \/\/ Minimum width\/height of a grab box for slider\//;" m struct:ImGuiStyle typeref:typename:float
  3331. GrabRounding third_party/imgui/imgui.h /^ float GrabRounding; \/\/ Radius of grabs corners rounding. Set to 0.0f t/;" m struct:ImGuiStyle typeref:typename:float
  3332. Grad third_party/PerlinNoise/PerlinNoise.hpp /^ static double Grad(std::uint8_t hash, double x, double y, double z) noexcept$/;" f class:siv::PerlinNoise typeref:typename:double
  3333. Grid third_party/imgui-plot/include/imgui_plot.h /^ struct Grid {$/;" s struct:ImGui::PlotConfig
  3334. GroupOffset third_party/imgui/imgui_internal.h /^ ImVec1 GroupOffset;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVec1
  3335. GroupStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiGroupData>GroupStack;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVector<ImGuiGroupData>
  3336. GrowIndex third_party/imgui/imgui_draw.cpp /^void ImFont::GrowIndex(int new_size)$/;" f class:ImFont typeref:typename:void
  3337. HSV third_party/imgui/imgui.h /^ static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r,g,b; ImGui::ColorC/;" f struct:ImColor typeref:typename:ImColor
  3338. HasBody libswan/include/swan/traits/BodyTrait.h /^class HasBody {$/;" c namespace:Swan::BodyTrait
  3339. HasCloseButton third_party/imgui/imgui_internal.h /^ bool HasCloseButton; \/\/ Set when the window has a c/;" m struct:ImGuiWindow typeref:typename:bool
  3340. HasInventory libswan/include/swan/traits/InventoryTrait.h /^class HasInventory {$/;" c namespace:Swan::InventoryTrait
  3341. HasSelection third_party/imgui/imgui.h /^ bool HasSelection() const { return SelectionStart != SelectionEnd; }$/;" f struct:ImGuiInputTextCallbackData typeref:typename:bool
  3342. HasSelection third_party/imgui/imgui_internal.h /^ bool HasSelection() const { return Stb.select_start != Stb.select_end; }$/;" f struct:ImGuiInputTextState typeref:typename:bool
  3343. Hash third_party/imgui_sdl/imgui_sdl.cpp /^ static void Hash(std::size_t& seed, const Tuple& tuple)$/;" f struct:__anonaaadc0580110::TupleHash::Hasher typeref:typename:void file:
  3344. Hash third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename T> struct Hash$/;" s namespace:__anonaaadc0580110::TupleHash file:
  3345. Hasher third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename Tuple, std::size_t Index = std::tuple_size<Tuple>::value - 1> struct Hasher$/;" s namespace:__anonaaadc0580110::TupleHash file:
  3346. Hasher third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename Tuple> struct Hasher<Tuple, 0>$/;" s namespace:__anonaaadc0580110::TupleHash file:
  3347. Height third_party/imgui/examples/imgui_impl_vulkan.h /^ int Height;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:int
  3348. Height third_party/imgui/imgui.h /^ unsigned short Width, Height; \/\/ Input \/\/ Desired rectangle dimension$/;" m struct:ImFontAtlasCustomRect typeref:typename:unsigned short
  3349. Height third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int Height; \/\/ Glyph's height in pixels.$/;" m struct:__anond3bafd850110::GlyphInfo typeref:typename:int file:
  3350. Height third_party/imgui_sdl/imgui_sdl.cpp /^ int Width = 0, Height = 0;$/;" m struct:__anonaaadc0580110::Device::TriangleCacheItem typeref:typename:int file:
  3351. Height third_party/imgui_sdl/imgui_sdl.cpp /^ int X, Y, Width, Height;$/;" m struct:__anonaaadc0580110::Device::ClipRect typeref:typename:int file:
  3352. HelpMarker third_party/imgui/imgui_demo.cpp /^static void HelpMarker(const char* desc)$/;" f typeref:typename:void file:
  3353. Hidden third_party/imgui/imgui_internal.h /^ bool Hidden; \/\/ Do not display (== (HiddenF/;" m struct:ImGuiWindow typeref:typename:bool
  3354. HiddenFramesCanSkipItems third_party/imgui/imgui_internal.h /^ int HiddenFramesCanSkipItems; \/\/ Hide the window for N frame/;" m struct:ImGuiWindow typeref:typename:int
  3355. HiddenFramesCannotSkipItems third_party/imgui/imgui_internal.h /^ int HiddenFramesCannotSkipItems; \/\/ Hide the window for N frame/;" m struct:ImGuiWindow typeref:typename:int
  3356. History third_party/imgui/imgui_demo.cpp /^ ImVector<char*> History;$/;" m struct:ExampleAppConsole typeref:typename:ImVector<char * > file:
  3357. HistoryPos third_party/imgui/imgui_demo.cpp /^ int HistoryPos; \/\/ -1: new line, 0..History.Size-1 browsing history.$/;" m struct:ExampleAppConsole typeref:typename:int file:
  3358. HostClipRect third_party/imgui/imgui_internal.h /^ ImRect HostClipRect; \/\/ Backup of ClipRect at the time of BeginColu/;" m struct:ImGuiColumns typeref:typename:ImRect
  3359. HostCursorMaxPosX third_party/imgui/imgui_internal.h /^ float HostCursorMaxPosX; \/\/ Backup of CursorMaxPos at the time of Begin/;" m struct:ImGuiColumns typeref:typename:float
  3360. HostCursorPosY third_party/imgui/imgui_internal.h /^ float HostCursorPosY; \/\/ Backup of CursorPos at the time of BeginCol/;" m struct:ImGuiColumns typeref:typename:float
  3361. HostWorkRect third_party/imgui/imgui_internal.h /^ ImRect HostWorkRect; \/\/ Backup of WorkRect at the time of BeginColu/;" m struct:ImGuiColumns typeref:typename:ImRect
  3362. HoveredId third_party/imgui/imgui_internal.h /^ ImGuiID HoveredId; \/\/ Hovered widget$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  3363. HoveredIdAllowOverlap third_party/imgui/imgui_internal.h /^ bool HoveredIdAllowOverlap;$/;" m struct:ImGuiContext typeref:typename:bool
  3364. HoveredIdNotActiveTimer third_party/imgui/imgui_internal.h /^ float HoveredIdNotActiveTimer; \/\/ Measure contiguous hovering/;" m struct:ImGuiContext typeref:typename:float
  3365. HoveredIdPreviousFrame third_party/imgui/imgui_internal.h /^ ImGuiID HoveredIdPreviousFrame;$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  3366. HoveredIdTimer third_party/imgui/imgui_internal.h /^ float HoveredIdTimer; \/\/ Measure contiguous hovering/;" m struct:ImGuiContext typeref:typename:float
  3367. HoveredRootWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* HoveredRootWindow; \/\/ Will catch mouse inputs (fo/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  3368. HoveredWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* HoveredWindow; \/\/ Will catch mouse inputs$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  3369. How do I do _x_? third_party/imgui-plot/README.md /^### How do I do _x_?$/;" S
  3370. How it works third_party/imgui/docs/README.md /^### How it works$/;" S
  3371. How to Build third_party/imgui/examples/example_allegro5/README.md /^# How to Build$/;" c
  3372. How to Build third_party/imgui/examples/example_emscripten/README.md /^# How to Build$/;" c
  3373. How to Build third_party/imgui/examples/example_sdl_opengl2/README.md /^# How to Build$/;" c
  3374. How to Build third_party/imgui/examples/example_sdl_opengl3/README.md /^# How to Build$/;" c
  3375. How to help third_party/imgui/docs/README.md /^How to help$/;" s
  3376. ID libswan/include/swan/Tile.h /^ using ID = uint16_t;$/;" t class:Swan::Tile typeref:typename:uint16_t
  3377. ID libswan/include/swan/WorldPlane.h /^ using ID = uint16_t;$/;" t class:Swan::WorldPlane typeref:typename:uint16_t
  3378. ID third_party/imgui/imgui.h /^ unsigned int ID; \/\/ Input \/\/ User ID. Use <0x10000 to map into a font /;" m struct:ImFontAtlasCustomRect typeref:typename:unsigned int
  3379. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID; \/\/ == ImHash(Name)$/;" m struct:ImGuiWindow typeref:typename:ImGuiID
  3380. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID; \/\/ widget id owning the text state$/;" m struct:ImGuiInputTextState typeref:typename:ImGuiID
  3381. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID; \/\/ Zero for tab-bars used by docking$/;" m struct:ImGuiTabBar typeref:typename:ImGuiID
  3382. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID;$/;" m struct:ImGuiColumns typeref:typename:ImGuiID
  3383. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID;$/;" m struct:ImGuiTabItem typeref:typename:ImGuiID
  3384. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID; \/\/ Best candidate$/;" m struct:ImGuiNavMoveResult typeref:typename:ImGuiID
  3385. ID third_party/imgui/imgui_internal.h /^ ImGuiID ID;$/;" m struct:ImGuiWindowSettings typeref:typename:ImGuiID
  3386. IDLE core.mod/src/entities/EntPlayer.h /^ IDLE,$/;" e enum:EntPlayer::State
  3387. IDStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiID> IDStack; \/\/ ID stack. ID are hashes see/;" m struct:ImGuiWindow typeref:typename:ImVector<ImGuiID>
  3388. IMGUI_API third_party/imgui/imgui.h /^#define IMGUI_API$/;" d
  3389. IMGUI_CDECL third_party/imgui/imgui_internal.h /^#define IMGUI_CDECL /;" d
  3390. IMGUI_CDECL third_party/imgui/imgui_internal.h /^#define IMGUI_CDECL$/;" d
  3391. IMGUI_CHECKVERSION third_party/imgui/imgui.h /^#define IMGUI_CHECKVERSION(/;" d
  3392. IMGUI_DEBUG_INI_SETTINGS third_party/imgui/imgui.cpp /^#define IMGUI_DEBUG_INI_SETTINGS /;" d file:
  3393. IMGUI_DEBUG_LOG third_party/imgui/imgui_internal.h /^#define IMGUI_DEBUG_LOG(/;" d
  3394. IMGUI_DEBUG_NAV_RECTS third_party/imgui/imgui.cpp /^#define IMGUI_DEBUG_NAV_RECTS /;" d file:
  3395. IMGUI_DEBUG_NAV_SCORING third_party/imgui/imgui.cpp /^#define IMGUI_DEBUG_NAV_SCORING /;" d file:
  3396. IMGUI_DEFINE_MATH_OPERATORS third_party/imgui-plot/src/imgui_plot.cpp /^#define IMGUI_DEFINE_MATH_OPERATORS$/;" d file:
  3397. IMGUI_DEFINE_MATH_OPERATORS third_party/imgui/imgui.cpp /^#define IMGUI_DEFINE_MATH_OPERATORS$/;" d file:
  3398. IMGUI_DEFINE_MATH_OPERATORS third_party/imgui/imgui_draw.cpp /^#define IMGUI_DEFINE_MATH_OPERATORS$/;" d file:
  3399. IMGUI_DEFINE_MATH_OPERATORS third_party/imgui/imgui_widgets.cpp /^#define IMGUI_DEFINE_MATH_OPERATORS$/;" d file:
  3400. IMGUI_DIR third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^set(IMGUI_DIR ..\/..\/)$/;" v
  3401. IMGUI_DISABLE_DEMO_WINDOWS third_party/imgui/imgui_demo.cpp /^#define IMGUI_DISABLE_DEMO_WINDOWS$/;" d file:
  3402. IMGUI_IMPL_API third_party/imgui/imgui.h /^#define IMGUI_IMPL_API /;" d
  3403. IMGUI_IMPL_OPENGL_ES2 third_party/imgui/examples/imgui_impl_opengl3.cpp /^#define IMGUI_IMPL_OPENGL_ES2 /;" d file:
  3404. IMGUI_IMPL_OPENGL_ES3 third_party/imgui/examples/imgui_impl_opengl3.cpp /^#define IMGUI_IMPL_OPENGL_ES3 /;" d file:
  3405. IMGUI_IMPL_OPENGL_HAS_DRAW_WITH_BASE_VERTEX third_party/imgui/examples/imgui_impl_opengl3.cpp /^#define IMGUI_IMPL_OPENGL_HAS_DRAW_WITH_BASE_VERTEX /;" d file:
  3406. IMGUI_IMPL_OPENGL_LOADER_GL3W third_party/imgui/examples/imgui_impl_opengl3.h /^ #define IMGUI_IMPL_OPENGL_LOADER_GL3W$/;" d
  3407. IMGUI_IMPL_OPENGL_LOADER_GL3W third_party/imgui/examples/imgui_impl_opengl3.h /^ #define IMGUI_IMPL_OPENGL_LOADER_GL3W /;" d
  3408. IMGUI_IMPL_OPENGL_LOADER_GLAD third_party/imgui/examples/imgui_impl_opengl3.h /^ #define IMGUI_IMPL_OPENGL_LOADER_GLAD$/;" d
  3409. IMGUI_IMPL_OPENGL_LOADER_GLEW third_party/imgui/examples/imgui_impl_opengl3.h /^ #define IMGUI_IMPL_OPENGL_LOADER_GLEW$/;" d
  3410. IMGUI_INCLUDE_DIR third_party/imgui-plot/CMakeLists.txt /^set(IMGUI_INCLUDE_DIR ${CMAKE_SOURCE_DIR}\/imgui CACHE PATH "Path to Dear ImGui headers")$/;" v
  3411. IMGUI_PAYLOAD_TYPE_COLOR_3F third_party/imgui/imgui.h /^#define IMGUI_PAYLOAD_TYPE_COLOR_3F /;" d
  3412. IMGUI_PAYLOAD_TYPE_COLOR_4F third_party/imgui/imgui.h /^#define IMGUI_PAYLOAD_TYPE_COLOR_4F /;" d
  3413. IMGUI_STB_NAMESPACE third_party/imgui/imgui_draw.cpp /^namespace IMGUI_STB_NAMESPACE$/;" n file:
  3414. IMGUI_TEST_ENGINE_ITEM_ADD third_party/imgui/imgui_internal.h /^#define IMGUI_TEST_ENGINE_ITEM_ADD(/;" d
  3415. IMGUI_TEST_ENGINE_ITEM_INFO third_party/imgui/imgui_internal.h /^#define IMGUI_TEST_ENGINE_ITEM_INFO(/;" d
  3416. IMGUI_TEST_ENGINE_LOG third_party/imgui/imgui_internal.h /^#define IMGUI_TEST_ENGINE_LOG(/;" d
  3417. IMGUI_VERSION third_party/imgui/imgui.h /^#define IMGUI_VERSION /;" d
  3418. IMGUI_VERSION_NUM third_party/imgui/imgui.h /^#define IMGUI_VERSION_NUM /;" d
  3419. IMGUI_VULKAN_DEBUG_REPORT third_party/imgui/examples/example_glfw_vulkan/main.cpp /^#define IMGUI_VULKAN_DEBUG_REPORT$/;" d file:
  3420. IMGUI_VULKAN_DEBUG_REPORT third_party/imgui/examples/example_sdl_vulkan/main.cpp /^#define IMGUI_VULKAN_DEBUG_REPORT$/;" d file:
  3421. IM_ALLOC third_party/imgui/imgui.h /^#define IM_ALLOC(/;" d
  3422. IM_ARRAYSIZE third_party/imgui/imgui.h /^#define IM_ARRAYSIZE(/;" d
  3423. IM_ASSERT third_party/imgui/imgui.h /^#define IM_ASSERT(/;" d
  3424. IM_COL32 third_party/imgui/imgui.h /^#define IM_COL32(/;" d
  3425. IM_COL32_A_MASK third_party/imgui/imgui.h /^#define IM_COL32_A_MASK /;" d
  3426. IM_COL32_A_SHIFT third_party/imgui/imgui.h /^#define IM_COL32_A_SHIFT /;" d
  3427. IM_COL32_BLACK third_party/imgui/imgui.h /^#define IM_COL32_BLACK /;" d
  3428. IM_COL32_BLACK_TRANS third_party/imgui/imgui.h /^#define IM_COL32_BLACK_TRANS /;" d
  3429. IM_COL32_B_SHIFT third_party/imgui/imgui.h /^#define IM_COL32_B_SHIFT /;" d
  3430. IM_COL32_G_SHIFT third_party/imgui/imgui.h /^#define IM_COL32_G_SHIFT /;" d
  3431. IM_COL32_R_SHIFT third_party/imgui/imgui.h /^#define IM_COL32_R_SHIFT /;" d
  3432. IM_COL32_WHITE third_party/imgui/imgui.h /^#define IM_COL32_WHITE /;" d
  3433. IM_DEBUG_BREAK third_party/imgui/imgui_internal.h /^#define IM_DEBUG_BREAK(/;" d
  3434. IM_DELETE third_party/imgui/imgui.h /^template<typename T> void IM_DELETE(T* p) { if (p) { p->~T(); ImGui::MemFree(p); } }$/;" f typeref:typename:void
  3435. IM_F32_TO_INT8_SAT third_party/imgui/imgui_internal.h /^#define IM_F32_TO_INT8_SAT(/;" d
  3436. IM_F32_TO_INT8_UNBOUND third_party/imgui/imgui_internal.h /^#define IM_F32_TO_INT8_UNBOUND(/;" d
  3437. IM_FIXNORMAL2F third_party/imgui/imgui_draw.cpp /^#define IM_FIXNORMAL2F(/;" d file:
  3438. IM_FMTARGS third_party/imgui/imgui.h /^#define IM_FMTARGS(/;" d
  3439. IM_FMTLIST third_party/imgui/imgui.h /^#define IM_FMTLIST(/;" d
  3440. IM_FREE third_party/imgui/imgui.h /^#define IM_FREE(/;" d
  3441. IM_NEW third_party/imgui/imgui.h /^#define IM_NEW(/;" d
  3442. IM_NEWLINE third_party/imgui/imgui_demo.cpp /^#define IM_NEWLINE /;" d file:
  3443. IM_NEWLINE third_party/imgui/imgui_internal.h /^#define IM_NEWLINE /;" d
  3444. IM_NORMALIZE2F_OVER_ZERO third_party/imgui/imgui_draw.cpp /^#define IM_NORMALIZE2F_OVER_ZERO(/;" d file:
  3445. IM_OFFSETOF third_party/imgui/imgui.h /^#define IM_OFFSETOF(/;" d
  3446. IM_PI third_party/imgui/imgui_internal.h /^#define IM_PI /;" d
  3447. IM_PLACEMENT_NEW third_party/imgui/imgui.h /^#define IM_PLACEMENT_NEW(/;" d
  3448. IM_S16_MAX third_party/imgui/imgui_widgets.cpp /^static const signed short IM_S16_MAX = 32767;$/;" v typeref:typename:const signed short file:
  3449. IM_S16_MIN third_party/imgui/imgui_widgets.cpp /^static const signed short IM_S16_MIN = -32768;$/;" v typeref:typename:const signed short file:
  3450. IM_S32_MAX third_party/imgui/imgui_widgets.cpp /^static const ImS32 IM_S32_MAX = INT_MAX; \/\/ (2147483647), (0x7FFFFFFF)$/;" v typeref:typename:const ImS32 file:
  3451. IM_S32_MIN third_party/imgui/imgui_widgets.cpp /^static const ImS32 IM_S32_MIN = INT_MIN; \/\/ (-2147483647 - 1), (0x80000000);$/;" v typeref:typename:const ImS32 file:
  3452. IM_S64_MAX third_party/imgui/imgui_widgets.cpp /^static const ImS64 IM_S64_MAX = 9223372036854775807LL;$/;" v typeref:typename:const ImS64 file:
  3453. IM_S64_MAX third_party/imgui/imgui_widgets.cpp /^static const ImS64 IM_S64_MAX = LLONG_MAX; \/\/ (9223372036854775807ll);$/;" v typeref:typename:const ImS64 file:
  3454. IM_S64_MIN third_party/imgui/imgui_widgets.cpp /^static const ImS64 IM_S64_MIN = -9223372036854775807LL - 1;$/;" v typeref:typename:const ImS64 file:
  3455. IM_S64_MIN third_party/imgui/imgui_widgets.cpp /^static const ImS64 IM_S64_MIN = LLONG_MIN; \/\/ (-9223372036854775807ll - 1ll);$/;" v typeref:typename:const ImS64 file:
  3456. IM_S8_MAX third_party/imgui/imgui_widgets.cpp /^static const signed char IM_S8_MAX = 127;$/;" v typeref:typename:const signed char file:
  3457. IM_S8_MIN third_party/imgui/imgui_widgets.cpp /^static const signed char IM_S8_MIN = -128;$/;" v typeref:typename:const signed char file:
  3458. IM_STATIC_ASSERT third_party/imgui/imgui_internal.h /^#define IM_STATIC_ASSERT(/;" d
  3459. IM_TABSIZE third_party/imgui/imgui_internal.h /^#define IM_TABSIZE /;" d
  3460. IM_U16_MAX third_party/imgui/imgui_widgets.cpp /^static const unsigned short IM_U16_MAX = 0xFFFF;$/;" v typeref:typename:const unsigned short file:
  3461. IM_U16_MIN third_party/imgui/imgui_widgets.cpp /^static const unsigned short IM_U16_MIN = 0;$/;" v typeref:typename:const unsigned short file:
  3462. IM_U32_MAX third_party/imgui/imgui_widgets.cpp /^static const ImU32 IM_U32_MAX = UINT_MAX; \/\/ (0xFFFFFFFF)$/;" v typeref:typename:const ImU32 file:
  3463. IM_U32_MIN third_party/imgui/imgui_widgets.cpp /^static const ImU32 IM_U32_MIN = 0;$/;" v typeref:typename:const ImU32 file:
  3464. IM_U64_MAX third_party/imgui/imgui_widgets.cpp /^static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1);$/;" v typeref:typename:const ImU64 file:
  3465. IM_U64_MAX third_party/imgui/imgui_widgets.cpp /^static const ImU64 IM_U64_MAX = ULLONG_MAX; \/\/ (0xFFFFFFFFFFFFFFFFull);$/;" v typeref:typename:const ImU64 file:
  3466. IM_U64_MIN third_party/imgui/imgui_widgets.cpp /^static const ImU64 IM_U64_MIN = 0;$/;" v typeref:typename:const ImU64 file:
  3467. IM_U8_MAX third_party/imgui/imgui_widgets.cpp /^static const unsigned char IM_U8_MAX = 0xFF;$/;" v typeref:typename:const unsigned char file:
  3468. IM_U8_MIN third_party/imgui/imgui_widgets.cpp /^static const unsigned char IM_U8_MIN = 0;$/;" v typeref:typename:const unsigned char file:
  3469. IM_UNUSED third_party/imgui/imgui.h /^#define IM_UNUSED(/;" d
  3470. INCLUDES third_party/imgui/examples/example_sdl_directx11/build_win32.bat /^set INCLUDES=\/I.. \/I..\\.. \/I%SDL2_DIR%\\include \/I "%WindowsSdkDir%Include\\um" \/I "%Windo/;" v
  3471. INCLUDES third_party/imgui/examples/example_sdl_opengl2/build_win32.bat /^set INCLUDES=\/I.. \/I..\\.. \/I%SDL2_DIR%\\include$/;" v
  3472. INCLUDES third_party/imgui/examples/example_sdl_opengl3/build_win32.bat /^set INCLUDES=\/I.. \/I..\\.. \/I%SDL2_DIR%\\include \/I..\\libs\\gl3w$/;" v
  3473. INCLUDE_STB_TEXTEDIT_H third_party/imgui/imstb_textedit.h /^#define INCLUDE_STB_TEXTEDIT_H$/;" d
  3474. INT libswan/src/SRF.cc /^ INT = 5,$/;" e enum:Swan::Type file:
  3475. INT_ARRAY libswan/src/SRF.cc /^ INT_ARRAY = 11,$/;" e enum:Swan::Type file:
  3476. INVALID_ID libswan/include/swan/Tile.h /^ static ID INVALID_ID;$/;" m class:Swan::Tile typeref:typename:ID
  3477. INVALID_ID libswan/src/Tile.cc /^Tile::ID Tile::INVALID_ID = 0;$/;" m class:Swan::Tile typeref:typename:Tile::ID
  3478. INVENTORY_SIZE core.mod/src/entities/EntPlayer.h /^ static constexpr int INVENTORY_SIZE = 18;$/;" m class:EntPlayer typeref:typename:int
  3479. IO third_party/imgui/imgui_internal.h /^ ImGuiIO IO;$/;" m struct:ImGuiContext typeref:typename:ImGuiIO
  3480. IdxBuffer third_party/imgui/imgui.h /^ ImVector<ImDrawIdx> IdxBuffer; \/\/ Index buffer. Each command consume ImDrawCm/;" m struct:ImDrawList typeref:typename:ImVector<ImDrawIdx>
  3481. IdxOffset third_party/imgui/imgui.h /^ unsigned int IdxOffset; \/\/ Start offset in index buffer. Always equal to s/;" m struct:ImDrawCmd typeref:typename:unsigned int
  3482. ImAcos third_party/imgui/imgui_internal.h /^static inline float ImAcos(float x) { return acosf(x/;" f typeref:typename:float
  3483. ImAcos01 third_party/imgui/imgui_draw.cpp /^static inline float ImAcos01(float x)$/;" f typeref:typename:float file:
  3484. ImAddClampOverflow third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImAddClampOverflow(T a, T b, T mn, T mx) { if (b < 0 && (/;" f typeref:typename:T
  3485. ImAlphaBlendColor third_party/imgui/imgui_widgets.cpp /^static inline ImU32 ImAlphaBlendColor(ImU32 col_a, ImU32 col_b)$/;" f typeref:typename:ImU32 file:
  3486. ImAtan2 third_party/imgui/imgui_internal.h /^static inline float ImAtan2(float y, float x) { return atan2f(/;" f typeref:typename:float
  3487. ImAtof third_party/imgui/imgui_internal.h /^static inline double ImAtof(const char* s) { return atof(s)/;" f typeref:typename:double
  3488. ImAtoi third_party/imgui/imgui_widgets.cpp /^static const char* ImAtoi(const char* src, TYPE* output)$/;" f typeref:typename:const char * file:
  3489. ImBoolVector third_party/imgui/imgui_internal.h /^ ImBoolVector() { }$/;" f struct:ImBoolVector
  3490. ImBoolVector third_party/imgui/imgui_internal.h /^struct ImBoolVector$/;" s
  3491. ImCeil third_party/imgui/imgui_internal.h /^static inline float ImCeil(float x) { return ceilf(x/;" f typeref:typename:float
  3492. ImCharIsBlankA third_party/imgui/imgui_internal.h /^static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\\t'; }$/;" f typeref:typename:bool
  3493. ImCharIsBlankW third_party/imgui/imgui_internal.h /^static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\\t' || c == /;" f typeref:typename:bool
  3494. ImClamp third_party/imgui/imgui_internal.h /^static inline ImVec2 ImClamp(const ImVec2& v, const ImVec2& mn, ImVec2 mx) { return ImVec2(/;" f typeref:typename:ImVec2
  3495. ImClamp third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImClamp(T v, T mn, T mx) { return (v < mn/;" f typeref:typename:T
  3496. ImColor third_party/imgui/imgui.h /^ ImColor() { Value.x = Value.y = Value./;" f struct:ImColor
  3497. ImColor third_party/imgui/imgui.h /^ ImColor(ImU32 rgba) { float sc = 1.0f\/255.0f; V/;" f struct:ImColor
  3498. ImColor third_party/imgui/imgui.h /^ ImColor(const ImVec4& col) { Value = col; }$/;" f struct:ImColor
  3499. ImColor third_party/imgui/imgui.h /^ ImColor(float r, float g, float b, float a = 1.0f) { Value.x = r; Value.y = g; /;" f struct:ImColor
  3500. ImColor third_party/imgui/imgui.h /^ ImColor(int r, int g, int b, int a = 255) { float sc = 1.0f\/255.0f; V/;" f struct:ImColor
  3501. ImColor third_party/imgui/imgui.h /^struct ImColor$/;" s
  3502. ImCos third_party/imgui/imgui_internal.h /^static inline float ImCos(float x) { return cosf(x)/;" f typeref:typename:float
  3503. ImDot third_party/imgui/imgui_internal.h /^static inline float ImDot(const ImVec2& a, const ImVec2& b) { return a.x * b/;" f typeref:typename:float
  3504. ImDrawCallback third_party/imgui/imgui.h /^typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd);$/;" t typeref:typename:void (*)(const ImDrawList * parent_list,const ImDrawCmd * cmd)
  3505. ImDrawCallback_ResetRenderState third_party/imgui/imgui.h /^#define ImDrawCallback_ResetRenderState /;" d
  3506. ImDrawChannel third_party/imgui/imgui.h /^struct ImDrawChannel$/;" s
  3507. ImDrawCmd third_party/imgui/imgui.h /^ ImDrawCmd() { ElemCount = 0; TextureId = (ImTextureID)NULL; VtxOffset = IdxOffset = 0; User/;" f struct:ImDrawCmd
  3508. ImDrawCmd third_party/imgui/imgui.h /^struct ImDrawCmd$/;" s
  3509. ImDrawCornerFlags third_party/imgui/imgui.h /^typedef int ImDrawCornerFlags; \/\/ -> enum ImDrawCornerFlags_ \/\/ Flags: for ImDrawLis/;" t typeref:typename:int
  3510. ImDrawCornerFlags_ third_party/imgui/imgui.h /^enum ImDrawCornerFlags_$/;" g
  3511. ImDrawCornerFlags_All third_party/imgui/imgui.h /^ ImDrawCornerFlags_All = 0xF \/\/ In your function calls you may use ~0 (= all bits/;" e enum:ImDrawCornerFlags_
  3512. ImDrawCornerFlags_Bot third_party/imgui/imgui.h /^ ImDrawCornerFlags_Bot = ImDrawCornerFlags_BotLeft | ImDrawCornerFlags_BotRight, \/\//;" e enum:ImDrawCornerFlags_
  3513. ImDrawCornerFlags_BotLeft third_party/imgui/imgui.h /^ ImDrawCornerFlags_BotLeft = 1 << 2, \/\/ 0x4$/;" e enum:ImDrawCornerFlags_
  3514. ImDrawCornerFlags_BotRight third_party/imgui/imgui.h /^ ImDrawCornerFlags_BotRight = 1 << 3, \/\/ 0x8$/;" e enum:ImDrawCornerFlags_
  3515. ImDrawCornerFlags_Left third_party/imgui/imgui.h /^ ImDrawCornerFlags_Left = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_BotLeft, \/\//;" e enum:ImDrawCornerFlags_
  3516. ImDrawCornerFlags_None third_party/imgui/imgui.h /^ ImDrawCornerFlags_None = 0,$/;" e enum:ImDrawCornerFlags_
  3517. ImDrawCornerFlags_Right third_party/imgui/imgui.h /^ ImDrawCornerFlags_Right = ImDrawCornerFlags_TopRight | ImDrawCornerFlags_BotRight, \/\//;" e enum:ImDrawCornerFlags_
  3518. ImDrawCornerFlags_Top third_party/imgui/imgui.h /^ ImDrawCornerFlags_Top = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_TopRight, \/\//;" e enum:ImDrawCornerFlags_
  3519. ImDrawCornerFlags_TopLeft third_party/imgui/imgui.h /^ ImDrawCornerFlags_TopLeft = 1 << 0, \/\/ 0x1$/;" e enum:ImDrawCornerFlags_
  3520. ImDrawCornerFlags_TopRight third_party/imgui/imgui.h /^ ImDrawCornerFlags_TopRight = 1 << 1, \/\/ 0x2$/;" e enum:ImDrawCornerFlags_
  3521. ImDrawData third_party/imgui/imgui.h /^ ImDrawData() { Valid = false; Clear(); }$/;" f struct:ImDrawData
  3522. ImDrawData third_party/imgui/imgui.h /^struct ImDrawData$/;" s
  3523. ImDrawDataBuilder third_party/imgui/imgui_internal.h /^struct ImDrawDataBuilder$/;" s
  3524. ImDrawIdx third_party/imgui/examples/example_allegro5/imconfig_allegro5.h /^#define ImDrawIdx /;" d
  3525. ImDrawIdx third_party/imgui/imgui.h /^typedef unsigned short ImDrawIdx;$/;" t typeref:typename:unsigned short
  3526. ImDrawList third_party/imgui/imgui.h /^ ImDrawList(const ImDrawListSharedData* shared_data) { _Data = shared_data; _OwnerName = NULL/;" f struct:ImDrawList
  3527. ImDrawList third_party/imgui/imgui.h /^struct ImDrawList$/;" s
  3528. ImDrawListFlags third_party/imgui/imgui.h /^typedef int ImDrawListFlags; \/\/ -> enum ImDrawListFlags_ \/\/ Flags: for ImDrawLis/;" t typeref:typename:int
  3529. ImDrawListFlags_ third_party/imgui/imgui.h /^enum ImDrawListFlags_$/;" g
  3530. ImDrawListFlags_AllowVtxOffset third_party/imgui/imgui.h /^ ImDrawListFlags_AllowVtxOffset = 1 << 2 \/\/ Can emit 'VtxOffset > 0' to allow large mes/;" e enum:ImDrawListFlags_
  3531. ImDrawListFlags_AntiAliasedFill third_party/imgui/imgui.h /^ ImDrawListFlags_AntiAliasedFill = 1 << 1, \/\/ Filled shapes have anti-aliased edges (*2 t/;" e enum:ImDrawListFlags_
  3532. ImDrawListFlags_AntiAliasedLines third_party/imgui/imgui.h /^ ImDrawListFlags_AntiAliasedLines = 1 << 0, \/\/ Lines are anti-aliased (*2 the number of tr/;" e enum:ImDrawListFlags_
  3533. ImDrawListFlags_None third_party/imgui/imgui.h /^ ImDrawListFlags_None = 0,$/;" e enum:ImDrawListFlags_
  3534. ImDrawListSharedData third_party/imgui/imgui_draw.cpp /^ImDrawListSharedData::ImDrawListSharedData()$/;" f class:ImDrawListSharedData
  3535. ImDrawListSharedData third_party/imgui/imgui_internal.h /^struct IMGUI_API ImDrawListSharedData$/;" s
  3536. ImDrawListSplitter third_party/imgui/imgui.h /^ inline ImDrawListSplitter() { Clear(); }$/;" f struct:ImDrawListSplitter
  3537. ImDrawListSplitter third_party/imgui/imgui.h /^struct ImDrawListSplitter$/;" s
  3538. ImDrawVert third_party/imgui/imgui.h /^struct ImDrawVert$/;" s
  3539. ImDrawVertAllegro third_party/imgui/examples/imgui_impl_allegro5.cpp /^struct ImDrawVertAllegro$/;" s file:
  3540. ImFabs third_party/imgui/imgui_internal.h /^static inline float ImFabs(float x) { return fabsf(x/;" f typeref:typename:float
  3541. ImFileLoadToMemory third_party/imgui/imgui.cpp /^void* ImFileLoadToMemory(const char* filename, const char* file_open_mode, size_t* out_file_size/;" f typeref:typename:void *
  3542. ImFileOpen third_party/imgui/imgui.cpp /^FILE* ImFileOpen(const char* filename, const char* mode)$/;" f typeref:typename:FILE *
  3543. ImFloor third_party/imgui/imgui_internal.h /^static inline ImVec2 ImFloor(const ImVec2& v) { return ImVec2(/;" f typeref:typename:ImVec2
  3544. ImFloor third_party/imgui/imgui_internal.h /^static inline float ImFloor(float f) { return (float)/;" f typeref:typename:float
  3545. ImFloorStd third_party/imgui/imgui_internal.h /^static inline float ImFloorStd(float x) { return floorf(/;" f typeref:typename:float
  3546. ImFmod third_party/imgui/imgui_internal.h /^static inline double ImFmod(double x, double y) { return fmod(x,/;" f typeref:typename:double
  3547. ImFmod third_party/imgui/imgui_internal.h /^static inline float ImFmod(float x, float y) { return fmodf(x/;" f typeref:typename:float
  3548. ImFont third_party/imgui/imgui.h /^struct ImFont$/;" s
  3549. ImFont third_party/imgui/imgui_draw.cpp /^ImFont::ImFont()$/;" f class:ImFont
  3550. ImFontAtlas third_party/imgui/imgui.h /^struct ImFontAtlas$/;" s
  3551. ImFontAtlas third_party/imgui/imgui_draw.cpp /^ImFontAtlas::ImFontAtlas()$/;" f class:ImFontAtlas
  3552. ImFontAtlasBuildFinish third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildFinish(ImFontAtlas* atlas)$/;" f typeref:typename:void
  3553. ImFontAtlasBuildMultiplyCalcLookupTable third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_brighten_/;" f typeref:typename:void
  3554. ImFontAtlasBuildMultiplyRectAlpha8 third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels/;" f typeref:typename:void
  3555. ImFontAtlasBuildPackCustomRects third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque)$/;" f typeref:typename:void
  3556. ImFontAtlasBuildRegisterDefaultCustomRects third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildRegisterDefaultCustomRects(ImFontAtlas* atlas)$/;" f typeref:typename:void
  3557. ImFontAtlasBuildRenderDefaultTexData third_party/imgui/imgui_draw.cpp /^static void ImFontAtlasBuildRenderDefaultTexData(ImFontAtlas* atlas)$/;" f typeref:typename:void file:
  3558. ImFontAtlasBuildSetupFont third_party/imgui/imgui_draw.cpp /^void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, floa/;" f typeref:typename:void
  3559. ImFontAtlasBuildWithFreeType third_party/imgui/misc/freetype/imgui_freetype.cpp /^bool ImFontAtlasBuildWithFreeType(FT_Library ft_library, ImFontAtlas* atlas, unsigned int extra_/;" f typeref:typename:bool
  3560. ImFontAtlasBuildWithStbTruetype third_party/imgui/imgui_draw.cpp /^bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas)$/;" f typeref:typename:bool
  3561. ImFontAtlasCustomRect third_party/imgui/imgui.h /^ ImFontAtlasCustomRect() { ID = 0xFFFFFFFF; Width = Height = 0; X = Y = 0xFFFF; Glyph/;" f struct:ImFontAtlasCustomRect
  3562. ImFontAtlasCustomRect third_party/imgui/imgui.h /^struct ImFontAtlasCustomRect$/;" s
  3563. ImFontAtlasFlags third_party/imgui/imgui.h /^typedef int ImFontAtlasFlags; \/\/ -> enum ImFontAtlasFlags_ \/\/ Flags: for ImFontAtl/;" t typeref:typename:int
  3564. ImFontAtlasFlags_ third_party/imgui/imgui.h /^enum ImFontAtlasFlags_$/;" g
  3565. ImFontAtlasFlags_NoMouseCursors third_party/imgui/imgui.h /^ ImFontAtlasFlags_NoMouseCursors = 1 << 1 \/\/ Don't build software mouse cursors into/;" e enum:ImFontAtlasFlags_
  3566. ImFontAtlasFlags_NoPowerOfTwoHeight third_party/imgui/imgui.h /^ ImFontAtlasFlags_NoPowerOfTwoHeight = 1 << 0, \/\/ Don't round the height to next power of/;" e enum:ImFontAtlasFlags_
  3567. ImFontAtlasFlags_None third_party/imgui/imgui.h /^ ImFontAtlasFlags_None = 0,$/;" e enum:ImFontAtlasFlags_
  3568. ImFontBuildDstData third_party/imgui/imgui_draw.cpp /^struct ImFontBuildDstData$/;" s file:
  3569. ImFontBuildDstDataFT third_party/imgui/misc/freetype/imgui_freetype.cpp /^struct ImFontBuildDstDataFT$/;" s file:
  3570. ImFontBuildSrcData third_party/imgui/imgui_draw.cpp /^struct ImFontBuildSrcData$/;" s file:
  3571. ImFontBuildSrcDataFT third_party/imgui/misc/freetype/imgui_freetype.cpp /^struct ImFontBuildSrcDataFT$/;" s file:
  3572. ImFontBuildSrcGlyphFT third_party/imgui/misc/freetype/imgui_freetype.cpp /^struct ImFontBuildSrcGlyphFT$/;" s file:
  3573. ImFontConfig third_party/imgui/imgui.h /^struct ImFontConfig$/;" s
  3574. ImFontConfig third_party/imgui/imgui_draw.cpp /^ImFontConfig::ImFontConfig()$/;" f class:ImFontConfig
  3575. ImFontGlyph third_party/imgui/imgui.h /^struct ImFontGlyph$/;" s
  3576. ImFontGlyphRangesBuilder third_party/imgui/imgui.h /^ ImFontGlyphRangesBuilder() { Clear(); }$/;" f struct:ImFontGlyphRangesBuilder
  3577. ImFontGlyphRangesBuilder third_party/imgui/imgui.h /^struct ImFontGlyphRangesBuilder$/;" s
  3578. ImFormatString third_party/imgui/imgui.cpp /^int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...)$/;" f typeref:typename:int
  3579. ImFormatStringV third_party/imgui/imgui.cpp /^int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args)$/;" f typeref:typename:int
  3580. ImFreeTypeDefaultAllocFunc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void* ImFreeTypeDefaultAllocFunc(size_t size, void* user_data) { IM_UNUSED(user_data); re/;" f typeref:typename:void * file:
  3581. ImFreeTypeDefaultFreeFunc third_party/imgui/misc/freetype/imgui_freetype.cpp /^static void ImFreeTypeDefaultFreeFunc(void* ptr, void* user_data) { IM_UNUSED(user_data); I/;" f typeref:typename:void file:
  3582. ImGetDirQuadrantFromDelta third_party/imgui/imgui.cpp /^ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy)$/;" f typeref:typename:ImGuiDir
  3583. ImGui third_party/imgui-plot/include/imgui_plot.h /^namespace ImGui {$/;" n
  3584. ImGui third_party/imgui-plot/src/imgui_plot.cpp /^namespace ImGui {$/;" n file:
  3585. ImGui third_party/imgui/imgui.cpp /^namespace ImGui$/;" n file:
  3586. ImGui third_party/imgui/imgui.h /^namespace ImGui$/;" n
  3587. ImGui third_party/imgui/imgui_internal.h /^namespace ImGui$/;" n
  3588. ImGui third_party/imgui/imgui_widgets.cpp /^namespace ImGui$/;" n file:
  3589. ImGui third_party/imgui/misc/cpp/imgui_stdlib.h /^namespace ImGui$/;" n
  3590. ImGuiAxis third_party/imgui/imgui_internal.h /^enum ImGuiAxis$/;" g
  3591. ImGuiAxis_None third_party/imgui/imgui_internal.h /^ ImGuiAxis_None = -1,$/;" e enum:ImGuiAxis
  3592. ImGuiAxis_X third_party/imgui/imgui_internal.h /^ ImGuiAxis_X = 0,$/;" e enum:ImGuiAxis
  3593. ImGuiAxis_Y third_party/imgui/imgui_internal.h /^ ImGuiAxis_Y = 1$/;" e enum:ImGuiAxis
  3594. ImGuiBackendFlags third_party/imgui/imgui.h /^typedef int ImGuiBackendFlags; \/\/ -> enum ImGuiBackendFlags_ \/\/ Flags: for io.Backen/;" t typeref:typename:int
  3595. ImGuiBackendFlags_ third_party/imgui/imgui.h /^enum ImGuiBackendFlags_$/;" g
  3596. ImGuiBackendFlags_HasGamepad third_party/imgui/imgui.h /^ ImGuiBackendFlags_HasGamepad = 1 << 0, \/\/ Back-end Platform supports gamepad /;" e enum:ImGuiBackendFlags_
  3597. ImGuiBackendFlags_HasMouseCursors third_party/imgui/imgui.h /^ ImGuiBackendFlags_HasMouseCursors = 1 << 1, \/\/ Back-end Platform supports honoring/;" e enum:ImGuiBackendFlags_
  3598. ImGuiBackendFlags_HasSetMousePos third_party/imgui/imgui.h /^ ImGuiBackendFlags_HasSetMousePos = 1 << 2, \/\/ Back-end Platform supports io.WantS/;" e enum:ImGuiBackendFlags_
  3599. ImGuiBackendFlags_None third_party/imgui/imgui.h /^ ImGuiBackendFlags_None = 0,$/;" e enum:ImGuiBackendFlags_
  3600. ImGuiBackendFlags_RendererHasVtxOffset third_party/imgui/imgui.h /^ ImGuiBackendFlags_RendererHasVtxOffset = 1 << 3 \/\/ Back-end Renderer supports ImDrawCm/;" e enum:ImGuiBackendFlags_
  3601. ImGuiButtonFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiButtonFlags; \/\/ -> enum ImGuiButtonFlags_ \/\/ Flags: for Bu/;" t typeref:typename:int
  3602. ImGuiButtonFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiButtonFlags_$/;" g
  3603. ImGuiButtonFlags_AlignTextBaseLine third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_AlignTextBaseLine = 1 << 9, \/\/ vertically align button to match te/;" e enum:ImGuiButtonFlags_
  3604. ImGuiButtonFlags_AllowItemOverlap third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_AllowItemOverlap = 1 << 6, \/\/ require previous frame HoveredId to/;" e enum:ImGuiButtonFlags_
  3605. ImGuiButtonFlags_Disabled third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_Disabled = 1 << 8, \/\/ disable interactions$/;" e enum:ImGuiButtonFlags_
  3606. ImGuiButtonFlags_DontClosePopups third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_DontClosePopups = 1 << 7, \/\/ disable automatically closing paren/;" e enum:ImGuiButtonFlags_
  3607. ImGuiButtonFlags_FlattenChildren third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_FlattenChildren = 1 << 5, \/\/ allow interactions even if a child /;" e enum:ImGuiButtonFlags_
  3608. ImGuiButtonFlags_NoHoldingActiveID third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_NoHoldingActiveID = 1 << 11, \/\/ don't set ActiveId while holding th/;" e enum:ImGuiButtonFlags_
  3609. ImGuiButtonFlags_NoHoveredOnNav third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_NoHoveredOnNav = 1 << 14 \/\/ don't report as hovered when naviga/;" e enum:ImGuiButtonFlags_
  3610. ImGuiButtonFlags_NoKeyModifiers third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_NoKeyModifiers = 1 << 10, \/\/ disable interaction if a key modifi/;" e enum:ImGuiButtonFlags_
  3611. ImGuiButtonFlags_NoNavFocus third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_NoNavFocus = 1 << 13, \/\/ don't override navigation focus whe/;" e enum:ImGuiButtonFlags_
  3612. ImGuiButtonFlags_None third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_None = 0,$/;" e enum:ImGuiButtonFlags_
  3613. ImGuiButtonFlags_PressedOnClick third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_PressedOnClick = 1 << 2, \/\/ return true on click (default requi/;" e enum:ImGuiButtonFlags_
  3614. ImGuiButtonFlags_PressedOnClickRelease third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_PressedOnClickRelease = 1 << 1, \/\/ [Default] return true on click + re/;" e enum:ImGuiButtonFlags_
  3615. ImGuiButtonFlags_PressedOnDoubleClick third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_PressedOnDoubleClick = 1 << 4, \/\/ return true on double-click (defaul/;" e enum:ImGuiButtonFlags_
  3616. ImGuiButtonFlags_PressedOnDragDropHold third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_PressedOnDragDropHold = 1 << 12, \/\/ press when held into while we are d/;" e enum:ImGuiButtonFlags_
  3617. ImGuiButtonFlags_PressedOnRelease third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_PressedOnRelease = 1 << 3, \/\/ return true on release (default req/;" e enum:ImGuiButtonFlags_
  3618. ImGuiButtonFlags_Repeat third_party/imgui/imgui_internal.h /^ ImGuiButtonFlags_Repeat = 1 << 0, \/\/ hold to repeat$/;" e enum:ImGuiButtonFlags_
  3619. ImGuiCol third_party/imgui/imgui.h /^typedef int ImGuiCol; \/\/ -> enum ImGuiCol_ \/\/ Enum: A color identi/;" t typeref:typename:int
  3620. ImGuiCol_ third_party/imgui/imgui.h /^enum ImGuiCol_$/;" g
  3621. ImGuiCol_Border third_party/imgui/imgui.h /^ ImGuiCol_Border,$/;" e enum:ImGuiCol_
  3622. ImGuiCol_BorderShadow third_party/imgui/imgui.h /^ ImGuiCol_BorderShadow,$/;" e enum:ImGuiCol_
  3623. ImGuiCol_Button third_party/imgui/imgui.h /^ ImGuiCol_Button,$/;" e enum:ImGuiCol_
  3624. ImGuiCol_ButtonActive third_party/imgui/imgui.h /^ ImGuiCol_ButtonActive,$/;" e enum:ImGuiCol_
  3625. ImGuiCol_ButtonHovered third_party/imgui/imgui.h /^ ImGuiCol_ButtonHovered,$/;" e enum:ImGuiCol_
  3626. ImGuiCol_COUNT third_party/imgui/imgui.h /^ ImGuiCol_COUNT$/;" e enum:ImGuiCol_
  3627. ImGuiCol_CheckMark third_party/imgui/imgui.h /^ ImGuiCol_CheckMark,$/;" e enum:ImGuiCol_
  3628. ImGuiCol_ChildBg third_party/imgui/imgui.h /^ ImGuiCol_ChildBg, \/\/ Background of child windows$/;" e enum:ImGuiCol_
  3629. ImGuiCol_ChildWindowBg third_party/imgui/imgui.h /^ , ImGuiCol_ChildWindowBg = ImGuiCol_ChildBg \/\/ [renam/;" e enum:ImGuiCol_
  3630. ImGuiCol_DragDropTarget third_party/imgui/imgui.h /^ ImGuiCol_DragDropTarget,$/;" e enum:ImGuiCol_
  3631. ImGuiCol_FrameBg third_party/imgui/imgui.h /^ ImGuiCol_FrameBg, \/\/ Background of checkbox, radio button, plot, slider, tex/;" e enum:ImGuiCol_
  3632. ImGuiCol_FrameBgActive third_party/imgui/imgui.h /^ ImGuiCol_FrameBgActive,$/;" e enum:ImGuiCol_
  3633. ImGuiCol_FrameBgHovered third_party/imgui/imgui.h /^ ImGuiCol_FrameBgHovered,$/;" e enum:ImGuiCol_
  3634. ImGuiCol_Header third_party/imgui/imgui.h /^ ImGuiCol_Header, \/\/ Header* colors are used for CollapsingHeader, TreeNode,/;" e enum:ImGuiCol_
  3635. ImGuiCol_HeaderActive third_party/imgui/imgui.h /^ ImGuiCol_HeaderActive,$/;" e enum:ImGuiCol_
  3636. ImGuiCol_HeaderHovered third_party/imgui/imgui.h /^ ImGuiCol_HeaderHovered,$/;" e enum:ImGuiCol_
  3637. ImGuiCol_MenuBarBg third_party/imgui/imgui.h /^ ImGuiCol_MenuBarBg,$/;" e enum:ImGuiCol_
  3638. ImGuiCol_ModalWindowDarkening third_party/imgui/imgui.h /^ , ImGuiCol_ModalWindowDarkening = ImGuiCol_ModalWindowDimBg \/\/ [renam/;" e enum:ImGuiCol_
  3639. ImGuiCol_ModalWindowDimBg third_party/imgui/imgui.h /^ ImGuiCol_ModalWindowDimBg, \/\/ Darken\/colorize entire screen behind a modal window, w/;" e enum:ImGuiCol_
  3640. ImGuiCol_NavHighlight third_party/imgui/imgui.h /^ ImGuiCol_NavHighlight, \/\/ Gamepad\/keyboard: current highlighted item$/;" e enum:ImGuiCol_
  3641. ImGuiCol_NavWindowingDimBg third_party/imgui/imgui.h /^ ImGuiCol_NavWindowingDimBg, \/\/ Darken\/colorize entire screen behind the CTRL+TAB wind/;" e enum:ImGuiCol_
  3642. ImGuiCol_NavWindowingHighlight third_party/imgui/imgui.h /^ ImGuiCol_NavWindowingHighlight, \/\/ Highlight window when using CTRL+TAB$/;" e enum:ImGuiCol_
  3643. ImGuiCol_PlotHistogram third_party/imgui/imgui.h /^ ImGuiCol_PlotHistogram,$/;" e enum:ImGuiCol_
  3644. ImGuiCol_PlotHistogramHovered third_party/imgui/imgui.h /^ ImGuiCol_PlotHistogramHovered,$/;" e enum:ImGuiCol_
  3645. ImGuiCol_PlotLines third_party/imgui/imgui.h /^ ImGuiCol_PlotLines,$/;" e enum:ImGuiCol_
  3646. ImGuiCol_PlotLinesHovered third_party/imgui/imgui.h /^ ImGuiCol_PlotLinesHovered,$/;" e enum:ImGuiCol_
  3647. ImGuiCol_PopupBg third_party/imgui/imgui.h /^ ImGuiCol_PopupBg, \/\/ Background of popups, menus, tooltips windows$/;" e enum:ImGuiCol_
  3648. ImGuiCol_ResizeGrip third_party/imgui/imgui.h /^ ImGuiCol_ResizeGrip,$/;" e enum:ImGuiCol_
  3649. ImGuiCol_ResizeGripActive third_party/imgui/imgui.h /^ ImGuiCol_ResizeGripActive,$/;" e enum:ImGuiCol_
  3650. ImGuiCol_ResizeGripHovered third_party/imgui/imgui.h /^ ImGuiCol_ResizeGripHovered,$/;" e enum:ImGuiCol_
  3651. ImGuiCol_ScrollbarBg third_party/imgui/imgui.h /^ ImGuiCol_ScrollbarBg,$/;" e enum:ImGuiCol_
  3652. ImGuiCol_ScrollbarGrab third_party/imgui/imgui.h /^ ImGuiCol_ScrollbarGrab,$/;" e enum:ImGuiCol_
  3653. ImGuiCol_ScrollbarGrabActive third_party/imgui/imgui.h /^ ImGuiCol_ScrollbarGrabActive,$/;" e enum:ImGuiCol_
  3654. ImGuiCol_ScrollbarGrabHovered third_party/imgui/imgui.h /^ ImGuiCol_ScrollbarGrabHovered,$/;" e enum:ImGuiCol_
  3655. ImGuiCol_Separator third_party/imgui/imgui.h /^ ImGuiCol_Separator,$/;" e enum:ImGuiCol_
  3656. ImGuiCol_SeparatorActive third_party/imgui/imgui.h /^ ImGuiCol_SeparatorActive,$/;" e enum:ImGuiCol_
  3657. ImGuiCol_SeparatorHovered third_party/imgui/imgui.h /^ ImGuiCol_SeparatorHovered,$/;" e enum:ImGuiCol_
  3658. ImGuiCol_SliderGrab third_party/imgui/imgui.h /^ ImGuiCol_SliderGrab,$/;" e enum:ImGuiCol_
  3659. ImGuiCol_SliderGrabActive third_party/imgui/imgui.h /^ ImGuiCol_SliderGrabActive,$/;" e enum:ImGuiCol_
  3660. ImGuiCol_Tab third_party/imgui/imgui.h /^ ImGuiCol_Tab,$/;" e enum:ImGuiCol_
  3661. ImGuiCol_TabActive third_party/imgui/imgui.h /^ ImGuiCol_TabActive,$/;" e enum:ImGuiCol_
  3662. ImGuiCol_TabHovered third_party/imgui/imgui.h /^ ImGuiCol_TabHovered,$/;" e enum:ImGuiCol_
  3663. ImGuiCol_TabUnfocused third_party/imgui/imgui.h /^ ImGuiCol_TabUnfocused,$/;" e enum:ImGuiCol_
  3664. ImGuiCol_TabUnfocusedActive third_party/imgui/imgui.h /^ ImGuiCol_TabUnfocusedActive,$/;" e enum:ImGuiCol_
  3665. ImGuiCol_Text third_party/imgui/imgui.h /^ ImGuiCol_Text,$/;" e enum:ImGuiCol_
  3666. ImGuiCol_TextDisabled third_party/imgui/imgui.h /^ ImGuiCol_TextDisabled,$/;" e enum:ImGuiCol_
  3667. ImGuiCol_TextSelectedBg third_party/imgui/imgui.h /^ ImGuiCol_TextSelectedBg,$/;" e enum:ImGuiCol_
  3668. ImGuiCol_TitleBg third_party/imgui/imgui.h /^ ImGuiCol_TitleBg,$/;" e enum:ImGuiCol_
  3669. ImGuiCol_TitleBgActive third_party/imgui/imgui.h /^ ImGuiCol_TitleBgActive,$/;" e enum:ImGuiCol_
  3670. ImGuiCol_TitleBgCollapsed third_party/imgui/imgui.h /^ ImGuiCol_TitleBgCollapsed,$/;" e enum:ImGuiCol_
  3671. ImGuiCol_WindowBg third_party/imgui/imgui.h /^ ImGuiCol_WindowBg, \/\/ Background of normal windows$/;" e enum:ImGuiCol_
  3672. ImGuiColorEditFlags third_party/imgui/imgui.h /^typedef int ImGuiColorEditFlags; \/\/ -> enum ImGuiColorEditFlags_ \/\/ Flags: for ColorEdit/;" t typeref:typename:int
  3673. ImGuiColorEditFlags_ third_party/imgui/imgui.h /^enum ImGuiColorEditFlags_$/;" g
  3674. ImGuiColorEditFlags_AlphaBar third_party/imgui/imgui.h /^ ImGuiColorEditFlags_AlphaBar = 1 << 16, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3675. ImGuiColorEditFlags_AlphaPreview third_party/imgui/imgui.h /^ ImGuiColorEditFlags_AlphaPreview = 1 << 17, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3676. ImGuiColorEditFlags_AlphaPreviewHalf third_party/imgui/imgui.h /^ ImGuiColorEditFlags_AlphaPreviewHalf= 1 << 18, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3677. ImGuiColorEditFlags_DisplayHSV third_party/imgui/imgui.h /^ ImGuiColorEditFlags_DisplayHSV = 1 << 21, \/\/ [Display] \/\/ "$/;" e enum:ImGuiColorEditFlags_
  3678. ImGuiColorEditFlags_DisplayHex third_party/imgui/imgui.h /^ ImGuiColorEditFlags_DisplayHex = 1 << 22, \/\/ [Display] \/\/ "$/;" e enum:ImGuiColorEditFlags_
  3679. ImGuiColorEditFlags_DisplayRGB third_party/imgui/imgui.h /^ ImGuiColorEditFlags_DisplayRGB = 1 << 20, \/\/ [Display] \/\/ ColorEdit: override _/;" e enum:ImGuiColorEditFlags_
  3680. ImGuiColorEditFlags_Float third_party/imgui/imgui.h /^ ImGuiColorEditFlags_Float = 1 << 24, \/\/ [DataType] \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3681. ImGuiColorEditFlags_HDR third_party/imgui/imgui.h /^ ImGuiColorEditFlags_HDR = 1 << 19, \/\/ \/\/ (WIP) ColorEdit: Curr/;" e enum:ImGuiColorEditFlags_
  3682. ImGuiColorEditFlags_HEX third_party/imgui/imgui.h /^ , ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiC/;" e enum:ImGuiColorEditFlags_
  3683. ImGuiColorEditFlags_HSV third_party/imgui/imgui.h /^ , ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiC/;" e enum:ImGuiColorEditFlags_
  3684. ImGuiColorEditFlags_InputHSV third_party/imgui/imgui.h /^ ImGuiColorEditFlags_InputHSV = 1 << 28, \/\/ [Input] \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3685. ImGuiColorEditFlags_InputRGB third_party/imgui/imgui.h /^ ImGuiColorEditFlags_InputRGB = 1 << 27, \/\/ [Input] \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3686. ImGuiColorEditFlags_NoAlpha third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoAlpha = 1 << 1, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3687. ImGuiColorEditFlags_NoDragDrop third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoDragDrop = 1 << 9, \/\/ \/\/ ColorEdit: disable dr/;" e enum:ImGuiColorEditFlags_
  3688. ImGuiColorEditFlags_NoInputs third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoInputs = 1 << 5, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3689. ImGuiColorEditFlags_NoLabel third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoLabel = 1 << 7, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3690. ImGuiColorEditFlags_NoOptions third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoOptions = 1 << 3, \/\/ \/\/ ColorEdit: disable to/;" e enum:ImGuiColorEditFlags_
  3691. ImGuiColorEditFlags_NoPicker third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoPicker = 1 << 2, \/\/ \/\/ ColorEdit: disable pi/;" e enum:ImGuiColorEditFlags_
  3692. ImGuiColorEditFlags_NoSidePreview third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoSidePreview = 1 << 8, \/\/ \/\/ ColorPicker: disable /;" e enum:ImGuiColorEditFlags_
  3693. ImGuiColorEditFlags_NoSmallPreview third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoSmallPreview = 1 << 4, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3694. ImGuiColorEditFlags_NoTooltip third_party/imgui/imgui.h /^ ImGuiColorEditFlags_NoTooltip = 1 << 6, \/\/ \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3695. ImGuiColorEditFlags_None third_party/imgui/imgui.h /^ ImGuiColorEditFlags_None = 0,$/;" e enum:ImGuiColorEditFlags_
  3696. ImGuiColorEditFlags_PickerHueBar third_party/imgui/imgui.h /^ ImGuiColorEditFlags_PickerHueBar = 1 << 25, \/\/ [Picker] \/\/ ColorPicker: bar for /;" e enum:ImGuiColorEditFlags_
  3697. ImGuiColorEditFlags_PickerHueWheel third_party/imgui/imgui.h /^ ImGuiColorEditFlags_PickerHueWheel = 1 << 26, \/\/ [Picker] \/\/ ColorPicker: wheel fo/;" e enum:ImGuiColorEditFlags_
  3698. ImGuiColorEditFlags_RGB third_party/imgui/imgui.h /^ , ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiC/;" e enum:ImGuiColorEditFlags_
  3699. ImGuiColorEditFlags_Uint8 third_party/imgui/imgui.h /^ ImGuiColorEditFlags_Uint8 = 1 << 23, \/\/ [DataType] \/\/ ColorEdit, ColorPicke/;" e enum:ImGuiColorEditFlags_
  3700. ImGuiColorEditFlags__DataTypeMask third_party/imgui/imgui.h /^ ImGuiColorEditFlags__DataTypeMask = ImGuiColorEditFlags_Uint8|ImGuiColorEditFlags_Float,$/;" e enum:ImGuiColorEditFlags_
  3701. ImGuiColorEditFlags__DisplayMask third_party/imgui/imgui.h /^ ImGuiColorEditFlags__DisplayMask = ImGuiColorEditFlags_DisplayRGB|ImGuiColorEditFlags_Dis/;" e enum:ImGuiColorEditFlags_
  3702. ImGuiColorEditFlags__InputMask third_party/imgui/imgui.h /^ ImGuiColorEditFlags__InputMask = ImGuiColorEditFlags_InputRGB|ImGuiColorEditFlags_Input/;" e enum:ImGuiColorEditFlags_
  3703. ImGuiColorEditFlags__OptionsDefault third_party/imgui/imgui.h /^ ImGuiColorEditFlags__OptionsDefault = ImGuiColorEditFlags_Uint8|ImGuiColorEditFlags_DisplayR/;" e enum:ImGuiColorEditFlags_
  3704. ImGuiColorEditFlags__PickerMask third_party/imgui/imgui.h /^ ImGuiColorEditFlags__PickerMask = ImGuiColorEditFlags_PickerHueWheel|ImGuiColorEditFlags/;" e enum:ImGuiColorEditFlags_
  3705. ImGuiColorMod third_party/imgui/imgui_internal.h /^struct ImGuiColorMod$/;" s
  3706. ImGuiColumnData third_party/imgui/imgui_internal.h /^ ImGuiColumnData() { OffsetNorm = OffsetNormBeforeResize = 0.0f; Flags = ImGuiColumnsFlags_/;" f struct:ImGuiColumnData
  3707. ImGuiColumnData third_party/imgui/imgui_internal.h /^struct ImGuiColumnData$/;" s
  3708. ImGuiColumns third_party/imgui/imgui_internal.h /^ ImGuiColumns() { Clear(); }$/;" f struct:ImGuiColumns
  3709. ImGuiColumns third_party/imgui/imgui_internal.h /^struct ImGuiColumns$/;" s
  3710. ImGuiColumnsFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiColumnsFlags; \/\/ -> enum ImGuiColumnsFlags_ \/\/ Flags: BeginC/;" t typeref:typename:int
  3711. ImGuiColumnsFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiColumnsFlags_$/;" g
  3712. ImGuiColumnsFlags_GrowParentContentsSize third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_GrowParentContentsSize= 1 << 4 \/\/ (WIP) Restore pre-1.51 behavior of /;" e enum:ImGuiColumnsFlags_
  3713. ImGuiColumnsFlags_NoBorder third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_NoBorder = 1 << 0, \/\/ Disable column dividers$/;" e enum:ImGuiColumnsFlags_
  3714. ImGuiColumnsFlags_NoForceWithinWindow third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_NoForceWithinWindow = 1 << 3, \/\/ Disable forcing columns to fit with/;" e enum:ImGuiColumnsFlags_
  3715. ImGuiColumnsFlags_NoPreserveWidths third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_NoPreserveWidths = 1 << 2, \/\/ Disable column width preservation w/;" e enum:ImGuiColumnsFlags_
  3716. ImGuiColumnsFlags_NoResize third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_NoResize = 1 << 1, \/\/ Disable resizing columns when click/;" e enum:ImGuiColumnsFlags_
  3717. ImGuiColumnsFlags_None third_party/imgui/imgui_internal.h /^ ImGuiColumnsFlags_None = 0,$/;" e enum:ImGuiColumnsFlags_
  3718. ImGuiComboFlags third_party/imgui/imgui.h /^typedef int ImGuiComboFlags; \/\/ -> enum ImGuiComboFlags_ \/\/ Flags: for BeginComb/;" t typeref:typename:int
  3719. ImGuiComboFlags_ third_party/imgui/imgui.h /^enum ImGuiComboFlags_$/;" g
  3720. ImGuiComboFlags_HeightLarge third_party/imgui/imgui.h /^ ImGuiComboFlags_HeightLarge = 1 << 3, \/\/ Max ~20 items visible$/;" e enum:ImGuiComboFlags_
  3721. ImGuiComboFlags_HeightLargest third_party/imgui/imgui.h /^ ImGuiComboFlags_HeightLargest = 1 << 4, \/\/ As many fitting items as possible$/;" e enum:ImGuiComboFlags_
  3722. ImGuiComboFlags_HeightMask_ third_party/imgui/imgui.h /^ ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_Heig/;" e enum:ImGuiComboFlags_
  3723. ImGuiComboFlags_HeightRegular third_party/imgui/imgui.h /^ ImGuiComboFlags_HeightRegular = 1 << 2, \/\/ Max ~8 items visible (default)$/;" e enum:ImGuiComboFlags_
  3724. ImGuiComboFlags_HeightSmall third_party/imgui/imgui.h /^ ImGuiComboFlags_HeightSmall = 1 << 1, \/\/ Max ~4 items visible. Tip: If you w/;" e enum:ImGuiComboFlags_
  3725. ImGuiComboFlags_NoArrowButton third_party/imgui/imgui.h /^ ImGuiComboFlags_NoArrowButton = 1 << 5, \/\/ Display on the preview box without /;" e enum:ImGuiComboFlags_
  3726. ImGuiComboFlags_NoPreview third_party/imgui/imgui.h /^ ImGuiComboFlags_NoPreview = 1 << 6, \/\/ Display only a square arrow button$/;" e enum:ImGuiComboFlags_
  3727. ImGuiComboFlags_None third_party/imgui/imgui.h /^ ImGuiComboFlags_None = 0,$/;" e enum:ImGuiComboFlags_
  3728. ImGuiComboFlags_PopupAlignLeft third_party/imgui/imgui.h /^ ImGuiComboFlags_PopupAlignLeft = 1 << 0, \/\/ Align the popup toward the left by /;" e enum:ImGuiComboFlags_
  3729. ImGuiCond third_party/imgui/imgui.h /^typedef int ImGuiCond; \/\/ -> enum ImGuiCond_ \/\/ Enum: A condition fo/;" t typeref:typename:int
  3730. ImGuiCond_ third_party/imgui/imgui.h /^enum ImGuiCond_$/;" g
  3731. ImGuiCond_Always third_party/imgui/imgui.h /^ ImGuiCond_Always = 1 << 0, \/\/ Set the variable$/;" e enum:ImGuiCond_
  3732. ImGuiCond_Appearing third_party/imgui/imgui.h /^ ImGuiCond_Appearing = 1 << 3 \/\/ Set the variable if the object\/window is appearing/;" e enum:ImGuiCond_
  3733. ImGuiCond_FirstUseEver third_party/imgui/imgui.h /^ ImGuiCond_FirstUseEver = 1 << 2, \/\/ Set the variable if the object\/window has no persi/;" e enum:ImGuiCond_
  3734. ImGuiCond_Once third_party/imgui/imgui.h /^ ImGuiCond_Once = 1 << 1, \/\/ Set the variable once per runtime session (only the/;" e enum:ImGuiCond_
  3735. ImGuiConfigFlags third_party/imgui/imgui.h /^typedef int ImGuiConfigFlags; \/\/ -> enum ImGuiConfigFlags_ \/\/ Flags: for io.Config/;" t typeref:typename:int
  3736. ImGuiConfigFlags_ third_party/imgui/imgui.h /^enum ImGuiConfigFlags_$/;" g
  3737. ImGuiConfigFlags_IsSRGB third_party/imgui/imgui.h /^ ImGuiConfigFlags_IsSRGB = 1 << 20, \/\/ Application is SRGB-aware.$/;" e enum:ImGuiConfigFlags_
  3738. ImGuiConfigFlags_IsTouchScreen third_party/imgui/imgui.h /^ ImGuiConfigFlags_IsTouchScreen = 1 << 21 \/\/ Application is using a touch screen/;" e enum:ImGuiConfigFlags_
  3739. ImGuiConfigFlags_NavEnableGamepad third_party/imgui/imgui.h /^ ImGuiConfigFlags_NavEnableGamepad = 1 << 1, \/\/ Master gamepad navigation enable fl/;" e enum:ImGuiConfigFlags_
  3740. ImGuiConfigFlags_NavEnableKeyboard third_party/imgui/imgui.h /^ ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, \/\/ Master keyboard navigation enable f/;" e enum:ImGuiConfigFlags_
  3741. ImGuiConfigFlags_NavEnableSetMousePos third_party/imgui/imgui.h /^ ImGuiConfigFlags_NavEnableSetMousePos = 1 << 2, \/\/ Instruct navigation to move the mou/;" e enum:ImGuiConfigFlags_
  3742. ImGuiConfigFlags_NavNoCaptureKeyboard third_party/imgui/imgui.h /^ ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, \/\/ Instruct navigation to not set the /;" e enum:ImGuiConfigFlags_
  3743. ImGuiConfigFlags_NoMouse third_party/imgui/imgui.h /^ ImGuiConfigFlags_NoMouse = 1 << 4, \/\/ Instruct imgui to clear mouse posit/;" e enum:ImGuiConfigFlags_
  3744. ImGuiConfigFlags_NoMouseCursorChange third_party/imgui/imgui.h /^ ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, \/\/ Instruct back-end to not alter mous/;" e enum:ImGuiConfigFlags_
  3745. ImGuiConfigFlags_None third_party/imgui/imgui.h /^ ImGuiConfigFlags_None = 0,$/;" e enum:ImGuiConfigFlags_
  3746. ImGuiContext third_party/imgui/imgui_internal.h /^ ImGuiContext(ImFontAtlas* shared_font_atlas) : BackgroundDrawList(&DrawListSharedData), Fore/;" f struct:ImGuiContext
  3747. ImGuiContext third_party/imgui/imgui_internal.h /^struct ImGuiContext$/;" s
  3748. ImGuiDataType third_party/imgui/imgui.h /^typedef int ImGuiDataType; \/\/ -> enum ImGuiDataType_ \/\/ Enum: A primary data/;" t typeref:typename:int
  3749. ImGuiDataTypeInfo third_party/imgui/imgui_internal.h /^struct ImGuiDataTypeInfo$/;" s
  3750. ImGuiDataType_ third_party/imgui/imgui.h /^enum ImGuiDataType_$/;" g
  3751. ImGuiDataType_COUNT third_party/imgui/imgui.h /^ ImGuiDataType_COUNT$/;" e enum:ImGuiDataType_
  3752. ImGuiDataType_Double third_party/imgui/imgui.h /^ ImGuiDataType_Double, \/\/ double$/;" e enum:ImGuiDataType_
  3753. ImGuiDataType_Float third_party/imgui/imgui.h /^ ImGuiDataType_Float, \/\/ float$/;" e enum:ImGuiDataType_
  3754. ImGuiDataType_S16 third_party/imgui/imgui.h /^ ImGuiDataType_S16, \/\/ short$/;" e enum:ImGuiDataType_
  3755. ImGuiDataType_S32 third_party/imgui/imgui.h /^ ImGuiDataType_S32, \/\/ int$/;" e enum:ImGuiDataType_
  3756. ImGuiDataType_S64 third_party/imgui/imgui.h /^ ImGuiDataType_S64, \/\/ long long \/ __int64$/;" e enum:ImGuiDataType_
  3757. ImGuiDataType_S8 third_party/imgui/imgui.h /^ ImGuiDataType_S8, \/\/ signed char \/ char (with sensible compilers)$/;" e enum:ImGuiDataType_
  3758. ImGuiDataType_U16 third_party/imgui/imgui.h /^ ImGuiDataType_U16, \/\/ unsigned short$/;" e enum:ImGuiDataType_
  3759. ImGuiDataType_U32 third_party/imgui/imgui.h /^ ImGuiDataType_U32, \/\/ unsigned int$/;" e enum:ImGuiDataType_
  3760. ImGuiDataType_U64 third_party/imgui/imgui.h /^ ImGuiDataType_U64, \/\/ unsigned long long \/ unsigned __int64$/;" e enum:ImGuiDataType_
  3761. ImGuiDataType_U8 third_party/imgui/imgui.h /^ ImGuiDataType_U8, \/\/ unsigned char$/;" e enum:ImGuiDataType_
  3762. ImGuiDir third_party/imgui/imgui.h /^typedef int ImGuiDir; \/\/ -> enum ImGuiDir_ \/\/ Enum: A cardinal dir/;" t typeref:typename:int
  3763. ImGuiDir_ third_party/imgui/imgui.h /^enum ImGuiDir_$/;" g
  3764. ImGuiDir_COUNT third_party/imgui/imgui.h /^ ImGuiDir_COUNT$/;" e enum:ImGuiDir_
  3765. ImGuiDir_Down third_party/imgui/imgui.h /^ ImGuiDir_Down = 3,$/;" e enum:ImGuiDir_
  3766. ImGuiDir_Left third_party/imgui/imgui.h /^ ImGuiDir_Left = 0,$/;" e enum:ImGuiDir_
  3767. ImGuiDir_None third_party/imgui/imgui.h /^ ImGuiDir_None = -1,$/;" e enum:ImGuiDir_
  3768. ImGuiDir_Right third_party/imgui/imgui.h /^ ImGuiDir_Right = 1,$/;" e enum:ImGuiDir_
  3769. ImGuiDir_Up third_party/imgui/imgui.h /^ ImGuiDir_Up = 2,$/;" e enum:ImGuiDir_
  3770. ImGuiDragDropFlags third_party/imgui/imgui.h /^typedef int ImGuiDragDropFlags; \/\/ -> enum ImGuiDragDropFlags_ \/\/ Flags: for BeginDrag/;" t typeref:typename:int
  3771. ImGuiDragDropFlags_ third_party/imgui/imgui.h /^enum ImGuiDragDropFlags_$/;" g
  3772. ImGuiDragDropFlags_AcceptBeforeDelivery third_party/imgui/imgui.h /^ ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, \/\/ AcceptDragDropPayload() wil/;" e enum:ImGuiDragDropFlags_
  3773. ImGuiDragDropFlags_AcceptNoDrawDefaultRect third_party/imgui/imgui.h /^ ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, \/\/ Do not draw the default hig/;" e enum:ImGuiDragDropFlags_
  3774. ImGuiDragDropFlags_AcceptNoPreviewTooltip third_party/imgui/imgui.h /^ ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, \/\/ Request hiding the BeginDra/;" e enum:ImGuiDragDropFlags_
  3775. ImGuiDragDropFlags_AcceptPeekOnly third_party/imgui/imgui.h /^ ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | /;" e enum:ImGuiDragDropFlags_
  3776. ImGuiDragDropFlags_None third_party/imgui/imgui.h /^ ImGuiDragDropFlags_None = 0,$/;" e enum:ImGuiDragDropFlags_
  3777. ImGuiDragDropFlags_SourceAllowNullID third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, \/\/ Allow items such as Text(),/;" e enum:ImGuiDragDropFlags_
  3778. ImGuiDragDropFlags_SourceAutoExpirePayload third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceAutoExpirePayload = 1 << 5, \/\/ Automatically expire the pa/;" e enum:ImGuiDragDropFlags_
  3779. ImGuiDragDropFlags_SourceExtern third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceExtern = 1 << 4, \/\/ External source (from outsi/;" e enum:ImGuiDragDropFlags_
  3780. ImGuiDragDropFlags_SourceNoDisableHover third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceNoDisableHover = 1 << 1, \/\/ By default, when dragging w/;" e enum:ImGuiDragDropFlags_
  3781. ImGuiDragDropFlags_SourceNoHoldToOpenOthers third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, \/\/ Disable the behavior that a/;" e enum:ImGuiDragDropFlags_
  3782. ImGuiDragDropFlags_SourceNoPreviewTooltip third_party/imgui/imgui.h /^ ImGuiDragDropFlags_SourceNoPreviewTooltip = 1 << 0, \/\/ By default, a successful ca/;" e enum:ImGuiDragDropFlags_
  3783. ImGuiDragFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiDragFlags; \/\/ -> enum ImGuiDragFlags_ \/\/ Flags: for Dr/;" t typeref:typename:int
  3784. ImGuiDragFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiDragFlags_$/;" g
  3785. ImGuiDragFlags_None third_party/imgui/imgui_internal.h /^ ImGuiDragFlags_None = 0,$/;" e enum:ImGuiDragFlags_
  3786. ImGuiDragFlags_Vertical third_party/imgui/imgui_internal.h /^ ImGuiDragFlags_Vertical = 1 << 0$/;" e enum:ImGuiDragFlags_
  3787. ImGuiExampleAppDelegate third_party/imgui/examples/example_apple_opengl2/main.mm /^@implementation ImGuiExampleAppDelegate$/;" I
  3788. ImGuiExampleAppDelegate third_party/imgui/examples/example_apple_opengl2/main.mm /^@interface ImGuiExampleAppDelegate : NSObject <NSApplicationDelegate>$/;" i
  3789. ImGuiExampleView third_party/imgui/examples/example_apple_opengl2/main.mm /^@implementation ImGuiExampleView$/;" I
  3790. ImGuiExampleView third_party/imgui/examples/example_apple_opengl2/main.mm /^@interface ImGuiExampleView : NSOpenGLView$/;" i
  3791. ImGuiFocusedFlags third_party/imgui/imgui.h /^typedef int ImGuiFocusedFlags; \/\/ -> enum ImGuiFocusedFlags_ \/\/ Flags: for IsWindowF/;" t typeref:typename:int
  3792. ImGuiFocusedFlags_ third_party/imgui/imgui.h /^enum ImGuiFocusedFlags_$/;" g
  3793. ImGuiFocusedFlags_AnyWindow third_party/imgui/imgui.h /^ ImGuiFocusedFlags_AnyWindow = 1 << 2, \/\/ IsWindowFocused(): Return t/;" e enum:ImGuiFocusedFlags_
  3794. ImGuiFocusedFlags_ChildWindows third_party/imgui/imgui.h /^ ImGuiFocusedFlags_ChildWindows = 1 << 0, \/\/ IsWindowFocused(): Return t/;" e enum:ImGuiFocusedFlags_
  3795. ImGuiFocusedFlags_None third_party/imgui/imgui.h /^ ImGuiFocusedFlags_None = 0,$/;" e enum:ImGuiFocusedFlags_
  3796. ImGuiFocusedFlags_RootAndChildWindows third_party/imgui/imgui.h /^ ImGuiFocusedFlags_RootAndChildWindows = ImGuiFocusedFlags_RootWindow | ImGuiFocuse/;" e enum:ImGuiFocusedFlags_
  3797. ImGuiFocusedFlags_RootWindow third_party/imgui/imgui.h /^ ImGuiFocusedFlags_RootWindow = 1 << 1, \/\/ IsWindowFocused(): Test fro/;" e enum:ImGuiFocusedFlags_
  3798. ImGuiFreeType third_party/imgui/misc/freetype/imgui_freetype.h /^namespace ImGuiFreeType$/;" n
  3799. ImGuiGroupData third_party/imgui/imgui_internal.h /^struct ImGuiGroupData$/;" s
  3800. ImGuiHoveredFlags third_party/imgui/imgui.h /^typedef int ImGuiHoveredFlags; \/\/ -> enum ImGuiHoveredFlags_ \/\/ Flags: for IsItemHov/;" t typeref:typename:int
  3801. ImGuiHoveredFlags_ third_party/imgui/imgui.h /^enum ImGuiHoveredFlags_$/;" g
  3802. ImGuiHoveredFlags_AllowWhenBlockedByActiveItem third_party/imgui/imgui.h /^ ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 5, \/\/ Return true even if an acti/;" e enum:ImGuiHoveredFlags_
  3803. ImGuiHoveredFlags_AllowWhenBlockedByPopup third_party/imgui/imgui.h /^ ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 3, \/\/ Return true even if a popup/;" e enum:ImGuiHoveredFlags_
  3804. ImGuiHoveredFlags_AllowWhenDisabled third_party/imgui/imgui.h /^ ImGuiHoveredFlags_AllowWhenDisabled = 1 << 7, \/\/ Return true even if the ite/;" e enum:ImGuiHoveredFlags_
  3805. ImGuiHoveredFlags_AllowWhenOverlapped third_party/imgui/imgui.h /^ ImGuiHoveredFlags_AllowWhenOverlapped = 1 << 6, \/\/ Return true even if the pos/;" e enum:ImGuiHoveredFlags_
  3806. ImGuiHoveredFlags_AnyWindow third_party/imgui/imgui.h /^ ImGuiHoveredFlags_AnyWindow = 1 << 2, \/\/ IsWindowHovered() only: Ret/;" e enum:ImGuiHoveredFlags_
  3807. ImGuiHoveredFlags_ChildWindows third_party/imgui/imgui.h /^ ImGuiHoveredFlags_ChildWindows = 1 << 0, \/\/ IsWindowHovered() only: Ret/;" e enum:ImGuiHoveredFlags_
  3808. ImGuiHoveredFlags_None third_party/imgui/imgui.h /^ ImGuiHoveredFlags_None = 0, \/\/ Return true if directly ove/;" e enum:ImGuiHoveredFlags_
  3809. ImGuiHoveredFlags_RectOnly third_party/imgui/imgui.h /^ ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup /;" e enum:ImGuiHoveredFlags_
  3810. ImGuiHoveredFlags_RootAndChildWindows third_party/imgui/imgui.h /^ ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHovere/;" e enum:ImGuiHoveredFlags_
  3811. ImGuiHoveredFlags_RootWindow third_party/imgui/imgui.h /^ ImGuiHoveredFlags_RootWindow = 1 << 1, \/\/ IsWindowHovered() only: Tes/;" e enum:ImGuiHoveredFlags_
  3812. ImGuiID third_party/imgui/imgui.h /^typedef unsigned int ImGuiID; \/\/ Unique ID used by widgets (typically hashed from a stac/;" t typeref:typename:unsigned int
  3813. ImGuiIO third_party/imgui/imgui.cpp /^ImGuiIO::ImGuiIO()$/;" f class:ImGuiIO
  3814. ImGuiIO third_party/imgui/imgui.h /^struct ImGuiIO$/;" s
  3815. ImGuiInputReadMode third_party/imgui/imgui_internal.h /^enum ImGuiInputReadMode$/;" g
  3816. ImGuiInputReadMode_Down third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_Down,$/;" e enum:ImGuiInputReadMode
  3817. ImGuiInputReadMode_Pressed third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_Pressed,$/;" e enum:ImGuiInputReadMode
  3818. ImGuiInputReadMode_Released third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_Released,$/;" e enum:ImGuiInputReadMode
  3819. ImGuiInputReadMode_Repeat third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_Repeat,$/;" e enum:ImGuiInputReadMode
  3820. ImGuiInputReadMode_RepeatFast third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_RepeatFast$/;" e enum:ImGuiInputReadMode
  3821. ImGuiInputReadMode_RepeatSlow third_party/imgui/imgui_internal.h /^ ImGuiInputReadMode_RepeatSlow,$/;" e enum:ImGuiInputReadMode
  3822. ImGuiInputSource third_party/imgui/imgui_internal.h /^enum ImGuiInputSource$/;" g
  3823. ImGuiInputSource_COUNT third_party/imgui/imgui_internal.h /^ ImGuiInputSource_COUNT$/;" e enum:ImGuiInputSource
  3824. ImGuiInputSource_Mouse third_party/imgui/imgui_internal.h /^ ImGuiInputSource_Mouse,$/;" e enum:ImGuiInputSource
  3825. ImGuiInputSource_Nav third_party/imgui/imgui_internal.h /^ ImGuiInputSource_Nav,$/;" e enum:ImGuiInputSource
  3826. ImGuiInputSource_NavGamepad third_party/imgui/imgui_internal.h /^ ImGuiInputSource_NavGamepad, \/\/ "$/;" e enum:ImGuiInputSource
  3827. ImGuiInputSource_NavKeyboard third_party/imgui/imgui_internal.h /^ ImGuiInputSource_NavKeyboard, \/\/ Only used occasionally for storage, not tested\/handled/;" e enum:ImGuiInputSource
  3828. ImGuiInputSource_None third_party/imgui/imgui_internal.h /^ ImGuiInputSource_None = 0,$/;" e enum:ImGuiInputSource
  3829. ImGuiInputTextCallback third_party/imgui/imgui.h /^typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData *data);$/;" t typeref:typename:int (*)(ImGuiInputTextCallbackData * data)
  3830. ImGuiInputTextCallbackData third_party/imgui/imgui.h /^struct ImGuiInputTextCallbackData$/;" s
  3831. ImGuiInputTextCallbackData third_party/imgui/imgui_widgets.cpp /^ImGuiInputTextCallbackData::ImGuiInputTextCallbackData()$/;" f class:ImGuiInputTextCallbackData
  3832. ImGuiInputTextFlags third_party/imgui/imgui.h /^typedef int ImGuiInputTextFlags; \/\/ -> enum ImGuiInputTextFlags_ \/\/ Flags: for InputText/;" t typeref:typename:int
  3833. ImGuiInputTextFlags_ third_party/imgui/imgui.h /^enum ImGuiInputTextFlags_$/;" g
  3834. ImGuiInputTextFlags_AllowTabInput third_party/imgui/imgui.h /^ ImGuiInputTextFlags_AllowTabInput = 1 << 10, \/\/ Pressing TAB input a '\\t' characte/;" e enum:ImGuiInputTextFlags_
  3835. ImGuiInputTextFlags_AlwaysInsertMode third_party/imgui/imgui.h /^ ImGuiInputTextFlags_AlwaysInsertMode = 1 << 13, \/\/ Insert mode$/;" e enum:ImGuiInputTextFlags_
  3836. ImGuiInputTextFlags_AutoSelectAll third_party/imgui/imgui.h /^ ImGuiInputTextFlags_AutoSelectAll = 1 << 4, \/\/ Select entire text when first takin/;" e enum:ImGuiInputTextFlags_
  3837. ImGuiInputTextFlags_CallbackAlways third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CallbackAlways = 1 << 8, \/\/ Callback on each iteration. User co/;" e enum:ImGuiInputTextFlags_
  3838. ImGuiInputTextFlags_CallbackCharFilter third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CallbackCharFilter = 1 << 9, \/\/ Callback on character inputs to rep/;" e enum:ImGuiInputTextFlags_
  3839. ImGuiInputTextFlags_CallbackCompletion third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CallbackCompletion = 1 << 6, \/\/ Callback on pressing TAB (for compl/;" e enum:ImGuiInputTextFlags_
  3840. ImGuiInputTextFlags_CallbackHistory third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CallbackHistory = 1 << 7, \/\/ Callback on pressing Up\/Down arrow/;" e enum:ImGuiInputTextFlags_
  3841. ImGuiInputTextFlags_CallbackResize third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CallbackResize = 1 << 18, \/\/ Callback on buffer capacity changes/;" e enum:ImGuiInputTextFlags_
  3842. ImGuiInputTextFlags_CharsDecimal third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CharsDecimal = 1 << 0, \/\/ Allow 0123456789.+-*\/$/;" e enum:ImGuiInputTextFlags_
  3843. ImGuiInputTextFlags_CharsHexadecimal third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, \/\/ Allow 0123456789ABCDEFabcdef$/;" e enum:ImGuiInputTextFlags_
  3844. ImGuiInputTextFlags_CharsNoBlank third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CharsNoBlank = 1 << 3, \/\/ Filter out spaces, tabs$/;" e enum:ImGuiInputTextFlags_
  3845. ImGuiInputTextFlags_CharsScientific third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CharsScientific = 1 << 17, \/\/ Allow 0123456789.+-*\/eE (Scientifi/;" e enum:ImGuiInputTextFlags_
  3846. ImGuiInputTextFlags_CharsUppercase third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CharsUppercase = 1 << 2, \/\/ Turn a..z into A..Z$/;" e enum:ImGuiInputTextFlags_
  3847. ImGuiInputTextFlags_CtrlEnterForNewLine third_party/imgui/imgui.h /^ ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 11, \/\/ In multi-line mode, unfocus with En/;" e enum:ImGuiInputTextFlags_
  3848. ImGuiInputTextFlags_EnterReturnsTrue third_party/imgui/imgui.h /^ ImGuiInputTextFlags_EnterReturnsTrue = 1 << 5, \/\/ Return 'true' when Enter is pressed/;" e enum:ImGuiInputTextFlags_
  3849. ImGuiInputTextFlags_Multiline third_party/imgui/imgui.h /^ ImGuiInputTextFlags_Multiline = 1 << 20, \/\/ For internal use by InputTextMultil/;" e enum:ImGuiInputTextFlags_
  3850. ImGuiInputTextFlags_NoHorizontalScroll third_party/imgui/imgui.h /^ ImGuiInputTextFlags_NoHorizontalScroll = 1 << 12, \/\/ Disable following the cursor horizo/;" e enum:ImGuiInputTextFlags_
  3851. ImGuiInputTextFlags_NoMarkEdited third_party/imgui/imgui.h /^ ImGuiInputTextFlags_NoMarkEdited = 1 << 21 \/\/ For internal use by functions using/;" e enum:ImGuiInputTextFlags_
  3852. ImGuiInputTextFlags_NoUndoRedo third_party/imgui/imgui.h /^ ImGuiInputTextFlags_NoUndoRedo = 1 << 16, \/\/ Disable undo\/redo. Note that input/;" e enum:ImGuiInputTextFlags_
  3853. ImGuiInputTextFlags_None third_party/imgui/imgui.h /^ ImGuiInputTextFlags_None = 0,$/;" e enum:ImGuiInputTextFlags_
  3854. ImGuiInputTextFlags_Password third_party/imgui/imgui.h /^ ImGuiInputTextFlags_Password = 1 << 15, \/\/ Password mode, display all characte/;" e enum:ImGuiInputTextFlags_
  3855. ImGuiInputTextFlags_ReadOnly third_party/imgui/imgui.h /^ ImGuiInputTextFlags_ReadOnly = 1 << 14, \/\/ Read-only mode$/;" e enum:ImGuiInputTextFlags_
  3856. ImGuiInputTextState third_party/imgui/imgui_internal.h /^ ImGuiInputTextState() { memset(this, 0, sizeof(*this)); }$/;" f struct:ImGuiInputTextState
  3857. ImGuiInputTextState third_party/imgui/imgui_internal.h /^struct IMGUI_API ImGuiInputTextState$/;" s
  3858. ImGuiItemFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiItemFlags; \/\/ -> enum ImGuiItemFlags_ \/\/ Flags: for Pu/;" t typeref:typename:int
  3859. ImGuiItemFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiItemFlags_$/;" g
  3860. ImGuiItemFlags_ButtonRepeat third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_ButtonRepeat = 1 << 1, \/\/ false \/\/ Button() will return t/;" e enum:ImGuiItemFlags_
  3861. ImGuiItemFlags_Default_ third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_Default_ = 0$/;" e enum:ImGuiItemFlags_
  3862. ImGuiItemFlags_Disabled third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_Disabled = 1 << 2, \/\/ false \/\/ [BETA] Disable interac/;" e enum:ImGuiItemFlags_
  3863. ImGuiItemFlags_MixedValue third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_MixedValue = 1 << 6, \/\/ false \/\/ [BETA] Represent a mix/;" e enum:ImGuiItemFlags_
  3864. ImGuiItemFlags_NoNav third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_NoNav = 1 << 3, \/\/ false$/;" e enum:ImGuiItemFlags_
  3865. ImGuiItemFlags_NoNavDefaultFocus third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_NoNavDefaultFocus = 1 << 4, \/\/ false$/;" e enum:ImGuiItemFlags_
  3866. ImGuiItemFlags_NoTabStop third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_NoTabStop = 1 << 0, \/\/ false$/;" e enum:ImGuiItemFlags_
  3867. ImGuiItemFlags_SelectableDontClosePopup third_party/imgui/imgui_internal.h /^ ImGuiItemFlags_SelectableDontClosePopup = 1 << 5, \/\/ false \/\/ MenuItem\/Selectable()/;" e enum:ImGuiItemFlags_
  3868. ImGuiItemHoveredDataBackup third_party/imgui/imgui_internal.h /^ ImGuiItemHoveredDataBackup() { Backup(); }$/;" f struct:ImGuiItemHoveredDataBackup
  3869. ImGuiItemHoveredDataBackup third_party/imgui/imgui_internal.h /^struct ImGuiItemHoveredDataBackup$/;" s
  3870. ImGuiItemStatusFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiItemStatusFlags; \/\/ -> enum ImGuiItemStatusFlags_ \/\/ Flags: for DC/;" t typeref:typename:int
  3871. ImGuiItemStatusFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiItemStatusFlags_$/;" g
  3872. ImGuiItemStatusFlags_Checkable third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Checkable = 1 << 12, \/\/$/;" e enum:ImGuiItemStatusFlags_
  3873. ImGuiItemStatusFlags_Checked third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Checked = 1 << 13 \/\/$/;" e enum:ImGuiItemStatusFlags_
  3874. ImGuiItemStatusFlags_Deactivated third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Deactivated = 1 << 5 \/\/ Only valid if ImGuiItemStatusFlags_/;" e enum:ImGuiItemStatusFlags_
  3875. ImGuiItemStatusFlags_Edited third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Edited = 1 << 2, \/\/ Value exposed by item was edited in/;" e enum:ImGuiItemStatusFlags_
  3876. ImGuiItemStatusFlags_HasDeactivated third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_HasDeactivated = 1 << 4, \/\/ Set if the widget\/group is able to/;" e enum:ImGuiItemStatusFlags_
  3877. ImGuiItemStatusFlags_HasDisplayRect third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_HasDisplayRect = 1 << 1,$/;" e enum:ImGuiItemStatusFlags_
  3878. ImGuiItemStatusFlags_HoveredRect third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_HoveredRect = 1 << 0,$/;" e enum:ImGuiItemStatusFlags_
  3879. ImGuiItemStatusFlags_None third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_None = 0,$/;" e enum:ImGuiItemStatusFlags_
  3880. ImGuiItemStatusFlags_Openable third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Openable = 1 << 10, \/\/$/;" e enum:ImGuiItemStatusFlags_
  3881. ImGuiItemStatusFlags_Opened third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_Opened = 1 << 11, \/\/$/;" e enum:ImGuiItemStatusFlags_
  3882. ImGuiItemStatusFlags_ToggledSelection third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags_ToggledSelection = 1 << 3, \/\/ Set when Selectable(), TreeNode() r/;" e enum:ImGuiItemStatusFlags_
  3883. ImGuiKey third_party/imgui/imgui.h /^typedef int ImGuiKey; \/\/ -> enum ImGuiKey_ \/\/ Enum: A key identifi/;" t typeref:typename:int
  3884. ImGuiKey_ third_party/imgui/imgui.h /^enum ImGuiKey_$/;" g
  3885. ImGuiKey_A third_party/imgui/imgui.h /^ ImGuiKey_A, \/\/ for text edit CTRL+A: select all$/;" e enum:ImGuiKey_
  3886. ImGuiKey_Backspace third_party/imgui/imgui.h /^ ImGuiKey_Backspace,$/;" e enum:ImGuiKey_
  3887. ImGuiKey_C third_party/imgui/imgui.h /^ ImGuiKey_C, \/\/ for text edit CTRL+C: copy$/;" e enum:ImGuiKey_
  3888. ImGuiKey_COUNT third_party/imgui/imgui.h /^ ImGuiKey_COUNT$/;" e enum:ImGuiKey_
  3889. ImGuiKey_Delete third_party/imgui/imgui.h /^ ImGuiKey_Delete,$/;" e enum:ImGuiKey_
  3890. ImGuiKey_DownArrow third_party/imgui/imgui.h /^ ImGuiKey_DownArrow,$/;" e enum:ImGuiKey_
  3891. ImGuiKey_End third_party/imgui/imgui.h /^ ImGuiKey_End,$/;" e enum:ImGuiKey_
  3892. ImGuiKey_Enter third_party/imgui/imgui.h /^ ImGuiKey_Enter,$/;" e enum:ImGuiKey_
  3893. ImGuiKey_Escape third_party/imgui/imgui.h /^ ImGuiKey_Escape,$/;" e enum:ImGuiKey_
  3894. ImGuiKey_Home third_party/imgui/imgui.h /^ ImGuiKey_Home,$/;" e enum:ImGuiKey_
  3895. ImGuiKey_Insert third_party/imgui/imgui.h /^ ImGuiKey_Insert,$/;" e enum:ImGuiKey_
  3896. ImGuiKey_KeyPadEnter third_party/imgui/imgui.h /^ ImGuiKey_KeyPadEnter,$/;" e enum:ImGuiKey_
  3897. ImGuiKey_LeftArrow third_party/imgui/imgui.h /^ ImGuiKey_LeftArrow,$/;" e enum:ImGuiKey_
  3898. ImGuiKey_PageDown third_party/imgui/imgui.h /^ ImGuiKey_PageDown,$/;" e enum:ImGuiKey_
  3899. ImGuiKey_PageUp third_party/imgui/imgui.h /^ ImGuiKey_PageUp,$/;" e enum:ImGuiKey_
  3900. ImGuiKey_RightArrow third_party/imgui/imgui.h /^ ImGuiKey_RightArrow,$/;" e enum:ImGuiKey_
  3901. ImGuiKey_Space third_party/imgui/imgui.h /^ ImGuiKey_Space,$/;" e enum:ImGuiKey_
  3902. ImGuiKey_Tab third_party/imgui/imgui.h /^ ImGuiKey_Tab,$/;" e enum:ImGuiKey_
  3903. ImGuiKey_UpArrow third_party/imgui/imgui.h /^ ImGuiKey_UpArrow,$/;" e enum:ImGuiKey_
  3904. ImGuiKey_V third_party/imgui/imgui.h /^ ImGuiKey_V, \/\/ for text edit CTRL+V: paste$/;" e enum:ImGuiKey_
  3905. ImGuiKey_X third_party/imgui/imgui.h /^ ImGuiKey_X, \/\/ for text edit CTRL+X: cut$/;" e enum:ImGuiKey_
  3906. ImGuiKey_Y third_party/imgui/imgui.h /^ ImGuiKey_Y, \/\/ for text edit CTRL+Y: redo$/;" e enum:ImGuiKey_
  3907. ImGuiKey_Z third_party/imgui/imgui.h /^ ImGuiKey_Z, \/\/ for text edit CTRL+Z: undo$/;" e enum:ImGuiKey_
  3908. ImGuiLayoutType third_party/imgui/imgui_internal.h /^typedef int ImGuiLayoutType; \/\/ -> enum ImGuiLayoutType_ \/\/ Enum: Horizon/;" t typeref:typename:int
  3909. ImGuiLayoutType_ third_party/imgui/imgui_internal.h /^enum ImGuiLayoutType_$/;" g
  3910. ImGuiLayoutType_Horizontal third_party/imgui/imgui_internal.h /^ ImGuiLayoutType_Horizontal = 0,$/;" e enum:ImGuiLayoutType_
  3911. ImGuiLayoutType_Vertical third_party/imgui/imgui_internal.h /^ ImGuiLayoutType_Vertical = 1$/;" e enum:ImGuiLayoutType_
  3912. ImGuiListClipper third_party/imgui/imgui.h /^ ImGuiListClipper(int items_count = -1, float items_height = -1.0f) { Begin(items_count, ite/;" f struct:ImGuiListClipper
  3913. ImGuiListClipper third_party/imgui/imgui.h /^struct ImGuiListClipper$/;" s
  3914. ImGuiLogType third_party/imgui/imgui_internal.h /^enum ImGuiLogType$/;" g
  3915. ImGuiLogType_Buffer third_party/imgui/imgui_internal.h /^ ImGuiLogType_Buffer,$/;" e enum:ImGuiLogType
  3916. ImGuiLogType_Clipboard third_party/imgui/imgui_internal.h /^ ImGuiLogType_Clipboard$/;" e enum:ImGuiLogType
  3917. ImGuiLogType_File third_party/imgui/imgui_internal.h /^ ImGuiLogType_File,$/;" e enum:ImGuiLogType
  3918. ImGuiLogType_None third_party/imgui/imgui_internal.h /^ ImGuiLogType_None = 0,$/;" e enum:ImGuiLogType
  3919. ImGuiLogType_TTY third_party/imgui/imgui_internal.h /^ ImGuiLogType_TTY,$/;" e enum:ImGuiLogType
  3920. ImGuiMenuColumns third_party/imgui/imgui_internal.h /^struct IMGUI_API ImGuiMenuColumns$/;" s
  3921. ImGuiMenuColumns third_party/imgui/imgui_widgets.cpp /^ImGuiMenuColumns::ImGuiMenuColumns()$/;" f class:ImGuiMenuColumns
  3922. ImGuiMouseCursor third_party/imgui/imgui.h /^typedef int ImGuiMouseCursor; \/\/ -> enum ImGuiMouseCursor_ \/\/ Enum: A mouse cursor/;" t typeref:typename:int
  3923. ImGuiMouseCursor_ third_party/imgui/imgui.h /^enum ImGuiMouseCursor_$/;" g
  3924. ImGuiMouseCursor_Arrow third_party/imgui/imgui.h /^ ImGuiMouseCursor_Arrow = 0,$/;" e enum:ImGuiMouseCursor_
  3925. ImGuiMouseCursor_COUNT third_party/imgui/imgui.h /^ ImGuiMouseCursor_COUNT$/;" e enum:ImGuiMouseCursor_
  3926. ImGuiMouseCursor_Count_ third_party/imgui/imgui.h /^ , ImGuiMouseCursor_Count_ = ImGuiMouseCursor_COUNT \/\/ [renamed in 1.60]$/;" e enum:ImGuiMouseCursor_
  3927. ImGuiMouseCursor_Hand third_party/imgui/imgui.h /^ ImGuiMouseCursor_Hand, \/\/ (Unused by Dear ImGui functions. Use for e.g. hyper/;" e enum:ImGuiMouseCursor_
  3928. ImGuiMouseCursor_None third_party/imgui/imgui.h /^ ImGuiMouseCursor_None = -1,$/;" e enum:ImGuiMouseCursor_
  3929. ImGuiMouseCursor_ResizeAll third_party/imgui/imgui.h /^ ImGuiMouseCursor_ResizeAll, \/\/ (Unused by Dear ImGui functions)$/;" e enum:ImGuiMouseCursor_
  3930. ImGuiMouseCursor_ResizeEW third_party/imgui/imgui.h /^ ImGuiMouseCursor_ResizeEW, \/\/ When hovering over a vertical border or a column$/;" e enum:ImGuiMouseCursor_
  3931. ImGuiMouseCursor_ResizeNESW third_party/imgui/imgui.h /^ ImGuiMouseCursor_ResizeNESW, \/\/ When hovering over the bottom-left corner of a wind/;" e enum:ImGuiMouseCursor_
  3932. ImGuiMouseCursor_ResizeNS third_party/imgui/imgui.h /^ ImGuiMouseCursor_ResizeNS, \/\/ When hovering over an horizontal border$/;" e enum:ImGuiMouseCursor_
  3933. ImGuiMouseCursor_ResizeNWSE third_party/imgui/imgui.h /^ ImGuiMouseCursor_ResizeNWSE, \/\/ When hovering over the bottom-right corner of a win/;" e enum:ImGuiMouseCursor_
  3934. ImGuiMouseCursor_TextInput third_party/imgui/imgui.h /^ ImGuiMouseCursor_TextInput, \/\/ When hovering over InputText, etc.$/;" e enum:ImGuiMouseCursor_
  3935. ImGuiNavDirSourceFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiNavDirSourceFlags; \/\/ -> enum ImGuiNavDirSourceFlags_ \/\/ Flags: for Ge/;" t typeref:typename:int
  3936. ImGuiNavDirSourceFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiNavDirSourceFlags_$/;" g
  3937. ImGuiNavDirSourceFlags_Keyboard third_party/imgui/imgui_internal.h /^ ImGuiNavDirSourceFlags_Keyboard = 1 << 0,$/;" e enum:ImGuiNavDirSourceFlags_
  3938. ImGuiNavDirSourceFlags_None third_party/imgui/imgui_internal.h /^ ImGuiNavDirSourceFlags_None = 0,$/;" e enum:ImGuiNavDirSourceFlags_
  3939. ImGuiNavDirSourceFlags_PadDPad third_party/imgui/imgui_internal.h /^ ImGuiNavDirSourceFlags_PadDPad = 1 << 1,$/;" e enum:ImGuiNavDirSourceFlags_
  3940. ImGuiNavDirSourceFlags_PadLStick third_party/imgui/imgui_internal.h /^ ImGuiNavDirSourceFlags_PadLStick = 1 << 2$/;" e enum:ImGuiNavDirSourceFlags_
  3941. ImGuiNavForward third_party/imgui/imgui_internal.h /^enum ImGuiNavForward$/;" g
  3942. ImGuiNavForward_ForwardActive third_party/imgui/imgui_internal.h /^ ImGuiNavForward_ForwardActive$/;" e enum:ImGuiNavForward
  3943. ImGuiNavForward_ForwardQueued third_party/imgui/imgui_internal.h /^ ImGuiNavForward_ForwardQueued,$/;" e enum:ImGuiNavForward
  3944. ImGuiNavForward_None third_party/imgui/imgui_internal.h /^ ImGuiNavForward_None,$/;" e enum:ImGuiNavForward
  3945. ImGuiNavHighlightFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiNavHighlightFlags; \/\/ -> enum ImGuiNavHighlightFlags_ \/\/ Flags: for Re/;" t typeref:typename:int
  3946. ImGuiNavHighlightFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiNavHighlightFlags_$/;" g
  3947. ImGuiNavHighlightFlags_AlwaysDraw third_party/imgui/imgui_internal.h /^ ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, \/\/ Draw rectangular highlight if (g.Na/;" e enum:ImGuiNavHighlightFlags_
  3948. ImGuiNavHighlightFlags_NoRounding third_party/imgui/imgui_internal.h /^ ImGuiNavHighlightFlags_NoRounding = 1 << 3$/;" e enum:ImGuiNavHighlightFlags_
  3949. ImGuiNavHighlightFlags_None third_party/imgui/imgui_internal.h /^ ImGuiNavHighlightFlags_None = 0,$/;" e enum:ImGuiNavHighlightFlags_
  3950. ImGuiNavHighlightFlags_TypeDefault third_party/imgui/imgui_internal.h /^ ImGuiNavHighlightFlags_TypeDefault = 1 << 0,$/;" e enum:ImGuiNavHighlightFlags_
  3951. ImGuiNavHighlightFlags_TypeThin third_party/imgui/imgui_internal.h /^ ImGuiNavHighlightFlags_TypeThin = 1 << 1,$/;" e enum:ImGuiNavHighlightFlags_
  3952. ImGuiNavInput third_party/imgui/imgui.h /^typedef int ImGuiNavInput; \/\/ -> enum ImGuiNavInput_ \/\/ Enum: An input ident/;" t typeref:typename:int
  3953. ImGuiNavInput_ third_party/imgui/imgui.h /^enum ImGuiNavInput_$/;" g
  3954. ImGuiNavInput_Activate third_party/imgui/imgui.h /^ ImGuiNavInput_Activate, \/\/ activate \/ open \/ toggle \/ tweak value \/\/ e.g. /;" e enum:ImGuiNavInput_
  3955. ImGuiNavInput_COUNT third_party/imgui/imgui.h /^ ImGuiNavInput_COUNT,$/;" e enum:ImGuiNavInput_
  3956. ImGuiNavInput_Cancel third_party/imgui/imgui.h /^ ImGuiNavInput_Cancel, \/\/ cancel \/ close \/ exit \/\/ e.g. C/;" e enum:ImGuiNavInput_
  3957. ImGuiNavInput_DpadDown third_party/imgui/imgui.h /^ ImGuiNavInput_DpadDown, \/\/$/;" e enum:ImGuiNavInput_
  3958. ImGuiNavInput_DpadLeft third_party/imgui/imgui.h /^ ImGuiNavInput_DpadLeft, \/\/ move \/ tweak \/ resize window (w\/ PadMenu) \/\/ e.g. /;" e enum:ImGuiNavInput_
  3959. ImGuiNavInput_DpadRight third_party/imgui/imgui.h /^ ImGuiNavInput_DpadRight, \/\/$/;" e enum:ImGuiNavInput_
  3960. ImGuiNavInput_DpadUp third_party/imgui/imgui.h /^ ImGuiNavInput_DpadUp, \/\/$/;" e enum:ImGuiNavInput_
  3961. ImGuiNavInput_FocusNext third_party/imgui/imgui.h /^ ImGuiNavInput_FocusNext, \/\/ prev window (w\/ PadMenu) \/\/ e.g. R1/;" e enum:ImGuiNavInput_
  3962. ImGuiNavInput_FocusPrev third_party/imgui/imgui.h /^ ImGuiNavInput_FocusPrev, \/\/ next window (w\/ PadMenu) \/\/ e.g. L1/;" e enum:ImGuiNavInput_
  3963. ImGuiNavInput_Input third_party/imgui/imgui.h /^ ImGuiNavInput_Input, \/\/ text input \/ on-screen keyboard \/\/ e.g. Tr/;" e enum:ImGuiNavInput_
  3964. ImGuiNavInput_InternalStart_ third_party/imgui/imgui.h /^ ImGuiNavInput_InternalStart_ = ImGuiNavInput_KeyMenu_$/;" e enum:ImGuiNavInput_
  3965. ImGuiNavInput_KeyDown_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyDown_, \/\/ move down$/;" e enum:ImGuiNavInput_
  3966. ImGuiNavInput_KeyLeft_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyLeft_, \/\/ move left \/\/ = Arrow /;" e enum:ImGuiNavInput_
  3967. ImGuiNavInput_KeyMenu_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyMenu_, \/\/ toggle menu \/\/ = io.Key/;" e enum:ImGuiNavInput_
  3968. ImGuiNavInput_KeyRight_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyRight_, \/\/ move right$/;" e enum:ImGuiNavInput_
  3969. ImGuiNavInput_KeyTab_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyTab_, \/\/ tab \/\/ = Tab ke/;" e enum:ImGuiNavInput_
  3970. ImGuiNavInput_KeyUp_ third_party/imgui/imgui.h /^ ImGuiNavInput_KeyUp_, \/\/ move up$/;" e enum:ImGuiNavInput_
  3971. ImGuiNavInput_LStickDown third_party/imgui/imgui.h /^ ImGuiNavInput_LStickDown, \/\/$/;" e enum:ImGuiNavInput_
  3972. ImGuiNavInput_LStickLeft third_party/imgui/imgui.h /^ ImGuiNavInput_LStickLeft, \/\/ scroll \/ move window (w\/ PadMenu) \/\/ e.g. L/;" e enum:ImGuiNavInput_
  3973. ImGuiNavInput_LStickRight third_party/imgui/imgui.h /^ ImGuiNavInput_LStickRight, \/\/$/;" e enum:ImGuiNavInput_
  3974. ImGuiNavInput_LStickUp third_party/imgui/imgui.h /^ ImGuiNavInput_LStickUp, \/\/$/;" e enum:ImGuiNavInput_
  3975. ImGuiNavInput_Menu third_party/imgui/imgui.h /^ ImGuiNavInput_Menu, \/\/ tap: toggle menu \/ hold: focus, move, resize \/\/ e.g. Sq/;" e enum:ImGuiNavInput_
  3976. ImGuiNavInput_TweakFast third_party/imgui/imgui.h /^ ImGuiNavInput_TweakFast, \/\/ faster tweaks \/\/ e.g. R1 /;" e enum:ImGuiNavInput_
  3977. ImGuiNavInput_TweakSlow third_party/imgui/imgui.h /^ ImGuiNavInput_TweakSlow, \/\/ slower tweaks \/\/ e.g. L1 /;" e enum:ImGuiNavInput_
  3978. ImGuiNavLayer third_party/imgui/imgui_internal.h /^enum ImGuiNavLayer$/;" g
  3979. ImGuiNavLayer_COUNT third_party/imgui/imgui_internal.h /^ ImGuiNavLayer_COUNT$/;" e enum:ImGuiNavLayer
  3980. ImGuiNavLayer_Main third_party/imgui/imgui_internal.h /^ ImGuiNavLayer_Main = 0, \/\/ Main scrolling layer$/;" e enum:ImGuiNavLayer
  3981. ImGuiNavLayer_Menu third_party/imgui/imgui_internal.h /^ ImGuiNavLayer_Menu = 1, \/\/ Menu layer (access with Alt\/ImGuiNavInput_Menu)$/;" e enum:ImGuiNavLayer
  3982. ImGuiNavMoveFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiNavMoveFlags; \/\/ -> enum ImGuiNavMoveFlags_ \/\/ Flags: for na/;" t typeref:typename:int
  3983. ImGuiNavMoveFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiNavMoveFlags_$/;" g
  3984. ImGuiNavMoveFlags_AllowCurrentNavId third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, \/\/ Allow scoring and considering the c/;" e enum:ImGuiNavMoveFlags_
  3985. ImGuiNavMoveFlags_AlsoScoreVisibleSet third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, \/\/ Store alternate result in NavMoveRe/;" e enum:ImGuiNavMoveFlags_
  3986. ImGuiNavMoveFlags_LoopX third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_LoopX = 1 << 0, \/\/ On failed request, restart from opp/;" e enum:ImGuiNavMoveFlags_
  3987. ImGuiNavMoveFlags_LoopY third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_LoopY = 1 << 1,$/;" e enum:ImGuiNavMoveFlags_
  3988. ImGuiNavMoveFlags_None third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_None = 0,$/;" e enum:ImGuiNavMoveFlags_
  3989. ImGuiNavMoveFlags_ScrollToEdge third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_ScrollToEdge = 1 << 6$/;" e enum:ImGuiNavMoveFlags_
  3990. ImGuiNavMoveFlags_WrapX third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_WrapX = 1 << 2, \/\/ On failed request, request from opp/;" e enum:ImGuiNavMoveFlags_
  3991. ImGuiNavMoveFlags_WrapY third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags_WrapY = 1 << 3, \/\/ This is not super useful for provid/;" e enum:ImGuiNavMoveFlags_
  3992. ImGuiNavMoveResult third_party/imgui/imgui_internal.h /^ ImGuiNavMoveResult() { Clear(); }$/;" f struct:ImGuiNavMoveResult
  3993. ImGuiNavMoveResult third_party/imgui/imgui_internal.h /^struct ImGuiNavMoveResult$/;" s
  3994. ImGuiNextItemData third_party/imgui/imgui_internal.h /^ ImGuiNextItemData() { memset(this, 0, sizeof(*this)); }$/;" f struct:ImGuiNextItemData
  3995. ImGuiNextItemData third_party/imgui/imgui_internal.h /^struct ImGuiNextItemData$/;" s
  3996. ImGuiNextItemDataFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiNextItemDataFlags; \/\/ -> enum ImGuiNextItemDataFlags_ \/\/ Flags: for Se/;" t typeref:typename:int
  3997. ImGuiNextItemDataFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiNextItemDataFlags_$/;" g
  3998. ImGuiNextItemDataFlags_HasOpen third_party/imgui/imgui_internal.h /^ ImGuiNextItemDataFlags_HasOpen = 1 << 1$/;" e enum:ImGuiNextItemDataFlags_
  3999. ImGuiNextItemDataFlags_HasWidth third_party/imgui/imgui_internal.h /^ ImGuiNextItemDataFlags_HasWidth = 1 << 0,$/;" e enum:ImGuiNextItemDataFlags_
  4000. ImGuiNextItemDataFlags_None third_party/imgui/imgui_internal.h /^ ImGuiNextItemDataFlags_None = 0,$/;" e enum:ImGuiNextItemDataFlags_
  4001. ImGuiNextWindowData third_party/imgui/imgui_internal.h /^ ImGuiNextWindowData() { memset(this, 0, sizeof(*this)); }$/;" f struct:ImGuiNextWindowData
  4002. ImGuiNextWindowData third_party/imgui/imgui_internal.h /^struct ImGuiNextWindowData$/;" s
  4003. ImGuiNextWindowDataFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiNextWindowDataFlags; \/\/ -> enum ImGuiNextWindowDataFlags_\/\/ Flags: for Se/;" t typeref:typename:int
  4004. ImGuiNextWindowDataFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiNextWindowDataFlags_$/;" g
  4005. ImGuiNextWindowDataFlags_HasBgAlpha third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6$/;" e enum:ImGuiNextWindowDataFlags_
  4006. ImGuiNextWindowDataFlags_HasCollapsed third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasCollapsed = 1 << 3,$/;" e enum:ImGuiNextWindowDataFlags_
  4007. ImGuiNextWindowDataFlags_HasContentSize third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasContentSize = 1 << 2,$/;" e enum:ImGuiNextWindowDataFlags_
  4008. ImGuiNextWindowDataFlags_HasFocus third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasFocus = 1 << 5,$/;" e enum:ImGuiNextWindowDataFlags_
  4009. ImGuiNextWindowDataFlags_HasPos third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasPos = 1 << 0,$/;" e enum:ImGuiNextWindowDataFlags_
  4010. ImGuiNextWindowDataFlags_HasSize third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasSize = 1 << 1,$/;" e enum:ImGuiNextWindowDataFlags_
  4011. ImGuiNextWindowDataFlags_HasSizeConstraint third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_HasSizeConstraint = 1 << 4,$/;" e enum:ImGuiNextWindowDataFlags_
  4012. ImGuiNextWindowDataFlags_None third_party/imgui/imgui_internal.h /^ ImGuiNextWindowDataFlags_None = 0,$/;" e enum:ImGuiNextWindowDataFlags_
  4013. ImGuiOnceUponAFrame third_party/imgui/imgui.h /^ ImGuiOnceUponAFrame() { RefFrame = -1; }$/;" f struct:ImGuiOnceUponAFrame
  4014. ImGuiOnceUponAFrame third_party/imgui/imgui.h /^struct ImGuiOnceUponAFrame$/;" s
  4015. ImGuiPayload third_party/imgui/imgui.h /^ ImGuiPayload() { Clear(); }$/;" f struct:ImGuiPayload
  4016. ImGuiPayload third_party/imgui/imgui.h /^struct ImGuiPayload$/;" s
  4017. ImGuiPlotArrayGetterData third_party/imgui/imgui_widgets.cpp /^ ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride/;" f struct:ImGuiPlotArrayGetterData file:
  4018. ImGuiPlotArrayGetterData third_party/imgui/imgui_widgets.cpp /^struct ImGuiPlotArrayGetterData$/;" s file:
  4019. ImGuiPlotType third_party/imgui/imgui_internal.h /^enum ImGuiPlotType$/;" g
  4020. ImGuiPlotType_Histogram third_party/imgui/imgui_internal.h /^ ImGuiPlotType_Histogram$/;" e enum:ImGuiPlotType
  4021. ImGuiPlotType_Lines third_party/imgui/imgui_internal.h /^ ImGuiPlotType_Lines,$/;" e enum:ImGuiPlotType
  4022. ImGuiPopupData third_party/imgui/imgui_internal.h /^ ImGuiPopupData() { PopupId = 0; Window = SourceWindow = NULL; OpenFrameCount = -1; OpenParen/;" f struct:ImGuiPopupData
  4023. ImGuiPopupData third_party/imgui/imgui_internal.h /^struct ImGuiPopupData$/;" s
  4024. ImGuiPopupPositionPolicy third_party/imgui/imgui_internal.h /^enum ImGuiPopupPositionPolicy$/;" g
  4025. ImGuiPopupPositionPolicy_ComboBox third_party/imgui/imgui_internal.h /^ ImGuiPopupPositionPolicy_ComboBox$/;" e enum:ImGuiPopupPositionPolicy
  4026. ImGuiPopupPositionPolicy_Default third_party/imgui/imgui_internal.h /^ ImGuiPopupPositionPolicy_Default,$/;" e enum:ImGuiPopupPositionPolicy
  4027. ImGuiPtrOrIndex third_party/imgui/imgui_internal.h /^ ImGuiPtrOrIndex(int index) { Ptr = NULL; Index = index; }$/;" f struct:ImGuiPtrOrIndex
  4028. ImGuiPtrOrIndex third_party/imgui/imgui_internal.h /^ ImGuiPtrOrIndex(void* ptr) { Ptr = ptr; Index = -1; }$/;" f struct:ImGuiPtrOrIndex
  4029. ImGuiPtrOrIndex third_party/imgui/imgui_internal.h /^struct ImGuiPtrOrIndex$/;" s
  4030. ImGuiResizeBorderDef third_party/imgui/imgui.cpp /^ struct ImGuiResizeBorderDef$/;" s function:ImGui::RenderWindowOuterBorders file:
  4031. ImGuiResizeGripDef third_party/imgui/imgui.cpp /^struct ImGuiResizeGripDef$/;" s file:
  4032. ImGuiSDL third_party/imgui_sdl/imgui_sdl.cpp /^namespace ImGuiSDL$/;" n file:
  4033. ImGuiSDL third_party/imgui_sdl/imgui_sdl.h /^namespace ImGuiSDL$/;" n
  4034. ImGuiSelectableFlags third_party/imgui/imgui.h /^typedef int ImGuiSelectableFlags; \/\/ -> enum ImGuiSelectableFlags_ \/\/ Flags: for Selectabl/;" t typeref:typename:int
  4035. ImGuiSelectableFlagsPrivate_ third_party/imgui/imgui_internal.h /^enum ImGuiSelectableFlagsPrivate_$/;" g
  4036. ImGuiSelectableFlags_ third_party/imgui/imgui.h /^enum ImGuiSelectableFlags_$/;" g
  4037. ImGuiSelectableFlags_AllowDoubleClick third_party/imgui/imgui.h /^ ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, \/\/ Generate press events on double cli/;" e enum:ImGuiSelectableFlags_
  4038. ImGuiSelectableFlags_AllowItemOverlap third_party/imgui/imgui.h /^ ImGuiSelectableFlags_AllowItemOverlap = 1 << 4 \/\/ (WIP) Hit testing to allow subseque/;" e enum:ImGuiSelectableFlags_
  4039. ImGuiSelectableFlags_Disabled third_party/imgui/imgui.h /^ ImGuiSelectableFlags_Disabled = 1 << 3, \/\/ Cannot be selected, display grayed /;" e enum:ImGuiSelectableFlags_
  4040. ImGuiSelectableFlags_DontClosePopups third_party/imgui/imgui.h /^ ImGuiSelectableFlags_DontClosePopups = 1 << 0, \/\/ Clicking this don't close parent po/;" e enum:ImGuiSelectableFlags_
  4041. ImGuiSelectableFlags_DrawFillAvailWidth third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_DrawFillAvailWidth = 1 << 23, \/\/ FIXME: We may be able to remove thi/;" e enum:ImGuiSelectableFlagsPrivate_
  4042. ImGuiSelectableFlags_DrawHoveredWhenHeld third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_DrawHoveredWhenHeld= 1 << 24, \/\/ Always show active when held, even /;" e enum:ImGuiSelectableFlagsPrivate_
  4043. ImGuiSelectableFlags_NoHoldingActiveID third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20,$/;" e enum:ImGuiSelectableFlagsPrivate_
  4044. ImGuiSelectableFlags_None third_party/imgui/imgui.h /^ ImGuiSelectableFlags_None = 0,$/;" e enum:ImGuiSelectableFlags_
  4045. ImGuiSelectableFlags_PressedOnClick third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_PressedOnClick = 1 << 21,$/;" e enum:ImGuiSelectableFlagsPrivate_
  4046. ImGuiSelectableFlags_PressedOnRelease third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_PressedOnRelease = 1 << 22,$/;" e enum:ImGuiSelectableFlagsPrivate_
  4047. ImGuiSelectableFlags_SetNavIdOnHover third_party/imgui/imgui_internal.h /^ ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25$/;" e enum:ImGuiSelectableFlagsPrivate_
  4048. ImGuiSelectableFlags_SpanAllColumns third_party/imgui/imgui.h /^ ImGuiSelectableFlags_SpanAllColumns = 1 << 1, \/\/ Selectable frame can span all colum/;" e enum:ImGuiSelectableFlags_
  4049. ImGuiSeparatorFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiSeparatorFlags; \/\/ -> enum ImGuiSeparatorFlags_ \/\/ Flags: for Se/;" t typeref:typename:int
  4050. ImGuiSeparatorFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiSeparatorFlags_$/;" g
  4051. ImGuiSeparatorFlags_Horizontal third_party/imgui/imgui_internal.h /^ ImGuiSeparatorFlags_Horizontal = 1 << 0, \/\/ Axis default to current layout type/;" e enum:ImGuiSeparatorFlags_
  4052. ImGuiSeparatorFlags_None third_party/imgui/imgui_internal.h /^ ImGuiSeparatorFlags_None = 0,$/;" e enum:ImGuiSeparatorFlags_
  4053. ImGuiSeparatorFlags_SpanAllColumns third_party/imgui/imgui_internal.h /^ ImGuiSeparatorFlags_SpanAllColumns = 1 << 2$/;" e enum:ImGuiSeparatorFlags_
  4054. ImGuiSeparatorFlags_Vertical third_party/imgui/imgui_internal.h /^ ImGuiSeparatorFlags_Vertical = 1 << 1,$/;" e enum:ImGuiSeparatorFlags_
  4055. ImGuiSettingsHandler third_party/imgui/imgui_internal.h /^ ImGuiSettingsHandler() { memset(this, 0, sizeof(*this)); }$/;" f struct:ImGuiSettingsHandler
  4056. ImGuiSettingsHandler third_party/imgui/imgui_internal.h /^struct ImGuiSettingsHandler$/;" s
  4057. ImGuiShrinkWidthItem third_party/imgui/imgui_internal.h /^struct ImGuiShrinkWidthItem$/;" s
  4058. ImGuiSizeCallback third_party/imgui/imgui.h /^typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data);$/;" t typeref:typename:void (*)(ImGuiSizeCallbackData * data)
  4059. ImGuiSizeCallbackData third_party/imgui/imgui.h /^struct ImGuiSizeCallbackData$/;" s
  4060. ImGuiSliderFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiSliderFlags; \/\/ -> enum ImGuiSliderFlags_ \/\/ Flags: for Sl/;" t typeref:typename:int
  4061. ImGuiSliderFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiSliderFlags_$/;" g
  4062. ImGuiSliderFlags_None third_party/imgui/imgui_internal.h /^ ImGuiSliderFlags_None = 0,$/;" e enum:ImGuiSliderFlags_
  4063. ImGuiSliderFlags_Vertical third_party/imgui/imgui_internal.h /^ ImGuiSliderFlags_Vertical = 1 << 0$/;" e enum:ImGuiSliderFlags_
  4064. ImGuiStorage third_party/imgui/imgui.h /^struct ImGuiStorage$/;" s
  4065. ImGuiStoragePair third_party/imgui/imgui.h /^ ImGuiStoragePair(ImGuiID _key, float _val_f) { key = _key; val_f = _val_f; }$/;" f struct:ImGuiStorage::ImGuiStoragePair
  4066. ImGuiStoragePair third_party/imgui/imgui.h /^ ImGuiStoragePair(ImGuiID _key, int _val_i) { key = _key; val_i = _val_i; }$/;" f struct:ImGuiStorage::ImGuiStoragePair
  4067. ImGuiStoragePair third_party/imgui/imgui.h /^ ImGuiStoragePair(ImGuiID _key, void* _val_p) { key = _key; val_p = _val_p; }$/;" f struct:ImGuiStorage::ImGuiStoragePair
  4068. ImGuiStoragePair third_party/imgui/imgui.h /^ struct ImGuiStoragePair$/;" s struct:ImGuiStorage
  4069. ImGuiStyle third_party/imgui/imgui.cpp /^ImGuiStyle::ImGuiStyle()$/;" f class:ImGuiStyle
  4070. ImGuiStyle third_party/imgui/imgui.h /^struct ImGuiStyle$/;" s
  4071. ImGuiStyleMod third_party/imgui/imgui_internal.h /^ ImGuiStyleMod(ImGuiStyleVar idx, ImVec2 v) { VarIdx = idx; BackupFloat[0] = v.x; BackupFloa/;" f struct:ImGuiStyleMod
  4072. ImGuiStyleMod third_party/imgui/imgui_internal.h /^ ImGuiStyleMod(ImGuiStyleVar idx, float v) { VarIdx = idx; BackupFloat[0] = v; }$/;" f struct:ImGuiStyleMod
  4073. ImGuiStyleMod third_party/imgui/imgui_internal.h /^ ImGuiStyleMod(ImGuiStyleVar idx, int v) { VarIdx = idx; BackupInt[0] = v; }$/;" f struct:ImGuiStyleMod
  4074. ImGuiStyleMod third_party/imgui/imgui_internal.h /^struct ImGuiStyleMod$/;" s
  4075. ImGuiStyleVar third_party/imgui/imgui.h /^typedef int ImGuiStyleVar; \/\/ -> enum ImGuiStyleVar_ \/\/ Enum: A variable ide/;" t typeref:typename:int
  4076. ImGuiStyleVarInfo third_party/imgui/imgui.cpp /^struct ImGuiStyleVarInfo$/;" s file:
  4077. ImGuiStyleVar_ third_party/imgui/imgui.h /^enum ImGuiStyleVar_$/;" g
  4078. ImGuiStyleVar_Alpha third_party/imgui/imgui.h /^ ImGuiStyleVar_Alpha, \/\/ float Alpha$/;" e enum:ImGuiStyleVar_
  4079. ImGuiStyleVar_ButtonTextAlign third_party/imgui/imgui.h /^ ImGuiStyleVar_ButtonTextAlign, \/\/ ImVec2 ButtonTextAlign$/;" e enum:ImGuiStyleVar_
  4080. ImGuiStyleVar_COUNT third_party/imgui/imgui.h /^ ImGuiStyleVar_COUNT$/;" e enum:ImGuiStyleVar_
  4081. ImGuiStyleVar_ChildBorderSize third_party/imgui/imgui.h /^ ImGuiStyleVar_ChildBorderSize, \/\/ float ChildBorderSize$/;" e enum:ImGuiStyleVar_
  4082. ImGuiStyleVar_ChildRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_ChildRounding, \/\/ float ChildRounding$/;" e enum:ImGuiStyleVar_
  4083. ImGuiStyleVar_ChildWindowRounding third_party/imgui/imgui.h /^ , ImGuiStyleVar_ChildWindowRounding = ImGuiStyleVar_ChildRounding \/\/ [renamed in 1.53]$/;" e enum:ImGuiStyleVar_
  4084. ImGuiStyleVar_Count_ third_party/imgui/imgui.h /^ , ImGuiStyleVar_Count_ = ImGuiStyleVar_COUNT \/\/ [renamed in 1.60]$/;" e enum:ImGuiStyleVar_
  4085. ImGuiStyleVar_FrameBorderSize third_party/imgui/imgui.h /^ ImGuiStyleVar_FrameBorderSize, \/\/ float FrameBorderSize$/;" e enum:ImGuiStyleVar_
  4086. ImGuiStyleVar_FramePadding third_party/imgui/imgui.h /^ ImGuiStyleVar_FramePadding, \/\/ ImVec2 FramePadding$/;" e enum:ImGuiStyleVar_
  4087. ImGuiStyleVar_FrameRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_FrameRounding, \/\/ float FrameRounding$/;" e enum:ImGuiStyleVar_
  4088. ImGuiStyleVar_GrabMinSize third_party/imgui/imgui.h /^ ImGuiStyleVar_GrabMinSize, \/\/ float GrabMinSize$/;" e enum:ImGuiStyleVar_
  4089. ImGuiStyleVar_GrabRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_GrabRounding, \/\/ float GrabRounding$/;" e enum:ImGuiStyleVar_
  4090. ImGuiStyleVar_IndentSpacing third_party/imgui/imgui.h /^ ImGuiStyleVar_IndentSpacing, \/\/ float IndentSpacing$/;" e enum:ImGuiStyleVar_
  4091. ImGuiStyleVar_ItemInnerSpacing third_party/imgui/imgui.h /^ ImGuiStyleVar_ItemInnerSpacing, \/\/ ImVec2 ItemInnerSpacing$/;" e enum:ImGuiStyleVar_
  4092. ImGuiStyleVar_ItemSpacing third_party/imgui/imgui.h /^ ImGuiStyleVar_ItemSpacing, \/\/ ImVec2 ItemSpacing$/;" e enum:ImGuiStyleVar_
  4093. ImGuiStyleVar_PopupBorderSize third_party/imgui/imgui.h /^ ImGuiStyleVar_PopupBorderSize, \/\/ float PopupBorderSize$/;" e enum:ImGuiStyleVar_
  4094. ImGuiStyleVar_PopupRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_PopupRounding, \/\/ float PopupRounding$/;" e enum:ImGuiStyleVar_
  4095. ImGuiStyleVar_ScrollbarRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_ScrollbarRounding, \/\/ float ScrollbarRounding$/;" e enum:ImGuiStyleVar_
  4096. ImGuiStyleVar_ScrollbarSize third_party/imgui/imgui.h /^ ImGuiStyleVar_ScrollbarSize, \/\/ float ScrollbarSize$/;" e enum:ImGuiStyleVar_
  4097. ImGuiStyleVar_SelectableTextAlign third_party/imgui/imgui.h /^ ImGuiStyleVar_SelectableTextAlign, \/\/ ImVec2 SelectableTextAlign$/;" e enum:ImGuiStyleVar_
  4098. ImGuiStyleVar_TabRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_TabRounding, \/\/ float TabRounding$/;" e enum:ImGuiStyleVar_
  4099. ImGuiStyleVar_WindowBorderSize third_party/imgui/imgui.h /^ ImGuiStyleVar_WindowBorderSize, \/\/ float WindowBorderSize$/;" e enum:ImGuiStyleVar_
  4100. ImGuiStyleVar_WindowMinSize third_party/imgui/imgui.h /^ ImGuiStyleVar_WindowMinSize, \/\/ ImVec2 WindowMinSize$/;" e enum:ImGuiStyleVar_
  4101. ImGuiStyleVar_WindowPadding third_party/imgui/imgui.h /^ ImGuiStyleVar_WindowPadding, \/\/ ImVec2 WindowPadding$/;" e enum:ImGuiStyleVar_
  4102. ImGuiStyleVar_WindowRounding third_party/imgui/imgui.h /^ ImGuiStyleVar_WindowRounding, \/\/ float WindowRounding$/;" e enum:ImGuiStyleVar_
  4103. ImGuiStyleVar_WindowTitleAlign third_party/imgui/imgui.h /^ ImGuiStyleVar_WindowTitleAlign, \/\/ ImVec2 WindowTitleAlign$/;" e enum:ImGuiStyleVar_
  4104. ImGuiTabBar third_party/imgui/imgui_internal.h /^struct ImGuiTabBar$/;" s
  4105. ImGuiTabBar third_party/imgui/imgui_widgets.cpp /^ImGuiTabBar::ImGuiTabBar()$/;" f class:ImGuiTabBar
  4106. ImGuiTabBarFlags third_party/imgui/imgui.h /^typedef int ImGuiTabBarFlags; \/\/ -> enum ImGuiTabBarFlags_ \/\/ Flags: for BeginTabB/;" t typeref:typename:int
  4107. ImGuiTabBarFlagsPrivate_ third_party/imgui/imgui_internal.h /^enum ImGuiTabBarFlagsPrivate_$/;" g
  4108. ImGuiTabBarFlags_ third_party/imgui/imgui.h /^enum ImGuiTabBarFlags_$/;" g
  4109. ImGuiTabBarFlags_AutoSelectNewTabs third_party/imgui/imgui.h /^ ImGuiTabBarFlags_AutoSelectNewTabs = 1 << 1, \/\/ Automatically select new ta/;" e enum:ImGuiTabBarFlags_
  4110. ImGuiTabBarFlags_DockNode third_party/imgui/imgui_internal.h /^ ImGuiTabBarFlags_DockNode = 1 << 20, \/\/ Part of a dock node [we don't u/;" e enum:ImGuiTabBarFlagsPrivate_
  4111. ImGuiTabBarFlags_FittingPolicyDefault_ third_party/imgui/imgui.h /^ ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown$/;" e enum:ImGuiTabBarFlags_
  4112. ImGuiTabBarFlags_FittingPolicyMask_ third_party/imgui/imgui.h /^ ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown |/;" e enum:ImGuiTabBarFlags_
  4113. ImGuiTabBarFlags_FittingPolicyResizeDown third_party/imgui/imgui.h /^ ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 6, \/\/ Resize tabs when they don't/;" e enum:ImGuiTabBarFlags_
  4114. ImGuiTabBarFlags_FittingPolicyScroll third_party/imgui/imgui.h /^ ImGuiTabBarFlags_FittingPolicyScroll = 1 << 7, \/\/ Add scroll buttons when tab/;" e enum:ImGuiTabBarFlags_
  4115. ImGuiTabBarFlags_IsFocused third_party/imgui/imgui_internal.h /^ ImGuiTabBarFlags_IsFocused = 1 << 21,$/;" e enum:ImGuiTabBarFlagsPrivate_
  4116. ImGuiTabBarFlags_NoCloseWithMiddleMouseButton third_party/imgui/imgui.h /^ ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, \/\/ Disable behavior of closing/;" e enum:ImGuiTabBarFlags_
  4117. ImGuiTabBarFlags_NoTabListScrollingButtons third_party/imgui/imgui.h /^ ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, \/\/ Disable scrolling buttons (/;" e enum:ImGuiTabBarFlags_
  4118. ImGuiTabBarFlags_NoTooltip third_party/imgui/imgui.h /^ ImGuiTabBarFlags_NoTooltip = 1 << 5, \/\/ Disable tooltips when hover/;" e enum:ImGuiTabBarFlags_
  4119. ImGuiTabBarFlags_None third_party/imgui/imgui.h /^ ImGuiTabBarFlags_None = 0,$/;" e enum:ImGuiTabBarFlags_
  4120. ImGuiTabBarFlags_Reorderable third_party/imgui/imgui.h /^ ImGuiTabBarFlags_Reorderable = 1 << 0, \/\/ Allow manually dragging tab/;" e enum:ImGuiTabBarFlags_
  4121. ImGuiTabBarFlags_SaveSettings third_party/imgui/imgui_internal.h /^ ImGuiTabBarFlags_SaveSettings = 1 << 22 \/\/ FIXME: Settings are handled by /;" e enum:ImGuiTabBarFlagsPrivate_
  4122. ImGuiTabBarFlags_TabListPopupButton third_party/imgui/imgui.h /^ ImGuiTabBarFlags_TabListPopupButton = 1 << 2, \/\/ Disable buttons to open the/;" e enum:ImGuiTabBarFlags_
  4123. ImGuiTabItem third_party/imgui/imgui_internal.h /^ ImGuiTabItem() { ID = Flags = 0; LastFrameVisible = LastFrameSelected = -1; NameOffset /;" f struct:ImGuiTabItem
  4124. ImGuiTabItem third_party/imgui/imgui_internal.h /^struct ImGuiTabItem$/;" s
  4125. ImGuiTabItemFlags third_party/imgui/imgui.h /^typedef int ImGuiTabItemFlags; \/\/ -> enum ImGuiTabItemFlags_ \/\/ Flags: for BeginTabI/;" t typeref:typename:int
  4126. ImGuiTabItemFlagsPrivate_ third_party/imgui/imgui_internal.h /^enum ImGuiTabItemFlagsPrivate_$/;" g
  4127. ImGuiTabItemFlags_ third_party/imgui/imgui.h /^enum ImGuiTabItemFlags_$/;" g
  4128. ImGuiTabItemFlags_NoCloseButton third_party/imgui/imgui_internal.h /^ ImGuiTabItemFlags_NoCloseButton = 1 << 20 \/\/ Store whether p_open is set or /;" e enum:ImGuiTabItemFlagsPrivate_
  4129. ImGuiTabItemFlags_NoCloseWithMiddleMouseButton third_party/imgui/imgui.h /^ ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, \/\/ Disable behavior of closing/;" e enum:ImGuiTabItemFlags_
  4130. ImGuiTabItemFlags_NoPushId third_party/imgui/imgui.h /^ ImGuiTabItemFlags_NoPushId = 1 << 3 \/\/ Don't call PushID(tab->ID)\//;" e enum:ImGuiTabItemFlags_
  4131. ImGuiTabItemFlags_None third_party/imgui/imgui.h /^ ImGuiTabItemFlags_None = 0,$/;" e enum:ImGuiTabItemFlags_
  4132. ImGuiTabItemFlags_SetSelected third_party/imgui/imgui.h /^ ImGuiTabItemFlags_SetSelected = 1 << 1, \/\/ Trigger flag to programmati/;" e enum:ImGuiTabItemFlags_
  4133. ImGuiTabItemFlags_UnsavedDocument third_party/imgui/imgui.h /^ ImGuiTabItemFlags_UnsavedDocument = 1 << 0, \/\/ Append '*' to title without/;" e enum:ImGuiTabItemFlags_
  4134. ImGuiTextBuffer third_party/imgui/imgui.h /^ ImGuiTextBuffer() { }$/;" f struct:ImGuiTextBuffer
  4135. ImGuiTextBuffer third_party/imgui/imgui.h /^struct ImGuiTextBuffer$/;" s
  4136. ImGuiTextEditCallback third_party/imgui/imgui.h /^typedef ImGuiInputTextCallback ImGuiTextEditCallback; \/\/ OBSOLETED in 1.63 (from Aug 2/;" t typeref:typename:ImGuiInputTextCallback
  4137. ImGuiTextEditCallbackData third_party/imgui/imgui.h /^typedef ImGuiInputTextCallbackData ImGuiTextEditCallbackData;$/;" t typeref:typename:ImGuiInputTextCallbackData
  4138. ImGuiTextFilter third_party/imgui/imgui.cpp /^ImGuiTextFilter::ImGuiTextFilter(const char* default_filter)$/;" f class:ImGuiTextFilter
  4139. ImGuiTextFilter third_party/imgui/imgui.h /^struct ImGuiTextFilter$/;" s
  4140. ImGuiTextFlags third_party/imgui/imgui_internal.h /^typedef int ImGuiTextFlags; \/\/ -> enum ImGuiTextFlags_ \/\/ Flags: for Te/;" t typeref:typename:int
  4141. ImGuiTextFlags_ third_party/imgui/imgui_internal.h /^enum ImGuiTextFlags_$/;" g
  4142. ImGuiTextFlags_NoWidthForLargeClippedText third_party/imgui/imgui_internal.h /^ ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0$/;" e enum:ImGuiTextFlags_
  4143. ImGuiTextFlags_None third_party/imgui/imgui_internal.h /^ ImGuiTextFlags_None = 0,$/;" e enum:ImGuiTextFlags_
  4144. ImGuiTextRange third_party/imgui/imgui.h /^ ImGuiTextRange() { b = e = NULL; }$/;" f struct:ImGuiTextFilter::ImGuiTextRange
  4145. ImGuiTextRange third_party/imgui/imgui.h /^ ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; }$/;" f struct:ImGuiTextFilter::ImGuiTextRange
  4146. ImGuiTextRange third_party/imgui/imgui.h /^ struct ImGuiTextRange$/;" s struct:ImGuiTextFilter
  4147. ImGuiTreeNodeFlags third_party/imgui/imgui.h /^typedef int ImGuiTreeNodeFlags; \/\/ -> enum ImGuiTreeNodeFlags_ \/\/ Flags: for TreeNode(/;" t typeref:typename:int
  4148. ImGuiTreeNodeFlagsPrivate_ third_party/imgui/imgui_internal.h /^enum ImGuiTreeNodeFlagsPrivate_$/;" g
  4149. ImGuiTreeNodeFlags_ third_party/imgui/imgui.h /^enum ImGuiTreeNodeFlags_$/;" g
  4150. ImGuiTreeNodeFlags_AllowItemOverlap third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_AllowItemOverlap = 1 << 2, \/\/ Hit testing to allow subsequent wid/;" e enum:ImGuiTreeNodeFlags_
  4151. ImGuiTreeNodeFlags_AllowOverlapMode third_party/imgui/imgui.h /^ , ImGuiTreeNodeFlags_AllowOverlapMode = ImGuiTreeNodeFlags_AllowItemOverlap \/\/ [renamed in/;" e enum:ImGuiTreeNodeFlags_
  4152. ImGuiTreeNodeFlags_Bullet third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_Bullet = 1 << 9, \/\/ Display a bullet instead of arrow$/;" e enum:ImGuiTreeNodeFlags_
  4153. ImGuiTreeNodeFlags_ClipLabelForTrailingButton third_party/imgui/imgui_internal.h /^ ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 20$/;" e enum:ImGuiTreeNodeFlagsPrivate_
  4154. ImGuiTreeNodeFlags_CollapsingHeader third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoT/;" e enum:ImGuiTreeNodeFlags_
  4155. ImGuiTreeNodeFlags_DefaultOpen third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, \/\/ Default node to be open$/;" e enum:ImGuiTreeNodeFlags_
  4156. ImGuiTreeNodeFlags_FramePadding third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_FramePadding = 1 << 10, \/\/ Use FramePadding (even for an unfra/;" e enum:ImGuiTreeNodeFlags_
  4157. ImGuiTreeNodeFlags_Framed third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_Framed = 1 << 1, \/\/ Full colored frame (e.g. for Collap/;" e enum:ImGuiTreeNodeFlags_
  4158. ImGuiTreeNodeFlags_Leaf third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_Leaf = 1 << 8, \/\/ No collapsing, no arrow (use as a c/;" e enum:ImGuiTreeNodeFlags_
  4159. ImGuiTreeNodeFlags_NavLeftJumpsBackHere third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 13, \/\/ (WIP) Nav: left direction may move /;" e enum:ImGuiTreeNodeFlags_
  4160. ImGuiTreeNodeFlags_NoAutoOpenOnLog third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, \/\/ Don't automatically and temporarily/;" e enum:ImGuiTreeNodeFlags_
  4161. ImGuiTreeNodeFlags_NoTreePushOnOpen third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, \/\/ Don't do a TreePush() when open (e./;" e enum:ImGuiTreeNodeFlags_
  4162. ImGuiTreeNodeFlags_None third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_None = 0,$/;" e enum:ImGuiTreeNodeFlags_
  4163. ImGuiTreeNodeFlags_OpenOnArrow third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_OpenOnArrow = 1 << 7, \/\/ Only open when clicking on the arro/;" e enum:ImGuiTreeNodeFlags_
  4164. ImGuiTreeNodeFlags_OpenOnDoubleClick third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_OpenOnDoubleClick = 1 << 6, \/\/ Need double-click to open node$/;" e enum:ImGuiTreeNodeFlags_
  4165. ImGuiTreeNodeFlags_Selected third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_Selected = 1 << 0, \/\/ Draw as selected$/;" e enum:ImGuiTreeNodeFlags_
  4166. ImGuiTreeNodeFlags_SpanAvailWidth third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, \/\/ Extend hit box to the right-most ed/;" e enum:ImGuiTreeNodeFlags_
  4167. ImGuiTreeNodeFlags_SpanFullWidth third_party/imgui/imgui.h /^ ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, \/\/ Extend hit box to the left-most and/;" e enum:ImGuiTreeNodeFlags_
  4168. ImGuiWindow third_party/imgui/imgui.cpp /^ImGuiWindow::ImGuiWindow(ImGuiContext* context, const char* name)$/;" f class:ImGuiWindow
  4169. ImGuiWindow third_party/imgui/imgui_internal.h /^struct IMGUI_API ImGuiWindow$/;" s
  4170. ImGuiWindowFlags third_party/imgui/imgui.h /^typedef int ImGuiWindowFlags; \/\/ -> enum ImGuiWindowFlags_ \/\/ Flags: for Begin(), /;" t typeref:typename:int
  4171. ImGuiWindowFlags_ third_party/imgui/imgui.h /^enum ImGuiWindowFlags_$/;" g
  4172. ImGuiWindowFlags_AlwaysAutoResize third_party/imgui/imgui.h /^ ImGuiWindowFlags_AlwaysAutoResize = 1 << 6, \/\/ Resize every window to its content /;" e enum:ImGuiWindowFlags_
  4173. ImGuiWindowFlags_AlwaysHorizontalScrollbar third_party/imgui/imgui.h /^ ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, \/\/ Always show horizontal scrollbar (e/;" e enum:ImGuiWindowFlags_
  4174. ImGuiWindowFlags_AlwaysUseWindowPadding third_party/imgui/imgui.h /^ ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 16, \/\/ Ensure child windows without border/;" e enum:ImGuiWindowFlags_
  4175. ImGuiWindowFlags_AlwaysVerticalScrollbar third_party/imgui/imgui.h /^ ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, \/\/ Always show vertical scrollbar (eve/;" e enum:ImGuiWindowFlags_
  4176. ImGuiWindowFlags_ChildMenu third_party/imgui/imgui.h /^ ImGuiWindowFlags_ChildMenu = 1 << 28 \/\/ Don't use! For internal use by Begi/;" e enum:ImGuiWindowFlags_
  4177. ImGuiWindowFlags_ChildWindow third_party/imgui/imgui.h /^ ImGuiWindowFlags_ChildWindow = 1 << 24, \/\/ Don't use! For internal use by Begi/;" e enum:ImGuiWindowFlags_
  4178. ImGuiWindowFlags_HorizontalScrollbar third_party/imgui/imgui.h /^ ImGuiWindowFlags_HorizontalScrollbar = 1 << 11, \/\/ Allow horizontal scrollbar to appea/;" e enum:ImGuiWindowFlags_
  4179. ImGuiWindowFlags_MenuBar third_party/imgui/imgui.h /^ ImGuiWindowFlags_MenuBar = 1 << 10, \/\/ Has a menu-bar$/;" e enum:ImGuiWindowFlags_
  4180. ImGuiWindowFlags_Modal third_party/imgui/imgui.h /^ ImGuiWindowFlags_Modal = 1 << 27, \/\/ Don't use! For internal use by Begi/;" e enum:ImGuiWindowFlags_
  4181. ImGuiWindowFlags_NavFlattened third_party/imgui/imgui.h /^ ImGuiWindowFlags_NavFlattened = 1 << 23, \/\/ [BETA] Allow gamepad\/keyboard navi/;" e enum:ImGuiWindowFlags_
  4182. ImGuiWindowFlags_NoBackground third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoBackground = 1 << 7, \/\/ Disable drawing background color (W/;" e enum:ImGuiWindowFlags_
  4183. ImGuiWindowFlags_NoBringToFrontOnFocus third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, \/\/ Disable bringing window to front wh/;" e enum:ImGuiWindowFlags_
  4184. ImGuiWindowFlags_NoCollapse third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoCollapse = 1 << 5, \/\/ Disable user collapsing window by d/;" e enum:ImGuiWindowFlags_
  4185. ImGuiWindowFlags_NoDecoration third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoR/;" e enum:ImGuiWindowFlags_
  4186. ImGuiWindowFlags_NoFocusOnAppearing third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoFocusOnAppearing = 1 << 12, \/\/ Disable taking focus when transitio/;" e enum:ImGuiWindowFlags_
  4187. ImGuiWindowFlags_NoInputs third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_/;" e enum:ImGuiWindowFlags_
  4188. ImGuiWindowFlags_NoMouseInputs third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoMouseInputs = 1 << 9, \/\/ Disable catching mouse, hovering te/;" e enum:ImGuiWindowFlags_
  4189. ImGuiWindowFlags_NoMove third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoMove = 1 << 2, \/\/ Disable user moving the window$/;" e enum:ImGuiWindowFlags_
  4190. ImGuiWindowFlags_NoNav third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_No/;" e enum:ImGuiWindowFlags_
  4191. ImGuiWindowFlags_NoNavFocus third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoNavFocus = 1 << 19, \/\/ No focusing toward this window with/;" e enum:ImGuiWindowFlags_
  4192. ImGuiWindowFlags_NoNavInputs third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoNavInputs = 1 << 18, \/\/ No gamepad\/keyboard navigation wit/;" e enum:ImGuiWindowFlags_
  4193. ImGuiWindowFlags_NoResize third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoResize = 1 << 1, \/\/ Disable user resizing with the lowe/;" e enum:ImGuiWindowFlags_
  4194. ImGuiWindowFlags_NoSavedSettings third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoSavedSettings = 1 << 8, \/\/ Never load\/save settings in .ini f/;" e enum:ImGuiWindowFlags_
  4195. ImGuiWindowFlags_NoScrollWithMouse third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoScrollWithMouse = 1 << 4, \/\/ Disable user vertically scrolling w/;" e enum:ImGuiWindowFlags_
  4196. ImGuiWindowFlags_NoScrollbar third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoScrollbar = 1 << 3, \/\/ Disable scrollbars (window can stil/;" e enum:ImGuiWindowFlags_
  4197. ImGuiWindowFlags_NoTitleBar third_party/imgui/imgui.h /^ ImGuiWindowFlags_NoTitleBar = 1 << 0, \/\/ Disable title-bar$/;" e enum:ImGuiWindowFlags_
  4198. ImGuiWindowFlags_None third_party/imgui/imgui.h /^ ImGuiWindowFlags_None = 0,$/;" e enum:ImGuiWindowFlags_
  4199. ImGuiWindowFlags_Popup third_party/imgui/imgui.h /^ ImGuiWindowFlags_Popup = 1 << 26, \/\/ Don't use! For internal use by Begi/;" e enum:ImGuiWindowFlags_
  4200. ImGuiWindowFlags_Tooltip third_party/imgui/imgui.h /^ ImGuiWindowFlags_Tooltip = 1 << 25, \/\/ Don't use! For internal use by Begi/;" e enum:ImGuiWindowFlags_
  4201. ImGuiWindowFlags_UnsavedDocument third_party/imgui/imgui.h /^ ImGuiWindowFlags_UnsavedDocument = 1 << 20, \/\/ Append '*' to title without affecti/;" e enum:ImGuiWindowFlags_
  4202. ImGuiWindowSettings third_party/imgui/imgui_internal.h /^ ImGuiWindowSettings() { Name = NULL; ID = 0; Pos = Size = ImVec2ih(0, 0); Collapsed = false;/;" f struct:ImGuiWindowSettings
  4203. ImGuiWindowSettings third_party/imgui/imgui_internal.h /^struct ImGuiWindowSettings$/;" s
  4204. ImGuiWindowTempData third_party/imgui/imgui_internal.h /^ ImGuiWindowTempData()$/;" f struct:ImGuiWindowTempData
  4205. ImGuiWindowTempData third_party/imgui/imgui_internal.h /^struct IMGUI_API ImGuiWindowTempData$/;" s
  4206. ImGui_ImplAllegro5_CreateDeviceObjects third_party/imgui/examples/imgui_impl_allegro5.cpp /^bool ImGui_ImplAllegro5_CreateDeviceObjects()$/;" f typeref:typename:bool
  4207. ImGui_ImplAllegro5_GetClipboardText third_party/imgui/examples/imgui_impl_allegro5.cpp /^static const char* ImGui_ImplAllegro5_GetClipboardText(void*)$/;" f typeref:typename:const char * file:
  4208. ImGui_ImplAllegro5_Init third_party/imgui/examples/imgui_impl_allegro5.cpp /^bool ImGui_ImplAllegro5_Init(ALLEGRO_DISPLAY* display)$/;" f typeref:typename:bool
  4209. ImGui_ImplAllegro5_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_allegro5.cpp /^void ImGui_ImplAllegro5_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4210. ImGui_ImplAllegro5_NewFrame third_party/imgui/examples/imgui_impl_allegro5.cpp /^void ImGui_ImplAllegro5_NewFrame()$/;" f typeref:typename:void
  4211. ImGui_ImplAllegro5_ProcessEvent third_party/imgui/examples/imgui_impl_allegro5.cpp /^bool ImGui_ImplAllegro5_ProcessEvent(ALLEGRO_EVENT *ev)$/;" f typeref:typename:bool
  4212. ImGui_ImplAllegro5_RenderDrawData third_party/imgui/examples/imgui_impl_allegro5.cpp /^void ImGui_ImplAllegro5_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4213. ImGui_ImplAllegro5_SetClipboardText third_party/imgui/examples/imgui_impl_allegro5.cpp /^static void ImGui_ImplAllegro5_SetClipboardText(void*, const char* text)$/;" f typeref:typename:void file:
  4214. ImGui_ImplAllegro5_SetupRenderState third_party/imgui/examples/imgui_impl_allegro5.cpp /^static void ImGui_ImplAllegro5_SetupRenderState(ImDrawData* draw_data)$/;" f typeref:typename:void file:
  4215. ImGui_ImplAllegro5_Shutdown third_party/imgui/examples/imgui_impl_allegro5.cpp /^void ImGui_ImplAllegro5_Shutdown()$/;" f typeref:typename:void
  4216. ImGui_ImplAllegro5_UpdateMouseCursor third_party/imgui/examples/imgui_impl_allegro5.cpp /^static void ImGui_ImplAllegro5_UpdateMouseCursor()$/;" f typeref:typename:void file:
  4217. ImGui_ImplDX10_CreateDeviceObjects third_party/imgui/examples/imgui_impl_dx10.cpp /^bool ImGui_ImplDX10_CreateDeviceObjects()$/;" f typeref:typename:bool
  4218. ImGui_ImplDX10_CreateFontsTexture third_party/imgui/examples/imgui_impl_dx10.cpp /^static void ImGui_ImplDX10_CreateFontsTexture()$/;" f typeref:typename:void file:
  4219. ImGui_ImplDX10_Init third_party/imgui/examples/imgui_impl_dx10.cpp /^bool ImGui_ImplDX10_Init(ID3D10Device* device)$/;" f typeref:typename:bool
  4220. ImGui_ImplDX10_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_dx10.cpp /^void ImGui_ImplDX10_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4221. ImGui_ImplDX10_NewFrame third_party/imgui/examples/imgui_impl_dx10.cpp /^void ImGui_ImplDX10_NewFrame()$/;" f typeref:typename:void
  4222. ImGui_ImplDX10_RenderDrawData third_party/imgui/examples/imgui_impl_dx10.cpp /^void ImGui_ImplDX10_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4223. ImGui_ImplDX10_SetupRenderState third_party/imgui/examples/imgui_impl_dx10.cpp /^static void ImGui_ImplDX10_SetupRenderState(ImDrawData* draw_data, ID3D10Device* ctx)$/;" f typeref:typename:void file:
  4224. ImGui_ImplDX10_Shutdown third_party/imgui/examples/imgui_impl_dx10.cpp /^void ImGui_ImplDX10_Shutdown()$/;" f typeref:typename:void
  4225. ImGui_ImplDX11_CreateDeviceObjects third_party/imgui/examples/imgui_impl_dx11.cpp /^bool ImGui_ImplDX11_CreateDeviceObjects()$/;" f typeref:typename:bool
  4226. ImGui_ImplDX11_CreateFontsTexture third_party/imgui/examples/imgui_impl_dx11.cpp /^static void ImGui_ImplDX11_CreateFontsTexture()$/;" f typeref:typename:void file:
  4227. ImGui_ImplDX11_Init third_party/imgui/examples/imgui_impl_dx11.cpp /^bool ImGui_ImplDX11_Init(ID3D11Device* device, ID3D11DeviceContext* device_context)$/;" f typeref:typename:bool
  4228. ImGui_ImplDX11_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_dx11.cpp /^void ImGui_ImplDX11_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4229. ImGui_ImplDX11_NewFrame third_party/imgui/examples/imgui_impl_dx11.cpp /^void ImGui_ImplDX11_NewFrame()$/;" f typeref:typename:void
  4230. ImGui_ImplDX11_RenderDrawData third_party/imgui/examples/imgui_impl_dx11.cpp /^void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4231. ImGui_ImplDX11_SetupRenderState third_party/imgui/examples/imgui_impl_dx11.cpp /^static void ImGui_ImplDX11_SetupRenderState(ImDrawData* draw_data, ID3D11DeviceContext* ctx)$/;" f typeref:typename:void file:
  4232. ImGui_ImplDX11_Shutdown third_party/imgui/examples/imgui_impl_dx11.cpp /^void ImGui_ImplDX11_Shutdown()$/;" f typeref:typename:void
  4233. ImGui_ImplDX12_CreateDeviceObjects third_party/imgui/examples/imgui_impl_dx12.cpp /^bool ImGui_ImplDX12_CreateDeviceObjects()$/;" f typeref:typename:bool
  4234. ImGui_ImplDX12_CreateFontsTexture third_party/imgui/examples/imgui_impl_dx12.cpp /^static void ImGui_ImplDX12_CreateFontsTexture()$/;" f typeref:typename:void file:
  4235. ImGui_ImplDX12_Init third_party/imgui/examples/imgui_impl_dx12.cpp /^bool ImGui_ImplDX12_Init(ID3D12Device* device, int num_frames_in_flight, DXGI_FORMAT rtv_format,$/;" f typeref:typename:bool
  4236. ImGui_ImplDX12_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_dx12.cpp /^void ImGui_ImplDX12_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4237. ImGui_ImplDX12_NewFrame third_party/imgui/examples/imgui_impl_dx12.cpp /^void ImGui_ImplDX12_NewFrame()$/;" f typeref:typename:void
  4238. ImGui_ImplDX12_RenderDrawData third_party/imgui/examples/imgui_impl_dx12.cpp /^void ImGui_ImplDX12_RenderDrawData(ImDrawData* draw_data, ID3D12GraphicsCommandList* ctx)$/;" f typeref:typename:void
  4239. ImGui_ImplDX12_SetupRenderState third_party/imgui/examples/imgui_impl_dx12.cpp /^static void ImGui_ImplDX12_SetupRenderState(ImDrawData* draw_data, ID3D12GraphicsCommandList* ct/;" f typeref:typename:void file:
  4240. ImGui_ImplDX12_Shutdown third_party/imgui/examples/imgui_impl_dx12.cpp /^void ImGui_ImplDX12_Shutdown()$/;" f typeref:typename:void
  4241. ImGui_ImplDX9_CreateDeviceObjects third_party/imgui/examples/imgui_impl_dx9.cpp /^bool ImGui_ImplDX9_CreateDeviceObjects()$/;" f typeref:typename:bool
  4242. ImGui_ImplDX9_CreateFontsTexture third_party/imgui/examples/imgui_impl_dx9.cpp /^static bool ImGui_ImplDX9_CreateFontsTexture()$/;" f typeref:typename:bool file:
  4243. ImGui_ImplDX9_Init third_party/imgui/examples/imgui_impl_dx9.cpp /^bool ImGui_ImplDX9_Init(IDirect3DDevice9* device)$/;" f typeref:typename:bool
  4244. ImGui_ImplDX9_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_dx9.cpp /^void ImGui_ImplDX9_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4245. ImGui_ImplDX9_NewFrame third_party/imgui/examples/imgui_impl_dx9.cpp /^void ImGui_ImplDX9_NewFrame()$/;" f typeref:typename:void
  4246. ImGui_ImplDX9_RenderDrawData third_party/imgui/examples/imgui_impl_dx9.cpp /^void ImGui_ImplDX9_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4247. ImGui_ImplDX9_SetupRenderState third_party/imgui/examples/imgui_impl_dx9.cpp /^static void ImGui_ImplDX9_SetupRenderState(ImDrawData* draw_data)$/;" f typeref:typename:void file:
  4248. ImGui_ImplDX9_Shutdown third_party/imgui/examples/imgui_impl_dx9.cpp /^void ImGui_ImplDX9_Shutdown()$/;" f typeref:typename:void
  4249. ImGui_ImplGLUT_Init third_party/imgui/examples/imgui_impl_glut.cpp /^bool ImGui_ImplGLUT_Init()$/;" f typeref:typename:bool
  4250. ImGui_ImplGLUT_InstallFuncs third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_InstallFuncs()$/;" f typeref:typename:void
  4251. ImGui_ImplGLUT_KeyboardFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_KeyboardFunc(unsigned char c, int x, int y)$/;" f typeref:typename:void
  4252. ImGui_ImplGLUT_KeyboardUpFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_KeyboardUpFunc(unsigned char c, int x, int y)$/;" f typeref:typename:void
  4253. ImGui_ImplGLUT_MotionFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_MotionFunc(int x, int y)$/;" f typeref:typename:void
  4254. ImGui_ImplGLUT_MouseFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_MouseFunc(int glut_button, int state, int x, int y)$/;" f typeref:typename:void
  4255. ImGui_ImplGLUT_MouseWheelFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_MouseWheelFunc(int button, int dir, int x, int y)$/;" f typeref:typename:void
  4256. ImGui_ImplGLUT_NewFrame third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_NewFrame()$/;" f typeref:typename:void
  4257. ImGui_ImplGLUT_ReshapeFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_ReshapeFunc(int w, int h)$/;" f typeref:typename:void
  4258. ImGui_ImplGLUT_Shutdown third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_Shutdown()$/;" f typeref:typename:void
  4259. ImGui_ImplGLUT_SpecialFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_SpecialFunc(int key, int x, int y)$/;" f typeref:typename:void
  4260. ImGui_ImplGLUT_SpecialUpFunc third_party/imgui/examples/imgui_impl_glut.cpp /^void ImGui_ImplGLUT_SpecialUpFunc(int key, int x, int y)$/;" f typeref:typename:void
  4261. ImGui_ImplGLUT_UpdateKeyboardMods third_party/imgui/examples/imgui_impl_glut.cpp /^static void ImGui_ImplGLUT_UpdateKeyboardMods()$/;" f typeref:typename:void file:
  4262. ImGui_ImplGlfw_CharCallback third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c)$/;" f typeref:typename:void
  4263. ImGui_ImplGlfw_GetClipboardText third_party/imgui/examples/imgui_impl_glfw.cpp /^static const char* ImGui_ImplGlfw_GetClipboardText(void* user_data)$/;" f typeref:typename:const char * file:
  4264. ImGui_ImplGlfw_Init third_party/imgui/examples/imgui_impl_glfw.cpp /^static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, GlfwClientApi client/;" f typeref:typename:bool file:
  4265. ImGui_ImplGlfw_InitForOpenGL third_party/imgui/examples/imgui_impl_glfw.cpp /^bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks)$/;" f typeref:typename:bool
  4266. ImGui_ImplGlfw_InitForVulkan third_party/imgui/examples/imgui_impl_glfw.cpp /^bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks)$/;" f typeref:typename:bool
  4267. ImGui_ImplGlfw_KeyCallback third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods)$/;" f typeref:typename:void
  4268. ImGui_ImplGlfw_MouseButtonCallback third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods)$/;" f typeref:typename:void
  4269. ImGui_ImplGlfw_NewFrame third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_NewFrame()$/;" f typeref:typename:void
  4270. ImGui_ImplGlfw_ScrollCallback third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset)$/;" f typeref:typename:void
  4271. ImGui_ImplGlfw_SetClipboardText third_party/imgui/examples/imgui_impl_glfw.cpp /^static void ImGui_ImplGlfw_SetClipboardText(void* user_data, const char* text)$/;" f typeref:typename:void file:
  4272. ImGui_ImplGlfw_Shutdown third_party/imgui/examples/imgui_impl_glfw.cpp /^void ImGui_ImplGlfw_Shutdown()$/;" f typeref:typename:void
  4273. ImGui_ImplGlfw_UpdateGamepads third_party/imgui/examples/imgui_impl_glfw.cpp /^static void ImGui_ImplGlfw_UpdateGamepads()$/;" f typeref:typename:void file:
  4274. ImGui_ImplGlfw_UpdateMouseCursor third_party/imgui/examples/imgui_impl_glfw.cpp /^static void ImGui_ImplGlfw_UpdateMouseCursor()$/;" f typeref:typename:void file:
  4275. ImGui_ImplGlfw_UpdateMousePosAndButtons third_party/imgui/examples/imgui_impl_glfw.cpp /^static void ImGui_ImplGlfw_UpdateMousePosAndButtons()$/;" f typeref:typename:void file:
  4276. ImGui_ImplMetal_CreateDeviceObjects third_party/imgui/examples/imgui_impl_metal.mm /^bool ImGui_ImplMetal_CreateDeviceObjects(id<MTLDevice> device)$/;" f
  4277. ImGui_ImplMetal_CreateFontsTexture third_party/imgui/examples/imgui_impl_metal.mm /^bool ImGui_ImplMetal_CreateFontsTexture(id<MTLDevice> device)$/;" f
  4278. ImGui_ImplMetal_DestroyDeviceObjects third_party/imgui/examples/imgui_impl_metal.mm /^void ImGui_ImplMetal_DestroyDeviceObjects()$/;" f
  4279. ImGui_ImplMetal_DestroyFontsTexture third_party/imgui/examples/imgui_impl_metal.mm /^void ImGui_ImplMetal_DestroyFontsTexture()$/;" f
  4280. ImGui_ImplMetal_Init third_party/imgui/examples/imgui_impl_metal.mm /^bool ImGui_ImplMetal_Init(id<MTLDevice> device)$/;" f
  4281. ImGui_ImplMetal_NewFrame third_party/imgui/examples/imgui_impl_metal.mm /^void ImGui_ImplMetal_NewFrame(MTLRenderPassDescriptor *renderPassDescriptor)$/;" f
  4282. ImGui_ImplMetal_RenderDrawData third_party/imgui/examples/imgui_impl_metal.mm /^void ImGui_ImplMetal_RenderDrawData(ImDrawData* draw_data, id<MTLCommandBuffer> commandBuffer, i/;" f
  4283. ImGui_ImplMetal_Shutdown third_party/imgui/examples/imgui_impl_metal.mm /^void ImGui_ImplMetal_Shutdown()$/;" f
  4284. ImGui_ImplOSX_HandleEvent third_party/imgui/examples/imgui_impl_osx.mm /^bool ImGui_ImplOSX_HandleEvent(NSEvent* event, NSView* view)$/;" f
  4285. ImGui_ImplOSX_Init third_party/imgui/examples/imgui_impl_osx.mm /^bool ImGui_ImplOSX_Init()$/;" f
  4286. ImGui_ImplOSX_NewFrame third_party/imgui/examples/imgui_impl_osx.mm /^void ImGui_ImplOSX_NewFrame(NSView* view)$/;" f
  4287. ImGui_ImplOSX_Shutdown third_party/imgui/examples/imgui_impl_osx.mm /^void ImGui_ImplOSX_Shutdown()$/;" f
  4288. ImGui_ImplOSX_UpdateMouseCursor third_party/imgui/examples/imgui_impl_osx.mm /^static void ImGui_ImplOSX_UpdateMouseCursor()$/;" f
  4289. ImGui_ImplOpenGL2_CreateDeviceObjects third_party/imgui/examples/imgui_impl_opengl2.cpp /^bool ImGui_ImplOpenGL2_CreateDeviceObjects()$/;" f typeref:typename:bool
  4290. ImGui_ImplOpenGL2_CreateFontsTexture third_party/imgui/examples/imgui_impl_opengl2.cpp /^bool ImGui_ImplOpenGL2_CreateFontsTexture()$/;" f typeref:typename:bool
  4291. ImGui_ImplOpenGL2_DestroyDeviceObjects third_party/imgui/examples/imgui_impl_opengl2.cpp /^void ImGui_ImplOpenGL2_DestroyDeviceObjects()$/;" f typeref:typename:void
  4292. ImGui_ImplOpenGL2_DestroyFontsTexture third_party/imgui/examples/imgui_impl_opengl2.cpp /^void ImGui_ImplOpenGL2_DestroyFontsTexture()$/;" f typeref:typename:void
  4293. ImGui_ImplOpenGL2_Init third_party/imgui/examples/imgui_impl_opengl2.cpp /^bool ImGui_ImplOpenGL2_Init()$/;" f typeref:typename:bool
  4294. ImGui_ImplOpenGL2_NewFrame third_party/imgui/examples/imgui_impl_opengl2.cpp /^void ImGui_ImplOpenGL2_NewFrame()$/;" f typeref:typename:void
  4295. ImGui_ImplOpenGL2_RenderDrawData third_party/imgui/examples/imgui_impl_opengl2.cpp /^void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4296. ImGui_ImplOpenGL2_SetupRenderState third_party/imgui/examples/imgui_impl_opengl2.cpp /^static void ImGui_ImplOpenGL2_SetupRenderState(ImDrawData* draw_data, int fb_width, int fb_heigh/;" f typeref:typename:void file:
  4297. ImGui_ImplOpenGL2_Shutdown third_party/imgui/examples/imgui_impl_opengl2.cpp /^void ImGui_ImplOpenGL2_Shutdown()$/;" f typeref:typename:void
  4298. ImGui_ImplOpenGL3_CreateDeviceObjects third_party/imgui/examples/imgui_impl_opengl3.cpp /^bool ImGui_ImplOpenGL3_CreateDeviceObjects()$/;" f typeref:typename:bool
  4299. ImGui_ImplOpenGL3_CreateFontsTexture third_party/imgui/examples/imgui_impl_opengl3.cpp /^bool ImGui_ImplOpenGL3_CreateFontsTexture()$/;" f typeref:typename:bool
  4300. ImGui_ImplOpenGL3_DestroyDeviceObjects third_party/imgui/examples/imgui_impl_opengl3.cpp /^void ImGui_ImplOpenGL3_DestroyDeviceObjects()$/;" f typeref:typename:void
  4301. ImGui_ImplOpenGL3_DestroyFontsTexture third_party/imgui/examples/imgui_impl_opengl3.cpp /^void ImGui_ImplOpenGL3_DestroyFontsTexture()$/;" f typeref:typename:void
  4302. ImGui_ImplOpenGL3_Init third_party/imgui/examples/imgui_impl_opengl3.cpp /^bool ImGui_ImplOpenGL3_Init(const char* glsl_version)$/;" f typeref:typename:bool
  4303. ImGui_ImplOpenGL3_NewFrame third_party/imgui/examples/imgui_impl_opengl3.cpp /^void ImGui_ImplOpenGL3_NewFrame()$/;" f typeref:typename:void
  4304. ImGui_ImplOpenGL3_RenderDrawData third_party/imgui/examples/imgui_impl_opengl3.cpp /^void ImGui_ImplOpenGL3_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4305. ImGui_ImplOpenGL3_SetupRenderState third_party/imgui/examples/imgui_impl_opengl3.cpp /^static void ImGui_ImplOpenGL3_SetupRenderState(ImDrawData* draw_data, int fb_width, int fb_heigh/;" f typeref:typename:void file:
  4306. ImGui_ImplOpenGL3_Shutdown third_party/imgui/examples/imgui_impl_opengl3.cpp /^void ImGui_ImplOpenGL3_Shutdown()$/;" f typeref:typename:void
  4307. ImGui_ImplSDL2_GetClipboardText third_party/imgui/examples/imgui_impl_sdl.cpp /^static const char* ImGui_ImplSDL2_GetClipboardText(void*)$/;" f typeref:typename:const char * file:
  4308. ImGui_ImplSDL2_Init third_party/imgui/examples/imgui_impl_sdl.cpp /^static bool ImGui_ImplSDL2_Init(SDL_Window* window)$/;" f typeref:typename:bool file:
  4309. ImGui_ImplSDL2_InitForD3D third_party/imgui/examples/imgui_impl_sdl.cpp /^bool ImGui_ImplSDL2_InitForD3D(SDL_Window* window)$/;" f typeref:typename:bool
  4310. ImGui_ImplSDL2_InitForOpenGL third_party/imgui/examples/imgui_impl_sdl.cpp /^bool ImGui_ImplSDL2_InitForOpenGL(SDL_Window* window, void* sdl_gl_context)$/;" f typeref:typename:bool
  4311. ImGui_ImplSDL2_InitForVulkan third_party/imgui/examples/imgui_impl_sdl.cpp /^bool ImGui_ImplSDL2_InitForVulkan(SDL_Window* window)$/;" f typeref:typename:bool
  4312. ImGui_ImplSDL2_NewFrame third_party/imgui/examples/imgui_impl_sdl.cpp /^void ImGui_ImplSDL2_NewFrame(SDL_Window* window)$/;" f typeref:typename:void
  4313. ImGui_ImplSDL2_ProcessEvent third_party/imgui/examples/imgui_impl_sdl.cpp /^bool ImGui_ImplSDL2_ProcessEvent(const SDL_Event* event)$/;" f typeref:typename:bool
  4314. ImGui_ImplSDL2_SetClipboardText third_party/imgui/examples/imgui_impl_sdl.cpp /^static void ImGui_ImplSDL2_SetClipboardText(void*, const char* text)$/;" f typeref:typename:void file:
  4315. ImGui_ImplSDL2_Shutdown third_party/imgui/examples/imgui_impl_sdl.cpp /^void ImGui_ImplSDL2_Shutdown()$/;" f typeref:typename:void
  4316. ImGui_ImplSDL2_UpdateGamepads third_party/imgui/examples/imgui_impl_sdl.cpp /^static void ImGui_ImplSDL2_UpdateGamepads()$/;" f typeref:typename:void file:
  4317. ImGui_ImplSDL2_UpdateMouseCursor third_party/imgui/examples/imgui_impl_sdl.cpp /^static void ImGui_ImplSDL2_UpdateMouseCursor()$/;" f typeref:typename:void file:
  4318. ImGui_ImplSDL2_UpdateMousePosAndButtons third_party/imgui/examples/imgui_impl_sdl.cpp /^static void ImGui_ImplSDL2_UpdateMousePosAndButtons()$/;" f typeref:typename:void file:
  4319. ImGui_ImplVulkanH_CreateWindow third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_CreateWindow(VkInstance instance, VkPhysicalDevice physical_device, VkDev/;" f typeref:typename:void
  4320. ImGui_ImplVulkanH_CreateWindowCommandBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_CreateWindowCommandBuffers(VkPhysicalDevice physical_device, VkDevice dev/;" f typeref:typename:void
  4321. ImGui_ImplVulkanH_CreateWindowSwapChain third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_CreateWindowSwapChain(VkPhysicalDevice physical_device, VkDevice device, /;" f typeref:typename:void
  4322. ImGui_ImplVulkanH_DestroyFrame third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_DestroyFrame(VkDevice device, ImGui_ImplVulkanH_Frame* fd, const VkAlloca/;" f typeref:typename:void
  4323. ImGui_ImplVulkanH_DestroyFrameRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_DestroyFrameRenderBuffers(VkDevice device, ImGui_ImplVulkanH_FrameRenderB/;" f typeref:typename:void
  4324. ImGui_ImplVulkanH_DestroyFrameSemaphores third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_DestroyFrameSemaphores(VkDevice device, ImGui_ImplVulkanH_FrameSemaphores/;" f typeref:typename:void
  4325. ImGui_ImplVulkanH_DestroyWindow third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_DestroyWindow(VkInstance instance, VkDevice device, ImGui_ImplVulkanH_Win/;" f typeref:typename:void
  4326. ImGui_ImplVulkanH_DestroyWindowRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkanH_DestroyWindowRenderBuffers(VkDevice device, ImGui_ImplVulkanH_WindowRende/;" f typeref:typename:void
  4327. ImGui_ImplVulkanH_Frame third_party/imgui/examples/imgui_impl_vulkan.h /^struct ImGui_ImplVulkanH_Frame$/;" s
  4328. ImGui_ImplVulkanH_FrameRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^struct ImGui_ImplVulkanH_FrameRenderBuffers$/;" s file:
  4329. ImGui_ImplVulkanH_FrameSemaphores third_party/imgui/examples/imgui_impl_vulkan.h /^struct ImGui_ImplVulkanH_FrameSemaphores$/;" s
  4330. ImGui_ImplVulkanH_GetMinImageCountFromPresentMode third_party/imgui/examples/imgui_impl_vulkan.cpp /^int ImGui_ImplVulkanH_GetMinImageCountFromPresentMode(VkPresentModeKHR present_mode)$/;" f typeref:typename:int
  4331. ImGui_ImplVulkanH_SelectPresentMode third_party/imgui/examples/imgui_impl_vulkan.cpp /^VkPresentModeKHR ImGui_ImplVulkanH_SelectPresentMode(VkPhysicalDevice physical_device, VkSurface/;" f typeref:typename:VkPresentModeKHR
  4332. ImGui_ImplVulkanH_SelectSurfaceFormat third_party/imgui/examples/imgui_impl_vulkan.cpp /^VkSurfaceFormatKHR ImGui_ImplVulkanH_SelectSurfaceFormat(VkPhysicalDevice physical_device, VkSur/;" f typeref:typename:VkSurfaceFormatKHR
  4333. ImGui_ImplVulkanH_Window third_party/imgui/examples/imgui_impl_vulkan.h /^ ImGui_ImplVulkanH_Window() $/;" f struct:ImGui_ImplVulkanH_Window
  4334. ImGui_ImplVulkanH_Window third_party/imgui/examples/imgui_impl_vulkan.h /^struct ImGui_ImplVulkanH_Window$/;" s
  4335. ImGui_ImplVulkanH_WindowRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^struct ImGui_ImplVulkanH_WindowRenderBuffers$/;" s file:
  4336. ImGui_ImplVulkan_CreateDeviceObjects third_party/imgui/examples/imgui_impl_vulkan.cpp /^bool ImGui_ImplVulkan_CreateDeviceObjects()$/;" f typeref:typename:bool
  4337. ImGui_ImplVulkan_CreateFontsTexture third_party/imgui/examples/imgui_impl_vulkan.cpp /^bool ImGui_ImplVulkan_CreateFontsTexture(VkCommandBuffer command_buffer)$/;" f typeref:typename:bool
  4338. ImGui_ImplVulkan_DestroyDeviceObjects third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_DestroyDeviceObjects()$/;" f typeref:typename:void
  4339. ImGui_ImplVulkan_DestroyFontUploadObjects third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_DestroyFontUploadObjects()$/;" f typeref:typename:void
  4340. ImGui_ImplVulkan_Init third_party/imgui/examples/imgui_impl_vulkan.cpp /^bool ImGui_ImplVulkan_Init(ImGui_ImplVulkan_InitInfo* info, VkRenderPass render_pass)$/;" f typeref:typename:bool
  4341. ImGui_ImplVulkan_InitInfo third_party/imgui/examples/imgui_impl_vulkan.h /^struct ImGui_ImplVulkan_InitInfo$/;" s
  4342. ImGui_ImplVulkan_MemoryType third_party/imgui/examples/imgui_impl_vulkan.cpp /^static uint32_t ImGui_ImplVulkan_MemoryType(VkMemoryPropertyFlags properties, uint32_t type_bits/;" f typeref:typename:uint32_t file:
  4343. ImGui_ImplVulkan_NewFrame third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_NewFrame()$/;" f typeref:typename:void
  4344. ImGui_ImplVulkan_RenderDrawData third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_RenderDrawData(ImDrawData* draw_data, VkCommandBuffer command_buffer)$/;" f typeref:typename:void
  4345. ImGui_ImplVulkan_SetMinImageCount third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_SetMinImageCount(uint32_t min_image_count)$/;" f typeref:typename:void
  4346. ImGui_ImplVulkan_SetupRenderState third_party/imgui/examples/imgui_impl_vulkan.cpp /^static void ImGui_ImplVulkan_SetupRenderState(ImDrawData* draw_data, VkCommandBuffer command_buf/;" f typeref:typename:void file:
  4347. ImGui_ImplVulkan_Shutdown third_party/imgui/examples/imgui_impl_vulkan.cpp /^void ImGui_ImplVulkan_Shutdown()$/;" f typeref:typename:void
  4348. ImGui_ImplWin32_Init third_party/imgui/examples/imgui_impl_win32.cpp /^bool ImGui_ImplWin32_Init(void* hwnd)$/;" f typeref:typename:bool
  4349. ImGui_ImplWin32_NewFrame third_party/imgui/examples/imgui_impl_win32.cpp /^void ImGui_ImplWin32_NewFrame()$/;" f typeref:typename:void
  4350. ImGui_ImplWin32_Shutdown third_party/imgui/examples/imgui_impl_win32.cpp /^void ImGui_ImplWin32_Shutdown()$/;" f typeref:typename:void
  4351. ImGui_ImplWin32_UpdateGamepads third_party/imgui/examples/imgui_impl_win32.cpp /^static void ImGui_ImplWin32_UpdateGamepads()$/;" f typeref:typename:void file:
  4352. ImGui_ImplWin32_UpdateMouseCursor third_party/imgui/examples/imgui_impl_win32.cpp /^static bool ImGui_ImplWin32_UpdateMouseCursor()$/;" f typeref:typename:bool file:
  4353. ImGui_ImplWin32_UpdateMousePos third_party/imgui/examples/imgui_impl_win32.cpp /^static void ImGui_ImplWin32_UpdateMousePos()$/;" f typeref:typename:void file:
  4354. ImGui_ImplWin32_WndProcHandler third_party/imgui/examples/imgui_impl_win32.cpp /^IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM/;" f typeref:typename:IMGUI_IMPL_API LRESULT
  4355. ImGui_Marmalade_CharCallback third_party/imgui/examples/imgui_impl_marmalade.cpp /^int32 ImGui_Marmalade_CharCallback(void* system_data, void* user_data)$/;" f typeref:typename:int32
  4356. ImGui_Marmalade_CreateDeviceObjects third_party/imgui/examples/imgui_impl_marmalade.cpp /^bool ImGui_Marmalade_CreateDeviceObjects()$/;" f typeref:typename:bool
  4357. ImGui_Marmalade_GetClipboardText third_party/imgui/examples/imgui_impl_marmalade.cpp /^static const char* ImGui_Marmalade_GetClipboardText(void* \/*user_data*\/)$/;" f typeref:typename:const char * file:
  4358. ImGui_Marmalade_Init third_party/imgui/examples/imgui_impl_marmalade.cpp /^bool ImGui_Marmalade_Init(bool install_callbacks)$/;" f typeref:typename:bool
  4359. ImGui_Marmalade_InvalidateDeviceObjects third_party/imgui/examples/imgui_impl_marmalade.cpp /^void ImGui_Marmalade_InvalidateDeviceObjects()$/;" f typeref:typename:void
  4360. ImGui_Marmalade_KeyCallback third_party/imgui/examples/imgui_impl_marmalade.cpp /^int32 ImGui_Marmalade_KeyCallback(void* system_data, void* user_data)$/;" f typeref:typename:int32
  4361. ImGui_Marmalade_NewFrame third_party/imgui/examples/imgui_impl_marmalade.cpp /^void ImGui_Marmalade_NewFrame()$/;" f typeref:typename:void
  4362. ImGui_Marmalade_PointerButtonEventCallback third_party/imgui/examples/imgui_impl_marmalade.cpp /^int32 ImGui_Marmalade_PointerButtonEventCallback(void* system_data, void* user_data)$/;" f typeref:typename:int32
  4363. ImGui_Marmalade_RenderDrawData third_party/imgui/examples/imgui_impl_marmalade.cpp /^void ImGui_Marmalade_RenderDrawData(ImDrawData* draw_data)$/;" f typeref:typename:void
  4364. ImGui_Marmalade_SetClipboardText third_party/imgui/examples/imgui_impl_marmalade.cpp /^static void ImGui_Marmalade_SetClipboardText(void* \/*user_data*\/, const char* text)$/;" f typeref:typename:void file:
  4365. ImGui_Marmalade_Shutdown third_party/imgui/examples/imgui_impl_marmalade.cpp /^void ImGui_Marmalade_Shutdown()$/;" f typeref:typename:void
  4366. ImHash third_party/imgui/imgui_internal.h /^static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHas/;" f typeref:typename:ImU32
  4367. ImHashData third_party/imgui/imgui.cpp /^ImU32 ImHashData(const void* data_p, size_t data_size, ImU32 seed)$/;" f typeref:typename:ImU32
  4368. ImHashStr third_party/imgui/imgui.cpp /^ImU32 ImHashStr(const char* data_p, size_t data_size, ImU32 seed)$/;" f typeref:typename:ImU32
  4369. ImInvLength third_party/imgui/imgui_internal.h /^static inline float ImInvLength(const ImVec2& lhs, float fail_value) { float d = lhs./;" f typeref:typename:float
  4370. ImIsPowerOfTwo third_party/imgui/imgui_internal.h /^static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; }$/;" f typeref:typename:bool
  4371. ImLengthSqr third_party/imgui/imgui_internal.h /^static inline float ImLengthSqr(const ImVec2& lhs) { return lhs.x*l/;" f typeref:typename:float
  4372. ImLengthSqr third_party/imgui/imgui_internal.h /^static inline float ImLengthSqr(const ImVec4& lhs) { return lhs.x*l/;" f typeref:typename:float
  4373. ImLerp third_party/imgui/imgui_internal.h /^static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, const ImVec2& t) { return ImVec2(/;" f typeref:typename:ImVec2
  4374. ImLerp third_party/imgui/imgui_internal.h /^static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, float t) { return ImVec2(/;" f typeref:typename:ImVec2
  4375. ImLerp third_party/imgui/imgui_internal.h /^static inline ImVec4 ImLerp(const ImVec4& a, const ImVec4& b, float t) { return ImVec4(/;" f typeref:typename:ImVec4
  4376. ImLerp third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImLerp(T a, T b, float t) { return (T)(a +/;" f typeref:typename:T
  4377. ImLineClosestPoint third_party/imgui/imgui.cpp /^ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p)$/;" f typeref:typename:ImVec2
  4378. ImLinearSweep third_party/imgui/imgui_internal.h /^static inline float ImLinearSweep(float current, float target, float speed) { if (current < /;" f typeref:typename:float
  4379. ImMax third_party/imgui/imgui_internal.h /^static inline ImVec2 ImMax(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  4380. ImMax third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImMax(T lhs, T rhs) { return lhs >= /;" f typeref:typename:T
  4381. ImMin third_party/imgui/imgui_internal.h /^static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  4382. ImMin third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImMin(T lhs, T rhs) { return lhs < r/;" f typeref:typename:T
  4383. ImModPositive third_party/imgui/imgui_internal.h /^static inline int ImModPositive(int a, int b) { return (a + b)/;" f typeref:typename:int
  4384. ImMul third_party/imgui/imgui_internal.h /^static inline ImVec2 ImMul(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  4385. ImNewDummy third_party/imgui/imgui.h /^struct ImNewDummy {};$/;" s
  4386. ImParseFormatFindEnd third_party/imgui/imgui_widgets.cpp /^const char* ImParseFormatFindEnd(const char* fmt)$/;" f typeref:typename:const char *
  4387. ImParseFormatFindStart third_party/imgui/imgui_widgets.cpp /^const char* ImParseFormatFindStart(const char* fmt)$/;" f typeref:typename:const char *
  4388. ImParseFormatPrecision third_party/imgui/imgui_widgets.cpp /^int ImParseFormatPrecision(const char* fmt, int default_precision)$/;" f typeref:typename:int
  4389. ImParseFormatTrimDecorations third_party/imgui/imgui_widgets.cpp /^const char* ImParseFormatTrimDecorations(const char* fmt, char* buf, size_t buf_size)$/;" f typeref:typename:const char *
  4390. ImPool third_party/imgui/imgui_internal.h /^ ImPool() { FreeIdx = 0; }$/;" f struct:ImPool
  4391. ImPool third_party/imgui/imgui_internal.h /^struct IMGUI_API ImPool$/;" s
  4392. ImPoolIdx third_party/imgui/imgui_internal.h /^typedef int ImPoolIdx;$/;" t typeref:typename:int
  4393. ImPow third_party/imgui/imgui_internal.h /^static inline double ImPow(double x, double y) { return pow(x, /;" f typeref:typename:double
  4394. ImPow third_party/imgui/imgui_internal.h /^static inline float ImPow(float x, float y) { return powf(x,/;" f typeref:typename:float
  4395. ImQsort third_party/imgui/imgui_internal.h /^#define ImQsort /;" d
  4396. ImRect third_party/imgui/imgui_internal.h /^ ImRect() : Min(FLT_MAX,FLT_MAX), Max(-FLT_MAX,-FLT_MA/;" f struct:ImRect
  4397. ImRect third_party/imgui/imgui_internal.h /^ ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) /;" f struct:ImRect
  4398. ImRect third_party/imgui/imgui_internal.h /^ ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) /;" f struct:ImRect
  4399. ImRect third_party/imgui/imgui_internal.h /^ ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) /;" f struct:ImRect
  4400. ImRect third_party/imgui/imgui_internal.h /^struct IMGUI_API ImRect$/;" s
  4401. ImRotate third_party/imgui/imgui_internal.h /^static inline ImVec2 ImRotate(const ImVec2& v, float cos_a, float sin_a) { return ImVec2(/;" f typeref:typename:ImVec2
  4402. ImS16 third_party/imgui/imgui.h /^typedef signed short ImS16; \/\/ 16-bit signed integer$/;" t typeref:typename:signed short
  4403. ImS32 third_party/imgui/imgui.h /^typedef signed int ImS32; \/\/ 32-bit signed integer == int$/;" t typeref:typename:signed int
  4404. ImS64 third_party/imgui/imgui.h /^typedef int64_t ImS64; \/\/ 64-bit signed integer (pre C++11)$/;" t typeref:typename:int64_t
  4405. ImS64 third_party/imgui/imgui.h /^typedef signed __int64 ImS64; \/\/ 64-bit signed integer (pre and post C++11 with Visual S/;" t typeref:typename:signed __int64
  4406. ImS64 third_party/imgui/imgui.h /^typedef signed long long ImS64; \/\/ 64-bit signed integer (post C++11)$/;" t typeref:typename:signed long long
  4407. ImS8 third_party/imgui/imgui.h /^typedef signed char ImS8; \/\/ 8-bit signed integer == char$/;" t typeref:typename:signed char
  4408. ImSaturate third_party/imgui/imgui_internal.h /^static inline float ImSaturate(float f) { return (f < 0./;" f typeref:typename:float
  4409. ImSin third_party/imgui/imgui_internal.h /^static inline float ImSin(float x) { return sinf(x)/;" f typeref:typename:float
  4410. ImSqrt third_party/imgui/imgui_internal.h /^static inline float ImSqrt(float x) { return sqrtf(x/;" f typeref:typename:float
  4411. ImStb third_party/imgui/imgui_internal.h /^namespace ImStb$/;" n
  4412. ImStb third_party/imgui/imgui_widgets.cpp /^namespace ImStb$/;" n file:
  4413. ImStrTrimBlanks third_party/imgui/imgui.cpp /^void ImStrTrimBlanks(char* buf)$/;" f typeref:typename:void
  4414. ImStrbolW third_party/imgui/imgui.cpp /^const ImWchar* ImStrbolW(const ImWchar* buf_mid_line, const ImWchar* buf_begin) \/\/ find beginn/;" f typeref:typename:const ImWchar *
  4415. ImStrchrRange third_party/imgui/imgui.cpp /^const char* ImStrchrRange(const char* str, const char* str_end, char c)$/;" f typeref:typename:const char *
  4416. ImStrdup third_party/imgui/imgui.cpp /^char* ImStrdup(const char* str)$/;" f typeref:typename:char *
  4417. ImStrdupcpy third_party/imgui/imgui.cpp /^char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* src)$/;" f typeref:typename:char *
  4418. ImStreolRange third_party/imgui/imgui.cpp /^const char* ImStreolRange(const char* str, const char* str_end)$/;" f typeref:typename:const char *
  4419. ImStricmp third_party/imgui/imgui.cpp /^int ImStricmp(const char* str1, const char* str2)$/;" f typeref:typename:int
  4420. ImStristr third_party/imgui/imgui.cpp /^const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const /;" f typeref:typename:const char *
  4421. ImStrlenW third_party/imgui/imgui.cpp /^int ImStrlenW(const ImWchar* str)$/;" f typeref:typename:int
  4422. ImStrncpy third_party/imgui/imgui.cpp /^void ImStrncpy(char* dst, const char* src, size_t count)$/;" f typeref:typename:void
  4423. ImStrnicmp third_party/imgui/imgui.cpp /^int ImStrnicmp(const char* str1, const char* str2, size_t count)$/;" f typeref:typename:int
  4424. ImSubClampOverflow third_party/imgui/imgui_internal.h /^template<typename T> static inline T ImSubClampOverflow(T a, T b, T mn, T mx) { if (b > 0 && (/;" f typeref:typename:T
  4425. ImSwap third_party/imgui/imgui_internal.h /^template<typename T> static inline void ImSwap(T& a, T& b) { T tmp = a; a =/;" f typeref:typename:void
  4426. ImTextCharFromUtf8 third_party/imgui/imgui.cpp /^int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end)$/;" f typeref:typename:int
  4427. ImTextCharToUtf8 third_party/imgui/imgui.cpp /^static inline int ImTextCharToUtf8(char* buf, int buf_size, unsigned int c)$/;" f typeref:typename:int file:
  4428. ImTextCountCharsFromUtf8 third_party/imgui/imgui.cpp /^int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end)$/;" f typeref:typename:int
  4429. ImTextCountUtf8BytesFromChar third_party/imgui/imgui.cpp /^int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end)$/;" f typeref:typename:int
  4430. ImTextCountUtf8BytesFromChar third_party/imgui/imgui.cpp /^static inline int ImTextCountUtf8BytesFromChar(unsigned int c)$/;" f typeref:typename:int file:
  4431. ImTextCountUtf8BytesFromStr third_party/imgui/imgui.cpp /^int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end)$/;" f typeref:typename:int
  4432. ImTextStrFromUtf8 third_party/imgui/imgui.cpp /^int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, /;" f typeref:typename:int
  4433. ImTextStrToUtf8 third_party/imgui/imgui.cpp /^int ImTextStrToUtf8(char* buf, int buf_size, const ImWchar* in_text, const ImWchar* in_text_end)$/;" f typeref:typename:int
  4434. ImTextureID third_party/imgui/imgui.h /^typedef void* ImTextureID; \/\/ User data to identify a texture (this is whatever to yo/;" t typeref:typename:void *
  4435. ImTriangleBarycentricCoords third_party/imgui/imgui.cpp /^void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2/;" f typeref:typename:void
  4436. ImTriangleClosestPoint third_party/imgui/imgui.cpp /^ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p/;" f typeref:typename:ImVec2
  4437. ImTriangleContainsPoint third_party/imgui/imgui.cpp /^bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p)$/;" f typeref:typename:bool
  4438. ImU16 third_party/imgui/imgui.h /^typedef unsigned short ImU16; \/\/ 16-bit unsigned integer$/;" t typeref:typename:unsigned short
  4439. ImU32 third_party/imgui/imgui.h /^typedef unsigned int ImU32; \/\/ 32-bit unsigned integer (often used to store packed col/;" t typeref:typename:unsigned int
  4440. ImU64 third_party/imgui/imgui.h /^typedef uint64_t ImU64; \/\/ 64-bit unsigned integer (pre C++11)$/;" t typeref:typename:uint64_t
  4441. ImU64 third_party/imgui/imgui.h /^typedef unsigned __int64 ImU64; \/\/ 64-bit unsigned integer (pre and post C++11 with Visual/;" t typeref:typename:unsigned __int64
  4442. ImU64 third_party/imgui/imgui.h /^typedef unsigned long long ImU64; \/\/ 64-bit unsigned integer (post C++11)$/;" t typeref:typename:unsigned long long
  4443. ImU8 third_party/imgui/imgui.h /^typedef unsigned char ImU8; \/\/ 8-bit unsigned integer$/;" t typeref:typename:unsigned char
  4444. ImUpperPowerOfTwo third_party/imgui/imgui_internal.h /^static inline int ImUpperPowerOfTwo(int v) { v--; v |= v >> 1; v |= v >> 2; v |= v /;" f typeref:typename:int
  4445. ImVec1 third_party/imgui/imgui_internal.h /^ ImVec1() { x = 0.0f; }$/;" f struct:ImVec1
  4446. ImVec1 third_party/imgui/imgui_internal.h /^ ImVec1(float _x) { x = _x; }$/;" f struct:ImVec1
  4447. ImVec1 third_party/imgui/imgui_internal.h /^struct ImVec1$/;" s
  4448. ImVec2 third_party/imgui/imgui.h /^ ImVec2() { x = y = 0.0f; }$/;" f struct:ImVec2
  4449. ImVec2 third_party/imgui/imgui.h /^ ImVec2(float _x, float _y) { x = _x; y = _y; }$/;" f struct:ImVec2
  4450. ImVec2 third_party/imgui/imgui.h /^struct ImVec2$/;" s
  4451. ImVec2ih third_party/imgui/imgui_internal.h /^ ImVec2ih() { x = y = 0; }$/;" f struct:ImVec2ih
  4452. ImVec2ih third_party/imgui/imgui_internal.h /^ ImVec2ih(short _x, short _y) { x = _x; y = _y; }$/;" f struct:ImVec2ih
  4453. ImVec2ih third_party/imgui/imgui_internal.h /^struct ImVec2ih$/;" s
  4454. ImVec4 third_party/imgui/imgui.h /^ ImVec4() { x = y = z = w = 0.0f; }$/;" f struct:ImVec4
  4455. ImVec4 third_party/imgui/imgui.h /^ ImVec4(float _x, float _y, float _z, float _w) { x = _x; y = _y; z = _z; w = _w; }$/;" f struct:ImVec4
  4456. ImVec4 third_party/imgui/imgui.h /^struct ImVec4$/;" s
  4457. ImVector third_party/imgui/imgui.h /^ inline ImVector() { Size = Capacity = 0; Data = NULL; /;" f struct:ImVector
  4458. ImVector third_party/imgui/imgui.h /^ inline ImVector(const ImVector<T>& src) { Size = Capacity = 0; Data = NULL; /;" f struct:ImVector
  4459. ImVector third_party/imgui/imgui.h /^struct ImVector$/;" s
  4460. ImWchar third_party/imgui/imgui.h /^typedef unsigned short ImWchar; \/\/ A single U16 character for keyboard input\/display. We /;" t typeref:typename:unsigned short
  4461. Image third_party/PerlinNoise/Test_PerlinNoise.cpp /^ Image(std::int32_t width, std::int32_t height)$/;" f class:Image file:
  4462. Image third_party/PerlinNoise/Test_PerlinNoise.cpp /^class Image$/;" c file:
  4463. Image third_party/imgui/imgui_widgets.cpp /^void ImGui::Image(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVe/;" f class:ImGui typeref:typename:void
  4464. ImageAcquiredSemaphore third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSemaphore ImageAcquiredSemaphore;$/;" m struct:ImGui_ImplVulkanH_FrameSemaphores typeref:typename:VkSemaphore
  4465. ImageButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, cons/;" f class:ImGui typeref:typename:bool
  4466. ImageCount third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t ImageCount; \/\/ >= MinImageCount$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:uint32_t
  4467. ImageCount third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t ImageCount; \/\/ Number of simultaneous in-flight frames (re/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:uint32_t
  4468. ImageResource libswan/include/swan/Resource.h /^class ImageResource {$/;" c namespace:Swan
  4469. ImageResource libswan/src/Resource.cc /^ImageResource::ImageResource($/;" f class:Swan::ImageResource
  4470. ImageResource libswan/src/Resource.cc /^ImageResource::ImageResource(SDL_Renderer *renderer, const Builder &builder) {$/;" f class:Swan::ImageResource
  4471. ImeSetInputScreenPosFn third_party/imgui/imgui.h /^ void (*ImeSetInputScreenPosFn)(int x, int y);$/;" m struct:ImGuiIO typeref:typename:void (*)(int x,int y)
  4472. ImeSetInputScreenPosFn_DefaultImpl third_party/imgui/imgui.cpp /^static void ImeSetInputScreenPosFn_DefaultImpl(int x, int y)$/;" f typeref:typename:void file:
  4473. ImeSetInputScreenPosFn_DefaultImpl third_party/imgui/imgui.cpp /^static void ImeSetInputScreenPosFn_DefaultImpl(int, int) {}$/;" f typeref:typename:void file:
  4474. ImeWindowHandle third_party/imgui/imgui.h /^ void* ImeWindowHandle; \/\/ = NULL \/\/ (Windows) Set this to/;" m struct:ImGuiIO typeref:typename:void *
  4475. Indent third_party/imgui/imgui.cpp /^void ImGui::Indent(float indent_w)$/;" f class:ImGui typeref:typename:void
  4476. Indent third_party/imgui/imgui_internal.h /^ ImVec1 Indent; \/\/ Indentation \/ start position from left/;" m struct:ImGuiWindowTempData typeref:typename:ImVec1
  4477. IndentSpacing third_party/imgui/imgui.h /^ float IndentSpacing; \/\/ Horizontal indentation when e.g. entering a tre/;" m struct:ImGuiStyle typeref:typename:float
  4478. Index third_party/imgui/examples/imgui_impl_vulkan.cpp /^ uint32_t Index;$/;" m struct:ImGui_ImplVulkanH_WindowRenderBuffers typeref:typename:uint32_t file:
  4479. Index third_party/imgui/imgui_internal.h /^ int Index; \/\/ Usually index in a main pool.$/;" m struct:ImGuiPtrOrIndex typeref:typename:int
  4480. Index third_party/imgui/imgui_internal.h /^ int Index;$/;" m struct:ImGuiShrinkWidthItem typeref:typename:int
  4481. IndexAdvanceX third_party/imgui/imgui.h /^ ImVector<float> IndexAdvanceX; \/\/ 12-16 \/\/ out \/\/ \/\/ Spa/;" m struct:ImFont typeref:typename:ImVector<float>
  4482. IndexBuffer third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10Buffer * file:
  4483. IndexBuffer third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11Buffer * file:
  4484. IndexBuffer third_party/imgui/examples/imgui_impl_dx12.cpp /^ ID3D12Resource* IndexBuffer;$/;" m struct:FrameResources typeref:typename:ID3D12Resource * file:
  4485. IndexBuffer third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkBuffer IndexBuffer;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkBuffer file:
  4486. IndexBufferFormat third_party/imgui/examples/imgui_impl_dx10.cpp /^ DXGI_FORMAT IndexBufferFormat;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:DXGI_FORMAT file:
  4487. IndexBufferFormat third_party/imgui/examples/imgui_impl_dx11.cpp /^ DXGI_FORMAT IndexBufferFormat;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:DXGI_FORMAT file:
  4488. IndexBufferMemory third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkDeviceMemory IndexBufferMemory;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkDeviceMemory file:
  4489. IndexBufferOffset third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  4490. IndexBufferOffset third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  4491. IndexBufferSize third_party/imgui/examples/imgui_impl_dx12.cpp /^ int IndexBufferSize;$/;" m struct:FrameResources typeref:typename:int file:
  4492. IndexBufferSize third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkDeviceSize IndexBufferSize;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkDeviceSize file:
  4493. IndexLookup third_party/imgui/imgui.h /^ ImVector<ImWchar> IndexLookup; \/\/ 12-16 \/\/ out \/\/ \/\/ Spa/;" m struct:ImFont typeref:typename:ImVector<ImWchar>
  4494. Info third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FontInfo Info; \/\/ Font descriptor of the current font.$/;" m struct:__anond3bafd850110::FreeTypeFont typeref:typename:FontInfo file:
  4495. Info third_party/imgui/misc/freetype/imgui_freetype.cpp /^ GlyphInfo Info;$/;" m struct:ImFontBuildSrcGlyphFT typeref:typename:GlyphInfo file:
  4496. IniFilename third_party/imgui/imgui.h /^ const char* IniFilename; \/\/ = "imgui.ini" \/\/ Path to .ini file. Se/;" m struct:ImGuiIO typeref:typename:const char *
  4497. IniSavingRate third_party/imgui/imgui.h /^ float IniSavingRate; \/\/ = 5.0f \/\/ Minimum time between /;" m struct:ImGuiIO typeref:typename:float
  4498. InitFont third_party/imgui/misc/freetype/imgui_freetype.cpp /^ bool FreeTypeFont::InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int ext/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:bool
  4499. InitialFlags third_party/imgui/imgui_internal.h /^ ImDrawListFlags InitialFlags; \/\/ Initial flags at the beginning of the frame/;" m struct:ImDrawListSharedData typeref:typename:ImDrawListFlags
  4500. InitialTextA third_party/imgui/imgui_internal.h /^ ImVector<char> InitialTextA; \/\/ backup of end-user buffer at the time o/;" m struct:ImGuiInputTextState typeref:typename:ImVector<char>
  4501. Initialize third_party/imgui/imgui.cpp /^void ImGui::Initialize(ImGuiContext* context)$/;" f class:ImGui typeref:typename:void
  4502. Initialize third_party/imgui_sdl/imgui_sdl.cpp /^ void Initialize(SDL_Renderer* renderer, int windowWidth, int windowHeight)$/;" f namespace:ImGuiSDL typeref:typename:void
  4503. Initialized third_party/imgui/imgui_internal.h /^ bool Initialized;$/;" m struct:ImGuiContext typeref:typename:bool
  4504. InnerClipRect third_party/imgui/imgui_internal.h /^ ImRect InnerClipRect; \/\/ == InnerRect shrunk by Wind/;" m struct:ImGuiWindow typeref:typename:ImRect
  4505. InnerDir third_party/imgui/imgui.cpp /^ ImVec2 InnerDir;$/;" m struct:ImGui::RenderWindowOuterBorders::ImGuiResizeBorderDef typeref:typename:ImVec2 file:
  4506. InnerDir third_party/imgui/imgui.cpp /^ ImVec2 InnerDir;$/;" m struct:ImGuiResizeGripDef typeref:typename:ImVec2 file:
  4507. InnerRect third_party/imgui/imgui_internal.h /^ ImRect InnerRect; \/\/ Inner rectangle (omit title/;" m struct:ImGuiWindow typeref:typename:ImRect
  4508. InputBuf third_party/imgui/imgui.h /^ char InputBuf[256];$/;" m struct:ImGuiTextFilter typeref:typename:char[256]
  4509. InputBuf third_party/imgui/imgui_demo.cpp /^ char InputBuf[256];$/;" m struct:ExampleAppConsole typeref:typename:char[256] file:
  4510. InputDouble third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputDouble(const char* label, double* v, double step, double step_fast, const char*/;" f class:ImGui typeref:typename:bool
  4511. InputFloat third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat(const char* label, float* v, float step, float step_fast, const char* for/;" f class:ImGui typeref:typename:bool
  4512. InputFloat third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat(const char* label, float* v, float step, float step_fast, int decimal_pre/;" f class:ImGui typeref:typename:bool
  4513. InputFloat2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat2(const char* label, float v[2], const char* format, ImGuiInputTextFlags f/;" f class:ImGui typeref:typename:bool
  4514. InputFloat2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat2(const char* label, float v[2], int decimal_precision, ImGuiInputTextFlag/;" f class:ImGui typeref:typename:bool
  4515. InputFloat3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat3(const char* label, float v[3], const char* format, ImGuiInputTextFlags f/;" f class:ImGui typeref:typename:bool
  4516. InputFloat3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat3(const char* label, float v[3], int decimal_precision, ImGuiInputTextFlag/;" f class:ImGui typeref:typename:bool
  4517. InputFloat4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat4(const char* label, float v[4], const char* format, ImGuiInputTextFlags f/;" f class:ImGui typeref:typename:bool
  4518. InputFloat4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputFloat4(const char* label, float v[4], int decimal_precision, ImGuiInputTextFlag/;" f class:ImGui typeref:typename:bool
  4519. InputInt third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputInt(const char* label, int* v, int step, int step_fast, ImGuiInputTextFlags fla/;" f class:ImGui typeref:typename:bool
  4520. InputInt2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags)$/;" f class:ImGui typeref:typename:bool
  4521. InputInt3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags)$/;" f class:ImGui typeref:typename:bool
  4522. InputInt4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags)$/;" f class:ImGui typeref:typename:bool
  4523. InputLayout third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10InputLayout* InputLayout;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10InputLayout * file:
  4524. InputLayout third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11InputLayout* InputLayout;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11InputLayout * file:
  4525. InputQueueCharacters third_party/imgui/imgui.h /^ ImVector<ImWchar> InputQueueCharacters; \/\/ Queue of _characters_ input (obtained by pl/;" m struct:ImGuiIO typeref:typename:ImVector<ImWchar>
  4526. InputScalar third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* data_ptr, const void* /;" f class:ImGui typeref:typename:bool
  4527. InputScalarN third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputScalarN(const char* label, ImGuiDataType data_type, void* v, int components, co/;" f class:ImGui typeref:typename:bool
  4528. InputText third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags, /;" f class:ImGui typeref:typename:bool
  4529. InputText third_party/imgui/misc/cpp/imgui_stdlib.cpp /^bool ImGui::InputText(const char* label, std::string* str, ImGuiInputTextFlags flags, ImGuiInput/;" f class:ImGui typeref:typename:bool
  4530. InputTextCalcTextLenAndLineCount third_party/imgui/imgui_widgets.cpp /^static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end)$/;" f typeref:typename:int file:
  4531. InputTextCalcTextSizeW third_party/imgui/imgui_widgets.cpp /^static ImVec2 InputTextCalcTextSizeW(const ImWchar* text_begin, const ImWchar* text_end, const I/;" f typeref:typename:ImVec2 file:
  4532. InputTextCallback third_party/imgui/misc/cpp/imgui_stdlib.cpp /^static int InputTextCallback(ImGuiInputTextCallbackData* data)$/;" f typeref:typename:int file:
  4533. InputTextCallback_UserData third_party/imgui/misc/cpp/imgui_stdlib.cpp /^struct InputTextCallback_UserData$/;" s file:
  4534. InputTextEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVe/;" f class:ImGui typeref:typename:bool
  4535. InputTextFilterCharacter third_party/imgui/imgui_widgets.cpp /^static bool InputTextFilterCharacter(unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInput/;" f typeref:typename:bool file:
  4536. InputTextMultiline third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size/;" f class:ImGui typeref:typename:bool
  4537. InputTextMultiline third_party/imgui/misc/cpp/imgui_stdlib.cpp /^bool ImGui::InputTextMultiline(const char* label, std::string* str, const ImVec2& size, ImGuiInp/;" f class:ImGui typeref:typename:bool
  4538. InputTextPasswordFont third_party/imgui/imgui_internal.h /^ ImFont InputTextPasswordFont;$/;" m struct:ImGuiContext typeref:typename:ImFont
  4539. InputTextState third_party/imgui/imgui_internal.h /^ ImGuiInputTextState InputTextState;$/;" m struct:ImGuiContext typeref:typename:ImGuiInputTextState
  4540. InputTextWithHint third_party/imgui/imgui_widgets.cpp /^bool ImGui::InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, I/;" f class:ImGui typeref:typename:bool
  4541. InputTextWithHint third_party/imgui/misc/cpp/imgui_stdlib.cpp /^bool ImGui::InputTextWithHint(const char* label, const char* hint, std::string* str, ImGuiInputT/;" f class:ImGui typeref:typename:bool
  4542. Insert third_party/imgui_sdl/imgui_sdl.cpp /^ void Insert(const Key& key, Value value)$/;" f class:__anonaaadc0580110::LRUCache typeref:typename:void file:
  4543. InsertChars third_party/imgui/imgui_widgets.cpp /^void ImGuiInputTextCallbackData::InsertChars(int pos, const char* new_text, const char* new_text/;" f class:ImGuiInputTextCallbackData typeref:typename:void
  4544. Installation third_party/imgui-plot/README.md /^## Installation$/;" s
  4545. Instance third_party/imgui/examples/imgui_impl_vulkan.h /^ VkInstance Instance;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkInstance
  4546. Integration third_party/imgui/docs/README.md /^### Integration$/;" S
  4547. InterpolatedFactorEquation third_party/imgui_sdl/imgui_sdl.cpp /^ InterpolatedFactorEquation(const T& value0, const T& value1, const T& value2, const ImVec2& v0/;" f class:__anonaaadc0580110::InterpolatedFactorEquation file:
  4548. InterpolatedFactorEquation third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename T> class InterpolatedFactorEquation$/;" c namespace:__anonaaadc0580110 file:
  4549. Introduction third_party/imgui/examples/example_apple_metal/README.md /^## Introduction$/;" s
  4550. Inventory libswan/include/swan/traits/InventoryTrait.h /^class Inventory {$/;" c namespace:Swan::InventoryTrait
  4551. InventoryTrait libswan/include/swan/traits/InventoryTrait.h /^namespace InventoryTrait {$/;" n namespace:Swan
  4552. InvisibleButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::InvisibleButton(const char* str_id, const ImVec2& size_arg)$/;" f class:ImGui typeref:typename:bool
  4553. IsActive third_party/imgui/imgui.h /^ bool IsActive() const { return !Filters.empty(); }$/;" f struct:ImGuiTextFilter typeref:typename:bool
  4554. IsAnyItemActive third_party/imgui/imgui.cpp /^bool ImGui::IsAnyItemActive()$/;" f class:ImGui typeref:typename:bool
  4555. IsAnyItemFocused third_party/imgui/imgui.cpp /^bool ImGui::IsAnyItemFocused()$/;" f class:ImGui typeref:typename:bool
  4556. IsAnyItemHovered third_party/imgui/imgui.cpp /^bool ImGui::IsAnyItemHovered()$/;" f class:ImGui typeref:typename:bool
  4557. IsAnyMouseDown third_party/imgui/imgui.cpp /^bool ImGui::IsAnyMouseDown()$/;" f class:ImGui typeref:typename:bool
  4558. IsAnyWindowFocused third_party/imgui/imgui.h /^ static inline bool IsAnyWindowFocused() { return IsWindowFocused(ImGuiFocu/;" f namespace:ImGui typeref:typename:bool
  4559. IsAnyWindowHovered third_party/imgui/imgui.h /^ static inline bool IsAnyWindowHovered() { return IsWindowHovered(ImGuiHove/;" f namespace:ImGui typeref:typename:bool
  4560. IsBeingResized third_party/imgui/imgui_internal.h /^ bool IsBeingResized;$/;" m struct:ImGuiColumns typeref:typename:bool
  4561. IsBuilt third_party/imgui/imgui.h /^ bool IsBuilt() { return Fonts.Size > 0 && (TexPixel/;" f struct:ImFontAtlas typeref:typename:bool
  4562. IsClippedEx third_party/imgui/imgui.cpp /^bool ImGui::IsClippedEx(const ImRect& bb, ImGuiID id, bool clip_even_when_logged)$/;" f class:ImGui typeref:typename:bool
  4563. IsDataType third_party/imgui/imgui.h /^ bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataTy/;" f struct:ImGuiPayload typeref:typename:bool
  4564. IsDelivery third_party/imgui/imgui.h /^ bool IsDelivery() const { return Delivery; }$/;" f struct:ImGuiPayload typeref:typename:bool
  4565. IsDragDropPayloadBeingAccepted third_party/imgui/imgui.cpp /^bool ImGui::IsDragDropPayloadBeingAccepted()$/;" f class:ImGui typeref:typename:bool
  4566. IsFirstFrame third_party/imgui/imgui_internal.h /^ bool IsFirstFrame;$/;" m struct:ImGuiColumns typeref:typename:bool
  4567. IsInverted third_party/imgui/imgui_internal.h /^ bool IsInverted() const { return Min.x > Max.x || Min.y > Max.y; }$/;" f struct:ImRect typeref:typename:bool
  4568. IsItemActivated third_party/imgui/imgui.cpp /^bool ImGui::IsItemActivated()$/;" f class:ImGui typeref:typename:bool
  4569. IsItemActive third_party/imgui/imgui.cpp /^bool ImGui::IsItemActive()$/;" f class:ImGui typeref:typename:bool
  4570. IsItemClicked third_party/imgui/imgui.cpp /^bool ImGui::IsItemClicked(int mouse_button)$/;" f class:ImGui typeref:typename:bool
  4571. IsItemDeactivated third_party/imgui/imgui.cpp /^bool ImGui::IsItemDeactivated()$/;" f class:ImGui typeref:typename:bool
  4572. IsItemDeactivatedAfterChange third_party/imgui/imgui.h /^ static inline bool IsItemDeactivatedAfterChange() { return IsItemDeactivatedAfterEdi/;" f namespace:ImGui typeref:typename:bool
  4573. IsItemDeactivatedAfterEdit third_party/imgui/imgui.cpp /^bool ImGui::IsItemDeactivatedAfterEdit()$/;" f class:ImGui typeref:typename:bool
  4574. IsItemEdited third_party/imgui/imgui.cpp /^bool ImGui::IsItemEdited()$/;" f class:ImGui typeref:typename:bool
  4575. IsItemFocused third_party/imgui/imgui.cpp /^bool ImGui::IsItemFocused()$/;" f class:ImGui typeref:typename:bool
  4576. IsItemHovered third_party/imgui/imgui.cpp /^bool ImGui::IsItemHovered(ImGuiHoveredFlags flags)$/;" f class:ImGui typeref:typename:bool
  4577. IsItemToggledSelection third_party/imgui/imgui.cpp /^bool ImGui::IsItemToggledSelection()$/;" f class:ImGui typeref:typename:bool
  4578. IsItemVisible third_party/imgui/imgui.cpp /^bool ImGui::IsItemVisible()$/;" f class:ImGui typeref:typename:bool
  4579. IsKeyDown third_party/imgui/imgui.cpp /^bool ImGui::IsKeyDown(int user_key_index)$/;" f class:ImGui typeref:typename:bool
  4580. IsKeyPressed third_party/imgui/imgui.cpp /^bool ImGui::IsKeyPressed(int user_key_index, bool repeat)$/;" f class:ImGui typeref:typename:bool
  4581. IsKeyPressedMap third_party/imgui/imgui_internal.h /^ inline bool IsKeyPressedMap(ImGuiKey key, bool repeat = true) { const /;" f namespace:ImGui typeref:typename:bool
  4582. IsKeyReleased third_party/imgui/imgui.cpp /^bool ImGui::IsKeyReleased(int user_key_index)$/;" f class:ImGui typeref:typename:bool
  4583. IsLoaded third_party/imgui/imgui.h /^ bool IsLoaded() const { return ContainerAtlas != N/;" f struct:ImFont typeref:typename:bool
  4584. IsMouseClicked third_party/imgui/imgui.cpp /^bool ImGui::IsMouseClicked(int button, bool repeat)$/;" f class:ImGui typeref:typename:bool
  4585. IsMouseDoubleClicked third_party/imgui/imgui.cpp /^bool ImGui::IsMouseDoubleClicked(int button)$/;" f class:ImGui typeref:typename:bool
  4586. IsMouseDown third_party/imgui/imgui.cpp /^bool ImGui::IsMouseDown(int button)$/;" f class:ImGui typeref:typename:bool
  4587. IsMouseDragPastThreshold third_party/imgui/imgui.cpp /^bool ImGui::IsMouseDragPastThreshold(int button, float lock_threshold)$/;" f class:ImGui typeref:typename:bool
  4588. IsMouseDragging third_party/imgui/imgui.cpp /^bool ImGui::IsMouseDragging(int button, float lock_threshold)$/;" f class:ImGui typeref:typename:bool
  4589. IsMouseHoveringRect third_party/imgui/imgui.cpp /^bool ImGui::IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip)$/;" f class:ImGui typeref:typename:bool
  4590. IsMousePosValid third_party/imgui/imgui.cpp /^bool ImGui::IsMousePosValid(const ImVec2* mouse_pos)$/;" f class:ImGui typeref:typename:bool
  4591. IsMouseReleased third_party/imgui/imgui.cpp /^bool ImGui::IsMouseReleased(int button)$/;" f class:ImGui typeref:typename:bool
  4592. IsNavInputDown third_party/imgui/imgui_internal.h /^ inline bool IsNavInputDown(ImGuiNavInput n) { return/;" f namespace:ImGui typeref:typename:bool
  4593. IsNavInputPressed third_party/imgui/imgui_internal.h /^ inline bool IsNavInputPressed(ImGuiNavInput n, ImGuiInputReadMode mode) { return/;" f namespace:ImGui typeref:typename:bool
  4594. IsNavInputPressedAnyOfTwo third_party/imgui/imgui_internal.h /^ inline bool IsNavInputPressedAnyOfTwo(ImGuiNavInput n1, ImGuiNavInput n2, ImGuiI/;" f namespace:ImGui typeref:typename:bool
  4595. IsOnExtreme third_party/imgui_sdl/imgui_sdl.cpp /^ bool IsOnExtreme(const ImVec2& point) const$/;" f struct:__anonaaadc0580110::Rect typeref:typename:bool file:
  4596. IsPacked third_party/imgui/imgui.h /^ bool IsPacked() const { return X != 0xFFFF; }$/;" f struct:ImFontAtlasCustomRect typeref:typename:bool
  4597. IsPopupOpen third_party/imgui/imgui.cpp /^bool ImGui::IsPopupOpen(ImGuiID id)$/;" f class:ImGui typeref:typename:bool
  4598. IsPopupOpen third_party/imgui/imgui.cpp /^bool ImGui::IsPopupOpen(const char* str_id)$/;" f class:ImGui typeref:typename:bool
  4599. IsPreview third_party/imgui/imgui.h /^ bool IsPreview() const { return Preview; }$/;" f struct:ImGuiPayload typeref:typename:bool
  4600. IsRectVisible third_party/imgui/imgui.cpp /^bool ImGui::IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max)$/;" f class:ImGui typeref:typename:bool
  4601. IsRectVisible third_party/imgui/imgui.cpp /^bool ImGui::IsRectVisible(const ImVec2& size)$/;" f class:ImGui typeref:typename:bool
  4602. IsRootWindowFocused third_party/imgui/imgui.h /^ static inline bool IsRootWindowFocused() { return IsWindowFocused(ImGuiFocu/;" f namespace:ImGui typeref:typename:bool
  4603. IsRootWindowOrAnyChildFocused third_party/imgui/imgui.h /^ static inline bool IsRootWindowOrAnyChildFocused() { return IsWindowFocused(ImGuiFocu/;" f namespace:ImGui typeref:typename:bool
  4604. IsRootWindowOrAnyChildHovered third_party/imgui/imgui.h /^ static inline bool IsRootWindowOrAnyChildHovered() { return IsWindowHovered(ImGuiHove/;" f namespace:ImGui typeref:typename:bool
  4605. IsWindowActiveAndVisible third_party/imgui/imgui.cpp /^static bool IsWindowActiveAndVisible(ImGuiWindow* window)$/;" f typeref:typename:bool file:
  4606. IsWindowAppearing third_party/imgui/imgui.cpp /^bool ImGui::IsWindowAppearing()$/;" f class:ImGui typeref:typename:bool
  4607. IsWindowChildOf third_party/imgui/imgui.cpp /^bool ImGui::IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent)$/;" f class:ImGui typeref:typename:bool
  4608. IsWindowCollapsed third_party/imgui/imgui.cpp /^bool ImGui::IsWindowCollapsed()$/;" f class:ImGui typeref:typename:bool
  4609. IsWindowContentHoverable third_party/imgui/imgui.cpp /^static inline bool IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags)$/;" f typeref:typename:bool file:
  4610. IsWindowFocused third_party/imgui/imgui.cpp /^bool ImGui::IsWindowFocused(ImGuiFocusedFlags flags)$/;" f class:ImGui typeref:typename:bool
  4611. IsWindowHovered third_party/imgui/imgui.cpp /^bool ImGui::IsWindowHovered(ImGuiHoveredFlags flags)$/;" f class:ImGui typeref:typename:bool
  4612. IsWindowNavFocusable third_party/imgui/imgui.cpp /^bool ImGui::IsWindowNavFocusable(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:bool
  4613. Item libswan/include/swan/Item.h /^ Item(const Builder &builder):$/;" f class:Swan::Item
  4614. Item libswan/include/swan/Item.h /^ Item(const ResourceManager &resources, const Builder &builder):$/;" f class:Swan::Item
  4615. Item libswan/include/swan/Item.h /^class Item {$/;" c namespace:Swan
  4616. ItemAdd third_party/imgui/imgui.cpp /^bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg)$/;" f class:ImGui typeref:typename:bool
  4617. ItemFlags third_party/imgui/imgui_internal.h /^ ImGuiItemFlags ItemFlags; \/\/ == ItemFlagsStack.back() [empty == ImGu/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiItemFlags
  4618. ItemFlagsStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiItemFlags>ItemFlagsStack;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVector<ImGuiItemFlags>
  4619. ItemGetter third_party/imgui/imgui_demo.cpp /^ struct FuncHolder { static bool ItemGetter(void* data, int idx, const char** out_str) { /;" f struct:ShowDemoWindowWidgets::FuncHolder typeref:typename:bool file:
  4620. ItemHoverable third_party/imgui/imgui.cpp /^bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id)$/;" f class:ImGui typeref:typename:bool
  4621. ItemInnerSpacing third_party/imgui/imgui.h /^ ImVec2 ItemInnerSpacing; \/\/ Horizontal and vertical spacing between within /;" m struct:ImGuiStyle typeref:typename:ImVec2
  4622. ItemSize third_party/imgui/imgui.cpp /^void ImGui::ItemSize(const ImRect& bb, float text_offset_y)$/;" f class:ImGui typeref:typename:void
  4623. ItemSize third_party/imgui/imgui.cpp /^void ImGui::ItemSize(const ImVec2& size, float text_offset_y)$/;" f class:ImGui typeref:typename:void
  4624. ItemSpacing third_party/imgui/imgui.h /^ ImVec2 ItemSpacing; \/\/ Horizontal and vertical spacing between widgets/;" m struct:ImGuiStyle typeref:typename:ImVec2
  4625. ItemStack libswan/include/swan/ItemStack.h /^ ItemStack(): item_(nullptr), count_(0) {}$/;" f class:Swan::ItemStack
  4626. ItemStack libswan/include/swan/ItemStack.h /^ ItemStack(Item *item, int count): item_(item), count_(count) {$/;" f class:Swan::ItemStack
  4627. ItemStack libswan/include/swan/ItemStack.h /^class ItemStack {$/;" c namespace:Swan
  4628. ItemWidth third_party/imgui/imgui_internal.h /^ float ItemWidth; \/\/ == ItemWidthStack.back(). 0.0: default,/;" m struct:ImGuiWindowTempData typeref:typename:float
  4629. ItemWidthDefault third_party/imgui/imgui_internal.h /^ float ItemWidthDefault;$/;" m struct:ImGuiWindow typeref:typename:float
  4630. ItemWidthStack third_party/imgui/imgui_internal.h /^ ImVector<float> ItemWidthStack;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVector<float>
  4631. Items third_party/imgui/imgui_demo.cpp /^ ImVector<char*> Items;$/;" m struct:ExampleAppConsole typeref:typename:ImVector<char * > file:
  4632. ItemsCount third_party/imgui/imgui.h /^ int ItemsCount, StepNo, DisplayStart, DisplayEnd;$/;" m struct:ImGuiListClipper typeref:typename:int
  4633. ItemsHeight third_party/imgui/imgui.h /^ float ItemsHeight;$/;" m struct:ImGuiListClipper typeref:typename:float
  4634. Items_ArrayGetter third_party/imgui/imgui_widgets.cpp /^static bool Items_ArrayGetter(void* data, int idx, const char** out_text)$/;" f typeref:typename:bool file:
  4635. Items_SingleStringGetter third_party/imgui/imgui_widgets.cpp /^static bool Items_SingleStringGetter(void* data, int idx, const char** out_text)$/;" f typeref:typename:bool file:
  4636. JUMP_VEL core.mod/src/entities/EntPlayer.h /^ static constexpr float JUMP_VEL = 11;$/;" m class:EntPlayer typeref:typename:float
  4637. KeepAliveID third_party/imgui/imgui.cpp /^void ImGui::KeepAliveID(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  4638. KeyAlt third_party/imgui/imgui.h /^ bool KeyAlt; \/\/ Keyboard modifier pressed: Alt$/;" m struct:ImGuiIO typeref:typename:bool
  4639. KeyCtrl third_party/imgui/imgui.h /^ bool KeyCtrl; \/\/ Keyboard modifier pressed: Control$/;" m struct:ImGuiIO typeref:typename:bool
  4640. KeyMap third_party/imgui/imgui.h /^ int KeyMap[ImGuiKey_COUNT]; \/\/ <unset> \/\/ Map of indices into t/;" m struct:ImGuiIO typeref:typename:int[]
  4641. KeyRepeatDelay third_party/imgui/imgui.h /^ float KeyRepeatDelay; \/\/ = 0.250f \/\/ When holding a key\/b/;" m struct:ImGuiIO typeref:typename:float
  4642. KeyRepeatRate third_party/imgui/imgui.h /^ float KeyRepeatRate; \/\/ = 0.050f \/\/ When holding a key\/b/;" m struct:ImGuiIO typeref:typename:float
  4643. KeyShift third_party/imgui/imgui.h /^ bool KeyShift; \/\/ Keyboard modifier pressed: Shift$/;" m struct:ImGuiIO typeref:typename:bool
  4644. KeySuper third_party/imgui/imgui.h /^ bool KeySuper; \/\/ Keyboard modifier pressed: Cmd\/Super\/Wind/;" m struct:ImGuiIO typeref:typename:bool
  4645. KeysDown third_party/imgui/imgui.h /^ bool KeysDown[512]; \/\/ Keyboard keys that are pressed (ideally lef/;" m struct:ImGuiIO typeref:typename:bool[512]
  4646. KeysDownDuration third_party/imgui/imgui.h /^ float KeysDownDuration[512]; \/\/ Duration the keyboard key has been down (0./;" m struct:ImGuiIO typeref:typename:float[512]
  4647. KeysDownDurationPrev third_party/imgui/imgui.h /^ float KeysDownDurationPrev[512]; \/\/ Previous duration the key has been down$/;" m struct:ImGuiIO typeref:typename:float[512]
  4648. Known issues third_party/imgui/misc/freetype/README.md /^### Known issues$/;" S
  4649. LDFLAGS third_party/imgui/examples/example_emscripten/Makefile /^LDFLAGS = --shell-file shell_minimal.html$/;" m
  4650. LIBRARIES third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^set(LIBRARIES "glfw;${VULKAN_LIBRARY}")$/;" v
  4651. LIBS third_party/imgui/examples/example_emscripten/Makefile /^LIBS = $(EMS)$/;" m
  4652. LIBS third_party/imgui/examples/example_glfw_metal/Makefile /^LIBS = -framework Metal -framework MetalKit -framework Cocoa -framework IOKit -framework CoreVid/;" m
  4653. LIBS third_party/imgui/examples/example_glfw_opengl2/Makefile /^LIBS =$/;" m
  4654. LIBS third_party/imgui/examples/example_glfw_opengl3/Makefile /^LIBS =$/;" m
  4655. LIBS third_party/imgui/examples/example_glut_opengl2/Makefile /^LIBS =$/;" m
  4656. LIBS third_party/imgui/examples/example_null/Makefile /^LIBS =$/;" m
  4657. LIBS third_party/imgui/examples/example_sdl_directx11/build_win32.bat /^set LIBS=\/libpath:%SDL2_DIR%\\lib\\x86 SDL2.lib SDL2main.lib \/LIBPATH:"%DXSDK_DIR%\/Lib\/x86" /;" v
  4658. LIBS third_party/imgui/examples/example_sdl_opengl2/Makefile /^LIBS =$/;" m
  4659. LIBS third_party/imgui/examples/example_sdl_opengl2/build_win32.bat /^set LIBS=\/libpath:%SDL2_DIR%\\lib\\x86 SDL2.lib SDL2main.lib opengl32.lib$/;" v
  4660. LIBS third_party/imgui/examples/example_sdl_opengl3/Makefile /^LIBS =$/;" m
  4661. LIBS third_party/imgui/examples/example_sdl_opengl3/build_win32.bat /^set LIBS=\/libpath:%SDL2_DIR%\\lib\\x86 SDL2.lib SDL2main.lib opengl32.lib$/;" v
  4662. LRUCache third_party/imgui_sdl/imgui_sdl.cpp /^ template <typename Key, typename Value, std::size_t Size> class LRUCache$/;" c namespace:__anonaaadc0580110 file:
  4663. LSMinimumSystemVersion third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>LSMinimumSystemVersion<\/key>$/;" k
  4664. LSRequiresIPhoneOS third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>LSRequiresIPhoneOS<\/key>$/;" k
  4665. LabelText third_party/imgui/imgui_widgets.cpp /^void ImGui::LabelText(const char* label, const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  4666. LabelTextV third_party/imgui/imgui_widgets.cpp /^void ImGui::LabelTextV(const char* label, const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  4667. LastActiveId third_party/imgui/imgui_internal.h /^ ImGuiID LastActiveId; \/\/ Store the last non-zero Act/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4668. LastActiveIdTimer third_party/imgui/imgui_internal.h /^ float LastActiveIdTimer; \/\/ Store the last non-zero Act/;" m struct:ImGuiContext typeref:typename:float
  4669. LastFrameActive third_party/imgui/imgui_internal.h /^ int LastFrameActive; \/\/ Last frame number the windo/;" m struct:ImGuiWindow typeref:typename:int
  4670. LastFrameSelected third_party/imgui/imgui_internal.h /^ int LastFrameSelected; \/\/ This allows us to infer an ordered list of /;" m struct:ImGuiTabItem typeref:typename:int
  4671. LastFrameVisible third_party/imgui/imgui_internal.h /^ int LastFrameVisible;$/;" m struct:ImGuiTabItem typeref:typename:int
  4672. LastItemDisplayRect third_party/imgui/imgui_internal.h /^ ImRect LastItemDisplayRect; \/\/ End-user display rect for last item (on/;" m struct:ImGuiWindowTempData typeref:typename:ImRect
  4673. LastItemDisplayRect third_party/imgui/imgui_internal.h /^ ImRect LastItemDisplayRect;$/;" m struct:ImGuiItemHoveredDataBackup typeref:typename:ImRect
  4674. LastItemId third_party/imgui/imgui_internal.h /^ ImGuiID LastItemId; \/\/ ID for last item$/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiID
  4675. LastItemId third_party/imgui/imgui_internal.h /^ ImGuiID LastItemId;$/;" m struct:ImGuiItemHoveredDataBackup typeref:typename:ImGuiID
  4676. LastItemRect third_party/imgui/imgui_internal.h /^ ImRect LastItemRect; \/\/ Interaction rect for last item$/;" m struct:ImGuiWindowTempData typeref:typename:ImRect
  4677. LastItemRect third_party/imgui/imgui_internal.h /^ ImRect LastItemRect;$/;" m struct:ImGuiItemHoveredDataBackup typeref:typename:ImRect
  4678. LastItemStatusFlags third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags LastItemStatusFlags; \/\/ Status flags for last item (see ImGuiIt/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiItemStatusFlags
  4679. LastItemStatusFlags third_party/imgui/imgui_internal.h /^ ImGuiItemStatusFlags LastItemStatusFlags;$/;" m struct:ImGuiItemHoveredDataBackup typeref:typename:ImGuiItemStatusFlags
  4680. LastTabContentHeight third_party/imgui/imgui_internal.h /^ float LastTabContentHeight; \/\/ Record the height of contents submitted bel/;" m struct:ImGuiTabBar typeref:typename:float
  4681. LastTabItemIdx third_party/imgui/imgui_internal.h /^ short LastTabItemIdx; \/\/ For BeginTabItem()\/EndTabItem()$/;" m struct:ImGuiTabBar typeref:typename:short
  4682. LastTimeActive third_party/imgui/imgui_internal.h /^ float LastTimeActive; \/\/ Last timestamp the window w/;" m struct:ImGuiWindow typeref:typename:float
  4683. LastValidMousePos third_party/imgui/imgui_internal.h /^ ImVec2 LastValidMousePos;$/;" m struct:ImGuiContext typeref:typename:ImVec2
  4684. Layers third_party/imgui/imgui_internal.h /^ ImVector<ImDrawList*> Layers[2]; \/\/ Global layers for: regular, tooltip$/;" m struct:ImDrawDataBuilder typeref:typename:ImVector<ImDrawList * >[2]
  4685. LayoutType third_party/imgui/imgui_internal.h /^ ImGuiLayoutType LayoutType;$/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiLayoutType
  4686. Lerp third_party/PerlinNoise/PerlinNoise.hpp /^ static double Lerp(double t, double a, double b) noexcept$/;" f class:siv::PerlinNoise typeref:typename:double
  4687. License third_party/PerlinNoise/README.md /^## License$/;" s
  4688. License third_party/imgui/docs/README.md /^License$/;" s
  4689. LightHinting third_party/imgui/misc/freetype/imgui_freetype.h /^ LightHinting = 1 << 3, \/\/ A lighter hinting algorithm for gray-level modes. Many /;" e enum:ImGuiFreeType::RasterizerFlags
  4690. LineGap third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float LineGap; \/\/ The spacing in pixels between one row's descent and/;" m struct:__anond3bafd850110::FontInfo typeref:typename:float file:
  4691. LineMaxY third_party/imgui/imgui_internal.h /^ float LineMinY, LineMaxY;$/;" m struct:ImGuiColumns typeref:typename:float
  4692. LineMinY third_party/imgui/imgui_internal.h /^ float LineMinY, LineMaxY;$/;" m struct:ImGuiColumns typeref:typename:float
  4693. LineOffsets third_party/imgui/imgui_demo.cpp /^ ImVector<int> LineOffsets; \/\/ Index to lines offset. We maintain this with Ad/;" m struct:ExampleAppLog typeref:typename:ImVector<int> file:
  4694. LineSpacing third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float LineSpacing; \/\/ The baseline-to-baseline distance. Note that it usu/;" m struct:__anond3bafd850110::FontInfo typeref:typename:float file:
  4695. Linear third_party/imgui-plot/include/imgui_plot.h /^ Linear,$/;" e enum:ImGui::PlotConfig::Scale::Type
  4696. Links third_party/imgui_sdl/README.md /^## Links$/;" s
  4697. ListBox third_party/imgui/imgui_widgets.cpp /^bool ImGui::ListBox(const char* label, int* current_item, bool (*items_getter)(void*, int, const/;" f class:ImGui typeref:typename:bool
  4698. ListBox third_party/imgui/imgui_widgets.cpp /^bool ImGui::ListBox(const char* label, int* current_item, const char* const items[], int items_c/;" f class:ImGui typeref:typename:bool
  4699. ListBoxFooter third_party/imgui/imgui_widgets.cpp /^void ImGui::ListBoxFooter()$/;" f class:ImGui typeref:typename:void
  4700. ListBoxHeader third_party/imgui/imgui_widgets.cpp /^bool ImGui::ListBoxHeader(const char* label, const ImVec2& size_arg)$/;" f class:ImGui typeref:typename:bool
  4701. ListBoxHeader third_party/imgui/imgui_widgets.cpp /^bool ImGui::ListBoxHeader(const char* label, int items_count, int height_in_items)$/;" f class:ImGui typeref:typename:bool
  4702. LoadFlags third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FT_Int32 LoadFlags;$/;" m struct:__anond3bafd850110::FreeTypeFont typeref:typename:FT_Int32 file:
  4703. LoadGlyph third_party/imgui/misc/freetype/imgui_freetype.cpp /^ const FT_Glyph_Metrics* FreeTypeFont::LoadGlyph(uint32_t codepoint)$/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:const FT_Glyph_Metrics *
  4704. LoadIniSettingsFromDisk third_party/imgui/imgui.cpp /^void ImGui::LoadIniSettingsFromDisk(const char* ini_filename)$/;" f class:ImGui typeref:typename:void
  4705. LoadIniSettingsFromMemory third_party/imgui/imgui.cpp /^void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size)$/;" f class:ImGui typeref:typename:void
  4706. Locked third_party/imgui/imgui.h /^ bool Locked; \/\/ Marked as Locked by ImGui::NewFrame() s/;" m struct:ImFontAtlas typeref:typename:bool
  4707. Log10 third_party/imgui-plot/include/imgui_plot.h /^ Log10,$/;" e enum:ImGui::PlotConfig::Scale::Type
  4708. LogBegin third_party/imgui/imgui.cpp /^void ImGui::LogBegin(ImGuiLogType type, int auto_open_depth)$/;" f class:ImGui typeref:typename:void
  4709. LogBuffer third_party/imgui/imgui_internal.h /^ ImGuiTextBuffer LogBuffer; \/\/ Accumulation buffer when lo/;" m struct:ImGuiContext typeref:typename:ImGuiTextBuffer
  4710. LogButtons third_party/imgui/imgui.cpp /^void ImGui::LogButtons()$/;" f class:ImGui typeref:typename:void
  4711. LogDepthRef third_party/imgui/imgui_internal.h /^ int LogDepthRef;$/;" m struct:ImGuiContext typeref:typename:int
  4712. LogDepthToExpand third_party/imgui/imgui_internal.h /^ int LogDepthToExpand;$/;" m struct:ImGuiContext typeref:typename:int
  4713. LogDepthToExpandDefault third_party/imgui/imgui_internal.h /^ int LogDepthToExpandDefault; \/\/ Default\/stored value for L/;" m struct:ImGuiContext typeref:typename:int
  4714. LogEnabled third_party/imgui/imgui_internal.h /^ bool LogEnabled;$/;" m struct:ImGuiContext typeref:typename:bool
  4715. LogFile third_party/imgui/imgui_internal.h /^ FILE* LogFile; \/\/ If != NULL log to stdout\/ /;" m struct:ImGuiContext typeref:typename:FILE *
  4716. LogFilename third_party/imgui/imgui.h /^ const char* LogFilename; \/\/ = "imgui_log.txt"\/\/ Path to .log file (de/;" m struct:ImGuiIO typeref:typename:const char *
  4717. LogFinish third_party/imgui/imgui.cpp /^void ImGui::LogFinish()$/;" f class:ImGui typeref:typename:void
  4718. LogLineFirstItem third_party/imgui/imgui_internal.h /^ bool LogLineFirstItem;$/;" m struct:ImGuiContext typeref:typename:bool
  4719. LogLinePosY third_party/imgui/imgui_internal.h /^ float LogLinePosY;$/;" m struct:ImGuiContext typeref:typename:float
  4720. LogRenderedText third_party/imgui/imgui.cpp /^void ImGui::LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end)$/;" f class:ImGui typeref:typename:void
  4721. LogText third_party/imgui/imgui.cpp /^void ImGui::LogText(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  4722. LogToBuffer third_party/imgui/imgui.cpp /^void ImGui::LogToBuffer(int auto_open_depth)$/;" f class:ImGui typeref:typename:void
  4723. LogToClipboard third_party/imgui/imgui.cpp /^void ImGui::LogToClipboard(int auto_open_depth)$/;" f class:ImGui typeref:typename:void
  4724. LogToFile third_party/imgui/imgui.cpp /^void ImGui::LogToFile(int auto_open_depth, const char* filename)$/;" f class:ImGui typeref:typename:void
  4725. LogToTTY third_party/imgui/imgui.cpp /^void ImGui::LogToTTY(int auto_open_depth)$/;" f class:ImGui typeref:typename:void
  4726. LogType third_party/imgui/imgui_internal.h /^ ImGuiLogType LogType;$/;" m struct:ImGuiContext typeref:typename:ImGuiLogType
  4727. Logger libswan/include/swan/log.h /^ Logger(std::ostream &os, std::string name, bool use_color = false, std::string color = ""):$/;" f class:Swan::Logger
  4728. Logger libswan/include/swan/log.h /^class Logger {$/;" c namespace:Swan
  4729. LowerBound third_party/imgui/imgui.cpp /^static ImGuiStorage::ImGuiStoragePair* LowerBound(ImVector<ImGuiStorage::ImGuiStoragePair>& data/;" f typeref:typename:ImGuiStorage::ImGuiStoragePair * file:
  4730. MAP_ANALOG third_party/imgui/examples/imgui_impl_glfw.cpp /^ #define MAP_ANALOG(/;" d file:
  4731. MAP_ANALOG third_party/imgui/examples/imgui_impl_sdl.cpp /^ #define MAP_ANALOG(/;" d file:
  4732. MAP_ANALOG third_party/imgui/examples/imgui_impl_win32.cpp /^ #define MAP_ANALOG(/;" d file:
  4733. MAP_BUTTON third_party/imgui/examples/imgui_impl_glfw.cpp /^ #define MAP_BUTTON(/;" d file:
  4734. MAP_BUTTON third_party/imgui/examples/imgui_impl_sdl.cpp /^ #define MAP_BUTTON(/;" d file:
  4735. MAP_BUTTON third_party/imgui/examples/imgui_impl_win32.cpp /^ #define MAP_BUTTON(/;" d file:
  4736. MASS core.mod/src/entities/EntItemStack.h /^ static constexpr float MASS = 80;$/;" m class:EntItemStack typeref:typename:float
  4737. MASS core.mod/src/entities/EntPlayer.h /^ static constexpr float MASS = 80;$/;" m class:EntPlayer typeref:typename:float
  4738. MOVE_FORCE core.mod/src/entities/EntPlayer.h /^ static constexpr float MOVE_FORCE = 34 * MASS;$/;" m class:EntPlayer typeref:typename:float
  4739. MSAASamples third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSampleCountFlagBits MSAASamples; \/\/ >= VK_SAMPLE_COUNT_1_BIT$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkSampleCountFlagBits
  4740. MTLDevice third_party/imgui/examples/imgui_impl_metal.h /^@protocol MTLDevice, MTLCommandBuffer, MTLRenderCommandEncoder;$/;" P
  4741. MakeTexture third_party/imgui_sdl/imgui_sdl.cpp /^ SDL_Texture* MakeTexture(int width, int height)$/;" f struct:__anonaaadc0580110::Device typeref:typename:SDL_Texture * file:
  4742. MallocWrapper third_party/imgui/imgui.cpp /^static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(/;" f typeref:typename:void * file:
  4743. MallocWrapper third_party/imgui/imgui.cpp /^static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return mal/;" f typeref:typename:void * file:
  4744. Map third_party/imgui/imgui_internal.h /^ ImGuiStorage Map; \/\/ ID->Index$/;" m struct:ImPool typeref:typename:ImGuiStorage
  4745. MarkIniSettingsDirty third_party/imgui/imgui.cpp /^void ImGui::MarkIniSettingsDirty()$/;" f class:ImGui typeref:typename:void
  4746. MarkIniSettingsDirty third_party/imgui/imgui.cpp /^void ImGui::MarkIniSettingsDirty(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  4747. MarkItemEdited third_party/imgui/imgui.cpp /^void ImGui::MarkItemEdited(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  4748. Max third_party/imgui/imgui_internal.h /^ ImVec2 Max; \/\/ Lower-right$/;" m struct:ImRect typeref:typename:ImVec2
  4749. MaxAdvanceWidth third_party/imgui/misc/freetype/imgui_freetype.cpp /^ float MaxAdvanceWidth; \/\/ This field gives the maximum horizontal cursor adva/;" m struct:__anond3bafd850110::FontInfo typeref:typename:float file:
  4750. MaxU third_party/imgui_sdl/imgui_sdl.cpp /^ float MinU, MinV, MaxU, MaxV;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4751. MaxV third_party/imgui_sdl/imgui_sdl.cpp /^ float MinU, MinV, MaxU, MaxV;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4752. MaxX third_party/imgui_sdl/imgui_sdl.cpp /^ float MinX, MinY, MaxX, MaxY;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4753. MaxX third_party/imgui_sdl/imgui_sdl.cpp /^ int MinX, MaxX, MinY, MaxY;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  4754. MaxY third_party/imgui_sdl/imgui_sdl.cpp /^ float MinX, MinY, MaxX, MaxY;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4755. MaxY third_party/imgui_sdl/imgui_sdl.cpp /^ int MinX, MaxX, MinY, MaxY;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  4756. MemAlloc third_party/imgui/imgui.cpp /^void* ImGui::MemAlloc(size_t size)$/;" f class:ImGui typeref:typename:void *
  4757. MemFree third_party/imgui/imgui.cpp /^void ImGui::MemFree(void* ptr)$/;" f class:ImGui typeref:typename:void
  4758. MemoryCompacted third_party/imgui/imgui_internal.h /^ bool MemoryCompacted;$/;" m struct:ImGuiWindow typeref:typename:bool
  4759. MemoryDrawListIdxCapacity third_party/imgui/imgui_internal.h /^ int MemoryDrawListIdxCapacity;$/;" m struct:ImGuiWindow typeref:typename:int
  4760. MemoryDrawListVtxCapacity third_party/imgui/imgui_internal.h /^ int MemoryDrawListVtxCapacity;$/;" m struct:ImGuiWindow typeref:typename:int
  4761. MenuBarAppending third_party/imgui/imgui_internal.h /^ bool MenuBarAppending; \/\/ FIXME: Remove this$/;" m struct:ImGuiWindowTempData typeref:typename:bool
  4762. MenuBarHeight third_party/imgui/imgui_internal.h /^ float MenuBarHeight() const { ImGuiContext& g = *GImGui; return (Flags & ImGuiWi/;" f struct:ImGuiWindow typeref:typename:float
  4763. MenuBarOffset third_party/imgui/imgui_internal.h /^ ImVec2 MenuBarOffset; \/\/ MenuBarOffset.x is sort of equivalent o/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  4764. MenuBarOffsetMinVal third_party/imgui/imgui_internal.h /^ ImVec2 MenuBarOffsetMinVal; \/\/ *Always on* This is not exposed pub/;" m struct:ImGuiNextWindowData typeref:typename:ImVec2
  4765. MenuBarRect third_party/imgui/imgui_internal.h /^ ImRect MenuBarRect() const { float y1 = Pos.y + TitleBarHeight(); return ImRect/;" f struct:ImGuiWindow typeref:typename:ImRect
  4766. MenuColumns third_party/imgui/imgui_internal.h /^ ImGuiMenuColumns MenuColumns; \/\/ Simplified columns storage /;" m struct:ImGuiWindow typeref:typename:ImGuiMenuColumns
  4767. MenuItem third_party/imgui/imgui_widgets.cpp /^bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled)$/;" f class:ImGui typeref:typename:bool
  4768. MenuItem third_party/imgui/imgui_widgets.cpp /^bool ImGui::MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled)$/;" f class:ImGui typeref:typename:bool
  4769. Merge third_party/imgui/imgui_draw.cpp /^void ImDrawListSplitter::Merge(ImDrawList* draw_list)$/;" f class:ImDrawListSplitter typeref:typename:void
  4770. MergeMode third_party/imgui/imgui.h /^ bool MergeMode; \/\/ false \/\/ Merge into previous ImFont, so yo/;" m struct:ImFontConfig typeref:typename:bool
  4771. MetalBuffer third_party/imgui/examples/imgui_impl_metal.mm /^@implementation MetalBuffer$/;" I
  4772. MetalBuffer third_party/imgui/examples/imgui_impl_metal.mm /^@interface MetalBuffer : NSObject$/;" i
  4773. MetalContext third_party/imgui/examples/imgui_impl_metal.mm /^@implementation MetalContext$/;" I
  4774. MetalContext third_party/imgui/examples/imgui_impl_metal.mm /^@interface MetalContext : NSObject$/;" i
  4775. MetricsActiveAllocations third_party/imgui/imgui.h /^ int MetricsActiveAllocations; \/\/ Number of active allocations, updated by Me/;" m struct:ImGuiIO typeref:typename:int
  4776. MetricsActiveWindows third_party/imgui/imgui.h /^ int MetricsActiveWindows; \/\/ Number of active windows$/;" m struct:ImGuiIO typeref:typename:int
  4777. MetricsRenderIndices third_party/imgui/imgui.h /^ int MetricsRenderIndices; \/\/ Indices output during last call to Render()/;" m struct:ImGuiIO typeref:typename:int
  4778. MetricsRenderVertices third_party/imgui/imgui.h /^ int MetricsRenderVertices; \/\/ Vertices output during last call to Render(/;" m struct:ImGuiIO typeref:typename:int
  4779. MetricsRenderWindows third_party/imgui/imgui.h /^ int MetricsRenderWindows; \/\/ Number of visible windows$/;" m struct:ImGuiIO typeref:typename:int
  4780. MetricsTotalSurface third_party/imgui/imgui.h /^ int MetricsTotalSurface;\/\/ 4 \/\/ out \/\/ \/\/ Tot/;" m struct:ImFont typeref:typename:int
  4781. Min third_party/imgui/imgui_internal.h /^ ImVec2 Min; \/\/ Upper-left$/;" m struct:ImRect typeref:typename:ImVec2
  4782. MinImageCount third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t MinImageCount; \/\/ >= 2$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:uint32_t
  4783. MinU third_party/imgui_sdl/imgui_sdl.cpp /^ float MinU, MinV, MaxU, MaxV;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4784. MinV third_party/imgui_sdl/imgui_sdl.cpp /^ float MinU, MinV, MaxU, MaxV;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4785. MinX third_party/imgui_sdl/imgui_sdl.cpp /^ float MinX, MinY, MaxX, MaxY;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4786. MinX third_party/imgui_sdl/imgui_sdl.cpp /^ int MinX, MaxX, MinY, MaxY;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  4787. MinY third_party/imgui_sdl/imgui_sdl.cpp /^ float MinX, MinY, MaxX, MaxY;$/;" m struct:__anonaaadc0580110::Rect typeref:typename:float file:
  4788. MinY third_party/imgui_sdl/imgui_sdl.cpp /^ int MinX, MaxX, MinY, MaxY;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  4789. MockItem libswan/test/ItemStack.t.cc /^ MockItem(const Builder &builder): Item(builder) {}$/;" f class:MockItem file:
  4790. MockItem libswan/test/ItemStack.t.cc /^class MockItem: public Swan::Item {$/;" c file:
  4791. Mod libswan/include/swan/Mod.h /^ Mod(const std::string &path, OS::Dynlib &&dynlib):$/;" f class:Swan::Mod
  4792. Mod libswan/include/swan/Mod.h /^class Mod {$/;" c namespace:Swan
  4793. Mode third_party/imgui/imgui_demo.cpp /^ enum Mode$/;" g function:ShowDemoWindowWidgets file:
  4794. Mode_Copy third_party/imgui/imgui_demo.cpp /^ Mode_Copy,$/;" e enum:ShowDemoWindowWidgets::Mode file:
  4795. Mode_Move third_party/imgui/imgui_demo.cpp /^ Mode_Move,$/;" e enum:ShowDemoWindowWidgets::Mode file:
  4796. Mode_Swap third_party/imgui/imgui_demo.cpp /^ Mode_Swap$/;" e enum:ShowDemoWindowWidgets::Mode file:
  4797. MonoHinting third_party/imgui/misc/freetype/imgui_freetype.h /^ MonoHinting = 1 << 4, \/\/ Strong hinting algorithm that should only be used for m/;" e enum:ImGuiFreeType::RasterizerFlags
  4798. Monochrome third_party/imgui/misc/freetype/imgui_freetype.h /^ Monochrome = 1 << 7 \/\/ Disable anti-aliasing. Combine this with MonoHinting fo/;" e enum:ImGuiFreeType::RasterizerFlags
  4799. MouseClicked third_party/imgui/imgui.h /^ bool MouseClicked[5]; \/\/ Mouse button went from !Down to Down$/;" m struct:ImGuiIO typeref:typename:bool[5]
  4800. MouseClickedPos third_party/imgui/imgui.h /^ ImVec2 MouseClickedPos[5]; \/\/ Position at time of clicking$/;" m struct:ImGuiIO typeref:typename:ImVec2[5]
  4801. MouseClickedTime third_party/imgui/imgui.h /^ double MouseClickedTime[5]; \/\/ Time of last click (used to figure out doub/;" m struct:ImGuiIO typeref:typename:double[5]
  4802. MouseCursor third_party/imgui/imgui_internal.h /^ ImGuiMouseCursor MouseCursor;$/;" m struct:ImGuiContext typeref:typename:ImGuiMouseCursor
  4803. MouseCursorScale third_party/imgui/imgui.h /^ float MouseCursorScale; \/\/ Scale software rendered mouse cursor (when io.M/;" m struct:ImGuiStyle typeref:typename:float
  4804. MouseDelta third_party/imgui/imgui.h /^ ImVec2 MouseDelta; \/\/ Mouse delta. Note that this is zero if eith/;" m struct:ImGuiIO typeref:typename:ImVec2
  4805. MouseDoubleClickMaxDist third_party/imgui/imgui.h /^ float MouseDoubleClickMaxDist; \/\/ = 6.0f \/\/ Distance threshold to/;" m struct:ImGuiIO typeref:typename:float
  4806. MouseDoubleClickTime third_party/imgui/imgui.h /^ float MouseDoubleClickTime; \/\/ = 0.30f \/\/ Time for a double-cli/;" m struct:ImGuiIO typeref:typename:float
  4807. MouseDoubleClicked third_party/imgui/imgui.h /^ bool MouseDoubleClicked[5]; \/\/ Has mouse button been double-clicked?$/;" m struct:ImGuiIO typeref:typename:bool[5]
  4808. MouseDown third_party/imgui/imgui.h /^ bool MouseDown[5]; \/\/ Mouse buttons: 0=left, 1=right, 2=middle + /;" m struct:ImGuiIO typeref:typename:bool[5]
  4809. MouseDownDuration third_party/imgui/imgui.h /^ float MouseDownDuration[5]; \/\/ Duration the mouse button has been down (0./;" m struct:ImGuiIO typeref:typename:float[5]
  4810. MouseDownDurationPrev third_party/imgui/imgui.h /^ float MouseDownDurationPrev[5]; \/\/ Previous time the mouse button has been dow/;" m struct:ImGuiIO typeref:typename:float[5]
  4811. MouseDownOwned third_party/imgui/imgui.h /^ bool MouseDownOwned[5]; \/\/ Track if button was clicked inside a dear i/;" m struct:ImGuiIO typeref:typename:bool[5]
  4812. MouseDownWasDoubleClick third_party/imgui/imgui.h /^ bool MouseDownWasDoubleClick[5]; \/\/ Track if button down was a double-click$/;" m struct:ImGuiIO typeref:typename:bool[5]
  4813. MouseDragMaxDistanceAbs third_party/imgui/imgui.h /^ ImVec2 MouseDragMaxDistanceAbs[5]; \/\/ Maximum distance, absolute, on each axis, o/;" m struct:ImGuiIO typeref:typename:ImVec2[5]
  4814. MouseDragMaxDistanceSqr third_party/imgui/imgui.h /^ float MouseDragMaxDistanceSqr[5]; \/\/ Squared maximum distance of how much mouse /;" m struct:ImGuiIO typeref:typename:float[5]
  4815. MouseDragThreshold third_party/imgui/imgui.h /^ float MouseDragThreshold; \/\/ = 6.0f \/\/ Distance threshold be/;" m struct:ImGuiIO typeref:typename:float
  4816. MouseDrawCursor third_party/imgui/imgui.h /^ bool MouseDrawCursor; \/\/ = false \/\/ Request ImGui to draw/;" m struct:ImGuiIO typeref:typename:bool
  4817. MousePos third_party/imgui/imgui.h /^ ImVec2 MousePos; \/\/ Mouse position, in pixels. Set to ImVec2(-F/;" m struct:ImGuiIO typeref:typename:ImVec2
  4818. MousePosPrev third_party/imgui/imgui.h /^ ImVec2 MousePosPrev; \/\/ Previous mouse position (note that MouseDel/;" m struct:ImGuiIO typeref:typename:ImVec2
  4819. MouseReleased third_party/imgui/imgui.h /^ bool MouseReleased[5]; \/\/ Mouse button went from Down to !Down$/;" m struct:ImGuiIO typeref:typename:bool[5]
  4820. MouseWheel third_party/imgui/imgui.h /^ float MouseWheel; \/\/ Mouse wheel Vertical: 1 unit scrolls about /;" m struct:ImGuiIO typeref:typename:float
  4821. MouseWheelH third_party/imgui/imgui.h /^ float MouseWheelH; \/\/ Mouse wheel Horizontal. Most users don't ha/;" m struct:ImGuiIO typeref:typename:float
  4822. MoveId third_party/imgui/imgui_internal.h /^ ImGuiID MoveId; \/\/ == window->GetID("#MOVE")$/;" m struct:ImGuiWindow typeref:typename:ImGuiID
  4823. MovingWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* MovingWindow; \/\/ Track the window we clicked/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  4824. MultiSelectScopeId third_party/imgui/imgui_internal.h /^ ImGuiID MultiSelectScopeId;$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4825. MyDocument third_party/imgui/imgui_demo.cpp /^ MyDocument(const char* name, bool open = true, const ImVec4& color = ImVec4(1.0f,1.0f,1.0f,1/;" f struct:MyDocument file:
  4826. MyDocument third_party/imgui/imgui_demo.cpp /^struct MyDocument$/;" s file:
  4827. MyInputTextMultiline third_party/imgui/imgui_demo.cpp /^ static bool MyInputTextMultiline(const char* label, ImVector<char>* my_str, cons/;" f struct:ShowDemoWindowWidgets::Funcs typeref:typename:bool file:
  4828. MyResizeCallback third_party/imgui/imgui_demo.cpp /^ static int MyResizeCallback(ImGuiInputTextCallbackData* data)$/;" f struct:ShowDemoWindowWidgets::Funcs typeref:typename:int file:
  4829. NAV_MAP_KEY third_party/imgui/imgui.cpp /^ #define NAV_MAP_KEY(/;" d file:
  4830. NAV_WINDOWING_HIGHLIGHT_DELAY third_party/imgui/imgui.cpp /^static const float NAV_WINDOWING_HIGHLIGHT_DELAY = 0.20f; \/\/ Time before the hig/;" v typeref:typename:const float file:
  4831. NAV_WINDOWING_LIST_APPEAR_DELAY third_party/imgui/imgui.cpp /^static const float NAV_WINDOWING_LIST_APPEAR_DELAY = 0.15f; \/\/ Time before the win/;" v typeref:typename:const float file:
  4832. NONE libswan/src/SRF.cc /^ NONE = 8,$/;" e enum:Swan::Type file:
  4833. NSCursor third_party/imgui/examples/imgui_impl_osx.mm /^@interface NSCursor()$/;" i
  4834. NSHumanReadableCopyright third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>NSHumanReadableCopyright<\/key>$/;" k
  4835. NSMainStoryboardFile third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>NSMainStoryboardFile<\/key>$/;" k
  4836. NSPrincipalClass third_party/imgui/examples/example_apple_metal/macOS/Info-macOS.plist /^ <key>NSPrincipalClass<\/key>$/;" k
  4837. NUM_BACK_BUFFERS third_party/imgui/examples/example_win32_directx12/main.cpp /^static int const NUM_BACK_BUFFERS = 3;$/;" v typeref:typename:int const file:
  4838. NUM_FRAMES_IN_FLIGHT third_party/imgui/examples/example_win32_directx12/main.cpp /^static int const NUM_FRAMES_IN_FLIGHT = 3;$/;" v typeref:typename:int const file:
  4839. Name third_party/imgui/imgui.h /^ char Name[40]; \/\/ Name (strictly to ease debugging)$/;" m struct:ImFontConfig typeref:typename:char[40]
  4840. Name third_party/imgui/imgui_demo.cpp /^ const char* Name; \/\/ Document title$/;" m struct:MyDocument typeref:typename:const char * file:
  4841. Name third_party/imgui/imgui_internal.h /^ char* Name;$/;" m struct:ImGuiWindow typeref:typename:char *
  4842. Name third_party/imgui/imgui_internal.h /^ char* Name;$/;" m struct:ImGuiWindowSettings typeref:typename:char *
  4843. NameBufLen third_party/imgui/imgui_internal.h /^ int NameBufLen; \/\/ Size of buffer storing Name/;" m struct:ImGuiWindow typeref:typename:int
  4844. NameOffset third_party/imgui/imgui_internal.h /^ int NameOffset; \/\/ When Window==NULL, offset to name within pa/;" m struct:ImGuiTabItem typeref:typename:int
  4845. Names conventions.md /^## Names$/;" s
  4846. NavActivateDownId third_party/imgui/imgui_internal.h /^ ImGuiID NavActivateDownId; \/\/ ~~ IsNavInputDown(ImGuiNavI/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4847. NavActivateId third_party/imgui/imgui_internal.h /^ ImGuiID NavActivateId; \/\/ ~~ (g.ActiveId == 0) && IsN/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4848. NavActivatePressedId third_party/imgui/imgui_internal.h /^ ImGuiID NavActivatePressedId; \/\/ ~~ IsNavInputPressed(ImGuiN/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4849. NavActive third_party/imgui/imgui.h /^ bool NavActive; \/\/ Directional navigation is currently allowed/;" m struct:ImGuiIO typeref:typename:bool
  4850. NavAnyRequest third_party/imgui/imgui_internal.h /^ bool NavAnyRequest; \/\/ ~~ NavMoveRequest || NavIni/;" m struct:ImGuiContext typeref:typename:bool
  4851. NavCalcPreferredRefPos third_party/imgui/imgui.cpp /^static ImVec2 ImGui::NavCalcPreferredRefPos()$/;" f class:ImGui typeref:typename:ImVec2 file:
  4852. NavClampRectToVisibleAreaForMoveDir third_party/imgui/imgui.cpp /^static void inline NavClampRectToVisibleAreaForMoveDir(ImGuiDir move_dir, ImRect& r, const ImRec/;" f typeref:typename:void file:
  4853. NavDisableHighlight third_party/imgui/imgui_internal.h /^ bool NavDisableHighlight; \/\/ When user starts using mous/;" m struct:ImGuiContext typeref:typename:bool
  4854. NavDisableMouseHover third_party/imgui/imgui_internal.h /^ bool NavDisableMouseHover; \/\/ When user starts using game/;" m struct:ImGuiContext typeref:typename:bool
  4855. NavHasScroll third_party/imgui/imgui_internal.h /^ bool NavHasScroll; \/\/ Set when scrolling can be used (ScrollM/;" m struct:ImGuiWindowTempData typeref:typename:bool
  4856. NavHideHighlightOneFrame third_party/imgui/imgui_internal.h /^ bool NavHideHighlightOneFrame;$/;" m struct:ImGuiWindowTempData typeref:typename:bool
  4857. NavId third_party/imgui/imgui_internal.h /^ ImGuiID NavId; \/\/ Focused item for navigation$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4858. NavIdIsAlive third_party/imgui/imgui_internal.h /^ bool NavIdIsAlive; \/\/ Nav widget has been seen th/;" m struct:ImGuiContext typeref:typename:bool
  4859. NavIdTabCounter third_party/imgui/imgui_internal.h /^ int NavIdTabCounter; \/\/ == NavWindow->DC.FocusIdxTa/;" m struct:ImGuiContext typeref:typename:int
  4860. NavInitRequest third_party/imgui/imgui_internal.h /^ bool NavInitRequest; \/\/ Init request for appearing /;" m struct:ImGuiContext typeref:typename:bool
  4861. NavInitRequestFromMove third_party/imgui/imgui_internal.h /^ bool NavInitRequestFromMove;$/;" m struct:ImGuiContext typeref:typename:bool
  4862. NavInitResultId third_party/imgui/imgui_internal.h /^ ImGuiID NavInitResultId;$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4863. NavInitResultRectRel third_party/imgui/imgui_internal.h /^ ImRect NavInitResultRectRel;$/;" m struct:ImGuiContext typeref:typename:ImRect
  4864. NavInitWindow third_party/imgui/imgui.cpp /^void ImGui::NavInitWindow(ImGuiWindow* window, bool force_reinit)$/;" f class:ImGui typeref:typename:void
  4865. NavInputId third_party/imgui/imgui_internal.h /^ ImGuiID NavInputId; \/\/ ~~ IsNavInputPressed(ImGuiN/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4866. NavInputSource third_party/imgui/imgui_internal.h /^ ImGuiInputSource NavInputSource; \/\/ Keyboard or Gamepad mode? T/;" m struct:ImGuiContext typeref:typename:ImGuiInputSource
  4867. NavInputs third_party/imgui/imgui.h /^ float NavInputs[ImGuiNavInput_COUNT]; \/\/ Gamepad inputs. Cleared back to zero by End/;" m struct:ImGuiIO typeref:typename:float[]
  4868. NavInputsDownDuration third_party/imgui/imgui.h /^ float NavInputsDownDuration[ImGuiNavInput_COUNT];$/;" m struct:ImGuiIO typeref:typename:float[]
  4869. NavInputsDownDurationPrev third_party/imgui/imgui.h /^ float NavInputsDownDurationPrev[ImGuiNavInput_COUNT];$/;" m struct:ImGuiIO typeref:typename:float[]
  4870. NavJustMovedToId third_party/imgui/imgui_internal.h /^ ImGuiID NavJustMovedToId; \/\/ Just navigated to this id (/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4871. NavJustMovedToMultiSelectScopeId third_party/imgui/imgui_internal.h /^ ImGuiID NavJustMovedToMultiSelectScopeId; \/\/ Just navigated to this sele/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4872. NavJustTabbedId third_party/imgui/imgui_internal.h /^ ImGuiID NavJustTabbedId; \/\/ Just tabbed to this id.$/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4873. NavLastChildNavWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* NavLastChildNavWindow; \/\/ When going to the menu bar,/;" m struct:ImGuiWindow typeref:typename:ImGuiWindow *
  4874. NavLastIds third_party/imgui/imgui_internal.h /^ ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; \/\/ Last known NavId for this w/;" m struct:ImGuiWindow typeref:typename:ImGuiID[]
  4875. NavLayer third_party/imgui/imgui_internal.h /^ ImGuiNavLayer NavLayer; \/\/ Layer we are navigating on./;" m struct:ImGuiContext typeref:typename:ImGuiNavLayer
  4876. NavLayerActiveMask third_party/imgui/imgui_internal.h /^ int NavLayerActiveMask; \/\/ Which layer have been written to (resul/;" m struct:ImGuiWindowTempData typeref:typename:int
  4877. NavLayerActiveMaskNext third_party/imgui/imgui_internal.h /^ int NavLayerActiveMaskNext; \/\/ Which layer have been written to (buffe/;" m struct:ImGuiWindowTempData typeref:typename:int
  4878. NavLayerCurrent third_party/imgui/imgui_internal.h /^ ImGuiNavLayer NavLayerCurrent; \/\/ Current layer, 0..31 (we currently only/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiNavLayer
  4879. NavLayerCurrentMask third_party/imgui/imgui_internal.h /^ int NavLayerCurrentMask; \/\/ = (1 << NavLayerCurrent) used by ItemAd/;" m struct:ImGuiWindowTempData typeref:typename:int
  4880. NavMousePosDirty third_party/imgui/imgui_internal.h /^ bool NavMousePosDirty; \/\/ When set we will update mou/;" m struct:ImGuiContext typeref:typename:bool
  4881. NavMoveClipDir third_party/imgui/imgui_internal.h /^ ImGuiDir NavMoveClipDir; \/\/ FIXME-NAV: Describe the pur/;" m struct:ImGuiContext typeref:typename:ImGuiDir
  4882. NavMoveDir third_party/imgui/imgui_internal.h /^ ImGuiDir NavMoveDir, NavMoveDirLast; \/\/ Direction of the move reque/;" m struct:ImGuiContext typeref:typename:ImGuiDir
  4883. NavMoveDirLast third_party/imgui/imgui_internal.h /^ ImGuiDir NavMoveDir, NavMoveDirLast; \/\/ Direction of the move reque/;" m struct:ImGuiContext typeref:typename:ImGuiDir
  4884. NavMoveFromClampedRefRect third_party/imgui/imgui_internal.h /^ bool NavMoveFromClampedRefRect; \/\/ Set by manual scrolling, if/;" m struct:ImGuiContext typeref:typename:bool
  4885. NavMoveRequest third_party/imgui/imgui_internal.h /^ bool NavMoveRequest; \/\/ Move request for this frame$/;" m struct:ImGuiContext typeref:typename:bool
  4886. NavMoveRequestButNoResultYet third_party/imgui/imgui.cpp /^bool ImGui::NavMoveRequestButNoResultYet()$/;" f class:ImGui typeref:typename:bool
  4887. NavMoveRequestCancel third_party/imgui/imgui.cpp /^void ImGui::NavMoveRequestCancel()$/;" f class:ImGui typeref:typename:void
  4888. NavMoveRequestFlags third_party/imgui/imgui_internal.h /^ ImGuiNavMoveFlags NavMoveRequestFlags;$/;" m struct:ImGuiContext typeref:typename:ImGuiNavMoveFlags
  4889. NavMoveRequestForward third_party/imgui/imgui.cpp /^void ImGui::NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, const ImRect& bb_rel, Im/;" f class:ImGui typeref:typename:void
  4890. NavMoveRequestForward third_party/imgui/imgui_internal.h /^ ImGuiNavForward NavMoveRequestForward; \/\/ None \/ ForwardQueued \/ Fo/;" m struct:ImGuiContext typeref:typename:ImGuiNavForward
  4891. NavMoveRequestTryWrapping third_party/imgui/imgui.cpp /^void ImGui::NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags move_flags)$/;" f class:ImGui typeref:typename:void
  4892. NavMoveResultLocal third_party/imgui/imgui_internal.h /^ ImGuiNavMoveResult NavMoveResultLocal; \/\/ Best move request candidate/;" m struct:ImGuiContext typeref:typename:ImGuiNavMoveResult
  4893. NavMoveResultLocalVisibleSet third_party/imgui/imgui_internal.h /^ ImGuiNavMoveResult NavMoveResultLocalVisibleSet; \/\/ Best move request candidate/;" m struct:ImGuiContext typeref:typename:ImGuiNavMoveResult
  4894. NavMoveResultOther third_party/imgui/imgui_internal.h /^ ImGuiNavMoveResult NavMoveResultOther; \/\/ Best move request candidate/;" m struct:ImGuiContext typeref:typename:ImGuiNavMoveResult
  4895. NavNextActivateId third_party/imgui/imgui_internal.h /^ ImGuiID NavNextActivateId; \/\/ Set by ActivateItem(), queu/;" m struct:ImGuiContext typeref:typename:ImGuiID
  4896. NavProcessItem third_party/imgui/imgui.cpp /^static void ImGui::NavProcessItem(ImGuiWindow* window, const ImRect& nav_bb, const ImGuiID id)$/;" f class:ImGui typeref:typename:void file:
  4897. NavRectRel third_party/imgui/imgui_internal.h /^ ImRect NavRectRel[ImGuiNavLayer_COUNT]; \/\/ Reference rectangle, in win/;" m struct:ImGuiWindow typeref:typename:ImRect[]
  4898. NavRestoreLastChildNavWindow third_party/imgui/imgui.cpp /^static ImGuiWindow* ImGui::NavRestoreLastChildNavWindow(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:ImGuiWindow * file:
  4899. NavRestoreLayer third_party/imgui/imgui.cpp /^static void NavRestoreLayer(ImGuiNavLayer layer)$/;" f typeref:typename:void file:
  4900. NavSaveLastChildNavWindowIntoParent third_party/imgui/imgui.cpp /^static void ImGui::NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window)$/;" f class:ImGui typeref:typename:void file:
  4901. NavScoreItem third_party/imgui/imgui.cpp /^static bool ImGui::NavScoreItem(ImGuiNavMoveResult* result, ImRect cand)$/;" f class:ImGui typeref:typename:bool file:
  4902. NavScoreItemDistInterval third_party/imgui/imgui.cpp /^static float inline NavScoreItemDistInterval(float a0, float a1, float b0, float b1)$/;" f typeref:typename:float file:
  4903. NavScoringCount third_party/imgui/imgui_internal.h /^ int NavScoringCount; \/\/ Metrics for debugging$/;" m struct:ImGuiContext typeref:typename:int
  4904. NavScoringRectScreen third_party/imgui/imgui_internal.h /^ ImRect NavScoringRectScreen; \/\/ Rectangle used for scoring,/;" m struct:ImGuiContext typeref:typename:ImRect
  4905. NavUpdate third_party/imgui/imgui.cpp /^static void ImGui::NavUpdate()$/;" f class:ImGui typeref:typename:void file:
  4906. NavUpdateAnyRequestFlag third_party/imgui/imgui.cpp /^static inline void ImGui::NavUpdateAnyRequestFlag()$/;" f class:ImGui typeref:typename:void file:
  4907. NavUpdateMoveResult third_party/imgui/imgui.cpp /^static void ImGui::NavUpdateMoveResult()$/;" f class:ImGui typeref:typename:void file:
  4908. NavUpdatePageUpPageDown third_party/imgui/imgui.cpp /^static float ImGui::NavUpdatePageUpPageDown(int allowed_dir_flags)$/;" f class:ImGui typeref:typename:float file:
  4909. NavUpdateWindowing third_party/imgui/imgui.cpp /^static void ImGui::NavUpdateWindowing()$/;" f class:ImGui typeref:typename:void file:
  4910. NavUpdateWindowingHighlightWindow third_party/imgui/imgui.cpp /^static void NavUpdateWindowingHighlightWindow(int focus_change_dir)$/;" f typeref:typename:void file:
  4911. NavUpdateWindowingOverlay third_party/imgui/imgui.cpp /^void ImGui::NavUpdateWindowingOverlay()$/;" f class:ImGui typeref:typename:void
  4912. NavVisible third_party/imgui/imgui.h /^ bool NavVisible; \/\/ Directional navigation is visible and allow/;" m struct:ImGuiIO typeref:typename:bool
  4913. NavWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* NavWindow; \/\/ Focused window for navigati/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  4914. NavWindowingHighlightAlpha third_party/imgui/imgui_internal.h /^ float NavWindowingHighlightAlpha;$/;" m struct:ImGuiContext typeref:typename:float
  4915. NavWindowingList third_party/imgui/imgui_internal.h /^ ImGuiWindow* NavWindowingList;$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  4916. NavWindowingTarget third_party/imgui/imgui_internal.h /^ ImGuiWindow* NavWindowingTarget; \/\/ When selecting a window (ho/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  4917. NavWindowingTargetAnim third_party/imgui/imgui_internal.h /^ ImGuiWindow* NavWindowingTargetAnim; \/\/ Record of last valid NavWin/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  4918. NavWindowingTimer third_party/imgui/imgui_internal.h /^ float NavWindowingTimer;$/;" m struct:ImGuiContext typeref:typename:float
  4919. NavWindowingToggleLayer third_party/imgui/imgui_internal.h /^ bool NavWindowingToggleLayer;$/;" m struct:ImGuiContext typeref:typename:bool
  4920. NewFrame third_party/imgui/imgui.cpp /^void ImGui::NewFrame()$/;" f class:ImGui typeref:typename:void
  4921. NewFrameSanityChecks third_party/imgui/imgui.cpp /^static void NewFrameSanityChecks()$/;" f typeref:typename:void file:
  4922. NewLine third_party/imgui/imgui_widgets.cpp /^void ImGui::NewLine()$/;" f class:ImGui typeref:typename:void
  4923. NewlineStream libswan/include/swan/log.h /^ NewlineStream(std::ostream &os): os_(os) {}$/;" f class:Swan::Logger::NewlineStream
  4924. NewlineStream libswan/include/swan/log.h /^ class NewlineStream {$/;" c class:Swan::Logger
  4925. NextColumn third_party/imgui/imgui_widgets.cpp /^void ImGui::NextColumn()$/;" f class:ImGui typeref:typename:void
  4926. NextItemData third_party/imgui/imgui_internal.h /^ ImGuiNextItemData NextItemData; \/\/ Storage for SetNextItem** f/;" m struct:ImGuiContext typeref:typename:ImGuiNextItemData
  4927. NextSelectedTabId third_party/imgui/imgui_internal.h /^ ImGuiID NextSelectedTabId;$/;" m struct:ImGuiTabBar typeref:typename:ImGuiID
  4928. NextWidth third_party/imgui/imgui_internal.h /^ float Width, NextWidth;$/;" m struct:ImGuiMenuColumns typeref:typename:float
  4929. NextWidths third_party/imgui/imgui_internal.h /^ float Pos[3], NextWidths[3];$/;" m struct:ImGuiMenuColumns typeref:typename:float[3][3]
  4930. NextWindowData third_party/imgui/imgui_internal.h /^ ImGuiNextWindowData NextWindowData; \/\/ Storage for SetNextWindow**/;" m struct:ImGuiContext typeref:typename:ImGuiNextWindowData
  4931. NoAutoHint third_party/imgui/misc/freetype/imgui_freetype.h /^ NoAutoHint = 1 << 1, \/\/ Disable auto-hinter.$/;" e enum:ImGuiFreeType::RasterizerFlags
  4932. NoHinting third_party/imgui/misc/freetype/imgui_freetype.h /^ NoHinting = 1 << 0, \/\/ Disable hinting. This generally generates 'blurrier' bi/;" e enum:ImGuiFreeType::RasterizerFlags
  4933. NodeColumns third_party/imgui/imgui.cpp /^ static void NodeColumns(const ImGuiColumns* columns)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:void file:
  4934. NodeDrawList third_party/imgui/imgui.cpp /^ static void NodeDrawList(ImGuiWindow* window, ImDrawList* draw_list, const char* label)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:void file:
  4935. NodeTabBar third_party/imgui/imgui.cpp /^ static void NodeTabBar(ImGuiTabBar* tab_bar)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:void file:
  4936. NodeWindow third_party/imgui/imgui.cpp /^ static void NodeWindow(ImGuiWindow* window, const char* label)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:void file:
  4937. NodeWindows third_party/imgui/imgui.cpp /^ static void NodeWindows(ImVector<ImGuiWindow*>& windows, const char* label)$/;" f struct:ImGui::ShowMetricsWindow::Funcs typeref:typename:void file:
  4938. NonCopyable libswan/include/swan/util.h /^class NonCopyable {$/;" c namespace:Swan
  4939. Notes third_party/imgui_sdl/README.md /^## Notes$/;" s
  4940. NotifyOfDocumentsClosedElsewhere third_party/imgui/imgui_demo.cpp /^static void NotifyOfDocumentsClosedElsewhere(ExampleAppDocuments& app)$/;" f typeref:typename:void file:
  4941. OBJECT libswan/src/SRF.cc /^ OBJECT = 0,$/;" e enum:Swan::Type file:
  4942. OBJS third_party/imgui/examples/example_emscripten/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4943. OBJS third_party/imgui/examples/example_glfw_metal/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4944. OBJS third_party/imgui/examples/example_glfw_opengl2/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4945. OBJS third_party/imgui/examples/example_glfw_opengl3/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4946. OBJS third_party/imgui/examples/example_glut_opengl2/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4947. OBJS third_party/imgui/examples/example_null/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4948. OBJS third_party/imgui/examples/example_sdl_opengl2/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4949. OBJS third_party/imgui/examples/example_sdl_opengl3/Makefile /^OBJS = $(addsuffix .o, $(basename $(notdir $(SOURCES))))$/;" m
  4950. OS libswan/include/swan/OS.h /^namespace OS {$/;" n namespace:Swan
  4951. OS libswan/src/OS.cc /^namespace OS {$/;" n namespace:Swan file:
  4952. OUT_DIR third_party/imgui/examples/example_sdl_directx11/build_win32.bat /^set OUT_DIR=Debug$/;" v
  4953. OUT_DIR third_party/imgui/examples/example_sdl_opengl2/build_win32.bat /^set OUT_DIR=Debug$/;" v
  4954. OUT_DIR third_party/imgui/examples/example_sdl_opengl3/build_win32.bat /^set OUT_DIR=Debug$/;" v
  4955. OUT_EXE third_party/imgui/examples/example_sdl_directx11/build_win32.bat /^set OUT_EXE=example_sdl_directx11$/;" v
  4956. OUT_EXE third_party/imgui/examples/example_sdl_opengl2/build_win32.bat /^set OUT_EXE=example_sdl_opengl2$/;" v
  4957. OUT_EXE third_party/imgui/examples/example_sdl_opengl3/build_win32.bat /^set OUT_EXE=example_sdl_opengl3$/;" v
  4958. Oblique third_party/imgui/misc/freetype/imgui_freetype.h /^ Oblique = 1 << 6, \/\/ Styling: Should we slant the font, emulating italic sty/;" e enum:ImGuiFreeType::RasterizerFlags
  4959. OffMaxX third_party/imgui/imgui_internal.h /^ float OffMinX, OffMaxX; \/\/ Offsets from HostWorkRect.Min.x$/;" m struct:ImGuiColumns typeref:typename:float
  4960. OffMinX third_party/imgui/imgui_internal.h /^ float OffMinX, OffMaxX; \/\/ Offsets from HostWorkRect.Min.x$/;" m struct:ImGuiColumns typeref:typename:float
  4961. Offset third_party/imgui/imgui.cpp /^ ImU32 Offset;$/;" m struct:ImGuiStyleVarInfo typeref:typename:ImU32 file:
  4962. Offset third_party/imgui/imgui_internal.h /^ float Offset; \/\/ Position relative to beginning of tab$/;" m struct:ImGuiTabItem typeref:typename:float
  4963. OffsetMax third_party/imgui/imgui_internal.h /^ float OffsetMax; \/\/ Distance from BarRect.Min.x, locked during /;" m struct:ImGuiTabBar typeref:typename:float
  4964. OffsetMaxIdeal third_party/imgui/imgui_internal.h /^ float OffsetMaxIdeal; \/\/ Ideal offset if all tabs were visible and n/;" m struct:ImGuiTabBar typeref:typename:float
  4965. OffsetNextTab third_party/imgui/imgui_internal.h /^ float OffsetNextTab; \/\/ Distance from BarRect.Min.x, incremented wi/;" m struct:ImGuiTabBar typeref:typename:float
  4966. OffsetNorm third_party/imgui/imgui_internal.h /^ float OffsetNorm; \/\/ Column start offset, normalized 0.0 (far left) /;" m struct:ImGuiColumnData typeref:typename:float
  4967. OffsetNormBeforeResize third_party/imgui/imgui_internal.h /^ float OffsetNormBeforeResize;$/;" m struct:ImGuiColumnData typeref:typename:float
  4968. OffsetX third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FT_Int OffsetX; \/\/ The distance from the origin ("pen position") to th/;" m struct:__anond3bafd850110::GlyphInfo typeref:typename:FT_Int file:
  4969. OffsetY third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FT_Int OffsetY; \/\/ The distance from the origin to the top of the glyp/;" m struct:__anond3bafd850110::GlyphInfo typeref:typename:FT_Int file:
  4970. On Ubuntu 14.04+ third_party/imgui/examples/example_allegro5/README.md /^### On Ubuntu 14.04+$/;" S
  4971. On Windows with Visual Studio's CLI third_party/imgui/examples/example_allegro5/README.md /^### On Windows with Visual Studio's CLI$/;" S
  4972. OnKeyPressed third_party/imgui/imgui_widgets.cpp /^void ImGuiInputTextState::OnKeyPressed(int key)$/;" f class:ImGuiInputTextState typeref:typename:void
  4973. Open third_party/imgui/imgui_demo.cpp /^ bool Open; \/\/ Set when the document is open (in this demo, we keep an arr/;" m struct:MyDocument typeref:typename:bool file:
  4974. OpenCond third_party/imgui/imgui_internal.h /^ ImGuiCond OpenCond;$/;" m struct:ImGuiNextItemData typeref:typename:ImGuiCond
  4975. OpenFrameCount third_party/imgui/imgui_internal.h /^ int OpenFrameCount; \/\/ Set on OpenPopup()$/;" m struct:ImGuiPopupData typeref:typename:int
  4976. OpenMousePos third_party/imgui/imgui_internal.h /^ ImVec2 OpenMousePos; \/\/ Set on OpenPopup(), copy of mouse position at the t/;" m struct:ImGuiPopupData typeref:typename:ImVec2
  4977. OpenParentId third_party/imgui/imgui_internal.h /^ ImGuiID OpenParentId; \/\/ Set on OpenPopup(), we need this to differentiate m/;" m struct:ImGuiPopupData typeref:typename:ImGuiID
  4978. OpenPopup third_party/imgui/imgui.cpp /^void ImGui::OpenPopup(const char* str_id)$/;" f class:ImGui typeref:typename:void
  4979. OpenPopupEx third_party/imgui/imgui.cpp /^void ImGui::OpenPopupEx(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  4980. OpenPopupOnItemClick third_party/imgui/imgui.cpp /^bool ImGui::OpenPopupOnItemClick(const char* str_id, int mouse_button)$/;" f class:ImGui typeref:typename:bool
  4981. OpenPopupPos third_party/imgui/imgui_internal.h /^ ImVec2 OpenPopupPos; \/\/ Set on OpenPopup(), preferred popup position (typic/;" m struct:ImGuiPopupData typeref:typename:ImVec2
  4982. OpenPopupStack third_party/imgui/imgui_internal.h /^ ImVector<ImGuiPopupData>OpenPopupStack; \/\/ Which popups are open (pers/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiPopupData>
  4983. OpenPrev third_party/imgui/imgui_demo.cpp /^ bool OpenPrev; \/\/ Copy of Open from last update.$/;" m struct:MyDocument typeref:typename:bool file:
  4984. OpenVal third_party/imgui/imgui_internal.h /^ bool OpenVal; \/\/ Set by SetNextItemOpen() function.$/;" m struct:ImGuiNextItemData typeref:typename:bool
  4985. Order third_party/imgui_sdl/imgui_sdl.cpp /^ std::list<std::pair<Key, Value>> Order;$/;" m class:__anonaaadc0580110::LRUCache typeref:typename:std::list<std::pair<Key,Value>> file:
  4986. OuterAngle third_party/imgui/imgui.cpp /^ float OuterAngle;$/;" m struct:ImGui::RenderWindowOuterBorders::ImGuiResizeBorderDef typeref:typename:float file:
  4987. OuterRectClipped third_party/imgui/imgui_internal.h /^ ImRect OuterRectClipped; \/\/ == Window->Rect() just afte/;" m struct:ImGuiWindow typeref:typename:ImRect
  4988. Overlaps third_party/imgui/imgui_internal.h /^ bool Overlaps(const ImRect& r) const { return r.Min.y < Max.y && r.Max.y > Min./;" f struct:ImRect typeref:typename:bool
  4989. OversampleH third_party/imgui/imgui.h /^ int OversampleH; \/\/ 3 \/\/ Rasterize at higher quality for s/;" m struct:ImFontConfig typeref:typename:int
  4990. OversampleV third_party/imgui/imgui.h /^ int OversampleV; \/\/ 1 \/\/ Rasterize at higher quality for s/;" m struct:ImFontConfig typeref:typename:int
  4991. PFNGLACTIVESHADERPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLACTIVESHADERPROGRAMPROC) (GLuint pipeline, GLuint program);$/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline,GLuint program)
  4992. PFNGLACTIVETEXTUREPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLACTIVETEXTUREPROC) (GLenum texture);$/;" t typeref:typename:void (APIENTRYP)(GLenum texture)
  4993. PFNGLATTACHSHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLATTACHSHADERPROC) (GLuint program, GLuint shader);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint shader)
  4994. PFNGLBEGINCONDITIONALRENDERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBEGINCONDITIONALRENDERPROC) (GLuint id, GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum mode)
  4995. PFNGLBEGINQUERYINDEXEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBEGINQUERYINDEXEDPROC) (GLenum target, GLuint index, GLuint id);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLuint id)
  4996. PFNGLBEGINQUERYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBEGINQUERYPROC) (GLenum target, GLuint id);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint id)
  4997. PFNGLBEGINTRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBEGINTRANSFORMFEEDBACKPROC) (GLenum primitiveMode);$/;" t typeref:typename:void (APIENTRYP)(GLenum primitiveMode)
  4998. PFNGLBINDATTRIBLOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint index,const GLchar * name)
  4999. PFNGLBINDBUFFERBASEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDBUFFERBASEPROC) (GLenum target, GLuint index, GLuint buffer);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLuint buffer)
  5000. PFNGLBINDBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDBUFFERPROC) (GLenum target, GLuint buffer);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint buffer)
  5001. PFNGLBINDBUFFERRANGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDBUFFERRANGEPROC) (GLenum target, GLuint index, GLuint buffer, G/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLuint buffer,GLintptr offset,GLsizeiptr size)
  5002. PFNGLBINDFRAGDATALOCATIONINDEXEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDPROC) (GLuint program, GLuint colorNumbe/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint colorNumber,GLuint index,const GLchar * name)
  5003. PFNGLBINDFRAGDATALOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDFRAGDATALOCATIONPROC) (GLuint program, GLuint color, const GLch/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint color,const GLchar * name)
  5004. PFNGLBINDFRAMEBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDFRAMEBUFFERPROC) (GLenum target, GLuint framebuffer);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint framebuffer)
  5005. PFNGLBINDIMAGETEXTUREPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDIMAGETEXTUREPROC) (GLuint unit, GLuint texture, GLint level, GL/;" t typeref:typename:void (APIENTRYP)(GLuint unit,GLuint texture,GLint level,GLboolean layered,GLint layer,GLenum access,GLenum format)
  5006. PFNGLBINDPROGRAMPIPELINEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDPROGRAMPIPELINEPROC) (GLuint pipeline);$/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline)
  5007. PFNGLBINDRENDERBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDRENDERBUFFERPROC) (GLenum target, GLuint renderbuffer);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint renderbuffer)
  5008. PFNGLBINDSAMPLERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDSAMPLERPROC) (GLuint unit, GLuint sampler);$/;" t typeref:typename:void (APIENTRYP)(GLuint unit,GLuint sampler)
  5009. PFNGLBINDTEXTUREPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDTEXTUREPROC) (GLenum target, GLuint texture);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint texture)
  5010. PFNGLBINDTRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDTRANSFORMFEEDBACKPROC) (GLenum target, GLuint id);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint id)
  5011. PFNGLBINDVERTEXARRAYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDVERTEXARRAYPROC) (GLuint array);$/;" t typeref:typename:void (APIENTRYP)(GLuint array)
  5012. PFNGLBINDVERTEXBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBINDVERTEXBUFFERPROC) (GLuint bindingindex, GLuint buffer, GLintptr/;" t typeref:typename:void (APIENTRYP)(GLuint bindingindex,GLuint buffer,GLintptr offset,GLsizei stride)
  5013. PFNGLBLENDCOLORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat /;" t typeref:typename:void (APIENTRYP)(GLfloat red,GLfloat green,GLfloat blue,GLfloat alpha)
  5014. PFNGLBLENDEQUATIONIARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONIARBPROC) (GLuint buf, GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum mode)
  5015. PFNGLBLENDEQUATIONIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONIPROC) (GLuint buf, GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum mode)
  5016. PFNGLBLENDEQUATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5017. PFNGLBLENDEQUATIONSEPARATEIARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIARBPROC) (GLuint buf, GLenum modeRGB, GLenum /;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum modeRGB,GLenum modeAlpha)
  5018. PFNGLBLENDEQUATIONSEPARATEIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEIPROC) (GLuint buf, GLenum modeRGB, GLenum mod/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum modeRGB,GLenum modeAlpha)
  5019. PFNGLBLENDEQUATIONSEPARATEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDEQUATIONSEPARATEPROC) (GLenum modeRGB, GLenum modeAlpha);$/;" t typeref:typename:void (APIENTRYP)(GLenum modeRGB,GLenum modeAlpha)
  5020. PFNGLBLENDFUNCIARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCIARBPROC) (GLuint buf, GLenum src, GLenum dst);$/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum src,GLenum dst)
  5021. PFNGLBLENDFUNCIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCIPROC) (GLuint buf, GLenum src, GLenum dst);$/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum src,GLenum dst)
  5022. PFNGLBLENDFUNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCPROC) (GLenum sfactor, GLenum dfactor);$/;" t typeref:typename:void (APIENTRYP)(GLenum sfactor,GLenum dfactor)
  5023. PFNGLBLENDFUNCSEPARATEIARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIARBPROC) (GLuint buf, GLenum srcRGB, GLenum dstRG/;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum srcRGB,GLenum dstRGB,GLenum srcAlpha,GLenum dstAlpha)
  5024. PFNGLBLENDFUNCSEPARATEIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEIPROC) (GLuint buf, GLenum srcRGB, GLenum dstRGB, /;" t typeref:typename:void (APIENTRYP)(GLuint buf,GLenum srcRGB,GLenum dstRGB,GLenum srcAlpha,GLenum dstAlpha)
  5025. PFNGLBLENDFUNCSEPARATEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenu/;" t typeref:typename:void (APIENTRYP)(GLenum sfactorRGB,GLenum dfactorRGB,GLenum sfactorAlpha,GLenum dfactorAlpha)
  5026. PFNGLBLITFRAMEBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBLITFRAMEBUFFERPROC) (GLint srcX0, GLint srcY0, GLint srcX1, GLint /;" t typeref:typename:void (APIENTRYP)(GLint srcX0,GLint srcY0,GLint srcX1,GLint srcY1,GLint dstX0,GLint dstY0,GLint dstX1,GLint dstY1,GLbitfield mask,GLenum filter)
  5027. PFNGLBUFFERDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const GLvoid *data/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizeiptr size,const GLvoid * data,GLenum usage)
  5028. PFNGLBUFFERSUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLintptr offset,GLsizeiptr size,const GLvoid * data)
  5029. PFNGLCHECKFRAMEBUFFERSTATUSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLenum (APIENTRYP PFNGLCHECKFRAMEBUFFERSTATUSPROC) (GLenum target);$/;" t typeref:typename:GLenum (APIENTRYP)(GLenum target)
  5030. PFNGLCLAMPCOLORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLAMPCOLORPROC) (GLenum target, GLenum clamp);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum clamp)
  5031. PFNGLCLEARBUFFERDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERDATAPROC) (GLenum target, GLenum internalformat, GLenum /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLenum format,GLenum type,const void * data)
  5032. PFNGLCLEARBUFFERFIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERFIPROC) (GLenum buffer, GLint drawbuffer, GLfloat depth,/;" t typeref:typename:void (APIENTRYP)(GLenum buffer,GLint drawbuffer,GLfloat depth,GLint stencil)
  5033. PFNGLCLEARBUFFERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERFVPROC) (GLenum buffer, GLint drawbuffer, const GLfloat /;" t typeref:typename:void (APIENTRYP)(GLenum buffer,GLint drawbuffer,const GLfloat * value)
  5034. PFNGLCLEARBUFFERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERIVPROC) (GLenum buffer, GLint drawbuffer, const GLint *v/;" t typeref:typename:void (APIENTRYP)(GLenum buffer,GLint drawbuffer,const GLint * value)
  5035. PFNGLCLEARBUFFERSUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERSUBDATAPROC) (GLenum target, GLenum internalformat, GLin/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLintptr offset,GLsizeiptr size,GLenum format,GLenum type,const void * data)
  5036. PFNGLCLEARBUFFERUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARBUFFERUIVPROC) (GLenum buffer, GLint drawbuffer, const GLuint /;" t typeref:typename:void (APIENTRYP)(GLenum buffer,GLint drawbuffer,const GLuint * value)
  5037. PFNGLCLEARCOLORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARCOLORPROC) (GLfloat red, GLfloat green, GLfloat blue, GLfloat /;" t typeref:typename:void (APIENTRYP)(GLfloat red,GLfloat green,GLfloat blue,GLfloat alpha)
  5038. PFNGLCLEARDEPTHFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARDEPTHFPROC) (GLfloat d);$/;" t typeref:typename:void (APIENTRYP)(GLfloat d)
  5039. PFNGLCLEARDEPTHPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARDEPTHPROC) (GLdouble depth);$/;" t typeref:typename:void (APIENTRYP)(GLdouble depth)
  5040. PFNGLCLEARNAMEDBUFFERDATAEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERDATAEXTPROC) (GLuint buffer, GLenum internalformat,/;" t typeref:typename:void (APIENTRYP)(GLuint buffer,GLenum internalformat,GLenum format,GLenum type,const void * data)
  5041. PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC) (GLuint buffer, GLenum internalform/;" t typeref:typename:void (APIENTRYP)(GLuint buffer,GLenum internalformat,GLenum format,GLenum type,GLsizeiptr offset,GLsizeiptr size,const void * data)
  5042. PFNGLCLEARPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARPROC) (GLbitfield mask);$/;" t typeref:typename:void (APIENTRYP)(GLbitfield mask)
  5043. PFNGLCLEARSTENCILPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCLEARSTENCILPROC) (GLint s);$/;" t typeref:typename:void (APIENTRYP)(GLint s)
  5044. PFNGLCLIENTWAITSYNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLenum (APIENTRYP PFNGLCLIENTWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 time/;" t typeref:typename:GLenum (APIENTRYP)(GLsync sync,GLbitfield flags,GLuint64 timeout)
  5045. PFNGLCOLORMASKIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORMASKIPROC) (GLuint index, GLboolean r, GLboolean g, GLboolean /;" t typeref:typename:void (APIENTRYP)(GLuint index,GLboolean r,GLboolean g,GLboolean b,GLboolean a)
  5046. PFNGLCOLORMASKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORMASKPROC) (GLboolean red, GLboolean green, GLboolean blue, GLb/;" t typeref:typename:void (APIENTRYP)(GLboolean red,GLboolean green,GLboolean blue,GLboolean alpha)
  5047. PFNGLCOLORP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORP3UIPROC) (GLenum type, GLuint color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint color)
  5048. PFNGLCOLORP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORP3UIVPROC) (GLenum type, const GLuint *color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * color)
  5049. PFNGLCOLORP4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORP4UIPROC) (GLenum type, GLuint color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint color)
  5050. PFNGLCOLORP4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOLORP4UIVPROC) (GLenum type, const GLuint *color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * color)
  5051. PFNGLCOMPILESHADERINCLUDEARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPILESHADERINCLUDEARBPROC) (GLuint shader, GLsizei count, const G/;" t typeref:typename:void (APIENTRYP)(GLuint shader,GLsizei count,const GLchar ** path,const GLint * length)
  5052. PFNGLCOMPILESHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPILESHADERPROC) (GLuint shader);$/;" t typeref:typename:void (APIENTRYP)(GLuint shader)
  5053. PFNGLCOMPRESSEDTEXIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum inter/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum internalformat,GLsizei width,GLint border,GLsizei imageSize,const GLvoid * data)
  5054. PFNGLCOMPRESSEDTEXIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum inter/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum internalformat,GLsizei width,GLsizei height,GLint border,GLsizei imageSize,const GLvoid * data)
  5055. PFNGLCOMPRESSEDTEXIMAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXIMAGE3DPROC) (GLenum target, GLint level, GLenum inter/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum internalformat,GLsizei width,GLsizei height,GLsizei depth,GLint border,GLsizei imageSize,const GLvoid * data)
  5056. PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xof/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLsizei width,GLenum format,GLsizei imageSize,const GLvoid * data)
  5057. PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xof/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLsizei width,GLsizei height,GLenum format,GLsizei imageSize,const GLvoid * data)
  5058. PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xof/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLsizei imageSize,const GLvoid * data)
  5059. PFNGLCOPYBUFFERSUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYBUFFERSUBDATAPROC) (GLenum readTarget, GLenum writeTarget, GLin/;" t typeref:typename:void (APIENTRYP)(GLenum readTarget,GLenum writeTarget,GLintptr readOffset,GLintptr writeOffset,GLsizeiptr size)
  5060. PFNGLCOPYIMAGESUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYIMAGESUBDATAPROC) (GLuint srcName, GLenum srcTarget, GLint srcL/;" t typeref:typename:void (APIENTRYP)(GLuint srcName,GLenum srcTarget,GLint srcLevel,GLint srcX,GLint srcY,GLint srcZ,GLuint dstName,GLenum dstTarget,GLint dstLevel,GLint dstX,GLint dstY,GLint dstZ,GLsizei srcWidth,GLsizei srcHeight,GLsizei srcDepth)
  5061. PFNGLCOPYTEXIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYTEXIMAGE1DPROC) (GLenum target, GLint level, GLenum internalfor/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum internalformat,GLint x,GLint y,GLsizei width,GLint border)
  5062. PFNGLCOPYTEXIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYTEXIMAGE2DPROC) (GLenum target, GLint level, GLenum internalfor/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum internalformat,GLint x,GLint y,GLsizei width,GLsizei height,GLint border)
  5063. PFNGLCOPYTEXSUBIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint x,GLint y,GLsizei width)
  5064. PFNGLCOPYTEXSUBIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint x,GLint y,GLsizei width,GLsizei height)
  5065. PFNGLCOPYTEXSUBIMAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCOPYTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLint x,GLint y,GLsizei width,GLsizei height)
  5066. PFNGLCREATEPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLCREATEPROGRAMPROC) (void);$/;" t typeref:typename:GLuint (APIENTRYP)(void)
  5067. PFNGLCREATESHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLCREATESHADERPROC) (GLenum type);$/;" t typeref:typename:GLuint (APIENTRYP)(GLenum type)
  5068. PFNGLCREATESHADERPROGRAMVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLCREATESHADERPROGRAMVPROC) (GLenum type, GLsizei count, const GLch/;" t typeref:typename:GLuint (APIENTRYP)(GLenum type,GLsizei count,const GLchar * const * strings)
  5069. PFNGLCREATESYNCFROMCLEVENTARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLsync (APIENTRYP PFNGLCREATESYNCFROMCLEVENTARBPROC) (struct _cl_context * context, stru/;" t typeref:typename:GLsync (APIENTRYP)(struct _cl_context * context,struct _cl_event * event,GLbitfield flags)
  5070. PFNGLCULLFACEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLCULLFACEPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5071. PFNGLDEBUGMESSAGECALLBACKARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKARBPROC) (GLDEBUGPROCARB callback, const GLvoid/;" t typeref:typename:void (APIENTRYP)(GLDEBUGPROCARB callback,const GLvoid * userParam)
  5072. PFNGLDEBUGMESSAGECALLBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGECALLBACKPROC) (GLDEBUGPROC callback, const void *userPa/;" t typeref:typename:void (APIENTRYP)(GLDEBUGPROC callback,const void * userParam)
  5073. PFNGLDEBUGMESSAGECONTROLARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLARBPROC) (GLenum source, GLenum type, GLenum sev/;" t typeref:typename:void (APIENTRYP)(GLenum source,GLenum type,GLenum severity,GLsizei count,const GLuint * ids,GLboolean enabled)
  5074. PFNGLDEBUGMESSAGECONTROLPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGECONTROLPROC) (GLenum source, GLenum type, GLenum severi/;" t typeref:typename:void (APIENTRYP)(GLenum source,GLenum type,GLenum severity,GLsizei count,const GLuint * ids,GLboolean enabled)
  5075. PFNGLDEBUGMESSAGEINSERTARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTARBPROC) (GLenum source, GLenum type, GLuint id, /;" t typeref:typename:void (APIENTRYP)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar * buf)
  5076. PFNGLDEBUGMESSAGEINSERTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEBUGMESSAGEINSERTPROC) (GLenum source, GLenum type, GLuint id, GLe/;" t typeref:typename:void (APIENTRYP)(GLenum source,GLenum type,GLuint id,GLenum severity,GLsizei length,const GLchar * buf)
  5077. PFNGLDELETEBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEBUFFERSPROC) (GLsizei n, const GLuint *buffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * buffers)
  5078. PFNGLDELETEFRAMEBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEFRAMEBUFFERSPROC) (GLsizei n, const GLuint *framebuffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * framebuffers)
  5079. PFNGLDELETENAMEDSTRINGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETENAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name);$/;" t typeref:typename:void (APIENTRYP)(GLint namelen,const GLchar * name)
  5080. PFNGLDELETEPROGRAMPIPELINESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEPROGRAMPIPELINESPROC) (GLsizei n, const GLuint *pipelines);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * pipelines)
  5081. PFNGLDELETEPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program);$/;" t typeref:typename:void (APIENTRYP)(GLuint program)
  5082. PFNGLDELETEQUERIESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEQUERIESPROC) (GLsizei n, const GLuint *ids);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * ids)
  5083. PFNGLDELETERENDERBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETERENDERBUFFERSPROC) (GLsizei n, const GLuint *renderbuffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * renderbuffers)
  5084. PFNGLDELETESAMPLERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETESAMPLERSPROC) (GLsizei count, const GLuint *samplers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei count,const GLuint * samplers)
  5085. PFNGLDELETESHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETESHADERPROC) (GLuint shader);$/;" t typeref:typename:void (APIENTRYP)(GLuint shader)
  5086. PFNGLDELETESYNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETESYNCPROC) (GLsync sync);$/;" t typeref:typename:void (APIENTRYP)(GLsync sync)
  5087. PFNGLDELETETEXTURESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETETEXTURESPROC) (GLsizei n, const GLuint *textures);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * textures)
  5088. PFNGLDELETETRANSFORMFEEDBACKSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETETRANSFORMFEEDBACKSPROC) (GLsizei n, const GLuint *ids);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * ids)
  5089. PFNGLDELETEVERTEXARRAYSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDELETEVERTEXARRAYSPROC) (GLsizei n, const GLuint *arrays);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLuint * arrays)
  5090. PFNGLDEPTHFUNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func);$/;" t typeref:typename:void (APIENTRYP)(GLenum func)
  5091. PFNGLDEPTHMASKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHMASKPROC) (GLboolean flag);$/;" t typeref:typename:void (APIENTRYP)(GLboolean flag)
  5092. PFNGLDEPTHRANGEARRAYVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHRANGEARRAYVPROC) (GLuint first, GLsizei count, const GLdouble /;" t typeref:typename:void (APIENTRYP)(GLuint first,GLsizei count,const GLdouble * v)
  5093. PFNGLDEPTHRANGEFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHRANGEFPROC) (GLfloat n, GLfloat f);$/;" t typeref:typename:void (APIENTRYP)(GLfloat n,GLfloat f)
  5094. PFNGLDEPTHRANGEINDEXEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHRANGEINDEXEDPROC) (GLuint index, GLdouble n, GLdouble f);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble n,GLdouble f)
  5095. PFNGLDEPTHRANGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDEPTHRANGEPROC) (GLdouble near, GLdouble far);$/;" t typeref:typename:void (APIENTRYP)(GLdouble near,GLdouble far)
  5096. PFNGLDETACHSHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDETACHSHADERPROC) (GLuint program, GLuint shader);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint shader)
  5097. PFNGLDISABLEIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDISABLEIPROC) (GLenum target, GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index)
  5098. PFNGLDISABLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDISABLEPROC) (GLenum cap);$/;" t typeref:typename:void (APIENTRYP)(GLenum cap)
  5099. PFNGLDISABLEVERTEXATTRIBARRAYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLuint index)
  5100. PFNGLDISPATCHCOMPUTEINDIRECTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEINDIRECTPROC) (GLintptr indirect);$/;" t typeref:typename:void (APIENTRYP)(GLintptr indirect)
  5101. PFNGLDISPATCHCOMPUTEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDISPATCHCOMPUTEPROC) (GLuint num_groups_x, GLuint num_groups_y, GLu/;" t typeref:typename:void (APIENTRYP)(GLuint num_groups_x,GLuint num_groups_y,GLuint num_groups_z)
  5102. PFNGLDRAWARRAYSINDIRECTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWARRAYSINDIRECTPROC) (GLenum mode, const GLvoid *indirect);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode,const GLvoid * indirect)
  5103. PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLint first, GLs/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLint first,GLsizei count,GLsizei instancecount,GLuint baseinstance)
  5104. PFNGLDRAWARRAYSINSTANCEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWARRAYSINSTANCEDPROC) (GLenum mode, GLint first, GLsizei count, /;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLint first,GLsizei count,GLsizei instancecount)
  5105. PFNGLDRAWARRAYSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWARRAYSPROC) (GLenum mode, GLint first, GLsizei count);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLint first,GLsizei count)
  5106. PFNGLDRAWBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWBUFFERPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5107. PFNGLDRAWBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWBUFFERSPROC) (GLsizei n, const GLenum *bufs);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,const GLenum * bufs)
  5108. PFNGLDRAWELEMENTSBASEVERTEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, GLsizei count, GLenum typ/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const GLvoid * indices,GLint basevertex)
  5109. PFNGLDRAWELEMENTSINDIRECTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const GLvoid */;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLenum type,const GLvoid * indirect)
  5110. PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC) (GLenum mode, GLsizei count,/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const void * indices,GLsizei instancecount,GLuint baseinstance)
  5111. PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC) (GLenum mode, GLsi/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const void * indices,GLsizei instancecount,GLint basevertex,GLuint baseinstance)
  5112. PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC) (GLenum mode, GLsizei count, G/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const GLvoid * indices,GLsizei instancecount,GLint basevertex)
  5113. PFNGLDRAWELEMENTSINSTANCEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSINSTANCEDPROC) (GLenum mode, GLsizei count, GLenum type/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const GLvoid * indices,GLsizei instancecount)
  5114. PFNGLDRAWELEMENTSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWELEMENTSPROC) (GLenum mode, GLsizei count, GLenum type, const G/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLsizei count,GLenum type,const GLvoid * indices)
  5115. PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC) (GLenum mode, GLuint start, GLuint/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const GLvoid * indices,GLint basevertex)
  5116. PFNGLDRAWRANGEELEMENTSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWRANGEELEMENTSPROC) (GLenum mode, GLuint start, GLuint end, GLsi/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint start,GLuint end,GLsizei count,GLenum type,const GLvoid * indices)
  5117. PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC) (GLenum mode, GLuint id, GLsize/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint id,GLsizei instancecount)
  5118. PFNGLDRAWTRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKPROC) (GLenum mode, GLuint id);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint id)
  5119. PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC) (GLenum mode, GLuint id, /;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint id,GLuint stream,GLsizei instancecount)
  5120. PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC) (GLenum mode, GLuint id, GLuint st/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLuint id,GLuint stream)
  5121. PFNGLENABLEIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENABLEIPROC) (GLenum target, GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index)
  5122. PFNGLENABLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENABLEPROC) (GLenum cap);$/;" t typeref:typename:void (APIENTRYP)(GLenum cap)
  5123. PFNGLENABLEVERTEXATTRIBARRAYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLuint index)
  5124. PFNGLENDCONDITIONALRENDERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENDCONDITIONALRENDERPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5125. PFNGLENDQUERYINDEXEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENDQUERYINDEXEDPROC) (GLenum target, GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index)
  5126. PFNGLENDQUERYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENDQUERYPROC) (GLenum target);$/;" t typeref:typename:void (APIENTRYP)(GLenum target)
  5127. PFNGLENDTRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLENDTRANSFORMFEEDBACKPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5128. PFNGLFENCESYNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLsync (APIENTRYP PFNGLFENCESYNCPROC) (GLenum condition, GLbitfield flags);$/;" t typeref:typename:GLsync (APIENTRYP)(GLenum condition,GLbitfield flags)
  5129. PFNGLFINISHPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFINISHPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5130. PFNGLFLUSHMAPPEDBUFFERRANGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFLUSHMAPPEDBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsize/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLintptr offset,GLsizeiptr length)
  5131. PFNGLFLUSHPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFLUSHPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5132. PFNGLFRAMEBUFFERPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERPARAMETERIPROC) (GLenum target, GLenum pname, GLint para/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint param)
  5133. PFNGLFRAMEBUFFERRENDERBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFERPROC) (GLenum target, GLenum attachment, GLe/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLenum renderbuffertarget,GLuint renderbuffer)
  5134. PFNGLFRAMEBUFFERTEXTURE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DPROC) (GLenum target, GLenum attachment, GLenum/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLenum textarget,GLuint texture,GLint level)
  5135. PFNGLFRAMEBUFFERTEXTURE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DPROC) (GLenum target, GLenum attachment, GLenum/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLenum textarget,GLuint texture,GLint level)
  5136. PFNGLFRAMEBUFFERTEXTURE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DPROC) (GLenum target, GLenum attachment, GLenum/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLenum textarget,GLuint texture,GLint level,GLint zoffset)
  5137. PFNGLFRAMEBUFFERTEXTURELAYERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURELAYERPROC) (GLenum target, GLenum attachment, GLu/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLuint texture,GLint level,GLint layer)
  5138. PFNGLFRAMEBUFFERTEXTUREPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTUREPROC) (GLenum target, GLenum attachment, GLuint t/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLuint texture,GLint level)
  5139. PFNGLFRONTFACEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLFRONTFACEPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5140. PFNGLGENBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENBUFFERSPROC) (GLsizei n, GLuint *buffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * buffers)
  5141. PFNGLGENERATEMIPMAPPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENERATEMIPMAPPROC) (GLenum target);$/;" t typeref:typename:void (APIENTRYP)(GLenum target)
  5142. PFNGLGENFRAMEBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENFRAMEBUFFERSPROC) (GLsizei n, GLuint *framebuffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * framebuffers)
  5143. PFNGLGENPROGRAMPIPELINESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENPROGRAMPIPELINESPROC) (GLsizei n, GLuint *pipelines);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * pipelines)
  5144. PFNGLGENQUERIESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENQUERIESPROC) (GLsizei n, GLuint *ids);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * ids)
  5145. PFNGLGENRENDERBUFFERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENRENDERBUFFERSPROC) (GLsizei n, GLuint *renderbuffers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * renderbuffers)
  5146. PFNGLGENSAMPLERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENSAMPLERSPROC) (GLsizei count, GLuint *samplers);$/;" t typeref:typename:void (APIENTRYP)(GLsizei count,GLuint * samplers)
  5147. PFNGLGENTEXTURESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENTEXTURESPROC) (GLsizei n, GLuint *textures);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * textures)
  5148. PFNGLGENTRANSFORMFEEDBACKSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENTRANSFORMFEEDBACKSPROC) (GLsizei n, GLuint *ids);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * ids)
  5149. PFNGLGENVERTEXARRAYSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGENVERTEXARRAYSPROC) (GLsizei n, GLuint *arrays);$/;" t typeref:typename:void (APIENTRYP)(GLsizei n,GLuint * arrays)
  5150. PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC) (GLuint program, GLuint bufferI/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint bufferIndex,GLenum pname,GLint * params)
  5151. PFNGLGETACTIVEATTRIBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint index,GLsizei bufSize,GLsizei * length,GLint * size,GLenum * type,GLchar * name)
  5152. PFNGLGETACTIVESUBROUTINENAMEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINENAMEPROC) (GLuint program, GLenum shadertype, GL/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum shadertype,GLuint index,GLsizei bufsize,GLsizei * length,GLchar * name)
  5153. PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC) (GLuint program, GLenum shadertyp/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum shadertype,GLuint index,GLenum pname,GLint * values)
  5154. PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC) (GLuint program, GLenum shadert/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum shadertype,GLuint index,GLsizei bufsize,GLsizei * length,GLchar * name)
  5155. PFNGLGETACTIVEUNIFORMBLOCKIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKIVPROC) (GLuint program, GLuint uniformBlockIn/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint uniformBlockIndex,GLenum pname,GLint * params)
  5156. PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC) (GLuint program, GLuint uniformBlock/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint uniformBlockIndex,GLsizei bufSize,GLsizei * length,GLchar * uniformBlockName)
  5157. PFNGLGETACTIVEUNIFORMNAMEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMNAMEPROC) (GLuint program, GLuint uniformIndex, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint uniformIndex,GLsizei bufSize,GLsizei * length,GLchar * uniformName)
  5158. PFNGLGETACTIVEUNIFORMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint index,GLsizei bufSize,GLsizei * length,GLint * size,GLenum * type,GLchar * name)
  5159. PFNGLGETACTIVEUNIFORMSIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMSIVPROC) (GLuint program, GLsizei uniformCount, con/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei uniformCount,const GLuint * uniformIndices,GLenum pname,GLint * params)
  5160. PFNGLGETATTACHEDSHADERSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETATTACHEDSHADERSPROC) (GLuint program, GLsizei maxCount, GLsizei /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei maxCount,GLsizei * count,GLuint * obj)
  5161. PFNGLGETATTRIBLOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETATTRIBLOCATIONPROC) (GLuint program, const GLchar *name);$/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,const GLchar * name)
  5162. PFNGLGETBOOLEANI_VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBOOLEANI_VPROC) (GLenum target, GLuint index, GLboolean *data);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLboolean * data)
  5163. PFNGLGETBOOLEANVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBOOLEANVPROC) (GLenum pname, GLboolean *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLboolean * params)
  5164. PFNGLGETBUFFERPARAMETERI64VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERI64VPROC) (GLenum target, GLenum pname, GLint64 */;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint64 * params)
  5165. PFNGLGETBUFFERPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *para/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5166. PFNGLGETBUFFERPOINTERVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBUFFERPOINTERVPROC) (GLenum target, GLenum pname, GLvoid* *param/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLvoid ** params)
  5167. PFNGLGETBUFFERSUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr s/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLintptr offset,GLsizeiptr size,GLvoid * data)
  5168. PFNGLGETCOMPRESSEDTEXIMAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETCOMPRESSEDTEXIMAGEPROC) (GLenum target, GLint level, GLvoid *img/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLvoid * img)
  5169. PFNGLGETDEBUGMESSAGELOGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGARBPROC) (GLuint count, GLsizei bufsize, GLenum/;" t typeref:typename:GLuint (APIENTRYP)(GLuint count,GLsizei bufsize,GLenum * sources,GLenum * types,GLuint * ids,GLenum * severities,GLsizei * lengths,GLchar * messageLog)
  5170. PFNGLGETDEBUGMESSAGELOGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLGETDEBUGMESSAGELOGPROC) (GLuint count, GLsizei bufsize, GLenum *s/;" t typeref:typename:GLuint (APIENTRYP)(GLuint count,GLsizei bufsize,GLenum * sources,GLenum * types,GLuint * ids,GLenum * severities,GLsizei * lengths,GLchar * messageLog)
  5171. PFNGLGETDOUBLEI_VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETDOUBLEI_VPROC) (GLenum target, GLuint index, GLdouble *data);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLdouble * data)
  5172. PFNGLGETDOUBLEVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETDOUBLEVPROC) (GLenum pname, GLdouble *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLdouble * params)
  5173. PFNGLGETERRORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLenum (APIENTRYP PFNGLGETERRORPROC) (void);$/;" t typeref:typename:GLenum (APIENTRYP)(void)
  5174. PFNGLGETFLOATI_VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETFLOATI_VPROC) (GLenum target, GLuint index, GLfloat *data);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLfloat * data)
  5175. PFNGLGETFLOATVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETFLOATVPROC) (GLenum pname, GLfloat *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLfloat * params)
  5176. PFNGLGETFRAGDATAINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETFRAGDATAINDEXPROC) (GLuint program, const GLchar *name);$/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,const GLchar * name)
  5177. PFNGLGETFRAGDATALOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETFRAGDATALOCATIONPROC) (GLuint program, const GLchar *name);$/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,const GLchar * name)
  5178. PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC) (GLenum target, GLenum att/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum attachment,GLenum pname,GLint * params)
  5179. PFNGLGETFRAMEBUFFERPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETFRAMEBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5180. PFNGLGETGRAPHICSRESETSTATUSARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLenum (APIENTRYP PFNGLGETGRAPHICSRESETSTATUSARBPROC) (void);$/;" t typeref:typename:GLenum (APIENTRYP)(void)
  5181. PFNGLGETINTEGER64I_VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTEGER64I_VPROC) (GLenum target, GLuint index, GLint64 *data);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLint64 * data)
  5182. PFNGLGETINTEGER64VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTEGER64VPROC) (GLenum pname, GLint64 *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLint64 * params)
  5183. PFNGLGETINTEGERI_VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTEGERI_VPROC) (GLenum target, GLuint index, GLint *data);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLint * data)
  5184. PFNGLGETINTEGERVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTEGERVPROC) (GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLint * params)
  5185. PFNGLGETINTERNALFORMATI64VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTERNALFORMATI64VPROC) (GLenum target, GLenum internalformat, G/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLenum pname,GLsizei bufSize,GLint64 * params)
  5186. PFNGLGETINTERNALFORMATIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETINTERNALFORMATIVPROC) (GLenum target, GLenum internalformat, GLe/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLenum pname,GLsizei bufSize,GLint * params)
  5187. PFNGLGETMULTISAMPLEFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETMULTISAMPLEFVPROC) (GLenum pname, GLuint index, GLfloat *val);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLuint index,GLfloat * val)
  5188. PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC) (GLuint framebuffer, GLenum /;" t typeref:typename:void (APIENTRYP)(GLuint framebuffer,GLenum pname,GLint * params)
  5189. PFNGLGETNAMEDSTRINGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name, GLsizei /;" t typeref:typename:void (APIENTRYP)(GLint namelen,const GLchar * name,GLsizei bufSize,GLint * stringlen,GLchar * string)
  5190. PFNGLGETNAMEDSTRINGIVARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNAMEDSTRINGIVARBPROC) (GLint namelen, const GLchar *name, GLenum/;" t typeref:typename:void (APIENTRYP)(GLint namelen,const GLchar * name,GLenum pname,GLint * params)
  5191. PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC) (GLenum target, GLint lod, GLsizei b/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint lod,GLsizei bufSize,GLvoid * img)
  5192. PFNGLGETNTEXIMAGEARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNTEXIMAGEARBPROC) (GLenum target, GLint level, GLenum format, GL/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum format,GLenum type,GLsizei bufSize,GLvoid * img)
  5193. PFNGLGETNUNIFORMDVARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNUNIFORMDVARBPROC) (GLuint program, GLint location, GLsizei bufS/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei bufSize,GLdouble * params)
  5194. PFNGLGETNUNIFORMFVARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNUNIFORMFVARBPROC) (GLuint program, GLint location, GLsizei bufS/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei bufSize,GLfloat * params)
  5195. PFNGLGETNUNIFORMIVARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNUNIFORMIVARBPROC) (GLuint program, GLint location, GLsizei bufS/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei bufSize,GLint * params)
  5196. PFNGLGETNUNIFORMUIVARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETNUNIFORMUIVARBPROC) (GLuint program, GLint location, GLsizei buf/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei bufSize,GLuint * params)
  5197. PFNGLGETOBJECTLABELPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei bufSiz/;" t typeref:typename:void (APIENTRYP)(GLenum identifier,GLuint name,GLsizei bufSize,GLsizei * length,GLchar * label)
  5198. PFNGLGETOBJECTPTRLABELPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETOBJECTPTRLABELPROC) (const void *ptr, GLsizei bufSize, GLsizei */;" t typeref:typename:void (APIENTRYP)(const void * ptr,GLsizei bufSize,GLsizei * length,GLchar * label)
  5199. PFNGLGETPOINTERVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPOINTERVPROC) (GLenum pname, GLvoid* *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLvoid ** params)
  5200. PFNGLGETPROGRAMBINARYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMBINARYPROC) (GLuint program, GLsizei bufSize, GLsizei *le/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei bufSize,GLsizei * length,GLenum * binaryFormat,GLvoid * binary)
  5201. PFNGLGETPROGRAMINFOLOGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMINFOLOGPROC) (GLuint program, GLsizei bufSize, GLsizei *l/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei bufSize,GLsizei * length,GLchar * infoLog)
  5202. PFNGLGETPROGRAMINTERFACEIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMINTERFACEIVPROC) (GLuint program, GLenum programInterface/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum programInterface,GLenum pname,GLint * params)
  5203. PFNGLGETPROGRAMIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMIVPROC) (GLuint program, GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum pname,GLint * params)
  5204. PFNGLGETPROGRAMPIPELINEINFOLOGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEINFOLOGPROC) (GLuint pipeline, GLsizei bufSize, G/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline,GLsizei bufSize,GLsizei * length,GLchar * infoLog)
  5205. PFNGLGETPROGRAMPIPELINEIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMPIPELINEIVPROC) (GLuint pipeline, GLenum pname, GLint *pa/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline,GLenum pname,GLint * params)
  5206. PFNGLGETPROGRAMRESOURCEINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLGETPROGRAMRESOURCEINDEXPROC) (GLuint program, GLenum programInter/;" t typeref:typename:GLuint (APIENTRYP)(GLuint program,GLenum programInterface,const GLchar * name)
  5207. PFNGLGETPROGRAMRESOURCEIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCEIVPROC) (GLuint program, GLenum programInterface,/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum programInterface,GLuint index,GLsizei propCount,const GLenum * props,GLsizei bufSize,GLsizei * length,GLint * params)
  5208. PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC) (GLuint program, GLenum progr/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,GLenum programInterface,const GLchar * name)
  5209. PFNGLGETPROGRAMRESOURCELOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETPROGRAMRESOURCELOCATIONPROC) (GLuint program, GLenum programInt/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,GLenum programInterface,const GLchar * name)
  5210. PFNGLGETPROGRAMRESOURCENAMEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMRESOURCENAMEPROC) (GLuint program, GLenum programInterfac/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum programInterface,GLuint index,GLsizei bufSize,GLsizei * length,GLchar * name)
  5211. PFNGLGETPROGRAMSTAGEIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETPROGRAMSTAGEIVPROC) (GLuint program, GLenum shadertype, GLenum p/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum shadertype,GLenum pname,GLint * values)
  5212. PFNGLGETQUERYINDEXEDIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYINDEXEDIVPROC) (GLenum target, GLuint index, GLenum pname, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLuint index,GLenum pname,GLint * params)
  5213. PFNGLGETQUERYIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYIVPROC) (GLenum target, GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5214. PFNGLGETQUERYOBJECTI64VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYOBJECTI64VPROC) (GLuint id, GLenum pname, GLint64 *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum pname,GLint64 * params)
  5215. PFNGLGETQUERYOBJECTIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYOBJECTIVPROC) (GLuint id, GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum pname,GLint * params)
  5216. PFNGLGETQUERYOBJECTUI64VPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYOBJECTUI64VPROC) (GLuint id, GLenum pname, GLuint64 *params/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum pname,GLuint64 * params)
  5217. PFNGLGETQUERYOBJECTUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETQUERYOBJECTUIVPROC) (GLuint id, GLenum pname, GLuint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum pname,GLuint * params)
  5218. PFNGLGETRENDERBUFFERPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETRENDERBUFFERPARAMETERIVPROC) (GLenum target, GLenum pname, GLint/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5219. PFNGLGETSAMPLERPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, GLfloat */;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLfloat * params)
  5220. PFNGLGETSAMPLERPARAMETERIIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, GLint *p/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLint * params)
  5221. PFNGLGETSAMPLERPARAMETERIUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, GLuint /;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLuint * params)
  5222. PFNGLGETSAMPLERPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, GLint *pa/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLint * params)
  5223. PFNGLGETSHADERINFOLOGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSHADERINFOLOGPROC) (GLuint shader, GLsizei bufSize, GLsizei *len/;" t typeref:typename:void (APIENTRYP)(GLuint shader,GLsizei bufSize,GLsizei * length,GLchar * infoLog)
  5224. PFNGLGETSHADERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSHADERIVPROC) (GLuint shader, GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint shader,GLenum pname,GLint * params)
  5225. PFNGLGETSHADERPRECISIONFORMATPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSHADERPRECISIONFORMATPROC) (GLenum shadertype, GLenum precisiont/;" t typeref:typename:void (APIENTRYP)(GLenum shadertype,GLenum precisiontype,GLint * range,GLint * precision)
  5226. PFNGLGETSHADERSOURCEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSHADERSOURCEPROC) (GLuint shader, GLsizei bufSize, GLsizei *leng/;" t typeref:typename:void (APIENTRYP)(GLuint shader,GLsizei bufSize,GLsizei * length,GLchar * source)
  5227. PFNGLGETSTRINGIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGIPROC) (GLenum name, GLuint index);$/;" t typeref:typename:const GLubyte * (APIENTRYP)(GLenum name,GLuint index)
  5228. PFNGLGETSTRINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef const GLubyte * (APIENTRYP PFNGLGETSTRINGPROC) (GLenum name);$/;" t typeref:typename:const GLubyte * (APIENTRYP)(GLenum name)
  5229. PFNGLGETSUBROUTINEINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLGETSUBROUTINEINDEXPROC) (GLuint program, GLenum shadertype, const/;" t typeref:typename:GLuint (APIENTRYP)(GLuint program,GLenum shadertype,const GLchar * name)
  5230. PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC) (GLuint program, GLenum shaderty/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,GLenum shadertype,const GLchar * name)
  5231. PFNGLGETSYNCIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETSYNCIVPROC) (GLsync sync, GLenum pname, GLsizei bufSize, GLsizei/;" t typeref:typename:void (APIENTRYP)(GLsync sync,GLenum pname,GLsizei bufSize,GLsizei * length,GLint * values)
  5232. PFNGLGETTEXIMAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXIMAGEPROC) (GLenum target, GLint level, GLenum format, GLenum/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum format,GLenum type,GLvoid * pixels)
  5233. PFNGLGETTEXLEVELPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERFVPROC) (GLenum target, GLint level, GLenum pna/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum pname,GLfloat * params)
  5234. PFNGLGETTEXLEVELPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXLEVELPARAMETERIVPROC) (GLenum target, GLint level, GLenum pna/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLenum pname,GLint * params)
  5235. PFNGLGETTEXPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXPARAMETERFVPROC) (GLenum target, GLenum pname, GLfloat *param/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLfloat * params)
  5236. PFNGLGETTEXPARAMETERIIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, GLint *params/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5237. PFNGLGETTEXPARAMETERIUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, GLuint *para/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLuint * params)
  5238. PFNGLGETTEXPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTEXPARAMETERIVPROC) (GLenum target, GLenum pname, GLint *params)/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint * params)
  5239. PFNGLGETTRANSFORMFEEDBACKVARYINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETTRANSFORMFEEDBACKVARYINGPROC) (GLuint program, GLuint index, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint index,GLsizei bufSize,GLsizei * length,GLsizei * size,GLenum * type,GLchar * name)
  5240. PFNGLGETUNIFORMBLOCKINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLuint (APIENTRYP PFNGLGETUNIFORMBLOCKINDEXPROC) (GLuint program, const GLchar *uniformB/;" t typeref:typename:GLuint (APIENTRYP)(GLuint program,const GLchar * uniformBlockName)
  5241. PFNGLGETUNIFORMDVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMDVPROC) (GLuint program, GLint location, GLdouble *params/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLdouble * params)
  5242. PFNGLGETUNIFORMFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMFVPROC) (GLuint program, GLint location, GLfloat *params)/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLfloat * params)
  5243. PFNGLGETUNIFORMINDICESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMINDICESPROC) (GLuint program, GLsizei uniformCount, const/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei uniformCount,const GLchar * const * uniformNames,GLuint * uniformIndices)
  5244. PFNGLGETUNIFORMIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMIVPROC) (GLuint program, GLint location, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLint * params)
  5245. PFNGLGETUNIFORMLOCATIONPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLint (APIENTRYP PFNGLGETUNIFORMLOCATIONPROC) (GLuint program, const GLchar *name);$/;" t typeref:typename:GLint (APIENTRYP)(GLuint program,const GLchar * name)
  5246. PFNGLGETUNIFORMSUBROUTINEUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMSUBROUTINEUIVPROC) (GLenum shadertype, GLint location, GL/;" t typeref:typename:void (APIENTRYP)(GLenum shadertype,GLint location,GLuint * params)
  5247. PFNGLGETUNIFORMUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETUNIFORMUIVPROC) (GLuint program, GLint location, GLuint *params)/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLuint * params)
  5248. PFNGLGETVERTEXATTRIBDVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBDVPROC) (GLuint index, GLenum pname, GLdouble *param/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLdouble * params)
  5249. PFNGLGETVERTEXATTRIBFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLfloat * params)
  5250. PFNGLGETVERTEXATTRIBIIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIIVPROC) (GLuint index, GLenum pname, GLint *params)/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLint * params)
  5251. PFNGLGETVERTEXATTRIBIUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIUIVPROC) (GLuint index, GLenum pname, GLuint *param/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLuint * params)
  5252. PFNGLGETVERTEXATTRIBIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLint * params)
  5253. PFNGLGETVERTEXATTRIBLDVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBLDVPROC) (GLuint index, GLenum pname, GLdouble *para/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLdouble * params)
  5254. PFNGLGETVERTEXATTRIBPOINTERVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, GLvoid* */;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum pname,GLvoid ** pointer)
  5255. PFNGLHINTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLHINTPROC) (GLenum target, GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum mode)
  5256. PFNGLINVALIDATEBUFFERDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATEBUFFERDATAPROC) (GLuint buffer);$/;" t typeref:typename:void (APIENTRYP)(GLuint buffer)
  5257. PFNGLINVALIDATEBUFFERSUBDATAPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATEBUFFERSUBDATAPROC) (GLuint buffer, GLintptr offset, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint buffer,GLintptr offset,GLsizeiptr length)
  5258. PFNGLINVALIDATEFRAMEBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATEFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachments, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei numAttachments,const GLenum * attachments)
  5259. PFNGLINVALIDATESUBFRAMEBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATESUBFRAMEBUFFERPROC) (GLenum target, GLsizei numAttachment/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei numAttachments,const GLenum * attachments,GLint x,GLint y,GLsizei width,GLsizei height)
  5260. PFNGLINVALIDATETEXIMAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATETEXIMAGEPROC) (GLuint texture, GLint level);$/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLint level)
  5261. PFNGLINVALIDATETEXSUBIMAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLINVALIDATETEXSUBIMAGEPROC) (GLuint texture, GLint level, GLint xoff/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLsizei depth)
  5262. PFNGLISBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISBUFFERPROC) (GLuint buffer);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint buffer)
  5263. PFNGLISENABLEDIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISENABLEDIPROC) (GLenum target, GLuint index);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLenum target,GLuint index)
  5264. PFNGLISENABLEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISENABLEDPROC) (GLenum cap);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLenum cap)
  5265. PFNGLISFRAMEBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISFRAMEBUFFERPROC) (GLuint framebuffer);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint framebuffer)
  5266. PFNGLISNAMEDSTRINGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISNAMEDSTRINGARBPROC) (GLint namelen, const GLchar *name);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLint namelen,const GLchar * name)
  5267. PFNGLISPROGRAMPIPELINEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISPROGRAMPIPELINEPROC) (GLuint pipeline);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint pipeline)
  5268. PFNGLISPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint program)
  5269. PFNGLISQUERYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISQUERYPROC) (GLuint id);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint id)
  5270. PFNGLISRENDERBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISRENDERBUFFERPROC) (GLuint renderbuffer);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint renderbuffer)
  5271. PFNGLISSAMPLERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISSAMPLERPROC) (GLuint sampler);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint sampler)
  5272. PFNGLISSHADERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISSHADERPROC) (GLuint shader);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint shader)
  5273. PFNGLISSYNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISSYNCPROC) (GLsync sync);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLsync sync)
  5274. PFNGLISTEXTUREPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISTEXTUREPROC) (GLuint texture);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint texture)
  5275. PFNGLISTRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISTRANSFORMFEEDBACKPROC) (GLuint id);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint id)
  5276. PFNGLISVERTEXARRAYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLISVERTEXARRAYPROC) (GLuint array);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLuint array)
  5277. PFNGLLINEWIDTHPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLLINEWIDTHPROC) (GLfloat width);$/;" t typeref:typename:void (APIENTRYP)(GLfloat width)
  5278. PFNGLLINKPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program);$/;" t typeref:typename:void (APIENTRYP)(GLuint program)
  5279. PFNGLLOGICOPPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLLOGICOPPROC) (GLenum opcode);$/;" t typeref:typename:void (APIENTRYP)(GLenum opcode)
  5280. PFNGLMAPBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERPROC) (GLenum target, GLenum access);$/;" t typeref:typename:GLvoid * (APIENTRYP)(GLenum target,GLenum access)
  5281. PFNGLMAPBUFFERRANGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLvoid* (APIENTRYP PFNGLMAPBUFFERRANGEPROC) (GLenum target, GLintptr offset, GLsizeiptr /;" t typeref:typename:GLvoid * (APIENTRYP)(GLenum target,GLintptr offset,GLsizeiptr length,GLbitfield access)
  5282. PFNGLMEMORYBARRIERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMEMORYBARRIERPROC) (GLbitfield barriers);$/;" t typeref:typename:void (APIENTRYP)(GLbitfield barriers)
  5283. PFNGLMINSAMPLESHADINGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMINSAMPLESHADINGARBPROC) (GLfloat value);$/;" t typeref:typename:void (APIENTRYP)(GLfloat value)
  5284. PFNGLMINSAMPLESHADINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMINSAMPLESHADINGPROC) (GLfloat value);$/;" t typeref:typename:void (APIENTRYP)(GLfloat value)
  5285. PFNGLMULTIDRAWARRAYSINDIRECTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSINDIRECTPROC) (GLenum mode, const void *indirect, GL/;" t typeref:typename:void (APIENTRYP)(GLenum mode,const void * indirect,GLsizei drawcount,GLsizei stride)
  5286. PFNGLMULTIDRAWARRAYSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTIDRAWARRAYSPROC) (GLenum mode, const GLint *first, const GLsize/;" t typeref:typename:void (APIENTRYP)(GLenum mode,const GLint * first,const GLsizei * count,GLsizei drawcount)
  5287. PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC) (GLenum mode, const GLsizei *count/;" t typeref:typename:void (APIENTRYP)(GLenum mode,const GLsizei * count,GLenum type,const GLvoid * const * indices,GLsizei drawcount,const GLint * basevertex)
  5288. PFNGLMULTIDRAWELEMENTSINDIRECTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSINDIRECTPROC) (GLenum mode, GLenum type, const voi/;" t typeref:typename:void (APIENTRYP)(GLenum mode,GLenum type,const void * indirect,GLsizei drawcount,GLsizei stride)
  5289. PFNGLMULTIDRAWELEMENTSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTIDRAWELEMENTSPROC) (GLenum mode, const GLsizei *count, GLenum t/;" t typeref:typename:void (APIENTRYP)(GLenum mode,const GLsizei * count,GLenum type,const GLvoid * const * indices,GLsizei drawcount)
  5290. PFNGLMULTITEXCOORDP1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIPROC) (GLenum texture, GLenum type, GLuint coords)/;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,GLuint coords)
  5291. PFNGLMULTITEXCOORDP1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP1UIVPROC) (GLenum texture, GLenum type, const GLuint /;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,const GLuint * coords)
  5292. PFNGLMULTITEXCOORDP2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIPROC) (GLenum texture, GLenum type, GLuint coords)/;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,GLuint coords)
  5293. PFNGLMULTITEXCOORDP2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP2UIVPROC) (GLenum texture, GLenum type, const GLuint /;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,const GLuint * coords)
  5294. PFNGLMULTITEXCOORDP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIPROC) (GLenum texture, GLenum type, GLuint coords)/;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,GLuint coords)
  5295. PFNGLMULTITEXCOORDP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP3UIVPROC) (GLenum texture, GLenum type, const GLuint /;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,const GLuint * coords)
  5296. PFNGLMULTITEXCOORDP4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIPROC) (GLenum texture, GLenum type, GLuint coords)/;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,GLuint coords)
  5297. PFNGLMULTITEXCOORDP4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLMULTITEXCOORDP4UIVPROC) (GLenum texture, GLenum type, const GLuint /;" t typeref:typename:void (APIENTRYP)(GLenum texture,GLenum type,const GLuint * coords)
  5298. PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC) (GLuint framebuffer, GLenum pnam/;" t typeref:typename:void (APIENTRYP)(GLuint framebuffer,GLenum pname,GLint param)
  5299. PFNGLNAMEDSTRINGARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLNAMEDSTRINGARBPROC) (GLenum type, GLint namelen, const GLchar *name/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLint namelen,const GLchar * name,GLint stringlen,const GLchar * string)
  5300. PFNGLNORMALP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLNORMALP3UIPROC) (GLenum type, GLuint coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint coords)
  5301. PFNGLNORMALP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLNORMALP3UIVPROC) (GLenum type, const GLuint *coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * coords)
  5302. PFNGLOBJECTLABELPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLOBJECTLABELPROC) (GLenum identifier, GLuint name, GLsizei length, c/;" t typeref:typename:void (APIENTRYP)(GLenum identifier,GLuint name,GLsizei length,const GLchar * label)
  5303. PFNGLOBJECTPTRLABELPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLOBJECTPTRLABELPROC) (const void *ptr, GLsizei length, const GLchar /;" t typeref:typename:void (APIENTRYP)(const void * ptr,GLsizei length,const GLchar * label)
  5304. PFNGLPATCHPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPATCHPARAMETERFVPROC) (GLenum pname, const GLfloat *values);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,const GLfloat * values)
  5305. PFNGLPATCHPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPATCHPARAMETERIPROC) (GLenum pname, GLint value);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLint value)
  5306. PFNGLPAUSETRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPAUSETRANSFORMFEEDBACKPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5307. PFNGLPIXELSTOREFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPIXELSTOREFPROC) (GLenum pname, GLfloat param);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLfloat param)
  5308. PFNGLPIXELSTOREIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPIXELSTOREIPROC) (GLenum pname, GLint param);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLint param)
  5309. PFNGLPOINTPARAMETERFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOINTPARAMETERFPROC) (GLenum pname, GLfloat param);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLfloat param)
  5310. PFNGLPOINTPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOINTPARAMETERFVPROC) (GLenum pname, const GLfloat *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,const GLfloat * params)
  5311. PFNGLPOINTPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOINTPARAMETERIPROC) (GLenum pname, GLint param);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,GLint param)
  5312. PFNGLPOINTPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOINTPARAMETERIVPROC) (GLenum pname, const GLint *params);$/;" t typeref:typename:void (APIENTRYP)(GLenum pname,const GLint * params)
  5313. PFNGLPOINTSIZEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOINTSIZEPROC) (GLfloat size);$/;" t typeref:typename:void (APIENTRYP)(GLfloat size)
  5314. PFNGLPOLYGONMODEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOLYGONMODEPROC) (GLenum face, GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum face,GLenum mode)
  5315. PFNGLPOLYGONOFFSETPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOLYGONOFFSETPROC) (GLfloat factor, GLfloat units);$/;" t typeref:typename:void (APIENTRYP)(GLfloat factor,GLfloat units)
  5316. PFNGLPOPDEBUGGROUPPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPOPDEBUGGROUPPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5317. PFNGLPRIMITIVERESTARTINDEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPRIMITIVERESTARTINDEXPROC) (GLuint index);$/;" t typeref:typename:void (APIENTRYP)(GLuint index)
  5318. PFNGLPROGRAMBINARYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMBINARYPROC) (GLuint program, GLenum binaryFormat, const GLvo/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum binaryFormat,const GLvoid * binary,GLsizei length)
  5319. PFNGLPROGRAMPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMPARAMETERIPROC) (GLuint program, GLenum pname, GLint value);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLenum pname,GLint value)
  5320. PFNGLPROGRAMUNIFORM1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DPROC) (GLuint program, GLint location, GLdouble v0)/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLdouble v0)
  5321. PFNGLPROGRAMUNIFORM1DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1DVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLdouble * value)
  5322. PFNGLPROGRAMUNIFORM1FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FPROC) (GLuint program, GLint location, GLfloat v0);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLfloat v0)
  5323. PFNGLPROGRAMUNIFORM1FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1FVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLfloat * value)
  5324. PFNGLPROGRAMUNIFORM1IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IPROC) (GLuint program, GLint location, GLint v0);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLint v0)
  5325. PFNGLPROGRAMUNIFORM1IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1IVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLint * value)
  5326. PFNGLPROGRAMUNIFORM1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIPROC) (GLuint program, GLint location, GLuint v0);$/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLuint v0)
  5327. PFNGLPROGRAMUNIFORM1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM1UIVPROC) (GLuint program, GLint location, GLsizei co/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLuint * value)
  5328. PFNGLPROGRAMUNIFORM2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DPROC) (GLuint program, GLint location, GLdouble v0,/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLdouble v0,GLdouble v1)
  5329. PFNGLPROGRAMUNIFORM2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2DVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLdouble * value)
  5330. PFNGLPROGRAMUNIFORM2FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FPROC) (GLuint program, GLint location, GLfloat v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLfloat v0,GLfloat v1)
  5331. PFNGLPROGRAMUNIFORM2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2FVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLfloat * value)
  5332. PFNGLPROGRAMUNIFORM2IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IPROC) (GLuint program, GLint location, GLint v0, GL/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLint v0,GLint v1)
  5333. PFNGLPROGRAMUNIFORM2IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2IVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLint * value)
  5334. PFNGLPROGRAMUNIFORM2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIPROC) (GLuint program, GLint location, GLuint v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLuint v0,GLuint v1)
  5335. PFNGLPROGRAMUNIFORM2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM2UIVPROC) (GLuint program, GLint location, GLsizei co/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLuint * value)
  5336. PFNGLPROGRAMUNIFORM3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DPROC) (GLuint program, GLint location, GLdouble v0,/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLdouble v0,GLdouble v1,GLdouble v2)
  5337. PFNGLPROGRAMUNIFORM3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3DVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLdouble * value)
  5338. PFNGLPROGRAMUNIFORM3FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FPROC) (GLuint program, GLint location, GLfloat v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLfloat v0,GLfloat v1,GLfloat v2)
  5339. PFNGLPROGRAMUNIFORM3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3FVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLfloat * value)
  5340. PFNGLPROGRAMUNIFORM3IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IPROC) (GLuint program, GLint location, GLint v0, GL/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLint v0,GLint v1,GLint v2)
  5341. PFNGLPROGRAMUNIFORM3IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3IVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLint * value)
  5342. PFNGLPROGRAMUNIFORM3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIPROC) (GLuint program, GLint location, GLuint v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLuint v0,GLuint v1,GLuint v2)
  5343. PFNGLPROGRAMUNIFORM3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM3UIVPROC) (GLuint program, GLint location, GLsizei co/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLuint * value)
  5344. PFNGLPROGRAMUNIFORM4DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DPROC) (GLuint program, GLint location, GLdouble v0,/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLdouble v0,GLdouble v1,GLdouble v2,GLdouble v3)
  5345. PFNGLPROGRAMUNIFORM4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4DVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLdouble * value)
  5346. PFNGLPROGRAMUNIFORM4FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FPROC) (GLuint program, GLint location, GLfloat v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLfloat v0,GLfloat v1,GLfloat v2,GLfloat v3)
  5347. PFNGLPROGRAMUNIFORM4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4FVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLfloat * value)
  5348. PFNGLPROGRAMUNIFORM4IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IPROC) (GLuint program, GLint location, GLint v0, GL/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLint v0,GLint v1,GLint v2,GLint v3)
  5349. PFNGLPROGRAMUNIFORM4IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4IVPROC) (GLuint program, GLint location, GLsizei cou/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLint * value)
  5350. PFNGLPROGRAMUNIFORM4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIPROC) (GLuint program, GLint location, GLuint v0, /;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLuint v0,GLuint v1,GLuint v2,GLuint v3)
  5351. PFNGLPROGRAMUNIFORM4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORM4UIVPROC) (GLuint program, GLint location, GLsizei co/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,const GLuint * value)
  5352. PFNGLPROGRAMUNIFORMMATRIX2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2DVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5353. PFNGLPROGRAMUNIFORMMATRIX2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2FVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5354. PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5355. PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5356. PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5357. PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5358. PFNGLPROGRAMUNIFORMMATRIX3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3DVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5359. PFNGLPROGRAMUNIFORMMATRIX3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3FVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5360. PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5361. PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5362. PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5363. PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5364. PFNGLPROGRAMUNIFORMMATRIX4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4DVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5365. PFNGLPROGRAMUNIFORMMATRIX4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4FVPROC) (GLuint program, GLint location, GLsiz/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5366. PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5367. PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5368. PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5369. PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC) (GLuint program, GLint location, GLs/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5370. PFNGLPROVOKINGVERTEXPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPROVOKINGVERTEXPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5371. PFNGLPUSHDEBUGGROUPPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLPUSHDEBUGGROUPPROC) (GLenum source, GLuint id, GLsizei length, cons/;" t typeref:typename:void (APIENTRYP)(GLenum source,GLuint id,GLsizei length,const GLchar * message)
  5372. PFNGLQUERYCOUNTERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLQUERYCOUNTERPROC) (GLuint id, GLenum target);$/;" t typeref:typename:void (APIENTRYP)(GLuint id,GLenum target)
  5373. PFNGLREADBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLREADBUFFERPROC) (GLenum mode);$/;" t typeref:typename:void (APIENTRYP)(GLenum mode)
  5374. PFNGLREADNPIXELSARBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLREADNPIXELSARBPROC) (GLint x, GLint y, GLsizei width, GLsizei heigh/;" t typeref:typename:void (APIENTRYP)(GLint x,GLint y,GLsizei width,GLsizei height,GLenum format,GLenum type,GLsizei bufSize,GLvoid * data)
  5375. PFNGLREADPIXELSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLREADPIXELSPROC) (GLint x, GLint y, GLsizei width, GLsizei height, G/;" t typeref:typename:void (APIENTRYP)(GLint x,GLint y,GLsizei width,GLsizei height,GLenum format,GLenum type,GLvoid * pixels)
  5376. PFNGLRELEASESHADERCOMPILERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLRELEASESHADERCOMPILERPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5377. PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC) (GLenum target, GLsizei samples/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei samples,GLenum internalformat,GLsizei width,GLsizei height)
  5378. PFNGLRENDERBUFFERSTORAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLRENDERBUFFERSTORAGEPROC) (GLenum target, GLenum internalformat, GLs/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLsizei width,GLsizei height)
  5379. PFNGLRESUMETRANSFORMFEEDBACKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLRESUMETRANSFORMFEEDBACKPROC) (void);$/;" t typeref:typename:void (APIENTRYP)(void)
  5380. PFNGLSAMPLECOVERAGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLECOVERAGEPROC) (GLfloat value, GLboolean invert);$/;" t typeref:typename:void (APIENTRYP)(GLfloat value,GLboolean invert)
  5381. PFNGLSAMPLEMASKIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLEMASKIPROC) (GLuint index, GLbitfield mask);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLbitfield mask)
  5382. PFNGLSAMPLERPARAMETERFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFPROC) (GLuint sampler, GLenum pname, GLfloat param/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLfloat param)
  5383. PFNGLSAMPLERPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERFVPROC) (GLuint sampler, GLenum pname, const GLfloa/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,const GLfloat * param)
  5384. PFNGLSAMPLERPARAMETERIIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIIVPROC) (GLuint sampler, GLenum pname, const GLint/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,const GLint * param)
  5385. PFNGLSAMPLERPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIPROC) (GLuint sampler, GLenum pname, GLint param);$/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,GLint param)
  5386. PFNGLSAMPLERPARAMETERIUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIUIVPROC) (GLuint sampler, GLenum pname, const GLui/;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,const GLuint * param)
  5387. PFNGLSAMPLERPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSAMPLERPARAMETERIVPROC) (GLuint sampler, GLenum pname, const GLint /;" t typeref:typename:void (APIENTRYP)(GLuint sampler,GLenum pname,const GLint * param)
  5388. PFNGLSCISSORARRAYVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSCISSORARRAYVPROC) (GLuint first, GLsizei count, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint first,GLsizei count,const GLint * v)
  5389. PFNGLSCISSORINDEXEDPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSCISSORINDEXEDPROC) (GLuint index, GLint left, GLint bottom, GLsize/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint left,GLint bottom,GLsizei width,GLsizei height)
  5390. PFNGLSCISSORINDEXEDVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSCISSORINDEXEDVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5391. PFNGLSCISSORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSCISSORPROC) (GLint x, GLint y, GLsizei width, GLsizei height);$/;" t typeref:typename:void (APIENTRYP)(GLint x,GLint y,GLsizei width,GLsizei height)
  5392. PFNGLSECONDARYCOLORP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIPROC) (GLenum type, GLuint color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint color)
  5393. PFNGLSECONDARYCOLORP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSECONDARYCOLORP3UIVPROC) (GLenum type, const GLuint *color);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * color)
  5394. PFNGLSHADERBINARYPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSHADERBINARYPROC) (GLsizei count, const GLuint *shaders, GLenum bin/;" t typeref:typename:void (APIENTRYP)(GLsizei count,const GLuint * shaders,GLenum binaryformat,const GLvoid * binary,GLsizei length)
  5395. PFNGLSHADERSOURCEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSHADERSOURCEPROC) (GLuint shader, GLsizei count, const GLchar* cons/;" t typeref:typename:void (APIENTRYP)(GLuint shader,GLsizei count,const GLchar * const * string,const GLint * length)
  5396. PFNGLSHADERSTORAGEBLOCKBINDINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSHADERSTORAGEBLOCKBINDINGPROC) (GLuint program, GLuint storageBlock/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint storageBlockIndex,GLuint storageBlockBinding)
  5397. PFNGLSTENCILFUNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask);$/;" t typeref:typename:void (APIENTRYP)(GLenum func,GLint ref,GLuint mask)
  5398. PFNGLSTENCILFUNCSEPARATEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLui/;" t typeref:typename:void (APIENTRYP)(GLenum face,GLenum func,GLint ref,GLuint mask)
  5399. PFNGLSTENCILMASKPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILMASKPROC) (GLuint mask);$/;" t typeref:typename:void (APIENTRYP)(GLuint mask)
  5400. PFNGLSTENCILMASKSEPARATEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask);$/;" t typeref:typename:void (APIENTRYP)(GLenum face,GLuint mask)
  5401. PFNGLSTENCILOPPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILOPPROC) (GLenum fail, GLenum zfail, GLenum zpass);$/;" t typeref:typename:void (APIENTRYP)(GLenum fail,GLenum zfail,GLenum zpass)
  5402. PFNGLSTENCILOPSEPARATEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLSTENCILOPSEPARATEPROC) (GLenum face, GLenum sfail, GLenum dpfail, G/;" t typeref:typename:void (APIENTRYP)(GLenum face,GLenum sfail,GLenum dpfail,GLenum dppass)
  5403. PFNGLTEXBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXBUFFERPROC) (GLenum target, GLenum internalformat, GLuint buffer/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLuint buffer)
  5404. PFNGLTEXBUFFERRANGEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXBUFFERRANGEPROC) (GLenum target, GLenum internalformat, GLuint b/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum internalformat,GLuint buffer,GLintptr offset,GLsizeiptr size)
  5405. PFNGLTEXCOORDP1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP1UIPROC) (GLenum type, GLuint coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint coords)
  5406. PFNGLTEXCOORDP1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP1UIVPROC) (GLenum type, const GLuint *coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * coords)
  5407. PFNGLTEXCOORDP2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP2UIPROC) (GLenum type, GLuint coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint coords)
  5408. PFNGLTEXCOORDP2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP2UIVPROC) (GLenum type, const GLuint *coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * coords)
  5409. PFNGLTEXCOORDP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP3UIPROC) (GLenum type, GLuint coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint coords)
  5410. PFNGLTEXCOORDP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP3UIVPROC) (GLenum type, const GLuint *coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * coords)
  5411. PFNGLTEXCOORDP4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP4UIPROC) (GLenum type, GLuint coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint coords)
  5412. PFNGLTEXCOORDP4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXCOORDP4UIVPROC) (GLenum type, const GLuint *coords);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * coords)
  5413. PFNGLTEXIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXIMAGE1DPROC) (GLenum target, GLint level, GLint internalformat, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint internalformat,GLsizei width,GLint border,GLenum format,GLenum type,const GLvoid * pixels)
  5414. PFNGLTEXIMAGE2DMULTISAMPLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXIMAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint i/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei samples,GLint internalformat,GLsizei width,GLsizei height,GLboolean fixedsamplelocations)
  5415. PFNGLTEXIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXIMAGE2DPROC) (GLenum target, GLint level, GLint internalformat, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint internalformat,GLsizei width,GLsizei height,GLint border,GLenum format,GLenum type,const GLvoid * pixels)
  5416. PFNGLTEXIMAGE3DMULTISAMPLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXIMAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLint i/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei samples,GLint internalformat,GLsizei width,GLsizei height,GLsizei depth,GLboolean fixedsamplelocations)
  5417. PFNGLTEXIMAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXIMAGE3DPROC) (GLenum target, GLint level, GLint internalformat, /;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint internalformat,GLsizei width,GLsizei height,GLsizei depth,GLint border,GLenum format,GLenum type,const GLvoid * pixels)
  5418. PFNGLTEXPARAMETERFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERFPROC) (GLenum target, GLenum pname, GLfloat param);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLfloat param)
  5419. PFNGLTEXPARAMETERFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERFVPROC) (GLenum target, GLenum pname, const GLfloat *pa/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,const GLfloat * params)
  5420. PFNGLTEXPARAMETERIIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERIIVPROC) (GLenum target, GLenum pname, const GLint *par/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,const GLint * params)
  5421. PFNGLTEXPARAMETERIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERIPROC) (GLenum target, GLenum pname, GLint param);$/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,GLint param)
  5422. PFNGLTEXPARAMETERIUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERIUIVPROC) (GLenum target, GLenum pname, const GLuint *p/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,const GLuint * params)
  5423. PFNGLTEXPARAMETERIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXPARAMETERIVPROC) (GLenum target, GLenum pname, const GLint *para/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLenum pname,const GLint * params)
  5424. PFNGLTEXSTORAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSTORAGE1DPROC) (GLenum target, GLsizei levels, GLenum internalfo/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei levels,GLenum internalformat,GLsizei width)
  5425. PFNGLTEXSTORAGE2DMULTISAMPLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSTORAGE2DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenu/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei samples,GLenum internalformat,GLsizei width,GLsizei height,GLboolean fixedsamplelocations)
  5426. PFNGLTEXSTORAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSTORAGE2DPROC) (GLenum target, GLsizei levels, GLenum internalfo/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei levels,GLenum internalformat,GLsizei width,GLsizei height)
  5427. PFNGLTEXSTORAGE3DMULTISAMPLEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSTORAGE3DMULTISAMPLEPROC) (GLenum target, GLsizei samples, GLenu/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei samples,GLenum internalformat,GLsizei width,GLsizei height,GLsizei depth,GLboolean fixedsamplelocations)
  5428. PFNGLTEXSTORAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSTORAGE3DPROC) (GLenum target, GLsizei levels, GLenum internalfo/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLsizei levels,GLenum internalformat,GLsizei width,GLsizei height,GLsizei depth)
  5429. PFNGLTEXSUBIMAGE1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSUBIMAGE1DPROC) (GLenum target, GLint level, GLint xoffset, GLsi/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLsizei width,GLenum format,GLenum type,const GLvoid * pixels)
  5430. PFNGLTEXSUBIMAGE2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSUBIMAGE2DPROC) (GLenum target, GLint level, GLint xoffset, GLin/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLsizei width,GLsizei height,GLenum format,GLenum type,const GLvoid * pixels)
  5431. PFNGLTEXSUBIMAGE3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXSUBIMAGE3DPROC) (GLenum target, GLint level, GLint xoffset, GLin/;" t typeref:typename:void (APIENTRYP)(GLenum target,GLint level,GLint xoffset,GLint yoffset,GLint zoffset,GLsizei width,GLsizei height,GLsizei depth,GLenum format,GLenum type,const GLvoid * pixels)
  5432. PFNGLTEXTUREBUFFERRANGEEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTUREBUFFERRANGEEXTPROC) (GLuint texture, GLenum target, GLenum i/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLenum internalformat,GLuint buffer,GLintptr offset,GLsizeiptr size)
  5433. PFNGLTEXTURESTORAGE1DEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTURESTORAGE1DEXTPROC) (GLuint texture, GLenum target, GLsizei le/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLsizei levels,GLenum internalformat,GLsizei width)
  5434. PFNGLTEXTURESTORAGE2DEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DEXTPROC) (GLuint texture, GLenum target, GLsizei le/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLsizei levels,GLenum internalformat,GLsizei width,GLsizei height)
  5435. PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target,/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLsizei samples,GLenum internalformat,GLsizei width,GLsizei height,GLboolean fixedsamplelocations)
  5436. PFNGLTEXTURESTORAGE3DEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DEXTPROC) (GLuint texture, GLenum target, GLsizei le/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLsizei levels,GLenum internalformat,GLsizei width,GLsizei height,GLsizei depth)
  5437. PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC) (GLuint texture, GLenum target,/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLsizei samples,GLenum internalformat,GLsizei width,GLsizei height,GLsizei depth,GLboolean fixedsamplelocations)
  5438. PFNGLTEXTUREVIEWPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTEXTUREVIEWPROC) (GLuint texture, GLenum target, GLuint origtexture/;" t typeref:typename:void (APIENTRYP)(GLuint texture,GLenum target,GLuint origtexture,GLenum internalformat,GLuint minlevel,GLuint numlevels,GLuint minlayer,GLuint numlayers)
  5439. PFNGLTRANSFORMFEEDBACKVARYINGSPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLTRANSFORMFEEDBACKVARYINGSPROC) (GLuint program, GLsizei count, cons/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLsizei count,const GLchar * const * varyings,GLenum bufferMode)
  5440. PFNGLUNIFORM1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1DPROC) (GLint location, GLdouble x);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLdouble x)
  5441. PFNGLUNIFORM1DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1DVPROC) (GLint location, GLsizei count, const GLdouble *val/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLdouble * value)
  5442. PFNGLUNIFORM1FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1FPROC) (GLint location, GLfloat v0);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLfloat v0)
  5443. PFNGLUNIFORM1FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1FVPROC) (GLint location, GLsizei count, const GLfloat *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLfloat * value)
  5444. PFNGLUNIFORM1IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1IPROC) (GLint location, GLint v0);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLint v0)
  5445. PFNGLUNIFORM1IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1IVPROC) (GLint location, GLsizei count, const GLint *value)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLint * value)
  5446. PFNGLUNIFORM1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1UIPROC) (GLint location, GLuint v0);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLuint v0)
  5447. PFNGLUNIFORM1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM1UIVPROC) (GLint location, GLsizei count, const GLuint *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLuint * value)
  5448. PFNGLUNIFORM2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2DPROC) (GLint location, GLdouble x, GLdouble y);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLdouble x,GLdouble y)
  5449. PFNGLUNIFORM2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2DVPROC) (GLint location, GLsizei count, const GLdouble *val/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLdouble * value)
  5450. PFNGLUNIFORM2FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2FPROC) (GLint location, GLfloat v0, GLfloat v1);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLfloat v0,GLfloat v1)
  5451. PFNGLUNIFORM2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2FVPROC) (GLint location, GLsizei count, const GLfloat *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLfloat * value)
  5452. PFNGLUNIFORM2IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2IPROC) (GLint location, GLint v0, GLint v1);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLint v0,GLint v1)
  5453. PFNGLUNIFORM2IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2IVPROC) (GLint location, GLsizei count, const GLint *value)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLint * value)
  5454. PFNGLUNIFORM2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2UIPROC) (GLint location, GLuint v0, GLuint v1);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLuint v0,GLuint v1)
  5455. PFNGLUNIFORM2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM2UIVPROC) (GLint location, GLsizei count, const GLuint *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLuint * value)
  5456. PFNGLUNIFORM3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLdouble x,GLdouble y,GLdouble z)
  5457. PFNGLUNIFORM3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3DVPROC) (GLint location, GLsizei count, const GLdouble *val/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLdouble * value)
  5458. PFNGLUNIFORM3FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLfloat v0,GLfloat v1,GLfloat v2)
  5459. PFNGLUNIFORM3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3FVPROC) (GLint location, GLsizei count, const GLfloat *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLfloat * value)
  5460. PFNGLUNIFORM3IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3IPROC) (GLint location, GLint v0, GLint v1, GLint v2);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLint v0,GLint v1,GLint v2)
  5461. PFNGLUNIFORM3IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3IVPROC) (GLint location, GLsizei count, const GLint *value)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLint * value)
  5462. PFNGLUNIFORM3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2);$/;" t typeref:typename:void (APIENTRYP)(GLint location,GLuint v0,GLuint v1,GLuint v2)
  5463. PFNGLUNIFORM3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM3UIVPROC) (GLint location, GLsizei count, const GLuint *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLuint * value)
  5464. PFNGLUNIFORM4DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4DPROC) (GLint location, GLdouble x, GLdouble y, GLdouble z,/;" t typeref:typename:void (APIENTRYP)(GLint location,GLdouble x,GLdouble y,GLdouble z,GLdouble w)
  5465. PFNGLUNIFORM4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4DVPROC) (GLint location, GLsizei count, const GLdouble *val/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLdouble * value)
  5466. PFNGLUNIFORM4FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4FPROC) (GLint location, GLfloat v0, GLfloat v1, GLfloat v2,/;" t typeref:typename:void (APIENTRYP)(GLint location,GLfloat v0,GLfloat v1,GLfloat v2,GLfloat v3)
  5467. PFNGLUNIFORM4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4FVPROC) (GLint location, GLsizei count, const GLfloat *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLfloat * value)
  5468. PFNGLUNIFORM4IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4IPROC) (GLint location, GLint v0, GLint v1, GLint v2, GLint/;" t typeref:typename:void (APIENTRYP)(GLint location,GLint v0,GLint v1,GLint v2,GLint v3)
  5469. PFNGLUNIFORM4IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4IVPROC) (GLint location, GLsizei count, const GLint *value)/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLint * value)
  5470. PFNGLUNIFORM4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4UIPROC) (GLint location, GLuint v0, GLuint v1, GLuint v2, G/;" t typeref:typename:void (APIENTRYP)(GLint location,GLuint v0,GLuint v1,GLuint v2,GLuint v3)
  5471. PFNGLUNIFORM4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORM4UIVPROC) (GLint location, GLsizei count, const GLuint *valu/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,const GLuint * value)
  5472. PFNGLUNIFORMBLOCKBINDINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMBLOCKBINDINGPROC) (GLuint program, GLuint uniformBlockIndex,/;" t typeref:typename:void (APIENTRYP)(GLuint program,GLuint uniformBlockIndex,GLuint uniformBlockBinding)
  5473. PFNGLUNIFORMMATRIX2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2DVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5474. PFNGLUNIFORMMATRIX2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2FVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5475. PFNGLUNIFORMMATRIX2X3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5476. PFNGLUNIFORMMATRIX2X3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5477. PFNGLUNIFORMMATRIX2X4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5478. PFNGLUNIFORMMATRIX2X4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX2X4FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5479. PFNGLUNIFORMMATRIX3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3DVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5480. PFNGLUNIFORMMATRIX3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3FVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5481. PFNGLUNIFORMMATRIX3X2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5482. PFNGLUNIFORMMATRIX3X2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X2FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5483. PFNGLUNIFORMMATRIX3X4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5484. PFNGLUNIFORMMATRIX3X4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX3X4FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5485. PFNGLUNIFORMMATRIX4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4DVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5486. PFNGLUNIFORMMATRIX4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4FVPROC) (GLint location, GLsizei count, GLboolean tra/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5487. PFNGLUNIFORMMATRIX4X2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5488. PFNGLUNIFORMMATRIX4X2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X2FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5489. PFNGLUNIFORMMATRIX4X3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3DVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLdouble * value)
  5490. PFNGLUNIFORMMATRIX4X3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMMATRIX4X3FVPROC) (GLint location, GLsizei count, GLboolean t/;" t typeref:typename:void (APIENTRYP)(GLint location,GLsizei count,GLboolean transpose,const GLfloat * value)
  5491. PFNGLUNIFORMSUBROUTINESUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUNIFORMSUBROUTINESUIVPROC) (GLenum shadertype, GLsizei count, const/;" t typeref:typename:void (APIENTRYP)(GLenum shadertype,GLsizei count,const GLuint * indices)
  5492. PFNGLUNMAPBUFFERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef GLboolean (APIENTRYP PFNGLUNMAPBUFFERPROC) (GLenum target);$/;" t typeref:typename:GLboolean (APIENTRYP)(GLenum target)
  5493. PFNGLUSEPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program);$/;" t typeref:typename:void (APIENTRYP)(GLuint program)
  5494. PFNGLUSEPROGRAMSTAGESPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLUSEPROGRAMSTAGESPROC) (GLuint pipeline, GLbitfield stages, GLuint p/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline,GLbitfield stages,GLuint program)
  5495. PFNGLVALIDATEPROGRAMPIPELINEPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPIPELINEPROC) (GLuint pipeline);$/;" t typeref:typename:void (APIENTRYP)(GLuint pipeline)
  5496. PFNGLVALIDATEPROGRAMPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program);$/;" t typeref:typename:void (APIENTRYP)(GLuint program)
  5497. PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC) (GLuint vaobj, GLuint bindingin/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint bindingindex,GLuint buffer,GLintptr offset,GLsizei stride)
  5498. PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC) (GLuint vaobj, GLuint attrib/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint attribindex,GLuint bindingindex)
  5499. PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC) (GLuint vaobj, GLuint attribi/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint attribindex,GLint size,GLenum type,GLboolean normalized,GLuint relativeoffset)
  5500. PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC) (GLuint vaobj, GLuint attrib/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint attribindex,GLint size,GLenum type,GLuint relativeoffset)
  5501. PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC) (GLuint vaobj, GLuint attrib/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint attribindex,GLint size,GLenum type,GLuint relativeoffset)
  5502. PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC) (GLuint vaobj, GLuint bindi/;" t typeref:typename:void (APIENTRYP)(GLuint vaobj,GLuint bindingindex,GLuint divisor)
  5503. PFNGLVERTEXATTRIB1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1DPROC) (GLuint index, GLdouble x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x)
  5504. PFNGLVERTEXATTRIB1DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5505. PFNGLVERTEXATTRIB1FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLfloat x)
  5506. PFNGLVERTEXATTRIB1FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, const GLfloat *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLfloat * v)
  5507. PFNGLVERTEXATTRIB1SPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1SPROC) (GLuint index, GLshort x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLshort x)
  5508. PFNGLVERTEXATTRIB1SVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB1SVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5509. PFNGLVERTEXATTRIB2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2DPROC) (GLuint index, GLdouble x, GLdouble y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y)
  5510. PFNGLVERTEXATTRIB2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5511. PFNGLVERTEXATTRIB2FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2FPROC) (GLuint index, GLfloat x, GLfloat y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLfloat x,GLfloat y)
  5512. PFNGLVERTEXATTRIB2FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2FVPROC) (GLuint index, const GLfloat *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLfloat * v)
  5513. PFNGLVERTEXATTRIB2SPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2SPROC) (GLuint index, GLshort x, GLshort y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLshort x,GLshort y)
  5514. PFNGLVERTEXATTRIB2SVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB2SVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5515. PFNGLVERTEXATTRIB3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y,GLdouble z)
  5516. PFNGLVERTEXATTRIB3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5517. PFNGLVERTEXATTRIB3FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z)/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLfloat x,GLfloat y,GLfloat z)
  5518. PFNGLVERTEXATTRIB3FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3FVPROC) (GLuint index, const GLfloat *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLfloat * v)
  5519. PFNGLVERTEXATTRIB3SPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3SPROC) (GLuint index, GLshort x, GLshort y, GLshort z)/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLshort x,GLshort y,GLshort z)
  5520. PFNGLVERTEXATTRIB3SVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB3SVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5521. PFNGLVERTEXATTRIB4BVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4BVPROC) (GLuint index, const GLbyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLbyte * v)
  5522. PFNGLVERTEXATTRIB4DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdouble/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y,GLdouble z,GLdouble w)
  5523. PFNGLVERTEXATTRIB4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5524. PFNGLVERTEXATTRIB4FPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4FPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat z,/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLfloat x,GLfloat y,GLfloat z,GLfloat w)
  5525. PFNGLVERTEXATTRIB4FVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4FVPROC) (GLuint index, const GLfloat *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLfloat * v)
  5526. PFNGLVERTEXATTRIB4IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4IVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5527. PFNGLVERTEXATTRIB4NBVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NBVPROC) (GLuint index, const GLbyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLbyte * v)
  5528. PFNGLVERTEXATTRIB4NIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NIVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5529. PFNGLVERTEXATTRIB4NSVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NSVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5530. PFNGLVERTEXATTRIB4NUBPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBPROC) (GLuint index, GLubyte x, GLubyte y, GLubyte /;" t typeref:typename:void (APIENTRYP)(GLuint index,GLubyte x,GLubyte y,GLubyte z,GLubyte w)
  5531. PFNGLVERTEXATTRIB4NUBVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUBVPROC) (GLuint index, const GLubyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLubyte * v)
  5532. PFNGLVERTEXATTRIB4NUIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5533. PFNGLVERTEXATTRIB4NUSVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4NUSVPROC) (GLuint index, const GLushort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLushort * v)
  5534. PFNGLVERTEXATTRIB4SPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4SPROC) (GLuint index, GLshort x, GLshort y, GLshort z,/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLshort x,GLshort y,GLshort z,GLshort w)
  5535. PFNGLVERTEXATTRIB4SVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4SVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5536. PFNGLVERTEXATTRIB4UBVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4UBVPROC) (GLuint index, const GLubyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLubyte * v)
  5537. PFNGLVERTEXATTRIB4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4UIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5538. PFNGLVERTEXATTRIB4USVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIB4USVPROC) (GLuint index, const GLushort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLushort * v)
  5539. PFNGLVERTEXATTRIBBINDINGPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBBINDINGPROC) (GLuint attribindex, GLuint bindingindex);$/;" t typeref:typename:void (APIENTRYP)(GLuint attribindex,GLuint bindingindex)
  5540. PFNGLVERTEXATTRIBDIVISORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBDIVISORPROC) (GLuint index, GLuint divisor);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLuint divisor)
  5541. PFNGLVERTEXATTRIBFORMATPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBFORMATPROC) (GLuint attribindex, GLint size, GLenum typ/;" t typeref:typename:void (APIENTRYP)(GLuint attribindex,GLint size,GLenum type,GLboolean normalized,GLuint relativeoffset)
  5542. PFNGLVERTEXATTRIBI1IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IPROC) (GLuint index, GLint x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint x)
  5543. PFNGLVERTEXATTRIBI1IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI1IVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5544. PFNGLVERTEXATTRIBI1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIPROC) (GLuint index, GLuint x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLuint x)
  5545. PFNGLVERTEXATTRIBI1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI1UIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5546. PFNGLVERTEXATTRIBI2IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IPROC) (GLuint index, GLint x, GLint y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint x,GLint y)
  5547. PFNGLVERTEXATTRIBI2IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI2IVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5548. PFNGLVERTEXATTRIBI2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIPROC) (GLuint index, GLuint x, GLuint y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLuint x,GLuint y)
  5549. PFNGLVERTEXATTRIBI2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI2UIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5550. PFNGLVERTEXATTRIBI3IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IPROC) (GLuint index, GLint x, GLint y, GLint z);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint x,GLint y,GLint z)
  5551. PFNGLVERTEXATTRIBI3IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI3IVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5552. PFNGLVERTEXATTRIBI3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLuint x,GLuint y,GLuint z)
  5553. PFNGLVERTEXATTRIBI3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI3UIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5554. PFNGLVERTEXATTRIBI4BVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4BVPROC) (GLuint index, const GLbyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLbyte * v)
  5555. PFNGLVERTEXATTRIBI4IPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IPROC) (GLuint index, GLint x, GLint y, GLint z, GLin/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint x,GLint y,GLint z,GLint w)
  5556. PFNGLVERTEXATTRIBI4IVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4IVPROC) (GLuint index, const GLint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLint * v)
  5557. PFNGLVERTEXATTRIBI4SVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4SVPROC) (GLuint index, const GLshort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLshort * v)
  5558. PFNGLVERTEXATTRIBI4UBVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UBVPROC) (GLuint index, const GLubyte *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLubyte * v)
  5559. PFNGLVERTEXATTRIBI4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIPROC) (GLuint index, GLuint x, GLuint y, GLuint z, /;" t typeref:typename:void (APIENTRYP)(GLuint index,GLuint x,GLuint y,GLuint z,GLuint w)
  5560. PFNGLVERTEXATTRIBI4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4UIVPROC) (GLuint index, const GLuint *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLuint * v)
  5561. PFNGLVERTEXATTRIBI4USVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBI4USVPROC) (GLuint index, const GLushort *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLushort * v)
  5562. PFNGLVERTEXATTRIBIFORMATPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBIFORMATPROC) (GLuint attribindex, GLint size, GLenum ty/;" t typeref:typename:void (APIENTRYP)(GLuint attribindex,GLint size,GLenum type,GLuint relativeoffset)
  5563. PFNGLVERTEXATTRIBIPOINTERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBIPOINTERPROC) (GLuint index, GLint size, GLenum type, G/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint size,GLenum type,GLsizei stride,const GLvoid * pointer)
  5564. PFNGLVERTEXATTRIBL1DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DPROC) (GLuint index, GLdouble x);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x)
  5565. PFNGLVERTEXATTRIBL1DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL1DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5566. PFNGLVERTEXATTRIBL2DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DPROC) (GLuint index, GLdouble x, GLdouble y);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y)
  5567. PFNGLVERTEXATTRIBL2DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL2DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5568. PFNGLVERTEXATTRIBL3DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DPROC) (GLuint index, GLdouble x, GLdouble y, GLdoubl/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y,GLdouble z)
  5569. PFNGLVERTEXATTRIBL3DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL3DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5570. PFNGLVERTEXATTRIBL4DPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DPROC) (GLuint index, GLdouble x, GLdouble y, GLdoubl/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLdouble x,GLdouble y,GLdouble z,GLdouble w)
  5571. PFNGLVERTEXATTRIBL4DVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBL4DVPROC) (GLuint index, const GLdouble *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLdouble * v)
  5572. PFNGLVERTEXATTRIBLFORMATPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBLFORMATPROC) (GLuint attribindex, GLint size, GLenum ty/;" t typeref:typename:void (APIENTRYP)(GLuint attribindex,GLint size,GLenum type,GLuint relativeoffset)
  5573. PFNGLVERTEXATTRIBLPOINTERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBLPOINTERPROC) (GLuint index, GLint size, GLenum type, G/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint size,GLenum type,GLsizei stride,const GLvoid * pointer)
  5574. PFNGLVERTEXATTRIBP1UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIPROC) (GLuint index, GLenum type, GLboolean normali/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,GLuint value)
  5575. PFNGLVERTEXATTRIBP1UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP1UIVPROC) (GLuint index, GLenum type, GLboolean normal/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,const GLuint * value)
  5576. PFNGLVERTEXATTRIBP2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIPROC) (GLuint index, GLenum type, GLboolean normali/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,GLuint value)
  5577. PFNGLVERTEXATTRIBP2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP2UIVPROC) (GLuint index, GLenum type, GLboolean normal/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,const GLuint * value)
  5578. PFNGLVERTEXATTRIBP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIPROC) (GLuint index, GLenum type, GLboolean normali/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,GLuint value)
  5579. PFNGLVERTEXATTRIBP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP3UIVPROC) (GLuint index, GLenum type, GLboolean normal/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,const GLuint * value)
  5580. PFNGLVERTEXATTRIBP4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIPROC) (GLuint index, GLenum type, GLboolean normali/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,GLuint value)
  5581. PFNGLVERTEXATTRIBP4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBP4UIVPROC) (GLuint index, GLenum type, GLboolean normal/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLenum type,GLboolean normalized,const GLuint * value)
  5582. PFNGLVERTEXATTRIBPOINTERPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GL/;" t typeref:typename:void (APIENTRYP)(GLuint index,GLint size,GLenum type,GLboolean normalized,GLsizei stride,const GLvoid * pointer)
  5583. PFNGLVERTEXBINDINGDIVISORPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXBINDINGDIVISORPROC) (GLuint bindingindex, GLuint divisor);$/;" t typeref:typename:void (APIENTRYP)(GLuint bindingindex,GLuint divisor)
  5584. PFNGLVERTEXP2UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP2UIPROC) (GLenum type, GLuint value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint value)
  5585. PFNGLVERTEXP2UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP2UIVPROC) (GLenum type, const GLuint *value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * value)
  5586. PFNGLVERTEXP3UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP3UIPROC) (GLenum type, GLuint value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint value)
  5587. PFNGLVERTEXP3UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP3UIVPROC) (GLenum type, const GLuint *value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * value)
  5588. PFNGLVERTEXP4UIPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP4UIPROC) (GLenum type, GLuint value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,GLuint value)
  5589. PFNGLVERTEXP4UIVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVERTEXP4UIVPROC) (GLenum type, const GLuint *value);$/;" t typeref:typename:void (APIENTRYP)(GLenum type,const GLuint * value)
  5590. PFNGLVIEWPORTARRAYVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVIEWPORTARRAYVPROC) (GLuint first, GLsizei count, const GLfloat *v)/;" t typeref:typename:void (APIENTRYP)(GLuint first,GLsizei count,const GLfloat * v)
  5591. PFNGLVIEWPORTINDEXEDFPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFPROC) (GLuint index, GLfloat x, GLfloat y, GLfloat /;" t typeref:typename:void (APIENTRYP)(GLuint index,GLfloat x,GLfloat y,GLfloat w,GLfloat h)
  5592. PFNGLVIEWPORTINDEXEDFVPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVIEWPORTINDEXEDFVPROC) (GLuint index, const GLfloat *v);$/;" t typeref:typename:void (APIENTRYP)(GLuint index,const GLfloat * v)
  5593. PFNGLVIEWPORTPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLVIEWPORTPROC) (GLint x, GLint y, GLsizei width, GLsizei height);$/;" t typeref:typename:void (APIENTRYP)(GLint x,GLint y,GLsizei width,GLsizei height)
  5594. PFNGLWAITSYNCPROC third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef void (APIENTRYP PFNGLWAITSYNCPROC) (GLsync sync, GLbitfield flags, GLuint64 timeout);$/;" t typeref:typename:void (APIENTRYP)(GLsync sync,GLbitfield flags,GLuint64 timeout)
  5595. PLACEHOLDER_BLUE libswan/include/swan/common.h /^static constexpr int PLACEHOLDER_BLUE = 242;$/;" v namespace:Swan typeref:typename:int
  5596. PLACEHOLDER_GREEN libswan/include/swan/common.h /^static constexpr int PLACEHOLDER_GREEN = 66;$/;" v namespace:Swan typeref:typename:int
  5597. PLACEHOLDER_RED libswan/include/swan/common.h /^static constexpr int PLACEHOLDER_RED = 245;$/;" v namespace:Swan typeref:typename:int
  5598. PS third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10PixelShader* PS;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10PixelShader * file:
  5599. PS third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11PixelShader* PS;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11PixelShader * file:
  5600. PSInstances third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11ClassInstance *PSInstances[256], *VSInstances[256], *GSInstances[256]; \//;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11ClassInstance * [256] file:
  5601. PSInstancesCount third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT PSInstancesCount, VSInstancesCount, GSInstancesCount;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  5602. PSSampler third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10SamplerState* PSSampler;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10SamplerState * file:
  5603. PSSampler third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11SamplerState* PSSampler;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11SamplerState * file:
  5604. PSShaderResource third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10ShaderResourceView* PSShaderResource;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10ShaderResourceView * file:
  5605. PSShaderResource third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11ShaderResourceView* PSShaderResource;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11ShaderResourceView * file:
  5606. PackRange third_party/imgui/imgui_draw.cpp /^ stbtt_pack_range PackRange; \/\/ Hold the list of codepoints to pack (essentiall/;" m struct:ImFontBuildSrcData typeref:typename:stbtt_pack_range file:
  5607. PackedChars third_party/imgui/imgui_draw.cpp /^ stbtt_packedchar* PackedChars; \/\/ Output glyphs$/;" m struct:ImFontBuildSrcData typeref:typename:stbtt_packedchar * file:
  5608. PairCompareByID third_party/imgui/imgui.cpp /^ static int IMGUI_CDECL PairCompareByID(const void* lhs, const void* rhs)$/;" f struct:ImGuiStorage::BuildSortByKey::StaticFunc typeref:typename:int IMGUI_CDECL file:
  5609. ParentLayoutType third_party/imgui/imgui_internal.h /^ ImGuiLayoutType ParentLayoutType; \/\/ Layout type of parent window at the tim/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiLayoutType
  5610. ParentWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* ParentWindow; \/\/ If we are a child _or_ popu/;" m struct:ImGuiWindow typeref:typename:ImGuiWindow *
  5611. PassFilter third_party/imgui/imgui.cpp /^bool ImGuiTextFilter::PassFilter(const char* text, const char* text_end) const$/;" f class:ImGuiTextFilter typeref:typename:bool
  5612. PatchFormatStringFloatToInt third_party/imgui/imgui_widgets.cpp /^static const char* PatchFormatStringFloatToInt(const char* fmt)$/;" f typeref:typename:const char * file:
  5613. PathArcTo third_party/imgui/imgui_draw.cpp /^void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num/;" f class:ImDrawList typeref:typename:void
  5614. PathArcToFast third_party/imgui/imgui_draw.cpp /^void ImDrawList::PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of/;" f class:ImDrawList typeref:typename:void
  5615. PathBezierCurveTo third_party/imgui/imgui_draw.cpp /^void ImDrawList::PathBezierCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num/;" f class:ImDrawList typeref:typename:void
  5616. PathBezierToCasteljau third_party/imgui/imgui_draw.cpp /^static void PathBezierToCasteljau(ImVector<ImVec2>* path, float x1, float y1, float x2, float y2/;" f typeref:typename:void file:
  5617. PathClear third_party/imgui/imgui.h /^ inline void PathClear() { _Path.Size = 0/;" f struct:ImDrawList typeref:typename:void
  5618. PathFillConvex third_party/imgui/imgui.h /^ inline void PathFillConvex(ImU32 col) { AddConvexPolyF/;" f struct:ImDrawList typeref:typename:void
  5619. PathLineTo third_party/imgui/imgui.h /^ inline void PathLineTo(const ImVec2& pos) { _Path.push_bac/;" f struct:ImDrawList typeref:typename:void
  5620. PathLineToMergeDuplicate third_party/imgui/imgui.h /^ inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size/;" f struct:ImDrawList typeref:typename:void
  5621. PathRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::PathRect(const ImVec2& a, const ImVec2& b, float rounding, ImDrawCornerFlags ro/;" f class:ImDrawList typeref:typename:void
  5622. PathStroke third_party/imgui/imgui.h /^ inline void PathStroke(ImU32 col, bool closed, float thickness = 1.0f) { AddPolyline(_P/;" f struct:ImDrawList typeref:typename:void
  5623. PerfCounter libswan/include/swan/PerfCounter.h /^class PerfCounter {$/;" c namespace:Swan
  5624. PerlinNoise third_party/PerlinNoise/PerlinNoise.hpp /^ explicit PerlinNoise(URNG& urng)$/;" f class:siv::PerlinNoise
  5625. PerlinNoise third_party/PerlinNoise/PerlinNoise.hpp /^ explicit PerlinNoise(std::uint32_t seed = std::default_random_engine::default_seed)$/;" f class:siv::PerlinNoise
  5626. PerlinNoise third_party/PerlinNoise/PerlinNoise.hpp /^ class PerlinNoise$/;" c namespace:siv
  5627. PhysicalDevice third_party/imgui/examples/imgui_impl_vulkan.h /^ VkPhysicalDevice PhysicalDevice;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkPhysicalDevice
  5628. PhysicsBody libswan/include/swan/traits/BodyTrait.h /^ PhysicsBody(Vec2 size, float mass, Vec2 pos = Vec2::ZERO):$/;" f class:Swan::BodyTrait::PhysicsBody
  5629. PhysicsBody libswan/include/swan/traits/BodyTrait.h /^class PhysicsBody: public Body {$/;" c namespace:Swan::BodyTrait
  5630. PhysicsEntity libswan/include/swan/Entity.h /^ PhysicsEntity(Vec2 size, float mass):$/;" f class:Swan::PhysicsEntity
  5631. PhysicsEntity libswan/include/swan/Entity.h /^class PhysicsEntity: public Entity, public BodyTrait::HasBody {$/;" c namespace:Swan
  5632. PipelineCache third_party/imgui/examples/imgui_impl_vulkan.h /^ VkPipelineCache PipelineCache;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkPipelineCache
  5633. PixelHeight third_party/imgui/misc/freetype/imgui_freetype.cpp /^ uint32_t PixelHeight; \/\/ Size this font was generated with.$/;" m struct:__anond3bafd850110::FontInfo typeref:typename:uint32_t file:
  5634. PixelSnapH third_party/imgui/imgui.h /^ bool PixelSnapH; \/\/ false \/\/ Align every glyph to pixel bounda/;" m struct:ImFontConfig typeref:typename:bool
  5635. PlatformImeLastPos third_party/imgui/imgui_internal.h /^ ImVec2 PlatformImeLastPos;$/;" m struct:ImGuiContext typeref:typename:ImVec2
  5636. PlatformImePos third_party/imgui/imgui_internal.h /^ ImVec2 PlatformImePos; \/\/ Cursor position request & l/;" m struct:ImGuiContext typeref:typename:ImVec2
  5637. Plot third_party/imgui-plot/src/imgui_plot.cpp /^PlotStatus Plot(const char* label, const PlotConfig& conf) {$/;" f namespace:ImGui typeref:typename:PlotStatus
  5638. PlotConfig third_party/imgui-plot/include/imgui_plot.h /^struct PlotConfig {$/;" s namespace:ImGui
  5639. PlotEx third_party/imgui/imgui_widgets.cpp /^void ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data/;" f class:ImGui typeref:typename:void
  5640. PlotHistogram third_party/imgui/imgui_widgets.cpp /^void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_o/;" f class:ImGui typeref:typename:void
  5641. PlotHistogram third_party/imgui/imgui_widgets.cpp /^void ImGui::PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* /;" f class:ImGui typeref:typename:void
  5642. PlotLines third_party/imgui/imgui_widgets.cpp /^void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offse/;" f class:ImGui typeref:typename:void
  5643. PlotLines third_party/imgui/imgui_widgets.cpp /^void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data/;" f class:ImGui typeref:typename:void
  5644. PlotStatus third_party/imgui-plot/include/imgui_plot.h /^enum class PlotStatus {$/;" g namespace:ImGui
  5645. Plot_ArrayGetter third_party/imgui/imgui_widgets.cpp /^static float Plot_ArrayGetter(void* data, int idx)$/;" f typeref:typename:float file:
  5646. PopAllowKeyboardFocus third_party/imgui/imgui.cpp /^void ImGui::PopAllowKeyboardFocus()$/;" f class:ImGui typeref:typename:void
  5647. PopButtonRepeat third_party/imgui/imgui.cpp /^void ImGui::PopButtonRepeat()$/;" f class:ImGui typeref:typename:void
  5648. PopClipRect third_party/imgui/imgui.cpp /^void ImGui::PopClipRect()$/;" f class:ImGui typeref:typename:void
  5649. PopClipRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::PopClipRect()$/;" f class:ImDrawList typeref:typename:void
  5650. PopColumnsBackground third_party/imgui/imgui_widgets.cpp /^void ImGui::PopColumnsBackground()$/;" f class:ImGui typeref:typename:void
  5651. PopFont third_party/imgui/imgui.cpp /^void ImGui::PopFont()$/;" f class:ImGui typeref:typename:void
  5652. PopID third_party/imgui/imgui.cpp /^void ImGui::PopID()$/;" f class:ImGui typeref:typename:void
  5653. PopItemFlag third_party/imgui/imgui.cpp /^void ImGui::PopItemFlag()$/;" f class:ImGui typeref:typename:void
  5654. PopItemWidth third_party/imgui/imgui.cpp /^void ImGui::PopItemWidth()$/;" f class:ImGui typeref:typename:void
  5655. PopStyleColor third_party/imgui/imgui.cpp /^void ImGui::PopStyleColor(int count)$/;" f class:ImGui typeref:typename:void
  5656. PopStyleVar third_party/imgui/imgui.cpp /^void ImGui::PopStyleVar(int count)$/;" f class:ImGui typeref:typename:void
  5657. PopTextWrapPos third_party/imgui/imgui.cpp /^void ImGui::PopTextWrapPos()$/;" f class:ImGui typeref:typename:void
  5658. PopTextureID third_party/imgui/imgui_draw.cpp /^void ImDrawList::PopTextureID()$/;" f class:ImDrawList typeref:typename:void
  5659. PopupBorderSize third_party/imgui/imgui.h /^ float PopupBorderSize; \/\/ Thickness of border around popup\/tooltip windo/;" m struct:ImGuiStyle typeref:typename:float
  5660. PopupId third_party/imgui/imgui_internal.h /^ ImGuiID PopupId; \/\/ ID in the popup stack when /;" m struct:ImGuiWindow typeref:typename:ImGuiID
  5661. PopupId third_party/imgui/imgui_internal.h /^ ImGuiID PopupId; \/\/ Set on OpenPopup()$/;" m struct:ImGuiPopupData typeref:typename:ImGuiID
  5662. PopupRounding third_party/imgui/imgui.h /^ float PopupRounding; \/\/ Radius of popup window corners rounding. (Note /;" m struct:ImGuiStyle typeref:typename:float
  5663. Pos third_party/imgui/imgui.h /^ ImVec2 Pos; \/\/ Read-only. Window position, for reference.$/;" m struct:ImGuiSizeCallbackData typeref:typename:ImVec2
  5664. Pos third_party/imgui/imgui_internal.h /^ ImVec2 Pos; \/\/ Position (always rounded-up/;" m struct:ImGuiWindow typeref:typename:ImVec2
  5665. Pos third_party/imgui/imgui_internal.h /^ ImVec2ih Pos;$/;" m struct:ImGuiWindowSettings typeref:typename:ImVec2ih
  5666. Pos third_party/imgui/imgui_internal.h /^ float Pos[3], NextWidths[3];$/;" m struct:ImGuiMenuColumns typeref:typename:float[3]
  5667. PosCond third_party/imgui/imgui_internal.h /^ ImGuiCond PosCond;$/;" m struct:ImGuiNextWindowData typeref:typename:ImGuiCond
  5668. PosPivotVal third_party/imgui/imgui_internal.h /^ ImVec2 PosPivotVal;$/;" m struct:ImGuiNextWindowData typeref:typename:ImVec2
  5669. PosVal third_party/imgui/imgui_internal.h /^ ImVec2 PosVal;$/;" m struct:ImGuiNextWindowData typeref:typename:ImVec2
  5670. PresentMode third_party/imgui/examples/imgui_impl_vulkan.h /^ VkPresentModeKHR PresentMode;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkPresentModeKHR
  5671. PrevFrameVisible third_party/imgui/imgui_internal.h /^ int PrevFrameVisible;$/;" m struct:ImGuiTabBar typeref:typename:int
  5672. PrevLineSize third_party/imgui/imgui_internal.h /^ ImVec2 PrevLineSize;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVec2
  5673. PrevLineTextBaseOffset third_party/imgui/imgui_internal.h /^ float PrevLineTextBaseOffset;$/;" m struct:ImGuiWindowTempData typeref:typename:float
  5674. Preview third_party/imgui/imgui.h /^ bool Preview; \/\/ Set when AcceptDragDropPayload() was called and mou/;" m struct:ImGuiPayload typeref:typename:bool
  5675. PrimQuadUV third_party/imgui/imgui_draw.cpp /^void ImDrawList::PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, /;" f class:ImDrawList typeref:typename:void
  5676. PrimRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::PrimRect(const ImVec2& a, const ImVec2& c, ImU32 col)$/;" f class:ImDrawList typeref:typename:void
  5677. PrimRectUV third_party/imgui/imgui_draw.cpp /^void ImDrawList::PrimRectUV(const ImVec2& a, const ImVec2& c, const ImVec2& uv_a, const ImVec2& /;" f class:ImDrawList typeref:typename:void
  5678. PrimReserve third_party/imgui/imgui_draw.cpp /^void ImDrawList::PrimReserve(int idx_count, int vtx_count)$/;" f class:ImDrawList typeref:typename:void
  5679. PrimVtx third_party/imgui/imgui.h /^ inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((/;" f struct:ImDrawList typeref:typename:void
  5680. PrimWriteIdx third_party/imgui/imgui.h /^ inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr /;" f struct:ImDrawList typeref:typename:void
  5681. PrimWriteVtx third_party/imgui/imgui.h /^ inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col){ _VtxWritePtr->/;" f struct:ImDrawList typeref:typename:void
  5682. PrimitiveTopology third_party/imgui/examples/imgui_impl_dx10.cpp /^ D3D10_PRIMITIVE_TOPOLOGY PrimitiveTopology;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:D3D10_PRIMITIVE_TOPOLOGY file:
  5683. PrimitiveTopology third_party/imgui/examples/imgui_impl_dx11.cpp /^ D3D11_PRIMITIVE_TOPOLOGY PrimitiveTopology;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:D3D11_PRIMITIVE_TOPOLOGY file:
  5684. PrintFmt third_party/imgui/imgui_internal.h /^ const char* PrintFmt; \/\/ Default printf format for the type$/;" m struct:ImGuiDataTypeInfo typeref:typename:const char *
  5685. PrivateClipboard third_party/imgui/imgui_internal.h /^ ImVector<char> PrivateClipboard; \/\/ If no custom clipboard hand/;" m struct:ImGuiContext typeref:typename:ImVector<char>
  5686. ProgressBar third_party/imgui/imgui_widgets.cpp /^void ImGui::ProgressBar(float fraction, const ImVec2& size_arg, const char* overlay)$/;" f class:ImGui typeref:typename:void
  5687. Project: SWAN README.md /^# Project: SWAN$/;" c
  5688. Ptr third_party/imgui/imgui_internal.h /^ void* Ptr; \/\/ Either field can be set, not both. e.g. Dock node t/;" m struct:ImGuiPtrOrIndex typeref:typename:void *
  5689. PushAllowKeyboardFocus third_party/imgui/imgui.cpp /^void ImGui::PushAllowKeyboardFocus(bool allow_keyboard_focus)$/;" f class:ImGui typeref:typename:void
  5690. PushButtonRepeat third_party/imgui/imgui.cpp /^void ImGui::PushButtonRepeat(bool repeat)$/;" f class:ImGui typeref:typename:void
  5691. PushClipRect third_party/imgui/imgui.cpp /^void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersec/;" f class:ImGui typeref:typename:void
  5692. PushClipRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::PushClipRect(ImVec2 cr_min, ImVec2 cr_max, bool intersect_with_current_clip_rec/;" f class:ImDrawList typeref:typename:void
  5693. PushClipRectFullScreen third_party/imgui/imgui_draw.cpp /^void ImDrawList::PushClipRectFullScreen()$/;" f class:ImDrawList typeref:typename:void
  5694. PushColumnClipRect third_party/imgui/imgui_widgets.cpp /^void ImGui::PushColumnClipRect(int column_index)$/;" f class:ImGui typeref:typename:void
  5695. PushColumnsBackground third_party/imgui/imgui_widgets.cpp /^void ImGui::PushColumnsBackground()$/;" f class:ImGui typeref:typename:void
  5696. PushFont third_party/imgui/imgui.cpp /^void ImGui::PushFont(ImFont* font)$/;" f class:ImGui typeref:typename:void
  5697. PushID third_party/imgui/imgui.cpp /^void ImGui::PushID(const char* str_id)$/;" f class:ImGui typeref:typename:void
  5698. PushID third_party/imgui/imgui.cpp /^void ImGui::PushID(const char* str_id_begin, const char* str_id_end)$/;" f class:ImGui typeref:typename:void
  5699. PushID third_party/imgui/imgui.cpp /^void ImGui::PushID(const void* ptr_id)$/;" f class:ImGui typeref:typename:void
  5700. PushID third_party/imgui/imgui.cpp /^void ImGui::PushID(int int_id)$/;" f class:ImGui typeref:typename:void
  5701. PushItemFlag third_party/imgui/imgui.cpp /^void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled)$/;" f class:ImGui typeref:typename:void
  5702. PushItemWidth third_party/imgui/imgui.cpp /^void ImGui::PushItemWidth(float item_width)$/;" f class:ImGui typeref:typename:void
  5703. PushMultiItemsWidths third_party/imgui/imgui.cpp /^void ImGui::PushMultiItemsWidths(int components, float w_full)$/;" f class:ImGui typeref:typename:void
  5704. PushOverrideID third_party/imgui/imgui.cpp /^void ImGui::PushOverrideID(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  5705. PushStyleColor third_party/imgui/imgui.cpp /^void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col)$/;" f class:ImGui typeref:typename:void
  5706. PushStyleColor third_party/imgui/imgui.cpp /^void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col)$/;" f class:ImGui typeref:typename:void
  5707. PushStyleVar third_party/imgui/imgui.cpp /^void ImGui::PushStyleVar(ImGuiStyleVar idx, const ImVec2& val)$/;" f class:ImGui typeref:typename:void
  5708. PushStyleVar third_party/imgui/imgui.cpp /^void ImGui::PushStyleVar(ImGuiStyleVar idx, float val)$/;" f class:ImGui typeref:typename:void
  5709. PushTextWrapPos third_party/imgui/imgui.cpp /^void ImGui::PushTextWrapPos(float wrap_pos_x)$/;" f class:ImGui typeref:typename:void
  5710. PushTextureID third_party/imgui/imgui_draw.cpp /^void ImDrawList::PushTextureID(ImTextureID texture_id)$/;" f class:ImDrawList typeref:typename:void
  5711. Queue third_party/imgui/examples/imgui_impl_vulkan.h /^ VkQueue Queue;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:VkQueue
  5712. QueueFamily third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t QueueFamily;$/;" m struct:ImGui_ImplVulkan_InitInfo typeref:typename:uint32_t
  5713. R third_party/imgui_sdl/imgui_sdl.cpp /^ const float R, G, B, A;$/;" m struct:__anonaaadc0580110::Color typeref:typename:const float file:
  5714. RGB third_party/PerlinNoise/Test_PerlinNoise.cpp /^ constexpr RGB(double _r, double _g, double _b) noexcept$/;" f struct:RGB file:
  5715. RGB third_party/PerlinNoise/Test_PerlinNoise.cpp /^ explicit constexpr RGB(double _rgb) noexcept$/;" f struct:RGB file:
  5716. RGB third_party/PerlinNoise/Test_PerlinNoise.cpp /^struct RGB$/;" s file:
  5717. RS third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10RasterizerState* RS;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10RasterizerState * file:
  5718. RS third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11RasterizerState* RS;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11RasterizerState * file:
  5719. RTClock libswan/include/swan/Clock.h /^class RTClock {$/;" c namespace:Swan
  5720. RUNNING_L core.mod/src/entities/EntPlayer.h /^ RUNNING_L,$/;" e enum:EntPlayer::State
  5721. RUNNING_R core.mod/src/entities/EntPlayer.h /^ RUNNING_R,$/;" e enum:EntPlayer::State
  5722. RadioButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::RadioButton(const char* label, bool active)$/;" f class:ImGui typeref:typename:bool
  5723. RadioButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::RadioButton(const char* label, int* v, int v_button)$/;" f class:ImGui typeref:typename:bool
  5724. RasterizerFlags third_party/imgui/imgui.h /^ unsigned int RasterizerFlags; \/\/ 0x00 \/\/ Settings for custom font rasteriz/;" m struct:ImFontConfig typeref:typename:unsigned int
  5725. RasterizerFlags third_party/imgui/misc/freetype/imgui_freetype.h /^ enum RasterizerFlags$/;" g namespace:ImGuiFreeType
  5726. RasterizerMultiply third_party/imgui/imgui.h /^ float RasterizerMultiply; \/\/ 1.0f \/\/ Brighten (>1.0f) or darken (<1.0f/;" m struct:ImFontConfig typeref:typename:float
  5727. Rationale conventions.md /^## Rationale$/;" s
  5728. Rationale third_party/imgui-plot/README.md /^## Rationale$/;" s
  5729. ReadLineFn third_party/imgui/imgui_internal.h /^ void (*ReadLineFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, void* entry, con/;" m struct:ImGuiSettingsHandler typeref:typename:void (*)(ImGuiContext * ctx,ImGuiSettingsHandler * handler,void * entry,const char * line)
  5730. ReadOpenFn third_party/imgui/imgui_internal.h /^ void* (*ReadOpenFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, const char* name/;" m struct:ImGuiSettingsHandler typeref:typename:void * (*)(ImGuiContext * ctx,ImGuiSettingsHandler * handler,const char * name)
  5731. Rect third_party/imgui/imgui_internal.h /^ ImRect Rect() const { return ImRect(Pos.x, Pos.y, Pos.x+Size.x, Pos.y+Si/;" f struct:ImGuiWindow typeref:typename:ImRect
  5732. Rect third_party/imgui_sdl/imgui_sdl.cpp /^ struct Rect$/;" s namespace:__anonaaadc0580110 file:
  5733. RectRel third_party/imgui/imgui_internal.h /^ ImRect RectRel; \/\/ Best candidate bounding box in window relative space$/;" m struct:ImGuiNavMoveResult typeref:typename:ImRect
  5734. Rects third_party/imgui/imgui_draw.cpp /^ stbrp_rect* Rects; \/\/ Rectangle to pack. We first fill in their size /;" m struct:ImFontBuildSrcData typeref:typename:stbrp_rect * file:
  5735. Rects third_party/imgui/misc/freetype/imgui_freetype.cpp /^ stbrp_rect* Rects; \/\/ Rectangle to pack. We first fill in their size /;" m struct:ImFontBuildSrcDataFT typeref:typename:stbrp_rect * file:
  5736. RefFrame third_party/imgui/imgui.h /^ mutable int RefFrame;$/;" m struct:ImGuiOnceUponAFrame typeref:typename:int
  5737. References third_party/imgui/docs/README.md /^### References$/;" S
  5738. RelPos libswan/include/swan/Chunk.h /^ using RelPos = TilePos;$/;" t class:Swan::Chunk typeref:typename:TilePos
  5739. Remove third_party/imgui/imgui_internal.h /^ void Remove(ImGuiID key, ImPoolIdx idx) { Data[idx].~T(); *(int*)&Data[idx] = FreeId/;" f struct:ImPool typeref:typename:void
  5740. Remove third_party/imgui/imgui_internal.h /^ void Remove(ImGuiID key, const T* p) { Remove(key, GetIndex(p)); }$/;" f struct:ImPool typeref:typename:void
  5741. Render third_party/imgui/imgui.cpp /^void ImGui::Render()$/;" f class:ImGui typeref:typename:void
  5742. Render third_party/imgui_sdl/imgui_sdl.cpp /^ void Render(ImDrawData* drawData)$/;" f namespace:ImGuiSDL typeref:typename:void
  5743. Render Result third_party/imgui_sdl/README.md /^## Render Result$/;" s
  5744. RenderArrow third_party/imgui/imgui.cpp /^void ImGui::RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale)$/;" f class:ImGui typeref:typename:void
  5745. RenderArrow third_party/imgui/imgui_internal.h /^ inline void RenderArrow(ImVec2 pos, ImGuiDir dir, float scale=1.0f) { ImGuiWindow* window = /;" f namespace:ImGui typeref:typename:void
  5746. RenderArrowPointingAt third_party/imgui/imgui_draw.cpp /^void ImGui::RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir di/;" f class:ImGui typeref:typename:void
  5747. RenderArrowsForVerticalBar third_party/imgui/imgui_widgets.cpp /^static void RenderArrowsForVerticalBar(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, float /;" f typeref:typename:void file:
  5748. RenderBullet third_party/imgui/imgui.cpp /^void ImGui::RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col)$/;" f class:ImGui typeref:typename:void
  5749. RenderBullet third_party/imgui/imgui_internal.h /^ inline void RenderBullet(ImVec2 pos) { ImGuiWindow* window = /;" f namespace:ImGui typeref:typename:void
  5750. RenderChar third_party/imgui/imgui_draw.cpp /^void ImFont::RenderChar(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ImWchar c) con/;" f class:ImFont typeref:typename:void
  5751. RenderCheckMark third_party/imgui/imgui.cpp /^void ImGui::RenderCheckMark(ImVec2 pos, ImU32 col, float sz)$/;" f class:ImGui typeref:typename:void
  5752. RenderColorRectWithAlphaCheckerboard third_party/imgui/imgui_widgets.cpp /^void ImGui::RenderColorRectWithAlphaCheckerboard(ImVec2 p_min, ImVec2 p_max, ImU32 col, float gr/;" f class:ImGui typeref:typename:void
  5753. RenderCompleteSemaphore third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSemaphore RenderCompleteSemaphore;$/;" m struct:ImGui_ImplVulkanH_FrameSemaphores typeref:typename:VkSemaphore
  5754. RenderDrawListsFn third_party/imgui/imgui.h /^ void (*RenderDrawListsFn)(ImDrawData* data);$/;" m struct:ImGuiIO typeref:typename:void (*)(ImDrawData * data)
  5755. RenderDrawListsFnUnused third_party/imgui/imgui.h /^ void* RenderDrawListsFnUnused;$/;" m struct:ImGuiIO typeref:typename:void *
  5756. RenderFrame third_party/imgui/imgui.cpp /^void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool border, float rounding)$/;" f class:ImGui typeref:typename:void
  5757. RenderFrameBorder third_party/imgui/imgui.cpp /^void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding)$/;" f class:ImGui typeref:typename:void
  5758. RenderGlyphAndGetInfo third_party/imgui/misc/freetype/imgui_freetype.cpp /^ const FT_Bitmap* FreeTypeFont::RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info)$/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:const FT_Bitmap *
  5759. RenderMode third_party/imgui/misc/freetype/imgui_freetype.cpp /^ FT_Render_Mode RenderMode;$/;" m struct:__anond3bafd850110::FreeTypeFont typeref:typename:FT_Render_Mode file:
  5760. RenderMouseCursor third_party/imgui/imgui_draw.cpp /^void ImGui::RenderMouseCursor(ImDrawList* draw_list, ImVec2 pos, float scale, ImGuiMouseCursor m/;" f class:ImGui typeref:typename:void
  5761. RenderNavHighlight third_party/imgui/imgui.cpp /^void ImGui::RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags)$/;" f class:ImGui typeref:typename:void
  5762. RenderPass third_party/imgui/examples/imgui_impl_vulkan.h /^ VkRenderPass RenderPass;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkRenderPass
  5763. RenderRectFilledRangeH third_party/imgui/imgui_draw.cpp /^void ImGui::RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x/;" f class:ImGui typeref:typename:void
  5764. RenderTarget libswan/include/swan/gfxutil.h /^ RenderTarget(SDL_Renderer *rnd, SDL_Texture *tex): rnd_(rnd) {$/;" f class:Swan::RenderTarget
  5765. RenderTarget libswan/include/swan/gfxutil.h /^class RenderTarget: NonCopyable {$/;" c namespace:Swan
  5766. RenderText third_party/imgui/imgui.cpp /^void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_/;" f class:ImGui typeref:typename:void
  5767. RenderText third_party/imgui/imgui_draw.cpp /^void ImFont::RenderText(ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4& /;" f class:ImFont typeref:typename:void
  5768. RenderTextClipped third_party/imgui/imgui.cpp /^void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, co/;" f class:ImGui typeref:typename:void
  5769. RenderTextClippedEx third_party/imgui/imgui.cpp /^void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_/;" f class:ImGui typeref:typename:void
  5770. RenderTextEllipsis third_party/imgui/imgui.cpp /^void ImGui::RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_m/;" f class:ImGui typeref:typename:void
  5771. RenderTextWrapped third_party/imgui/imgui.cpp /^void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_wid/;" f class:ImGui typeref:typename:void
  5772. RenderWindowDecorations third_party/imgui/imgui.cpp /^void ImGui::RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool titl/;" f class:ImGui typeref:typename:void
  5773. RenderWindowOuterBorders third_party/imgui/imgui.cpp /^static void ImGui::RenderWindowOuterBorders(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void file:
  5774. RenderWindowTitleBarContents third_party/imgui/imgui.cpp /^void ImGui::RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, cons/;" f class:ImGui typeref:typename:void
  5775. Renderer third_party/imgui/examples/example_apple_metal/Shared/Renderer.h /^@interface Renderer : NSObject <MTKViewDelegate>$/;" i
  5776. Renderer third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^@implementation Renderer$/;" I
  5777. Renderer third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^@interface Renderer ()$/;" i
  5778. Renderer third_party/imgui_sdl/imgui_sdl.cpp /^ SDL_Renderer* Renderer;$/;" m struct:__anonaaadc0580110::Device typeref:typename:SDL_Renderer * file:
  5779. ReorderRequestDir third_party/imgui/imgui_internal.h /^ ImS8 ReorderRequestDir;$/;" m struct:ImGuiTabBar typeref:typename:ImS8
  5780. ReorderRequestTabId third_party/imgui/imgui_internal.h /^ ImGuiID ReorderRequestTabId;$/;" m struct:ImGuiTabBar typeref:typename:ImGuiID
  5781. Requirements third_party/imgui_sdl/README.md /^## Requirements$/;" s
  5782. Reserve third_party/imgui/imgui_internal.h /^ void Reserve(int capacity) { Data.reserve(capacity); Map.Data.reserve(c/;" f struct:ImPool typeref:typename:void
  5783. ResetDevice third_party/imgui/examples/example_win32_directx9/main.cpp /^void ResetDevice()$/;" f typeref:typename:void
  5784. ResetMouseDragDelta third_party/imgui/imgui.cpp /^void ImGui::ResetMouseDragDelta(int button)$/;" f class:ImGui typeref:typename:void
  5785. Resize third_party/imgui/imgui_internal.h /^ void Resize(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Dat/;" f struct:ImBoolVector typeref:typename:void
  5786. ResizeBorderHeld third_party/imgui/imgui_internal.h /^ signed char ResizeBorderHeld; \/\/ Current border being held f/;" m struct:ImGuiWindow typeref:typename:signed char
  5787. ResizeSwapChain third_party/imgui/examples/example_win32_directx12/main.cpp /^void ResizeSwapChain(HWND hWnd, int width, int height)$/;" f typeref:typename:void
  5788. ResourceManager libswan/include/swan/Resource.h /^class ResourceManager {$/;" c namespace:Swan
  5789. ResourceManager libswan/src/Resource.cc /^ResourceManager::ResourceManager(Win &win) {$/;" f class:Swan::ResourceManager
  5790. Restore third_party/imgui/imgui_internal.h /^ void Restore() const { ImGuiWindow* window = GImGui->CurrentWindow; window->DC.LastItemId/;" f struct:ImGuiItemHoveredDataBackup typeref:typename:void
  5791. RetT libswan/include/swan/util.h /^ using RetT = decltype(func(*first));$/;" t function:Swan::map
  5792. RetT libswan/include/swan/util.h /^ using RetT = std::remove_reference_t<decltype(*first)>;$/;" t function:Swan::filter
  5793. RetT libswan/include/swan/util.h /^ using RetT = std::remove_reference_t<decltype(*func(*first))>;$/;" t function:Swan::mapFilter
  5794. RootWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* RootWindow; \/\/ Point to ourself or first a/;" m struct:ImGuiWindow typeref:typename:ImGuiWindow *
  5795. RootWindowForNav third_party/imgui/imgui_internal.h /^ ImGuiWindow* RootWindowForNav; \/\/ Point to ourself or first a/;" m struct:ImGuiWindow typeref:typename:ImGuiWindow *
  5796. RootWindowForTitleBarHighlight third_party/imgui/imgui_internal.h /^ ImGuiWindow* RootWindowForTitleBarHighlight; \/\/ Point to ourself or first a/;" m struct:ImGuiWindow typeref:typename:ImGuiWindow *
  5797. RoundScalarWithFormatT third_party/imgui/imgui_widgets.cpp /^TYPE ImGui::RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, TYPE v)$/;" f class:ImGui typeref:typename:TYPE
  5798. SDL_Event third_party/imgui/examples/imgui_impl_sdl.h /^typedef union SDL_Event SDL_Event;$/;" t typeref:union:SDL_Event
  5799. SDL_HAS_CAPTURE_AND_GLOBAL_MOUSE third_party/imgui/examples/imgui_impl_sdl.cpp /^#define SDL_HAS_CAPTURE_AND_GLOBAL_MOUSE /;" d file:
  5800. SDL_HAS_VULKAN third_party/imgui/examples/imgui_impl_sdl.cpp /^#define SDL_HAS_VULKAN /;" d file:
  5801. SIZE core.mod/src/entities/EntItemStack.h /^ static constexpr Swan::Vec2 SIZE = Swan::Vec2(0.5, 0.5);$/;" m class:EntItemStack typeref:typename:Swan::Vec2
  5802. SIZE core.mod/src/entities/EntPlayer.h /^ static constexpr Swan::Vec2 SIZE = Swan::Vec2(0.6, 1.9);$/;" m class:EntPlayer typeref:typename:Swan::Vec2
  5803. SOURCES third_party/imgui/examples/example_emscripten/Makefile /^SOURCES = main.cpp$/;" m
  5804. SOURCES third_party/imgui/examples/example_glfw_metal/Makefile /^SOURCES = main.mm$/;" m
  5805. SOURCES third_party/imgui/examples/example_glfw_opengl2/Makefile /^SOURCES = main.cpp$/;" m
  5806. SOURCES third_party/imgui/examples/example_glfw_opengl3/Makefile /^SOURCES = main.cpp$/;" m
  5807. SOURCES third_party/imgui/examples/example_glut_opengl2/Makefile /^SOURCES = main.cpp$/;" m
  5808. SOURCES third_party/imgui/examples/example_null/Makefile /^SOURCES = main.cpp$/;" m
  5809. SOURCES third_party/imgui/examples/example_sdl_directx11/build_win32.bat /^set SOURCES=main.cpp ..\\imgui_impl_sdl.cpp ..\\imgui_impl_dx11.cpp ..\\..\\imgui*.cpp$/;" v
  5810. SOURCES third_party/imgui/examples/example_sdl_opengl2/Makefile /^SOURCES = main.cpp$/;" m
  5811. SOURCES third_party/imgui/examples/example_sdl_opengl2/build_win32.bat /^set SOURCES=main.cpp ..\\imgui_impl_sdl.cpp ..\\imgui_impl_opengl2.cpp ..\\..\\imgui*.cpp$/;" v
  5812. SOURCES third_party/imgui/examples/example_sdl_opengl3/Makefile /^SOURCES = main.cpp$/;" m
  5813. SOURCES third_party/imgui/examples/example_sdl_opengl3/build_win32.bat /^set SOURCES=main.cpp ..\\imgui_impl_sdl.cpp ..\\imgui_impl_opengl3.cpp ..\\..\\imgui*.cpp ..\\li/;" v
  5814. SRF libswan/include/swan/SRF.h /^struct SRF {$/;" s namespace:Swan
  5815. SRFArray libswan/include/swan/SRF.h /^ SRFArray() {}$/;" f struct:Swan::SRFArray
  5816. SRFArray libswan/include/swan/SRF.h /^struct SRFArray: SRF {$/;" s namespace:Swan
  5817. SRFArray libswan/src/SRF.cc /^SRFArray::SRFArray(std::initializer_list<SRF *> lst) {$/;" f class:Swan::SRFArray
  5818. SRFByte libswan/include/swan/SRF.h /^ SRFByte(): val(0) {}$/;" f struct:Swan::SRFByte
  5819. SRFByte libswan/include/swan/SRF.h /^ SRFByte(uint8_t v): val(v) {}$/;" f struct:Swan::SRFByte
  5820. SRFByte libswan/include/swan/SRF.h /^struct SRFByte: SRF {$/;" s namespace:Swan
  5821. SRFByteArray libswan/include/swan/SRF.h /^ SRFByteArray(std::initializer_list<uint8_t> lst): val(lst) {}$/;" f struct:Swan::SRFByteArray
  5822. SRFByteArray libswan/include/swan/SRF.h /^ SRFByteArray(std::vector<uint8_t> &v): val(v) {}$/;" f struct:Swan::SRFByteArray
  5823. SRFByteArray libswan/include/swan/SRF.h /^struct SRFByteArray: SRF {$/;" s namespace:Swan
  5824. SRFDouble libswan/include/swan/SRF.h /^ SRFDouble(): val(0) {}$/;" f struct:Swan::SRFDouble
  5825. SRFDouble libswan/include/swan/SRF.h /^ SRFDouble(double v): val(v) {}$/;" f struct:Swan::SRFDouble
  5826. SRFDouble libswan/include/swan/SRF.h /^struct SRFDouble: SRF {$/;" s namespace:Swan
  5827. SRFDoubleArray libswan/include/swan/SRF.h /^ SRFDoubleArray(std::initializer_list<double> v): val(v) {}$/;" f struct:Swan::SRFDoubleArray
  5828. SRFDoubleArray libswan/include/swan/SRF.h /^ SRFDoubleArray(std::vector<double> &v): val(v) {}$/;" f struct:Swan::SRFDoubleArray
  5829. SRFDoubleArray libswan/include/swan/SRF.h /^struct SRFDoubleArray: SRF {$/;" s namespace:Swan
  5830. SRFFloat libswan/include/swan/SRF.h /^ SRFFloat(): val(0) {}$/;" f struct:Swan::SRFFloat
  5831. SRFFloat libswan/include/swan/SRF.h /^ SRFFloat(float v): val(v) {}$/;" f struct:Swan::SRFFloat
  5832. SRFFloat libswan/include/swan/SRF.h /^struct SRFFloat: SRF {$/;" s namespace:Swan
  5833. SRFFloatArray libswan/include/swan/SRF.h /^ SRFFloatArray(std::initializer_list<float> v): val(v) {}$/;" f struct:Swan::SRFFloatArray
  5834. SRFFloatArray libswan/include/swan/SRF.h /^ SRFFloatArray(std::vector<float> &v): val(v) {}$/;" f struct:Swan::SRFFloatArray
  5835. SRFFloatArray libswan/include/swan/SRF.h /^struct SRFFloatArray: SRF {$/;" s namespace:Swan
  5836. SRFInt libswan/include/swan/SRF.h /^ SRFInt(): val(0) {}$/;" f struct:Swan::SRFInt
  5837. SRFInt libswan/include/swan/SRF.h /^ SRFInt(int32_t v): val(v) {}$/;" f struct:Swan::SRFInt
  5838. SRFInt libswan/include/swan/SRF.h /^struct SRFInt: SRF {$/;" s namespace:Swan
  5839. SRFIntArray libswan/include/swan/SRF.h /^ SRFIntArray(std::initializer_list<int> v): val(v) {}$/;" f struct:Swan::SRFIntArray
  5840. SRFIntArray libswan/include/swan/SRF.h /^ SRFIntArray(std::vector<int32_t> &v): val(v) {}$/;" f struct:Swan::SRFIntArray
  5841. SRFIntArray libswan/include/swan/SRF.h /^struct SRFIntArray: SRF {$/;" s namespace:Swan
  5842. SRFNone libswan/include/swan/SRF.h /^struct SRFNone: SRF {$/;" s namespace:Swan
  5843. SRFObject libswan/include/swan/SRF.h /^ SRFObject() {}$/;" f struct:Swan::SRFObject
  5844. SRFObject libswan/include/swan/SRF.h /^struct SRFObject: SRF {$/;" s namespace:Swan
  5845. SRFObject libswan/src/SRF.cc /^SRFObject::SRFObject(std::initializer_list<std::pair<std::string, SRF *>> lst) {$/;" f class:Swan::SRFObject
  5846. SRFString libswan/include/swan/SRF.h /^ SRFString(): val("") {}$/;" f struct:Swan::SRFString
  5847. SRFString libswan/include/swan/SRF.h /^ SRFString(const std::string &v): val(v) {}$/;" f struct:Swan::SRFString
  5848. SRFString libswan/include/swan/SRF.h /^struct SRFString: SRF {$/;" s namespace:Swan
  5849. SRFWord libswan/include/swan/SRF.h /^ SRFWord(): val(0) {}$/;" f struct:Swan::SRFWord
  5850. SRFWord libswan/include/swan/SRF.h /^ SRFWord(uint16_t v): val(v) {}$/;" f struct:Swan::SRFWord
  5851. SRFWord libswan/include/swan/SRF.h /^struct SRFWord: SRF {$/;" s namespace:Swan
  5852. SRFWordArray libswan/include/swan/SRF.h /^ SRFWordArray(std::initializer_list<uint16_t> v): val(v) {}$/;" f struct:Swan::SRFWordArray
  5853. SRFWordArray libswan/include/swan/SRF.h /^ SRFWordArray(std::vector<uint16_t> &v): val(v) {}$/;" f struct:Swan::SRFWordArray
  5854. SRFWordArray libswan/include/swan/SRF.h /^struct SRFWordArray: SRF {$/;" s namespace:Swan
  5855. STBRP_ASSERT third_party/imgui/imgui_draw.cpp /^#define STBRP_ASSERT(/;" d file:
  5856. STBRP_ASSERT third_party/imgui/imstb_rectpack.h /^#define STBRP_ASSERT /;" d
  5857. STBRP_ASSERT third_party/imgui/misc/freetype/imgui_freetype.cpp /^#define STBRP_ASSERT(/;" d file:
  5858. STBRP_DEF third_party/imgui/imstb_rectpack.h /^#define STBRP_DEF /;" d
  5859. STBRP_HEURISTIC_Skyline_BF_sortHeight third_party/imgui/imstb_rectpack.h /^ STBRP_HEURISTIC_Skyline_BF_sortHeight$/;" e enum:__anon1b2b84690103
  5860. STBRP_HEURISTIC_Skyline_BL_sortHeight third_party/imgui/imstb_rectpack.h /^ STBRP_HEURISTIC_Skyline_BL_sortHeight = STBRP_HEURISTIC_Skyline_default,$/;" e enum:__anon1b2b84690103
  5861. STBRP_HEURISTIC_Skyline_default third_party/imgui/imstb_rectpack.h /^ STBRP_HEURISTIC_Skyline_default=0,$/;" e enum:__anon1b2b84690103
  5862. STBRP_SORT third_party/imgui/imgui_draw.cpp /^#define STBRP_SORT /;" d file:
  5863. STBRP_SORT third_party/imgui/imstb_rectpack.h /^#define STBRP_SORT /;" d
  5864. STBRP_STATIC third_party/imgui/imgui_draw.cpp /^#define STBRP_STATIC$/;" d file:
  5865. STBRP_STATIC third_party/imgui/misc/freetype/imgui_freetype.cpp /^#define STBRP_STATIC$/;" d file:
  5866. STBRP__CDECL third_party/imgui/imstb_rectpack.h /^#define STBRP__CDECL /;" d
  5867. STBRP__CDECL third_party/imgui/imstb_rectpack.h /^#define STBRP__CDECL$/;" d
  5868. STBRP__INIT_skyline third_party/imgui/imstb_rectpack.h /^ STBRP__INIT_skyline = 1$/;" e enum:__anon1b2b84690203
  5869. STBRP__MAXVAL third_party/imgui/imstb_rectpack.h /^#define STBRP__MAXVAL /;" d
  5870. STBRP__NOTUSED third_party/imgui/imstb_rectpack.h /^#define STBRP__NOTUSED(/;" d
  5871. STBTT_DEF third_party/imgui/imstb_truetype.h /^#define STBTT_DEF /;" d
  5872. STBTT_FIX third_party/imgui/imstb_truetype.h /^#define STBTT_FIX /;" d
  5873. STBTT_FIXMASK third_party/imgui/imstb_truetype.h /^#define STBTT_FIXMASK /;" d
  5874. STBTT_FIXSHIFT third_party/imgui/imstb_truetype.h /^#define STBTT_FIXSHIFT /;" d
  5875. STBTT_GPOS_TODO_assert third_party/imgui/imstb_truetype.h /^#define STBTT_GPOS_TODO_assert(/;" d
  5876. STBTT_MACSTYLE_BOLD third_party/imgui/imstb_truetype.h /^#define STBTT_MACSTYLE_BOLD /;" d
  5877. STBTT_MACSTYLE_DONTCARE third_party/imgui/imstb_truetype.h /^#define STBTT_MACSTYLE_DONTCARE /;" d
  5878. STBTT_MACSTYLE_ITALIC third_party/imgui/imstb_truetype.h /^#define STBTT_MACSTYLE_ITALIC /;" d
  5879. STBTT_MACSTYLE_NONE third_party/imgui/imstb_truetype.h /^#define STBTT_MACSTYLE_NONE /;" d
  5880. STBTT_MACSTYLE_UNDERSCORE third_party/imgui/imstb_truetype.h /^#define STBTT_MACSTYLE_UNDERSCORE /;" d
  5881. STBTT_MAC_EID_ARABIC third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4,$/;" e enum:__anon3297c23e0c03
  5882. STBTT_MAC_EID_CHINESE_TRAD third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6,$/;" e enum:__anon3297c23e0c03
  5883. STBTT_MAC_EID_GREEK third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6,$/;" e enum:__anon3297c23e0c03
  5884. STBTT_MAC_EID_HEBREW third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5,$/;" e enum:__anon3297c23e0c03
  5885. STBTT_MAC_EID_JAPANESE third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5,$/;" e enum:__anon3297c23e0c03
  5886. STBTT_MAC_EID_KOREAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7$/;" e enum:__anon3297c23e0c03
  5887. STBTT_MAC_EID_ROMAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4,$/;" e enum:__anon3297c23e0c03
  5888. STBTT_MAC_EID_RUSSIAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7$/;" e enum:__anon3297c23e0c03
  5889. STBTT_MAC_LANG_ARABIC third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23,$/;" e enum:__anon3297c23e0e03
  5890. STBTT_MAC_LANG_CHINESE_SIMPLIFIED third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33,$/;" e enum:__anon3297c23e0e03
  5891. STBTT_MAC_LANG_CHINESE_TRAD third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19$/;" e enum:__anon3297c23e0e03
  5892. STBTT_MAC_LANG_DUTCH third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32,$/;" e enum:__anon3297c23e0e03
  5893. STBTT_MAC_LANG_ENGLISH third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11,$/;" e enum:__anon3297c23e0e03
  5894. STBTT_MAC_LANG_FRENCH third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 ,$/;" e enum:__anon3297c23e0e03
  5895. STBTT_MAC_LANG_GERMAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 ,$/;" e enum:__anon3297c23e0e03
  5896. STBTT_MAC_LANG_HEBREW third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33,$/;" e enum:__anon3297c23e0e03
  5897. STBTT_MAC_LANG_ITALIAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19$/;" e enum:__anon3297c23e0e03
  5898. STBTT_MAC_LANG_JAPANESE third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11,$/;" e enum:__anon3297c23e0e03
  5899. STBTT_MAC_LANG_KOREAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23,$/;" e enum:__anon3297c23e0e03
  5900. STBTT_MAC_LANG_RUSSIAN third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32,$/;" e enum:__anon3297c23e0e03
  5901. STBTT_MAC_LANG_SPANISH third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 ,$/;" e enum:__anon3297c23e0e03
  5902. STBTT_MAC_LANG_SWEDISH third_party/imgui/imstb_truetype.h /^ STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 ,$/;" e enum:__anon3297c23e0e03
  5903. STBTT_MAX_OVERSAMPLE third_party/imgui/imstb_truetype.h /^#define STBTT_MAX_OVERSAMPLE /;" d
  5904. STBTT_MS_EID_SHIFTJIS third_party/imgui/imstb_truetype.h /^ STBTT_MS_EID_SHIFTJIS =2,$/;" e enum:__anon3297c23e0b03
  5905. STBTT_MS_EID_SYMBOL third_party/imgui/imstb_truetype.h /^ STBTT_MS_EID_SYMBOL =0,$/;" e enum:__anon3297c23e0b03
  5906. STBTT_MS_EID_UNICODE_BMP third_party/imgui/imstb_truetype.h /^ STBTT_MS_EID_UNICODE_BMP =1,$/;" e enum:__anon3297c23e0b03
  5907. STBTT_MS_EID_UNICODE_FULL third_party/imgui/imstb_truetype.h /^ STBTT_MS_EID_UNICODE_FULL =10$/;" e enum:__anon3297c23e0b03
  5908. STBTT_MS_LANG_CHINESE third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411,$/;" e enum:__anon3297c23e0d03
  5909. STBTT_MS_LANG_DUTCH third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412,$/;" e enum:__anon3297c23e0d03
  5910. STBTT_MS_LANG_ENGLISH third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410,$/;" e enum:__anon3297c23e0d03
  5911. STBTT_MS_LANG_FRENCH third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419,$/;" e enum:__anon3297c23e0d03
  5912. STBTT_MS_LANG_GERMAN third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409,$/;" e enum:__anon3297c23e0d03
  5913. STBTT_MS_LANG_HEBREW third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D$/;" e enum:__anon3297c23e0d03
  5914. STBTT_MS_LANG_ITALIAN third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410,$/;" e enum:__anon3297c23e0d03
  5915. STBTT_MS_LANG_JAPANESE third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411,$/;" e enum:__anon3297c23e0d03
  5916. STBTT_MS_LANG_KOREAN third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412,$/;" e enum:__anon3297c23e0d03
  5917. STBTT_MS_LANG_RUSSIAN third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419,$/;" e enum:__anon3297c23e0d03
  5918. STBTT_MS_LANG_SPANISH third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409,$/;" e enum:__anon3297c23e0d03
  5919. STBTT_MS_LANG_SWEDISH third_party/imgui/imstb_truetype.h /^ STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D$/;" e enum:__anon3297c23e0d03
  5920. STBTT_PLATFORM_ID_ISO third_party/imgui/imstb_truetype.h /^ STBTT_PLATFORM_ID_ISO =2,$/;" e enum:__anon3297c23e0903
  5921. STBTT_PLATFORM_ID_MAC third_party/imgui/imstb_truetype.h /^ STBTT_PLATFORM_ID_MAC =1,$/;" e enum:__anon3297c23e0903
  5922. STBTT_PLATFORM_ID_MICROSOFT third_party/imgui/imstb_truetype.h /^ STBTT_PLATFORM_ID_MICROSOFT =3$/;" e enum:__anon3297c23e0903
  5923. STBTT_PLATFORM_ID_UNICODE third_party/imgui/imstb_truetype.h /^ STBTT_PLATFORM_ID_UNICODE =0,$/;" e enum:__anon3297c23e0903
  5924. STBTT_POINT_SIZE third_party/imgui/imstb_truetype.h /^#define STBTT_POINT_SIZE(/;" d
  5925. STBTT_RASTERIZER_VERSION third_party/imgui/imstb_truetype.h /^#define STBTT_RASTERIZER_VERSION /;" d
  5926. STBTT_STATIC third_party/imgui/imgui_draw.cpp /^#define STBTT_STATIC$/;" d file:
  5927. STBTT_UNICODE_EID_ISO_10646 third_party/imgui/imstb_truetype.h /^ STBTT_UNICODE_EID_ISO_10646 =2,$/;" e enum:__anon3297c23e0a03
  5928. STBTT_UNICODE_EID_UNICODE_1_0 third_party/imgui/imstb_truetype.h /^ STBTT_UNICODE_EID_UNICODE_1_0 =0,$/;" e enum:__anon3297c23e0a03
  5929. STBTT_UNICODE_EID_UNICODE_1_1 third_party/imgui/imstb_truetype.h /^ STBTT_UNICODE_EID_UNICODE_1_1 =1,$/;" e enum:__anon3297c23e0a03
  5930. STBTT_UNICODE_EID_UNICODE_2_0_BMP third_party/imgui/imstb_truetype.h /^ STBTT_UNICODE_EID_UNICODE_2_0_BMP=3,$/;" e enum:__anon3297c23e0a03
  5931. STBTT_UNICODE_EID_UNICODE_2_0_FULL third_party/imgui/imstb_truetype.h /^ STBTT_UNICODE_EID_UNICODE_2_0_FULL=4$/;" e enum:__anon3297c23e0a03
  5932. STBTT__COMPARE third_party/imgui/imstb_truetype.h /^#define STBTT__COMPARE(/;" d
  5933. STBTT__CSCTX_INIT third_party/imgui/imstb_truetype.h /^#define STBTT__CSCTX_INIT(/;" d
  5934. STBTT__CSERR third_party/imgui/imstb_truetype.h /^#define STBTT__CSERR(/;" d
  5935. STBTT__NOTUSED third_party/imgui/imstb_truetype.h /^#define STBTT__NOTUSED(/;" d
  5936. STBTT__OVER_MASK third_party/imgui/imstb_truetype.h /^#define STBTT__OVER_MASK /;" d
  5937. STBTT_acos third_party/imgui/imstb_truetype.h /^ #define STBTT_acos(/;" d
  5938. STBTT_assert third_party/imgui/imgui_draw.cpp /^#define STBTT_assert(/;" d file:
  5939. STBTT_assert third_party/imgui/imstb_truetype.h /^ #define STBTT_assert(/;" d
  5940. STBTT_cos third_party/imgui/imstb_truetype.h /^ #define STBTT_cos(/;" d
  5941. STBTT_fabs third_party/imgui/imgui_draw.cpp /^#define STBTT_fabs(/;" d file:
  5942. STBTT_fabs third_party/imgui/imstb_truetype.h /^ #define STBTT_fabs(/;" d
  5943. STBTT_fmod third_party/imgui/imgui_draw.cpp /^#define STBTT_fmod(/;" d file:
  5944. STBTT_fmod third_party/imgui/imstb_truetype.h /^ #define STBTT_fmod(/;" d
  5945. STBTT_free third_party/imgui/imgui_draw.cpp /^#define STBTT_free(/;" d file:
  5946. STBTT_free third_party/imgui/imstb_truetype.h /^ #define STBTT_free(/;" d
  5947. STBTT_iceil third_party/imgui/imgui_draw.cpp /^#define STBTT_iceil(/;" d file:
  5948. STBTT_iceil third_party/imgui/imstb_truetype.h /^ #define STBTT_iceil(/;" d
  5949. STBTT_ifloor third_party/imgui/imgui_draw.cpp /^#define STBTT_ifloor(/;" d file:
  5950. STBTT_ifloor third_party/imgui/imstb_truetype.h /^ #define STBTT_ifloor(/;" d
  5951. STBTT_malloc third_party/imgui/imgui_draw.cpp /^#define STBTT_malloc(/;" d file:
  5952. STBTT_malloc third_party/imgui/imstb_truetype.h /^ #define STBTT_malloc(/;" d
  5953. STBTT_max third_party/imgui/imstb_truetype.h /^#define STBTT_max(/;" d
  5954. STBTT_memcpy third_party/imgui/imstb_truetype.h /^ #define STBTT_memcpy /;" d
  5955. STBTT_memset third_party/imgui/imstb_truetype.h /^ #define STBTT_memset /;" d
  5956. STBTT_min third_party/imgui/imstb_truetype.h /^#define STBTT_min(/;" d
  5957. STBTT_pow third_party/imgui/imgui_draw.cpp /^#define STBTT_pow(/;" d file:
  5958. STBTT_pow third_party/imgui/imstb_truetype.h /^ #define STBTT_pow(/;" d
  5959. STBTT_sqrt third_party/imgui/imgui_draw.cpp /^#define STBTT_sqrt(/;" d file:
  5960. STBTT_sqrt third_party/imgui/imstb_truetype.h /^ #define STBTT_sqrt(/;" d
  5961. STBTT_strlen third_party/imgui/imstb_truetype.h /^ #define STBTT_strlen(/;" d
  5962. STBTT_vcubic third_party/imgui/imstb_truetype.h /^ STBTT_vcubic$/;" e enum:__anon3297c23e0603
  5963. STBTT_vcurve third_party/imgui/imstb_truetype.h /^ STBTT_vcurve,$/;" e enum:__anon3297c23e0603
  5964. STBTT_vline third_party/imgui/imstb_truetype.h /^ STBTT_vline,$/;" e enum:__anon3297c23e0603
  5965. STBTT_vmove third_party/imgui/imstb_truetype.h /^ STBTT_vmove=1,$/;" e enum:__anon3297c23e0603
  5966. STB_INCLUDE_STB_RECT_PACK_H third_party/imgui/imstb_rectpack.h /^#define STB_INCLUDE_STB_RECT_PACK_H$/;" d
  5967. STB_RECT_PACK_IMPLEMENTATION third_party/imgui/imgui_draw.cpp /^#define STB_RECT_PACK_IMPLEMENTATION$/;" d file:
  5968. STB_RECT_PACK_IMPLEMENTATION third_party/imgui/misc/freetype/imgui_freetype.cpp /^#define STB_RECT_PACK_IMPLEMENTATION$/;" d file:
  5969. STB_RECT_PACK_VERSION third_party/imgui/imstb_rectpack.h /^#define STB_RECT_PACK_VERSION /;" d
  5970. STB_SPRINTF_IMPLEMENTATION third_party/imgui/imgui.cpp /^#define STB_SPRINTF_IMPLEMENTATION$/;" d file:
  5971. STB_TEXTEDIT_CHARTYPE third_party/imgui/imgui_internal.h /^#define STB_TEXTEDIT_CHARTYPE /;" d
  5972. STB_TEXTEDIT_CHARTYPE third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_CHARTYPE /;" d
  5973. STB_TEXTEDIT_DELETECHARS third_party/imgui/imgui_widgets.cpp /^static void STB_TEXTEDIT_DELETECHARS(STB_TEXTEDIT_STRING* obj, int pos, int n)$/;" f namespace:ImStb typeref:typename:void file:
  5974. STB_TEXTEDIT_GETCHAR third_party/imgui/imgui_widgets.cpp /^static ImWchar STB_TEXTEDIT_GETCHAR(const STB_TEXTEDIT_STRING* obj, int idx) /;" f namespace:ImStb typeref:typename:ImWchar file:
  5975. STB_TEXTEDIT_GETWIDTH third_party/imgui/imgui_widgets.cpp /^static float STB_TEXTEDIT_GETWIDTH(STB_TEXTEDIT_STRING* obj, int line_start_idx, int char_idx)/;" f namespace:ImStb typeref:typename:float file:
  5976. STB_TEXTEDIT_GETWIDTH_NEWLINE third_party/imgui/imgui_internal.h /^#define STB_TEXTEDIT_GETWIDTH_NEWLINE /;" d
  5977. STB_TEXTEDIT_IMPLEMENTATION third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_IMPLEMENTATION$/;" d file:
  5978. STB_TEXTEDIT_INSERTCHARS third_party/imgui/imgui_widgets.cpp /^static bool STB_TEXTEDIT_INSERTCHARS(STB_TEXTEDIT_STRING* obj, int pos, const ImWchar* new_text,/;" f namespace:ImStb typeref:typename:bool file:
  5979. STB_TEXTEDIT_KEYTOTEXT third_party/imgui/imgui_widgets.cpp /^static int STB_TEXTEDIT_KEYTOTEXT(int key) /;" f namespace:ImStb typeref:typename:int file:
  5980. STB_TEXTEDIT_KEYTYPE third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_KEYTYPE /;" d
  5981. STB_TEXTEDIT_K_BACKSPACE third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_BACKSPACE /;" d file:
  5982. STB_TEXTEDIT_K_DELETE third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_DELETE /;" d file:
  5983. STB_TEXTEDIT_K_DOWN third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_DOWN /;" d file:
  5984. STB_TEXTEDIT_K_LEFT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_LEFT /;" d file:
  5985. STB_TEXTEDIT_K_LINEEND third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_LINEEND /;" d file:
  5986. STB_TEXTEDIT_K_LINESTART third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_LINESTART /;" d file:
  5987. STB_TEXTEDIT_K_REDO third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_REDO /;" d file:
  5988. STB_TEXTEDIT_K_RIGHT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_RIGHT /;" d file:
  5989. STB_TEXTEDIT_K_SHIFT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_SHIFT /;" d file:
  5990. STB_TEXTEDIT_K_TEXTEND third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_TEXTEND /;" d file:
  5991. STB_TEXTEDIT_K_TEXTSTART third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_TEXTSTART /;" d file:
  5992. STB_TEXTEDIT_K_UNDO third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_UNDO /;" d file:
  5993. STB_TEXTEDIT_K_UP third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_UP /;" d file:
  5994. STB_TEXTEDIT_K_WORDLEFT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_WORDLEFT /;" d file:
  5995. STB_TEXTEDIT_K_WORDRIGHT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_K_WORDRIGHT /;" d file:
  5996. STB_TEXTEDIT_LAYOUTROW third_party/imgui/imgui_widgets.cpp /^static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, STB_TEXTEDIT_STRING* obj, int line_star/;" f namespace:ImStb typeref:typename:void file:
  5997. STB_TEXTEDIT_MOVEWORDLEFT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_MOVEWORDLEFT /;" d file:
  5998. STB_TEXTEDIT_MOVEWORDLEFT third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_MOVEWORDLEFT /;" d
  5999. STB_TEXTEDIT_MOVEWORDLEFT_IMPL third_party/imgui/imgui_widgets.cpp /^static int STB_TEXTEDIT_MOVEWORDLEFT_IMPL(STB_TEXTEDIT_STRING* obj, int idx) { idx--; while (/;" f namespace:ImStb typeref:typename:int file:
  6000. STB_TEXTEDIT_MOVEWORDRIGHT third_party/imgui/imgui_widgets.cpp /^#define STB_TEXTEDIT_MOVEWORDRIGHT /;" d file:
  6001. STB_TEXTEDIT_MOVEWORDRIGHT third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_MOVEWORDRIGHT /;" d
  6002. STB_TEXTEDIT_MOVEWORDRIGHT_IMPL third_party/imgui/imgui_widgets.cpp /^static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(STB_TEXTEDIT_STRING* obj, int idx) { idx++; int len/;" f namespace:ImStb typeref:typename:int file:
  6003. STB_TEXTEDIT_NEWLINE third_party/imgui/imgui_widgets.cpp /^static ImWchar STB_TEXTEDIT_NEWLINE = '\\n';$/;" v namespace:ImStb typeref:typename:ImWchar file:
  6004. STB_TEXTEDIT_POSITIONTYPE third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_POSITIONTYPE /;" d
  6005. STB_TEXTEDIT_STRING third_party/imgui/imgui_internal.h /^#define STB_TEXTEDIT_STRING /;" d
  6006. STB_TEXTEDIT_STRINGLEN third_party/imgui/imgui_widgets.cpp /^static int STB_TEXTEDIT_STRINGLEN(const STB_TEXTEDIT_STRING* obj) /;" f namespace:ImStb typeref:typename:int file:
  6007. STB_TEXTEDIT_UNDOCHARCOUNT third_party/imgui/imgui_internal.h /^#define STB_TEXTEDIT_UNDOCHARCOUNT /;" d
  6008. STB_TEXTEDIT_UNDOCHARCOUNT third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_UNDOCHARCOUNT /;" d
  6009. STB_TEXTEDIT_UNDOSTATECOUNT third_party/imgui/imgui_internal.h /^#define STB_TEXTEDIT_UNDOSTATECOUNT /;" d
  6010. STB_TEXTEDIT_UNDOSTATECOUNT third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_UNDOSTATECOUNT /;" d
  6011. STB_TEXTEDIT_memmove third_party/imgui/imstb_textedit.h /^#define STB_TEXTEDIT_memmove /;" d
  6012. STB_TEXT_HAS_SELECTION third_party/imgui/imstb_textedit.h /^#define STB_TEXT_HAS_SELECTION(/;" d
  6013. STB_TRUETYPE_IMPLEMENTATION third_party/imgui/imgui_draw.cpp /^#define STB_TRUETYPE_IMPLEMENTATION$/;" d file:
  6014. STB_TexteditState third_party/imgui/imstb_textedit.h /^} STB_TexteditState;$/;" t typeref:struct:__anon6b3818470308
  6015. STB__SCRAMBLE third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define STB__SCRAMBLE(/;" d file:
  6016. STB__TRY third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define STB__TRY(/;" d file:
  6017. STRING libswan/src/SRF.cc /^ STRING = 2,$/;" e enum:Swan::Type file:
  6018. SameLine third_party/imgui/imgui.cpp /^void ImGui::SameLine(float offset_from_start_x, float spacing_w)$/;" f class:ImGui typeref:typename:void
  6019. Sample third_party/imgui_sdl/imgui_sdl.cpp /^ Color Sample(float u, float v) const$/;" f struct:__anonaaadc0580110::Texture typeref:typename:Color file:
  6020. SampleMask third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT SampleMask;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6021. SampleMask third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT SampleMask;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6022. SaveIniSettingsToDisk third_party/imgui/imgui.cpp /^void ImGui::SaveIniSettingsToDisk(const char* ini_filename)$/;" f class:ImGui typeref:typename:void
  6023. SaveIniSettingsToMemory third_party/imgui/imgui.cpp /^const char* ImGui::SaveIniSettingsToMemory(size_t* out_size)$/;" f class:ImGui typeref:typename:const char *
  6024. Saw third_party/imgui/imgui_demo.cpp /^ static float Saw(void*, int i) { return (i & 1) ? 1.0f : -1.0f; }$/;" f struct:ShowDemoWindowWidgets::Funcs typeref:typename:float file:
  6025. Scale third_party/imgui-plot/include/imgui_plot.h /^ struct Scale {$/;" s struct:ImGui::PlotConfig
  6026. Scale third_party/imgui/imgui.h /^ float Scale; \/\/ 4 \/\/ in \/\/ = 1.f \/\/ Bas/;" m struct:ImFont typeref:typename:float
  6027. ScaleAllSizes third_party/imgui/imgui.cpp /^void ImGuiStyle::ScaleAllSizes(float scale_factor)$/;" f class:ImGuiStyle typeref:typename:void
  6028. ScaleClipRects third_party/imgui/imgui_draw.cpp /^void ImDrawData::ScaleClipRects(const ImVec2& fb_scale)$/;" f class:ImDrawData typeref:typename:void
  6029. ScanFmt third_party/imgui/imgui_internal.h /^ const char* ScanFmt; \/\/ Default scanf format for the type$/;" m struct:ImGuiDataTypeInfo typeref:typename:const char *
  6030. ScissorRects third_party/imgui/examples/imgui_impl_dx10.cpp /^ D3D10_RECT ScissorRects[D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:D3D10_RECT[] file:
  6031. ScissorRects third_party/imgui/examples/imgui_impl_dx11.cpp /^ D3D11_RECT ScissorRects[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:D3D11_RECT[] file:
  6032. ScissorRectsCount third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT ScissorRectsCount, ViewportsCount;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6033. ScissorRectsCount third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT ScissorRectsCount, ViewportsCount;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6034. Screenshots third_party/imgui-plot/README.md /^## Screenshots$/;" s
  6035. Scroll third_party/imgui/imgui_internal.h /^ ImVec2 Scroll;$/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6036. ScrollMax third_party/imgui/imgui_internal.h /^ ImVec2 ScrollMax;$/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6037. ScrollTarget third_party/imgui/imgui_internal.h /^ ImVec2 ScrollTarget; \/\/ target scroll position. sto/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6038. ScrollTargetCenterRatio third_party/imgui/imgui_internal.h /^ ImVec2 ScrollTargetCenterRatio; \/\/ 0.0f = scroll so that targe/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6039. ScrollToBottom third_party/imgui/imgui_demo.cpp /^ bool ScrollToBottom;$/;" m struct:ExampleAppConsole typeref:typename:bool file:
  6040. ScrollToBringRectIntoView third_party/imgui/imgui.cpp /^ImVec2 ImGui::ScrollToBringRectIntoView(ImGuiWindow* window, const ImRect& item_rect)$/;" f class:ImGui typeref:typename:ImVec2
  6041. ScrollX third_party/imgui/imgui_internal.h /^ float ScrollX; \/\/ horizontal scrolling\/offset$/;" m struct:ImGuiInputTextState typeref:typename:float
  6042. Scrollbar third_party/imgui/imgui_widgets.cpp /^void ImGui::Scrollbar(ImGuiAxis axis)$/;" f class:ImGui typeref:typename:void
  6043. ScrollbarClickDeltaToGrabCenter third_party/imgui/imgui_internal.h /^ float ScrollbarClickDeltaToGrabCenter; \/\/ Distance between mouse and /;" m struct:ImGuiContext typeref:typename:float
  6044. ScrollbarEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::ScrollbarEx(const ImRect& bb_frame, ImGuiID id, ImGuiAxis axis, float* p_scroll_v, f/;" f class:ImGui typeref:typename:bool
  6045. ScrollbarRounding third_party/imgui/imgui.h /^ float ScrollbarRounding; \/\/ Radius of grab corners for scrollbar.$/;" m struct:ImGuiStyle typeref:typename:float
  6046. ScrollbarSize third_party/imgui/imgui.h /^ float ScrollbarSize; \/\/ Width of the vertical scrollbar, Height of the /;" m struct:ImGuiStyle typeref:typename:float
  6047. ScrollbarSizes third_party/imgui/imgui_internal.h /^ ImVec2 ScrollbarSizes; \/\/ Size taken by scrollbars on/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6048. ScrollbarX third_party/imgui/imgui_internal.h /^ bool ScrollbarX, ScrollbarY; \/\/ Are scrollbars visible?$/;" m struct:ImGuiWindow typeref:typename:bool
  6049. ScrollbarY third_party/imgui/imgui_internal.h /^ bool ScrollbarX, ScrollbarY; \/\/ Are scrollbars visible?$/;" m struct:ImGuiWindow typeref:typename:bool
  6050. ScrollingAnim third_party/imgui/imgui_internal.h /^ float ScrollingAnim;$/;" m struct:ImGuiTabBar typeref:typename:float
  6051. ScrollingSpeed third_party/imgui/imgui_internal.h /^ float ScrollingSpeed;$/;" m struct:ImGuiTabBar typeref:typename:float
  6052. ScrollingTarget third_party/imgui/imgui_internal.h /^ float ScrollingTarget;$/;" m struct:ImGuiTabBar typeref:typename:float
  6053. ScrollingTargetDistToVisibility third_party/imgui/imgui_internal.h /^ float ScrollingTargetDistToVisibility;$/;" m struct:ImGuiTabBar typeref:typename:float
  6054. SelectAll third_party/imgui/imgui_internal.h /^ void SelectAll() { Stb.select_start = 0; Stb.cursor = Stb.select_end /;" f struct:ImGuiInputTextState typeref:typename:void
  6055. SelectScopeId third_party/imgui/imgui_internal.h /^ ImGuiID SelectScopeId;\/\/ Best candidate window current selectable group ID$/;" m struct:ImGuiNavMoveResult typeref:typename:ImGuiID
  6056. Selectable third_party/imgui/imgui_widgets.cpp /^bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec/;" f class:ImGui typeref:typename:bool
  6057. Selectable third_party/imgui/imgui_widgets.cpp /^bool ImGui::Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags, const Im/;" f class:ImGui typeref:typename:bool
  6058. SelectableTextAlign third_party/imgui/imgui.h /^ ImVec2 SelectableTextAlign; \/\/ Alignment of selectable text when selectable is/;" m struct:ImGuiStyle typeref:typename:ImVec2
  6059. SelectedAllMouseLock third_party/imgui/imgui_internal.h /^ bool SelectedAllMouseLock; \/\/ after a double-click to select all, we /;" m struct:ImGuiInputTextState typeref:typename:bool
  6060. SelectedTabId third_party/imgui/imgui_internal.h /^ ImGuiID SelectedTabId; \/\/ Selected tab$/;" m struct:ImGuiTabBar typeref:typename:ImGuiID
  6061. Selection third_party/imgui-plot/include/imgui_plot.h /^ struct Selection {$/;" s struct:ImGui::PlotConfig
  6062. SelectionEnd third_party/imgui/imgui.h /^ int SelectionEnd; \/\/ \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:int
  6063. SelectionStart third_party/imgui/imgui.h /^ int SelectionStart; \/\/ \/\/ Read-writ/;" m struct:ImGuiInputTextCallbackData typeref:typename:int
  6064. SemaphoreIndex third_party/imgui/examples/imgui_impl_vulkan.h /^ uint32_t SemaphoreIndex; \/\/ Current set of swapchain wait semaphores we/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:uint32_t
  6065. Separator third_party/imgui/imgui_widgets.cpp /^void ImGui::Separator()$/;" f class:ImGui typeref:typename:void
  6066. SeparatorEx third_party/imgui/imgui_widgets.cpp /^void ImGui::SeparatorEx(ImGuiSeparatorFlags flags)$/;" f class:ImGui typeref:typename:void
  6067. SetActiveID third_party/imgui/imgui.cpp /^void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  6068. SetAllInt third_party/imgui/imgui.cpp /^void ImGuiStorage::SetAllInt(int v)$/;" f class:ImGuiStorage typeref:typename:void
  6069. SetAllocatorFunctions third_party/imgui/imgui.cpp /^void ImGui::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_f/;" f class:ImGui typeref:typename:void
  6070. SetAllocatorFunctions third_party/imgui/misc/freetype/imgui_freetype.cpp /^void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void /;" f class:ImGuiFreeType typeref:typename:void
  6071. SetAt third_party/imgui_sdl/imgui_sdl.cpp /^ void SetAt(int x, int y, const Color& color)$/;" f struct:__anonaaadc0580110::Device typeref:typename:void file:
  6072. SetBit third_party/imgui/imgui.h /^ inline void SetBit(int n) { int off = (n >> 5); ImU32 mask = 1u << (n & 31); UsedC/;" f struct:ImFontGlyphRangesBuilder typeref:typename:void
  6073. SetBit third_party/imgui/imgui_internal.h /^ void SetBit(int n, bool v) { int off = (n >> 5); int mask = 1 << (n & 31); if (/;" f struct:ImBoolVector typeref:typename:void
  6074. SetBool third_party/imgui/imgui.cpp /^void ImGuiStorage::SetBool(ImGuiID key, bool val)$/;" f class:ImGuiStorage typeref:typename:void
  6075. SetClipRect third_party/imgui_sdl/imgui_sdl.cpp /^ void SetClipRect(const ClipRect& rect)$/;" f struct:__anonaaadc0580110::Device typeref:typename:void file:
  6076. SetClipboardText third_party/imgui/imgui.cpp /^void ImGui::SetClipboardText(const char* text)$/;" f class:ImGui typeref:typename:void
  6077. SetClipboardTextFn third_party/imgui/imgui.h /^ void (*SetClipboardTextFn)(void* user_data, const char* text);$/;" m struct:ImGuiIO typeref:typename:void (*)(void * user_data,const char * text)
  6078. SetClipboardTextFn_DefaultImpl third_party/imgui/imgui.cpp /^static void SetClipboardTextFn_DefaultImpl(void*, const char* text)$/;" f typeref:typename:void file:
  6079. SetColorEditOptions third_party/imgui/imgui_widgets.cpp /^void ImGui::SetColorEditOptions(ImGuiColorEditFlags flags)$/;" f class:ImGui typeref:typename:void
  6080. SetColumnOffset third_party/imgui/imgui_widgets.cpp /^void ImGui::SetColumnOffset(int column_index, float offset)$/;" f class:ImGui typeref:typename:void
  6081. SetColumnWidth third_party/imgui/imgui_widgets.cpp /^void ImGui::SetColumnWidth(int column_index, float width)$/;" f class:ImGui typeref:typename:void
  6082. SetCurrentChannel third_party/imgui/imgui_draw.cpp /^void ImDrawListSplitter::SetCurrentChannel(ImDrawList* draw_list, int idx)$/;" f class:ImDrawListSplitter typeref:typename:void
  6083. SetCurrentContext third_party/imgui/imgui.cpp /^void ImGui::SetCurrentContext(ImGuiContext* ctx)$/;" f class:ImGui typeref:typename:void
  6084. SetCurrentFont third_party/imgui/imgui.cpp /^void ImGui::SetCurrentFont(ImFont* font)$/;" f class:ImGui typeref:typename:void
  6085. SetCurrentWindow third_party/imgui/imgui.cpp /^static void SetCurrentWindow(ImGuiWindow* window)$/;" f typeref:typename:void file:
  6086. SetCursorPos third_party/imgui/imgui.cpp /^void ImGui::SetCursorPos(const ImVec2& local_pos)$/;" f class:ImGui typeref:typename:void
  6087. SetCursorPosX third_party/imgui/imgui.cpp /^void ImGui::SetCursorPosX(float x)$/;" f class:ImGui typeref:typename:void
  6088. SetCursorPosY third_party/imgui/imgui.cpp /^void ImGui::SetCursorPosY(float y)$/;" f class:ImGui typeref:typename:void
  6089. SetCursorPosYAndSetupDummyPrevLine third_party/imgui/imgui.cpp /^static void SetCursorPosYAndSetupDummyPrevLine(float pos_y, float line_height)$/;" f typeref:typename:void file:
  6090. SetCursorScreenPos third_party/imgui/imgui.cpp /^void ImGui::SetCursorScreenPos(const ImVec2& pos)$/;" f class:ImGui typeref:typename:void
  6091. SetDragDropPayload third_party/imgui/imgui.cpp /^bool ImGui::SetDragDropPayload(const char* type, const void* data, size_t data_size, ImGuiCond c/;" f class:ImGui typeref:typename:bool
  6092. SetFallbackChar third_party/imgui/imgui_draw.cpp /^void ImFont::SetFallbackChar(ImWchar c)$/;" f class:ImFont typeref:typename:void
  6093. SetFloat third_party/imgui/imgui.cpp /^void ImGuiStorage::SetFloat(ImGuiID key, float val)$/;" f class:ImGuiStorage typeref:typename:void
  6094. SetFocusID third_party/imgui/imgui.cpp /^void ImGui::SetFocusID(ImGuiID id, ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  6095. SetHSV third_party/imgui/imgui.h /^ inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRG/;" f struct:ImColor typeref:typename:void
  6096. SetHoveredID third_party/imgui/imgui.cpp /^void ImGui::SetHoveredID(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  6097. SetInt third_party/imgui/imgui.cpp /^void ImGuiStorage::SetInt(ImGuiID key, int val)$/;" f class:ImGuiStorage typeref:typename:void
  6098. SetItemAllowOverlap third_party/imgui/imgui.cpp /^void ImGui::SetItemAllowOverlap()$/;" f class:ImGui typeref:typename:void
  6099. SetItemDefaultFocus third_party/imgui/imgui.cpp /^void ImGui::SetItemDefaultFocus()$/;" f class:ImGui typeref:typename:void
  6100. SetKeyboardFocusHere third_party/imgui/imgui.cpp /^void ImGui::SetKeyboardFocusHere(int offset)$/;" f class:ImGui typeref:typename:void
  6101. SetMouseCursor third_party/imgui/imgui.cpp /^void ImGui::SetMouseCursor(ImGuiMouseCursor cursor_type)$/;" f class:ImGui typeref:typename:void
  6102. SetNavID third_party/imgui/imgui.cpp /^void ImGui::SetNavID(ImGuiID id, int nav_layer)$/;" f class:ImGui typeref:typename:void
  6103. SetNavIDWithRectRel third_party/imgui/imgui.cpp /^void ImGui::SetNavIDWithRectRel(ImGuiID id, int nav_layer, const ImRect& rect_rel)$/;" f class:ImGui typeref:typename:void
  6104. SetNextItemOpen third_party/imgui/imgui_widgets.cpp /^void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6105. SetNextItemWidth third_party/imgui/imgui.cpp /^void ImGui::SetNextItemWidth(float item_width)$/;" f class:ImGui typeref:typename:void
  6106. SetNextTreeNodeOpen third_party/imgui/imgui.h /^ static inline void SetNextTreeNodeOpen(bool open, ImGuiCond cond = 0) { SetNextItemOpen(ope/;" f namespace:ImGui typeref:typename:void
  6107. SetNextWindowBgAlpha third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowBgAlpha(float alpha)$/;" f class:ImGui typeref:typename:void
  6108. SetNextWindowCollapsed third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6109. SetNextWindowContentSize third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowContentSize(const ImVec2& size)$/;" f class:ImGui typeref:typename:void
  6110. SetNextWindowContentWidth third_party/imgui/imgui.h /^ static inline void SetNextWindowContentWidth(float w) { SetNextWindowContentSize(ImVec2(/;" f namespace:ImGui typeref:typename:void
  6111. SetNextWindowFocus third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowFocus()$/;" f class:ImGui typeref:typename:void
  6112. SetNextWindowPos third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot)$/;" f class:ImGui typeref:typename:void
  6113. SetNextWindowPosCenter third_party/imgui/imgui.h /^ static inline void SetNextWindowPosCenter(ImGuiCond c=0) { ImGuiIO& io = GetIO(); SetNextWi/;" f namespace:ImGui typeref:typename:void
  6114. SetNextWindowSize third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6115. SetNextWindowSizeConstraints third_party/imgui/imgui.cpp /^void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSi/;" f class:ImGui typeref:typename:void
  6116. SetPixelHeight third_party/imgui/misc/freetype/imgui_freetype.cpp /^ void FreeTypeFont::SetPixelHeight(int pixel_height)$/;" f class:__anond3bafd850110::FreeTypeFont typeref:typename:void
  6117. SetScrollFromPosX third_party/imgui/imgui.cpp /^void ImGui::SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio)$/;" f class:ImGui typeref:typename:void
  6118. SetScrollFromPosX third_party/imgui/imgui.cpp /^void ImGui::SetScrollFromPosX(float local_x, float center_x_ratio)$/;" f class:ImGui typeref:typename:void
  6119. SetScrollFromPosY third_party/imgui/imgui.cpp /^void ImGui::SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio)$/;" f class:ImGui typeref:typename:void
  6120. SetScrollFromPosY third_party/imgui/imgui.cpp /^void ImGui::SetScrollFromPosY(float local_y, float center_y_ratio)$/;" f class:ImGui typeref:typename:void
  6121. SetScrollHere third_party/imgui/imgui.h /^ static inline void SetScrollHere(float center_ratio=0.5f){ SetScrollHereY(center_ratio); }$/;" f namespace:ImGui typeref:typename:void
  6122. SetScrollHereX third_party/imgui/imgui.cpp /^void ImGui::SetScrollHereX(float center_x_ratio)$/;" f class:ImGui typeref:typename:void
  6123. SetScrollHereY third_party/imgui/imgui.cpp /^void ImGui::SetScrollHereY(float center_y_ratio)$/;" f class:ImGui typeref:typename:void
  6124. SetScrollX third_party/imgui/imgui.cpp /^void ImGui::SetScrollX(ImGuiWindow* window, float new_scroll_x)$/;" f class:ImGui typeref:typename:void
  6125. SetScrollX third_party/imgui/imgui.cpp /^void ImGui::SetScrollX(float scroll_x)$/;" f class:ImGui typeref:typename:void
  6126. SetScrollY third_party/imgui/imgui.cpp /^void ImGui::SetScrollY(ImGuiWindow* window, float new_scroll_y)$/;" f class:ImGui typeref:typename:void
  6127. SetScrollY third_party/imgui/imgui.cpp /^void ImGui::SetScrollY(float scroll_y)$/;" f class:ImGui typeref:typename:void
  6128. SetStateStorage third_party/imgui/imgui.cpp /^void ImGui::SetStateStorage(ImGuiStorage* tree)$/;" f class:ImGui typeref:typename:void
  6129. SetTabItemClosed third_party/imgui/imgui_widgets.cpp /^void ImGui::SetTabItemClosed(const char* label)$/;" f class:ImGui typeref:typename:void
  6130. SetTexID third_party/imgui/imgui.h /^ void SetTexID(ImTextureID id) { TexID = id; }$/;" f struct:ImFontAtlas typeref:typename:void
  6131. SetTooltip third_party/imgui/imgui.cpp /^void ImGui::SetTooltip(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  6132. SetTooltipV third_party/imgui/imgui.cpp /^void ImGui::SetTooltipV(const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  6133. SetVoidPtr third_party/imgui/imgui.cpp /^void ImGuiStorage::SetVoidPtr(ImGuiID key, void* val)$/;" f class:ImGuiStorage typeref:typename:void
  6134. SetWindowCollapsed third_party/imgui/imgui.cpp /^void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6135. SetWindowCollapsed third_party/imgui/imgui.cpp /^void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6136. SetWindowCollapsed third_party/imgui/imgui.cpp /^void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6137. SetWindowCollapsedAllowFlags third_party/imgui/imgui_internal.h /^ ImGuiCond SetWindowCollapsedAllowFlags; \/\/ store acceptable condition /;" m struct:ImGuiWindow typeref:typename:ImGuiCond
  6138. SetWindowConditionAllowFlags third_party/imgui/imgui.cpp /^static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled)$/;" f typeref:typename:void file:
  6139. SetWindowFocus third_party/imgui/imgui.cpp /^void ImGui::SetWindowFocus()$/;" f class:ImGui typeref:typename:void
  6140. SetWindowFocus third_party/imgui/imgui.cpp /^void ImGui::SetWindowFocus(const char* name)$/;" f class:ImGui typeref:typename:void
  6141. SetWindowFontScale third_party/imgui/imgui.cpp /^void ImGui::SetWindowFontScale(float scale)$/;" f class:ImGui typeref:typename:void
  6142. SetWindowPos third_party/imgui/imgui.cpp /^void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6143. SetWindowPos third_party/imgui/imgui.cpp /^void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6144. SetWindowPos third_party/imgui/imgui.cpp /^void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6145. SetWindowPosAllowFlags third_party/imgui/imgui_internal.h /^ ImGuiCond SetWindowPosAllowFlags; \/\/ store acceptable condition /;" m struct:ImGuiWindow typeref:typename:ImGuiCond
  6146. SetWindowPosPivot third_party/imgui/imgui_internal.h /^ ImVec2 SetWindowPosPivot; \/\/ store window pivot for posi/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6147. SetWindowPosVal third_party/imgui/imgui_internal.h /^ ImVec2 SetWindowPosVal; \/\/ store window position when /;" m struct:ImGuiWindow typeref:typename:ImVec2
  6148. SetWindowSize third_party/imgui/imgui.cpp /^void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6149. SetWindowSize third_party/imgui/imgui.cpp /^void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6150. SetWindowSize third_party/imgui/imgui.cpp /^void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond)$/;" f class:ImGui typeref:typename:void
  6151. SetWindowSizeAllowFlags third_party/imgui/imgui_internal.h /^ ImGuiCond SetWindowSizeAllowFlags; \/\/ store acceptable condition /;" m struct:ImGuiWindow typeref:typename:ImGuiCond
  6152. SettingsDirtyTimer third_party/imgui/imgui_internal.h /^ float SettingsDirtyTimer; \/\/ Save .ini Settings to memor/;" m struct:ImGuiContext typeref:typename:float
  6153. SettingsHandlerWindow_ReadLine third_party/imgui/imgui.cpp /^static void SettingsHandlerWindow_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, co/;" f typeref:typename:void file:
  6154. SettingsHandlerWindow_ReadOpen third_party/imgui/imgui.cpp /^static void* SettingsHandlerWindow_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* na/;" f typeref:typename:void * file:
  6155. SettingsHandlerWindow_WriteAll third_party/imgui/imgui.cpp /^static void SettingsHandlerWindow_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImG/;" f typeref:typename:void file:
  6156. SettingsHandlers third_party/imgui/imgui_internal.h /^ ImVector<ImGuiSettingsHandler> SettingsHandlers; \/\/ List of .ini settings handl/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiSettingsHandler>
  6157. SettingsIdx third_party/imgui/imgui_internal.h /^ int SettingsIdx; \/\/ Index into SettingsWindow[]/;" m struct:ImGuiWindow typeref:typename:int
  6158. SettingsIniData third_party/imgui/imgui_internal.h /^ ImGuiTextBuffer SettingsIniData; \/\/ In memory .ini settings$/;" m struct:ImGuiContext typeref:typename:ImGuiTextBuffer
  6159. SettingsLoaded third_party/imgui/imgui_internal.h /^ bool SettingsLoaded;$/;" m struct:ImGuiContext typeref:typename:bool
  6160. SettingsWindows third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindowSettings> SettingsWindows; \/\/ ImGuiWindow .ini settings e/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiWindowSettings>
  6161. SetupDrawData third_party/imgui/imgui.cpp /^static void SetupDrawData(ImVector<ImDrawList*>* draw_lists, ImDrawData* draw_data)$/;" f typeref:typename:void file:
  6162. SetupVulkan third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void SetupVulkan(const char** extensions, uint32_t extensions_count)$/;" f typeref:typename:void file:
  6163. SetupVulkan third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void SetupVulkan(const char** extensions, uint32_t extensions_count)$/;" f typeref:typename:void file:
  6164. SetupVulkanWindow third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void SetupVulkanWindow(ImGui_ImplVulkanH_Window* wd, VkSurfaceKHR surface, int width, int/;" f typeref:typename:void file:
  6165. SetupVulkanWindow third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void SetupVulkanWindow(ImGui_ImplVulkanH_Window* wd, VkSurfaceKHR surface, int width, int/;" f typeref:typename:void file:
  6166. ShadeVertsLinearColorGradientKeepAlpha third_party/imgui/imgui_draw.cpp /^void ImGui::ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, in/;" f class:ImGui typeref:typename:void
  6167. ShadeVertsLinearUV third_party/imgui/imgui_draw.cpp /^void ImGui::ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, cons/;" f class:ImGui typeref:typename:void
  6168. ShowAboutWindow third_party/imgui/imgui_demo.cpp /^void ImGui::ShowAboutWindow(bool* p_open)$/;" f class:ImGui typeref:typename:void
  6169. ShowAboutWindow third_party/imgui/imgui_demo.cpp /^void ImGui::ShowAboutWindow(bool*) {}$/;" f class:ImGui typeref:typename:void
  6170. ShowDemoWindow third_party/imgui/imgui_demo.cpp /^void ImGui::ShowDemoWindow(bool* p_open)$/;" f class:ImGui typeref:typename:void
  6171. ShowDemoWindow third_party/imgui/imgui_demo.cpp /^void ImGui::ShowDemoWindow(bool*) {}$/;" f class:ImGui typeref:typename:void
  6172. ShowDemoWindowColumns third_party/imgui/imgui_demo.cpp /^static void ShowDemoWindowColumns()$/;" f typeref:typename:void file:
  6173. ShowDemoWindowLayout third_party/imgui/imgui_demo.cpp /^static void ShowDemoWindowLayout()$/;" f typeref:typename:void file:
  6174. ShowDemoWindowMisc third_party/imgui/imgui_demo.cpp /^static void ShowDemoWindowMisc()$/;" f typeref:typename:void file:
  6175. ShowDemoWindowPopups third_party/imgui/imgui_demo.cpp /^static void ShowDemoWindowPopups()$/;" f typeref:typename:void file:
  6176. ShowDemoWindowWidgets third_party/imgui/imgui_demo.cpp /^static void ShowDemoWindowWidgets()$/;" f typeref:typename:void file:
  6177. ShowDummyObject third_party/imgui/imgui_demo.cpp /^ static void ShowDummyObject(const char* prefix, int uid)$/;" f struct:ShowExampleAppPropertyEditor::funcs typeref:typename:void file:
  6178. ShowExampleAppAutoResize third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppAutoResize(bool* p_open)$/;" f typeref:typename:void file:
  6179. ShowExampleAppConsole third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppConsole(bool* p_open)$/;" f typeref:typename:void file:
  6180. ShowExampleAppConstrainedResize third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppConstrainedResize(bool* p_open)$/;" f typeref:typename:void file:
  6181. ShowExampleAppCustomRendering third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppCustomRendering(bool* p_open)$/;" f typeref:typename:void file:
  6182. ShowExampleAppDocuments third_party/imgui/imgui_demo.cpp /^void ShowExampleAppDocuments(bool* p_open)$/;" f typeref:typename:void
  6183. ShowExampleAppLayout third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppLayout(bool* p_open)$/;" f typeref:typename:void file:
  6184. ShowExampleAppLog third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppLog(bool* p_open)$/;" f typeref:typename:void file:
  6185. ShowExampleAppLongText third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppLongText(bool* p_open)$/;" f typeref:typename:void file:
  6186. ShowExampleAppMainMenuBar third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppMainMenuBar()$/;" f typeref:typename:void file:
  6187. ShowExampleAppPropertyEditor third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppPropertyEditor(bool* p_open)$/;" f typeref:typename:void file:
  6188. ShowExampleAppSimpleOverlay third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppSimpleOverlay(bool* p_open)$/;" f typeref:typename:void file:
  6189. ShowExampleAppWindowTitles third_party/imgui/imgui_demo.cpp /^static void ShowExampleAppWindowTitles(bool*)$/;" f typeref:typename:void file:
  6190. ShowExampleMenuFile third_party/imgui/imgui_demo.cpp /^static void ShowExampleMenuFile()$/;" f typeref:typename:void file:
  6191. ShowFontSelector third_party/imgui/imgui_demo.cpp /^void ImGui::ShowFontSelector(const char* label)$/;" f class:ImGui typeref:typename:void
  6192. ShowMetricsWindow third_party/imgui/imgui.cpp /^void ImGui::ShowMetricsWindow(bool* p_open)$/;" f class:ImGui typeref:typename:void
  6193. ShowMetricsWindow third_party/imgui/imgui.cpp /^void ImGui::ShowMetricsWindow(bool*) { }$/;" f class:ImGui typeref:typename:void
  6194. ShowStyleEditor third_party/imgui/imgui_demo.cpp /^void ImGui::ShowStyleEditor(ImGuiStyle* ref)$/;" f class:ImGui typeref:typename:void
  6195. ShowStyleEditor third_party/imgui/imgui_demo.cpp /^void ImGui::ShowStyleEditor(ImGuiStyle*) {}$/;" f class:ImGui typeref:typename:void
  6196. ShowStyleSelector third_party/imgui/imgui_demo.cpp /^bool ImGui::ShowStyleSelector(const char* label)$/;" f class:ImGui typeref:typename:bool
  6197. ShowTestWindow third_party/imgui/imgui.h /^ static inline void ShowTestWindow() { return ShowDemoWindow(); }$/;" f namespace:ImGui typeref:typename:void
  6198. ShowTextureArgs libswan/include/swan/Win.h /^ struct ShowTextureArgs {$/;" s class:Swan::Win
  6199. ShowUserGuide third_party/imgui/imgui_demo.cpp /^void ImGui::ShowUserGuide() {}$/;" f class:ImGui typeref:typename:void
  6200. ShowUserGuide third_party/imgui/imgui_demo.cpp /^void ImGui::ShowUserGuide()$/;" f class:ImGui typeref:typename:void
  6201. ShrinkWidthBuffer third_party/imgui/imgui_internal.h /^ ImVector<ImGuiShrinkWidthItem> ShrinkWidthBuffer;$/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiShrinkWidthItem>
  6202. ShrinkWidthItemComparer third_party/imgui/imgui_widgets.cpp /^static int IMGUI_CDECL ShrinkWidthItemComparer(const void* lhs, const void* rhs)$/;" f typeref:typename:int IMGUI_CDECL file:
  6203. ShrinkWidths third_party/imgui/imgui_widgets.cpp /^void ImGui::ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess)$/;" f class:ImGui typeref:typename:void
  6204. Shutdown third_party/imgui/imgui.cpp /^void ImGui::Shutdown(ImGuiContext* context)$/;" f class:ImGui typeref:typename:void
  6205. Sin third_party/imgui/imgui_demo.cpp /^ static float Sin(void*, int i) { return sinf(i * 0.1f); }$/;" f struct:ShowDemoWindowWidgets::Funcs typeref:typename:float file:
  6206. Size third_party/imgui/imgui.h /^ int Size;$/;" m struct:ImVector typeref:typename:int
  6207. Size third_party/imgui/imgui_internal.h /^ ImVec2 Size; \/\/ Current size (==SizeFull or/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6208. Size third_party/imgui/imgui_internal.h /^ ImVec2ih Size;$/;" m struct:ImGuiWindowSettings typeref:typename:ImVec2ih
  6209. Size third_party/imgui/imgui_internal.h /^ size_t Size; \/\/ Size in byte$/;" m struct:ImGuiDataTypeInfo typeref:typename:size_t
  6210. SizeCallback third_party/imgui/imgui_internal.h /^ ImGuiSizeCallback SizeCallback;$/;" m struct:ImGuiNextWindowData typeref:typename:ImGuiSizeCallback
  6211. SizeCallbackUserData third_party/imgui/imgui_internal.h /^ void* SizeCallbackUserData;$/;" m struct:ImGuiNextWindowData typeref:typename:void *
  6212. SizeCond third_party/imgui/imgui_internal.h /^ ImGuiCond SizeCond;$/;" m struct:ImGuiNextWindowData typeref:typename:ImGuiCond
  6213. SizeConstraintRect third_party/imgui/imgui_internal.h /^ ImRect SizeConstraintRect;$/;" m struct:ImGuiNextWindowData typeref:typename:ImRect
  6214. SizeFull third_party/imgui/imgui_internal.h /^ ImVec2 SizeFull; \/\/ Size when non collapsed$/;" m struct:ImGuiWindow typeref:typename:ImVec2
  6215. SizePixels third_party/imgui/imgui.h /^ float SizePixels; \/\/ \/\/ Size in pixels for rasterizer (mo/;" m struct:ImFontConfig typeref:typename:float
  6216. SizeVal third_party/imgui/imgui_internal.h /^ ImVec2 SizeVal;$/;" m struct:ImGuiNextWindowData typeref:typename:ImVec2
  6217. SkipItems third_party/imgui/imgui_internal.h /^ bool SkipItems; \/\/ Set when items can safely b/;" m struct:ImGuiWindow typeref:typename:bool
  6218. SliderAngle third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderAngle(const char* label, float* v_rad, float v_degrees_min, float v_degrees_ma/;" f class:ImGui typeref:typename:bool
  6219. SliderBehavior third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* v, const/;" f class:ImGui typeref:typename:bool
  6220. SliderBehaviorT third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, TYPE* v, cons/;" f class:ImGui typeref:typename:bool
  6221. SliderCalcRatioFromValueT third_party/imgui/imgui_widgets.cpp /^float ImGui::SliderCalcRatioFromValueT(ImGuiDataType data_type, TYPE v, TYPE v_min, TYPE v_max, /;" f class:ImGui typeref:typename:float
  6222. SliderFloat third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderFloat(const char* label, float* v, float v_min, float v_max, const char* forma/;" f class:ImGui typeref:typename:bool
  6223. SliderFloat2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* fo/;" f class:ImGui typeref:typename:bool
  6224. SliderFloat3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* fo/;" f class:ImGui typeref:typename:bool
  6225. SliderFloat4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* fo/;" f class:ImGui typeref:typename:bool
  6226. SliderInt third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderInt(const char* label, int* v, int v_min, int v_max, const char* format)$/;" f class:ImGui typeref:typename:bool
  6227. SliderInt2 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format)$/;" f class:ImGui typeref:typename:bool
  6228. SliderInt3 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format)$/;" f class:ImGui typeref:typename:bool
  6229. SliderInt4 third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format)$/;" f class:ImGui typeref:typename:bool
  6230. SliderScalar third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderScalar(const char* label, ImGuiDataType data_type, void* v, const void* v_min,/;" f class:ImGui typeref:typename:bool
  6231. SliderScalarN third_party/imgui/imgui_widgets.cpp /^bool ImGui::SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, c/;" f class:ImGui typeref:typename:bool
  6232. SmallButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::SmallButton(const char* label)$/;" f class:ImGui typeref:typename:bool
  6233. Source third_party/imgui_sdl/imgui_sdl.cpp /^ SDL_Texture* Source;$/;" m struct:__anonaaadc0580110::Texture typeref:typename:SDL_Texture * file:
  6234. SourceId third_party/imgui/imgui.h /^ ImGuiID SourceId; \/\/ Source item id$/;" m struct:ImGuiPayload typeref:typename:ImGuiID
  6235. SourceParentId third_party/imgui/imgui.h /^ ImGuiID SourceParentId; \/\/ Source parent id (if available)$/;" m struct:ImGuiPayload typeref:typename:ImGuiID
  6236. SourceWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* SourceWindow; \/\/ Set on OpenPopup() copy of NavWindow at the time of/;" m struct:ImGuiPopupData typeref:typename:ImGuiWindow *
  6237. Spacing third_party/imgui/imgui_internal.h /^ float Spacing;$/;" m struct:ImGuiMenuColumns typeref:typename:float
  6238. Spacing third_party/imgui/imgui_widgets.cpp /^void ImGui::Spacing()$/;" f class:ImGui typeref:typename:void
  6239. Split third_party/imgui/imgui_draw.cpp /^void ImDrawListSplitter::Split(ImDrawList* draw_list, int channels_count)$/;" f class:ImDrawListSplitter typeref:typename:void
  6240. SplitterBehavior third_party/imgui/imgui_widgets.cpp /^bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* /;" f class:ImGui typeref:typename:bool
  6241. Sponsors third_party/imgui/docs/README.md /^### Sponsors$/;" S
  6242. Square third_party/imgui/imgui_demo.cpp /^ static void Square(ImGuiSizeCallbackData* data) { data->DesiredSize.x = data->DesiredSiz/;" f struct:ShowExampleAppConstrainedResize::CustomConstraints typeref:typename:void file:
  6243. SrcCount third_party/imgui/imgui_draw.cpp /^ int SrcCount; \/\/ Number of source fonts targeting this destinati/;" m struct:ImFontBuildDstData typeref:typename:int file:
  6244. SrcCount third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int SrcCount; \/\/ Number of source fonts targeting this destinati/;" m struct:ImFontBuildDstDataFT typeref:typename:int file:
  6245. SrcRanges third_party/imgui/imgui_draw.cpp /^ const ImWchar* SrcRanges; \/\/ Ranges as requested by user (user is allowed to/;" m struct:ImFontBuildSrcData typeref:typename:const ImWchar * file:
  6246. SrcRanges third_party/imgui/misc/freetype/imgui_freetype.cpp /^ const ImWchar* SrcRanges; \/\/ Ranges as requested by user (user is allowed to/;" m struct:ImFontBuildSrcDataFT typeref:typename:const ImWchar * file:
  6247. StackSizesBackup third_party/imgui/imgui_internal.h /^ short StackSizesBackup[6]; \/\/ Store size of various stacks for assert/;" m struct:ImGuiWindowTempData typeref:typename:short[6]
  6248. StartLockWheelingWindow third_party/imgui/imgui.cpp /^static void StartLockWheelingWindow(ImGuiWindow* window)$/;" f typeref:typename:void file:
  6249. StartMouseMovingWindow third_party/imgui/imgui.cpp /^void ImGui::StartMouseMovingWindow(ImGuiWindow* window)$/;" f class:ImGui typeref:typename:void
  6250. StartPosY third_party/imgui/imgui.h /^ float StartPosY;$/;" m struct:ImGuiListClipper typeref:typename:float
  6251. State core.mod/src/entities/EntPlayer.h /^ enum class State {$/;" g class:EntPlayer
  6252. StateStorage third_party/imgui/imgui_internal.h /^ ImGuiStorage StateStorage;$/;" m struct:ImGuiWindow typeref:typename:ImGuiStorage
  6253. StateStorage third_party/imgui/imgui_internal.h /^ ImGuiStorage* StateStorage; \/\/ Current persistent per-window storage (/;" m struct:ImGuiWindowTempData typeref:typename:ImGuiStorage *
  6254. StaticBody libswan/include/swan/traits/BodyTrait.h /^ StaticBody(Vec2 size, Vec2 pos):$/;" f class:Swan::BodyTrait::StaticBody
  6255. StaticBody libswan/include/swan/traits/BodyTrait.h /^class StaticBody: public Body {$/;" c namespace:Swan::BodyTrait
  6256. StaticFunc third_party/imgui/imgui.cpp /^ struct StaticFunc$/;" s function:ImGuiStorage::BuildSortByKey file:
  6257. Stb third_party/imgui/imgui_internal.h /^ ImStb::STB_TexteditState Stb; \/\/ state for stb_textedit.h$/;" m struct:ImGuiInputTextState typeref:typename:ImStb::STB_TexteditState
  6258. StbFindState third_party/imgui/imstb_textedit.h /^} StbFindState;$/;" t typeref:struct:__anon6b3818470508
  6259. StbTexteditRow third_party/imgui/imstb_textedit.h /^} StbTexteditRow;$/;" t typeref:struct:__anon6b3818470408
  6260. StbUndoRecord third_party/imgui/imstb_textedit.h /^} StbUndoRecord;$/;" t typeref:struct:__anon6b3818470108
  6261. StbUndoState third_party/imgui/imstb_textedit.h /^} StbUndoState;$/;" t typeref:struct:__anon6b3818470208
  6262. StencilRef third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT StencilRef;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6263. StencilRef third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT StencilRef;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6264. Step third_party/imgui/imgui.cpp /^bool ImGuiListClipper::Step()$/;" f class:ImGuiListClipper typeref:typename:bool
  6265. Step third_party/imgui/imgui_demo.cpp /^ static void Step(ImGuiSizeCallbackData* data) { float step = (float)(int)(intptr_t)dat/;" f struct:ShowExampleAppConstrainedResize::CustomConstraints typeref:typename:void file:
  6266. StepNo third_party/imgui/imgui.h /^ int ItemsCount, StepNo, DisplayStart, DisplayEnd;$/;" m struct:ImGuiListClipper typeref:typename:int
  6267. Storage third_party/imgui/imgui_internal.h /^ ImVector<int> Storage;$/;" m struct:ImBoolVector typeref:typename:ImVector<int>
  6268. Str third_party/imgui/misc/cpp/imgui_stdlib.cpp /^ std::string* Str;$/;" m struct:InputTextCallback_UserData typeref:typename:std::string * file:
  6269. Strdup third_party/imgui/imgui_demo.cpp /^ static char* Strdup(const char *str) { size_t len = strlen(str) /;" f struct:ExampleAppConsole typeref:typename:char * file:
  6270. Stricmp third_party/imgui/imgui_demo.cpp /^ static int Stricmp(const char* str1, const char* str2) { int d; while ((d = touppe/;" f struct:ExampleAppConsole typeref:typename:int file:
  6271. Stride third_party/imgui/imgui_widgets.cpp /^ int Stride;$/;" m struct:ImGuiPlotArrayGetterData typeref:typename:int file:
  6272. Strnicmp third_party/imgui/imgui_demo.cpp /^ static int Strnicmp(const char* str1, const char* str2, int n) { int d = 0; while (n > 0 &/;" f struct:ExampleAppConsole typeref:typename:int file:
  6273. Strtrim third_party/imgui/imgui_demo.cpp /^ static void Strtrim(char* str) { char* str_end = str + str/;" f struct:ExampleAppConsole typeref:typename:void file:
  6274. Structure conventions.md /^## Structure$/;" s
  6275. Style third_party/imgui/imgui_internal.h /^ ImGuiStyle Style;$/;" m struct:ImGuiContext typeref:typename:ImGuiStyle
  6276. StyleColorsClassic third_party/imgui/imgui_draw.cpp /^void ImGui::StyleColorsClassic(ImGuiStyle* dst)$/;" f class:ImGui typeref:typename:void
  6277. StyleColorsDark third_party/imgui/imgui_draw.cpp /^void ImGui::StyleColorsDark(ImGuiStyle* dst)$/;" f class:ImGui typeref:typename:void
  6278. StyleColorsLight third_party/imgui/imgui_draw.cpp /^void ImGui::StyleColorsLight(ImGuiStyle* dst)$/;" f class:ImGui typeref:typename:void
  6279. StyleModifiers third_party/imgui/imgui_internal.h /^ ImVector<ImGuiStyleMod> StyleModifiers; \/\/ Stack for PushStyleVar()\/P/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiStyleMod>
  6280. Superficial conventions.md /^## Superficial$/;" s
  6281. Support, Frequently Asked Questions (FAQ) third_party/imgui/docs/README.md /^### Support, Frequently Asked Questions (FAQ)$/;" S
  6282. Surface third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSurfaceKHR Surface;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkSurfaceKHR
  6283. Surface third_party/imgui_sdl/imgui_sdl.cpp /^ SDL_Surface* Surface;$/;" m struct:__anonaaadc0580110::Texture typeref:typename:SDL_Surface * file:
  6284. SurfaceFormat third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSurfaceFormatKHR SurfaceFormat;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkSurfaceFormatKHR
  6285. Swan libswan/include/swan/Animation.h /^namespace Swan {$/;" n
  6286. Swan libswan/include/swan/Chunk.h /^namespace Swan {$/;" n
  6287. Swan libswan/include/swan/Clock.h /^namespace Swan {$/;" n
  6288. Swan libswan/include/swan/Entity.h /^namespace Swan {$/;" n
  6289. Swan libswan/include/swan/Game.h /^namespace Swan {$/;" n
  6290. Swan libswan/include/swan/Item.h /^namespace Swan {$/;" n
  6291. Swan libswan/include/swan/ItemStack.h /^namespace Swan {$/;" n
  6292. Swan libswan/include/swan/Mod.h /^namespace Swan {$/;" n
  6293. Swan libswan/include/swan/OS.h /^namespace Swan {$/;" n
  6294. Swan libswan/include/swan/PerfCounter.h /^namespace Swan {$/;" n
  6295. Swan libswan/include/swan/Resource.h /^namespace Swan {$/;" n
  6296. Swan libswan/include/swan/SRF.h /^namespace Swan {$/;" n
  6297. Swan libswan/include/swan/Tile.h /^namespace Swan {$/;" n
  6298. Swan libswan/include/swan/Vector2.h /^namespace Swan {$/;" n
  6299. Swan libswan/include/swan/Win.h /^namespace Swan {$/;" n
  6300. Swan libswan/include/swan/World.h /^namespace Swan {$/;" n
  6301. Swan libswan/include/swan/WorldGen.h /^namespace Swan {$/;" n
  6302. Swan libswan/include/swan/WorldPlane.h /^namespace Swan {$/;" n
  6303. Swan libswan/include/swan/common.h /^namespace Swan {$/;" n
  6304. Swan libswan/include/swan/gfxutil.h /^namespace Swan {$/;" n
  6305. Swan libswan/include/swan/log.h /^namespace Swan {$/;" n
  6306. Swan libswan/include/swan/traits/BodyTrait.h /^namespace Swan {$/;" n
  6307. Swan libswan/include/swan/traits/InventoryTrait.h /^namespace Swan {$/;" n
  6308. Swan libswan/include/swan/util.h /^namespace Swan {$/;" n
  6309. Swan libswan/src/Animation.cc /^namespace Swan {$/;" n file:
  6310. Swan libswan/src/Chunk.cc /^namespace Swan {$/;" n file:
  6311. Swan libswan/src/Clock.cc /^namespace Swan {$/;" n file:
  6312. Swan libswan/src/Game.cc /^namespace Swan {$/;" n file:
  6313. Swan libswan/src/Item.cc /^namespace Swan {$/;" n file:
  6314. Swan libswan/src/ItemStack.cc /^namespace Swan {$/;" n file:
  6315. Swan libswan/src/Mod.cc /^namespace Swan {$/;" n file:
  6316. Swan libswan/src/OS.cc /^namespace Swan {$/;" n file:
  6317. Swan libswan/src/PerfCounter.cc /^namespace Swan {$/;" n file:
  6318. Swan libswan/src/Resource.cc /^namespace Swan {$/;" n file:
  6319. Swan libswan/src/SRF.cc /^namespace Swan {$/;" n file:
  6320. Swan libswan/src/Tile.cc /^namespace Swan {$/;" n file:
  6321. Swan libswan/src/World.cc /^namespace Swan {$/;" n file:
  6322. Swan libswan/src/WorldPlane.cc /^namespace Swan {$/;" n file:
  6323. Swan libswan/src/gfxutil.cc /^namespace Swan {$/;" n file:
  6324. Swan libswan/src/traits/BodyTrait.cc /^namespace Swan {$/;" n file:
  6325. Swapchain third_party/imgui/examples/imgui_impl_vulkan.h /^ VkSwapchainKHR Swapchain;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:VkSwapchainKHR
  6326. TICK_RATE libswan/include/swan/common.h /^static constexpr int TICK_RATE = 20;$/;" v namespace:Swan typeref:typename:int
  6327. TILE_SIZE libswan/include/swan/common.h /^static constexpr int TILE_SIZE = 32;$/;" v namespace:Swan typeref:typename:int
  6328. TOC third_party/imgui-plot/README.md /^## TOC$/;" s
  6329. TabBarCalcMaxTabWidth third_party/imgui/imgui_widgets.cpp /^static float ImGui::TabBarCalcMaxTabWidth()$/;" f class:ImGui typeref:typename:float file:
  6330. TabBarCalcTabID third_party/imgui/imgui_widgets.cpp /^static ImU32 ImGui::TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label)$/;" f class:ImGui typeref:typename:ImU32 file:
  6331. TabBarCloseTab third_party/imgui/imgui_widgets.cpp /^void ImGui::TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab)$/;" f class:ImGui typeref:typename:void
  6332. TabBarFindTabByID third_party/imgui/imgui_widgets.cpp /^ImGuiTabItem* ImGui::TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id)$/;" f class:ImGui typeref:typename:ImGuiTabItem *
  6333. TabBarLayout third_party/imgui/imgui_widgets.cpp /^static void ImGui::TabBarLayout(ImGuiTabBar* tab_bar)$/;" f class:ImGui typeref:typename:void file:
  6334. TabBarQueueChangeTabOrder third_party/imgui/imgui_widgets.cpp /^void ImGui::TabBarQueueChangeTabOrder(ImGuiTabBar* tab_bar, const ImGuiTabItem* tab, int dir)$/;" f class:ImGui typeref:typename:void
  6335. TabBarRemoveTab third_party/imgui/imgui_widgets.cpp /^void ImGui::TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id)$/;" f class:ImGui typeref:typename:void
  6336. TabBarScrollClamp third_party/imgui/imgui_widgets.cpp /^static float ImGui::TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling)$/;" f class:ImGui typeref:typename:float file:
  6337. TabBarScrollToTab third_party/imgui/imgui_widgets.cpp /^static void ImGui::TabBarScrollToTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab)$/;" f class:ImGui typeref:typename:void file:
  6338. TabBarScrollingButtons third_party/imgui/imgui_widgets.cpp /^static ImGuiTabItem* ImGui::TabBarScrollingButtons(ImGuiTabBar* tab_bar)$/;" f class:ImGui typeref:typename:ImGuiTabItem * file:
  6339. TabBarTabListPopupButton third_party/imgui/imgui_widgets.cpp /^static ImGuiTabItem* ImGui::TabBarTabListPopupButton(ImGuiTabBar* tab_bar)$/;" f class:ImGui typeref:typename:ImGuiTabItem * file:
  6340. TabBars third_party/imgui/imgui_internal.h /^ ImPool<ImGuiTabBar> TabBars;$/;" m struct:ImGuiContext typeref:typename:ImPool<ImGuiTabBar>
  6341. TabBorderSize third_party/imgui/imgui.h /^ float TabBorderSize; \/\/ Thickness of border around tabs.$/;" m struct:ImGuiStyle typeref:typename:float
  6342. TabItemBackground third_party/imgui/imgui_widgets.cpp /^void ImGui::TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, /;" f class:ImGui typeref:typename:void
  6343. TabItemCalcSize third_party/imgui/imgui_widgets.cpp /^ImVec2 ImGui::TabItemCalcSize(const char* label, bool has_close_button)$/;" f class:ImGui typeref:typename:ImVec2
  6344. TabItemComparerByVisibleOffset third_party/imgui/imgui_widgets.cpp /^static int IMGUI_CDECL TabItemComparerByVisibleOffset(const void* lhs, const void* rhs)$/;" f typeref:typename:int IMGUI_CDECL file:
  6345. TabItemEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlag/;" f class:ImGui typeref:typename:bool
  6346. TabItemLabelAndCloseButton third_party/imgui/imgui_widgets.cpp /^bool ImGui::TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlag/;" f class:ImGui typeref:typename:bool
  6347. TabRounding third_party/imgui/imgui.h /^ float TabRounding; \/\/ Radius of upper corners of a tab. Set to 0.0f t/;" m struct:ImGuiStyle typeref:typename:float
  6348. Tabs third_party/imgui/imgui_internal.h /^ ImVector<ImGuiTabItem> Tabs;$/;" m struct:ImGuiTabBar typeref:typename:ImVector<ImGuiTabItem>
  6349. TabsNames third_party/imgui/imgui_internal.h /^ ImGuiTextBuffer TabsNames; \/\/ For non-docking tab bar we re-append names /;" m struct:ImGuiTabBar typeref:typename:ImGuiTextBuffer
  6350. TempBuffer third_party/imgui/imgui_internal.h /^ char TempBuffer[1024*3+1]; \/\/ Temporary text buffer$/;" m struct:ImGuiContext typeref:typename:char[]
  6351. TempInputTextId third_party/imgui/imgui_internal.h /^ ImGuiID TempInputTextId; \/\/ Temporary text input when C/;" m struct:ImGuiContext typeref:typename:ImGuiID
  6352. TempInputTextIsActive third_party/imgui/imgui_internal.h /^ inline bool TempInputTextIsActive(ImGuiID id) { ImGuiContext& g = *GImGui; retur/;" f namespace:ImGui typeref:typename:bool
  6353. TempInputTextScalar third_party/imgui/imgui_widgets.cpp /^bool ImGui::TempInputTextScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType d/;" f class:ImGui typeref:typename:bool
  6354. Test code third_party/imgui/misc/freetype/README.md /^### Test code$/;" S
  6355. Test code Usage third_party/imgui/misc/freetype/README.md /^### Test code Usage$/;" S
  6356. TestCase libswan/test/lib/test.cc /^ TestCase(TestSpec *spec):$/;" f struct:testlib::TestCase file:
  6357. TestCase libswan/test/lib/test.cc /^struct TestCase {$/;" s namespace:testlib file:
  6358. TestFailure libswan/test/lib/test.h /^ TestFailure(const char *msg, const char *file, int line):$/;" f struct:testlib::TestFailure
  6359. TestFailure libswan/test/lib/test.h /^struct TestFailure {$/;" s namespace:testlib
  6360. TestFile libswan/test/lib/test.cc /^struct TestFile {$/;" s namespace:testlib file:
  6361. TestSpec libswan/test/lib/test.h /^ TestSpec(void (*f)(), const char *desc, const char *file, int line, int idx):$/;" f struct:testlib::TestSpec
  6362. TestSpec libswan/test/lib/test.h /^struct TestSpec {$/;" s namespace:testlib
  6363. TexAlphaMod libswan/include/swan/gfxutil.h /^ TexAlphaMod(SDL_Texture *tex, uint8_t alpha): tex_(tex) {$/;" f class:Swan::TexAlphaMod
  6364. TexAlphaMod libswan/include/swan/gfxutil.h /^class TexAlphaMod: NonCopyable {$/;" c namespace:Swan
  6365. TexColorMod libswan/include/swan/gfxutil.h /^ TexColorMod(SDL_Texture *tex, uint8_t r, uint8_t g, uint8_t b): tex_(tex) {$/;" f class:Swan::TexColorMod
  6366. TexColorMod libswan/include/swan/gfxutil.h /^class TexColorMod: NonCopyable {$/;" c namespace:Swan
  6367. TexDesiredWidth third_party/imgui/imgui.h /^ int TexDesiredWidth; \/\/ Texture width desired by user before Bu/;" m struct:ImFontAtlas typeref:typename:int
  6368. TexGlyphPadding third_party/imgui/imgui.h /^ int TexGlyphPadding; \/\/ Padding between glyphs within texture i/;" m struct:ImFontAtlas typeref:typename:int
  6369. TexHeight third_party/imgui/imgui.h /^ int TexHeight; \/\/ Texture height calculated during Build(/;" m struct:ImFontAtlas typeref:typename:int
  6370. TexID third_party/imgui/imgui.h /^ ImTextureID TexID; \/\/ User data to refer to the texture once /;" m struct:ImFontAtlas typeref:typename:ImTextureID
  6371. TexLock libswan/include/swan/gfxutil.h /^class TexLock: NonCopyable {$/;" c namespace:Swan
  6372. TexLock libswan/src/gfxutil.cc /^TexLock::TexLock(SDL_Texture *tex, SDL_Rect *rect): tex_(tex) {$/;" f class:Swan::TexLock
  6373. TexPixelsAlpha8 third_party/imgui/imgui.h /^ unsigned char* TexPixelsAlpha8; \/\/ 1 component per pixel, each component i/;" m struct:ImFontAtlas typeref:typename:unsigned char *
  6374. TexPixelsRGBA32 third_party/imgui/imgui.h /^ unsigned int* TexPixelsRGBA32; \/\/ 4 component per pixel, each component i/;" m struct:ImFontAtlas typeref:typename:unsigned int *
  6375. TexUvScale third_party/imgui/imgui.h /^ ImVec2 TexUvScale; \/\/ = (1.0f\/TexWidth, 1.0f\/TexHeight)$/;" m struct:ImFontAtlas typeref:typename:ImVec2
  6376. TexUvWhitePixel third_party/imgui/imgui.h /^ ImVec2 TexUvWhitePixel; \/\/ Texture coordinates to a white pixel$/;" m struct:ImFontAtlas typeref:typename:ImVec2
  6377. TexUvWhitePixel third_party/imgui/imgui_internal.h /^ ImVec2 TexUvWhitePixel; \/\/ UV of white pixel in the atlas$/;" m struct:ImDrawListSharedData typeref:typename:ImVec2
  6378. TexWidth third_party/imgui/imgui.h /^ int TexWidth; \/\/ Texture width calculated during Build()/;" m struct:ImFontAtlas typeref:typename:int
  6379. Text third_party/imgui/imgui_widgets.cpp /^void ImGui::Text(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  6380. TextA third_party/imgui/imgui_internal.h /^ ImVector<char> TextA; \/\/ temporary UTF8 buffer for callbacks and/;" m struct:ImGuiInputTextState typeref:typename:ImVector<char>
  6381. TextAIsValid third_party/imgui/imgui_internal.h /^ bool TextAIsValid; \/\/ temporary UTF8 buffer is not initially /;" m struct:ImGuiInputTextState typeref:typename:bool
  6382. TextColored third_party/imgui/imgui_widgets.cpp /^void ImGui::TextColored(const ImVec4& col, const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  6383. TextColoredV third_party/imgui/imgui_widgets.cpp /^void ImGui::TextColoredV(const ImVec4& col, const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  6384. TextDisabled third_party/imgui/imgui_widgets.cpp /^void ImGui::TextDisabled(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  6385. TextDisabledV third_party/imgui/imgui_widgets.cpp /^void ImGui::TextDisabledV(const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  6386. TextEditCallback third_party/imgui/imgui_demo.cpp /^ int TextEditCallback(ImGuiInputTextCallbackData* data)$/;" f struct:ExampleAppConsole typeref:typename:int file:
  6387. TextEditCallbackStub third_party/imgui/imgui_demo.cpp /^ static int TextEditCallbackStub(ImGuiInputTextCallbackData* data) \/\/ In C++11 you are bett/;" f struct:ExampleAppConsole typeref:typename:int file:
  6388. TextEx third_party/imgui/imgui_widgets.cpp /^void ImGui::TextEx(const char* text, const char* text_end, ImGuiTextFlags flags)$/;" f class:ImGui typeref:typename:void
  6389. TextFilters third_party/imgui/imgui_demo.cpp /^ struct TextFilters { static int FilterImGuiLetters(ImGuiInputTextCallbackData* data)/;" s function:ShowDemoWindowWidgets file:
  6390. TextUnformatted third_party/imgui/imgui_widgets.cpp /^void ImGui::TextUnformatted(const char* text, const char* text_end)$/;" f class:ImGui typeref:typename:void
  6391. TextV third_party/imgui/imgui_widgets.cpp /^void ImGui::TextV(const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  6392. TextW third_party/imgui/imgui_internal.h /^ ImVector<ImWchar> TextW; \/\/ edit buffer, we need to persist but can/;" m struct:ImGuiInputTextState typeref:typename:ImVector<ImWchar>
  6393. TextWrapPos third_party/imgui/imgui_internal.h /^ float TextWrapPos; \/\/ == TextWrapPosStack.back() [empty == -1/;" m struct:ImGuiWindowTempData typeref:typename:float
  6394. TextWrapPosStack third_party/imgui/imgui_internal.h /^ ImVector<float> TextWrapPosStack;$/;" m struct:ImGuiWindowTempData typeref:typename:ImVector<float>
  6395. TextWrapped third_party/imgui/imgui_widgets.cpp /^void ImGui::TextWrapped(const char* fmt, ...)$/;" f class:ImGui typeref:typename:void
  6396. TextWrappedV third_party/imgui/imgui_widgets.cpp /^void ImGui::TextWrappedV(const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:void
  6397. Texture third_party/imgui_sdl/imgui_sdl.cpp /^ SDL_Texture* Texture = nullptr;$/;" m struct:__anonaaadc0580110::Device::TriangleCacheItem typeref:typename:SDL_Texture * file:
  6398. Texture third_party/imgui_sdl/imgui_sdl.cpp /^ struct Texture$/;" s namespace:__anonaaadc0580110 file:
  6399. TextureId third_party/imgui/imgui.h /^ ImTextureID TextureId; \/\/ User-provided texture ID. Set by user in Imfont/;" m struct:ImDrawCmd typeref:typename:ImTextureID
  6400. Tile libswan/include/swan/Tile.h /^ Tile(const ResourceManager &resources, const Builder &builder):$/;" f class:Swan::Tile
  6401. Tile libswan/include/swan/Tile.h /^class Tile {$/;" c namespace:Swan
  6402. TilePos libswan/include/swan/common.h /^using TilePos = Vec2i;$/;" t namespace:Swan typeref:typename:Vec2i
  6403. Time third_party/imgui/imgui_internal.h /^ double Time;$/;" m struct:ImGuiContext typeref:typename:double
  6404. TitleBarHeight third_party/imgui/imgui_internal.h /^ float TitleBarHeight() const { ImGuiContext& g = *GImGui; return (Flags & ImGuiWi/;" f struct:ImGuiWindow typeref:typename:float
  6405. TitleBarRect third_party/imgui/imgui_internal.h /^ ImRect TitleBarRect() const { return ImRect(Pos, ImVec2(Pos.x + SizeFull.x, Pos./;" f struct:ImGuiWindow typeref:typename:ImRect
  6406. ToInt third_party/imgui_sdl/imgui_sdl.cpp /^ uint32_t ToInt() const$/;" f struct:__anonaaadc0580110::Color typeref:typename:uint32_t file:
  6407. ToUint8 third_party/PerlinNoise/Test_PerlinNoise.cpp /^ static constexpr std::uint8_t ToUint8(double x) noexcept$/;" f class:Image typeref:typename:std::uint8_t file:
  6408. Tooltip third_party/imgui-plot/include/imgui_plot.h /^ struct Tooltip {$/;" s struct:ImGui::PlotConfig
  6409. TooltipOverrideCount third_party/imgui/imgui_internal.h /^ int TooltipOverrideCount;$/;" m struct:ImGuiContext typeref:typename:int
  6410. TotalIdxCount third_party/imgui/imgui.h /^ int TotalIdxCount; \/\/ For convenience, sum of all ImDrawList's IdxBuf/;" m struct:ImDrawData typeref:typename:int
  6411. TotalVtxCount third_party/imgui/imgui.h /^ int TotalVtxCount; \/\/ For convenience, sum of all ImDrawList's VtxBuf/;" m struct:ImDrawData typeref:typename:int
  6412. TouchExtraPadding third_party/imgui/imgui.h /^ ImVec2 TouchExtraPadding; \/\/ Expand reactive bounding box for touch-based sy/;" m struct:ImGuiStyle typeref:typename:ImVec2
  6413. Translate third_party/imgui/imgui_internal.h /^ void Translate(const ImVec2& d) { Min.x += d.x; Min.y += d.y; Max.x += d.x; /;" f struct:ImRect typeref:typename:void
  6414. TranslateX third_party/imgui/imgui_internal.h /^ void TranslateX(float dx) { Min.x += dx; Max.x += dx; }$/;" f struct:ImRect typeref:typename:void
  6415. TranslateY third_party/imgui/imgui_internal.h /^ void TranslateY(float dy) { Min.y += dy; Max.y += dy; }$/;" f struct:ImRect typeref:typename:void
  6416. TreeAdvanceToLabelPos third_party/imgui/imgui.h /^ static inline void TreeAdvanceToLabelPos() { SetCursorPosX(GetCursorPosX() + /;" f namespace:ImGui typeref:typename:void
  6417. TreeDepth third_party/imgui/imgui_internal.h /^ int TreeDepth; \/\/ Current tree depth.$/;" m struct:ImGuiWindowTempData typeref:typename:int
  6418. TreeMayJumpToParentOnPopMask third_party/imgui/imgui_internal.h /^ ImU32 TreeMayJumpToParentOnPopMask; \/\/ Store a copy of !g.NavIdIsAlive/;" m struct:ImGuiWindowTempData typeref:typename:ImU32
  6419. TreeNode third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNode(const char* label)$/;" f class:ImGui typeref:typename:bool
  6420. TreeNode third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNode(const char* str_id, const char* fmt, ...)$/;" f class:ImGui typeref:typename:bool
  6421. TreeNode third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNode(const void* ptr_id, const char* fmt, ...)$/;" f class:ImGui typeref:typename:bool
  6422. TreeNodeBehavior third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char/;" f class:ImGui typeref:typename:bool
  6423. TreeNodeBehaviorIsOpen third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags)$/;" f class:ImGui typeref:typename:bool
  6424. TreeNodeEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags)$/;" f class:ImGui typeref:typename:bool
  6425. TreeNodeEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...)$/;" f class:ImGui typeref:typename:bool
  6426. TreeNodeEx third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...)$/;" f class:ImGui typeref:typename:bool
  6427. TreeNodeExV third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list a/;" f class:ImGui typeref:typename:bool
  6428. TreeNodeExV third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list a/;" f class:ImGui typeref:typename:bool
  6429. TreeNodeV third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeV(const char* str_id, const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:bool
  6430. TreeNodeV third_party/imgui/imgui_widgets.cpp /^bool ImGui::TreeNodeV(const void* ptr_id, const char* fmt, va_list args)$/;" f class:ImGui typeref:typename:bool
  6431. TreePop third_party/imgui/imgui_widgets.cpp /^void ImGui::TreePop()$/;" f class:ImGui typeref:typename:void
  6432. TreePush third_party/imgui/imgui_widgets.cpp /^void ImGui::TreePush(const char* str_id)$/;" f class:ImGui typeref:typename:void
  6433. TreePush third_party/imgui/imgui_widgets.cpp /^void ImGui::TreePush(const void* ptr_id)$/;" f class:ImGui typeref:typename:void
  6434. TreePushOverrideID third_party/imgui/imgui_widgets.cpp /^void ImGui::TreePushOverrideID(ImGuiID id)$/;" f class:ImGui typeref:typename:void
  6435. TriangleCacheItem third_party/imgui_sdl/imgui_sdl.cpp /^ struct TriangleCacheItem$/;" s struct:__anonaaadc0580110::Device file:
  6436. TupleHash third_party/imgui_sdl/imgui_sdl.cpp /^ namespace TupleHash$/;" n namespace:__anonaaadc0580110 file:
  6437. Type libswan/src/SRF.cc /^enum class Type {$/;" g namespace:Swan file:
  6438. Type third_party/imgui-plot/include/imgui_plot.h /^ enum Type {$/;" g struct:ImGui::PlotConfig::Scale
  6439. Type third_party/imgui/imgui.cpp /^ ImGuiDataType Type;$/;" m struct:ImGuiStyleVarInfo typeref:typename:ImGuiDataType file:
  6440. TypeHash third_party/imgui/imgui_internal.h /^ ImGuiID TypeHash; \/\/ == ImHashStr(TypeName)$/;" m struct:ImGuiSettingsHandler typeref:typename:ImGuiID
  6441. TypeName third_party/imgui/imgui_internal.h /^ const char* TypeName; \/\/ Short description stored in .ini file. Disallowed character/;" m struct:ImGuiSettingsHandler typeref:typename:const char *
  6442. U0 third_party/imgui/imgui.h /^ float U0, V0, U1, V1; \/\/ Texture coordinates$/;" m struct:ImFontGlyph typeref:typename:float
  6443. U1 third_party/imgui/imgui.h /^ float U0, V0, U1, V1; \/\/ Texture coordinates$/;" m struct:ImFontGlyph typeref:typename:float
  6444. UILaunchStoryboardName third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UILaunchStoryboardName<\/key>$/;" k
  6445. UIMainStoryboardFile third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UIMainStoryboardFile<\/key>$/;" k
  6446. UIRequiredDeviceCapabilities third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UIRequiredDeviceCapabilities<\/key>$/;" k
  6447. UIRequiresFullScreen third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UIRequiresFullScreen<\/key>$/;" k
  6448. UIStatusBarHidden third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UIStatusBarHidden<\/key>$/;" k
  6449. UISupportedInterfaceOrientations third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UISupportedInterfaceOrientations<\/key>$/;" k
  6450. UISupportedInterfaceOrientations~ipad third_party/imgui/examples/example_apple_metal/iOS/Info-iOS.plist /^ <key>UISupportedInterfaceOrientations~ipad<\/key>$/;" k
  6451. UNAME_S third_party/imgui/examples/example_emscripten/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6452. UNAME_S third_party/imgui/examples/example_glfw_opengl2/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6453. UNAME_S third_party/imgui/examples/example_glfw_opengl3/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6454. UNAME_S third_party/imgui/examples/example_glut_opengl2/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6455. UNAME_S third_party/imgui/examples/example_null/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6456. UNAME_S third_party/imgui/examples/example_sdl_opengl2/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6457. UNAME_S third_party/imgui/examples/example_sdl_opengl3/Makefile /^UNAME_S := $(shell uname -s)$/;" m
  6458. USE_CLANG_TIDY CMakeLists.txt /^option(USE_CLANG_TIDY "Use clang-tidy for additional checks" ON)$/;" D
  6459. USYNERGY_CLIPBOARD_FORMAT_BITMAP third_party/imgui/examples/libs/usynergy/uSynergy.h /^ USYNERGY_CLIPBOARD_FORMAT_BITMAP = 1, \/* Bitmap format, BMP 24\/32bpp, BI_RGB *\/$/;" e enum:uSynergyClipboardFormat
  6460. USYNERGY_CLIPBOARD_FORMAT_HTML third_party/imgui/examples/libs/usynergy/uSynergy.h /^ USYNERGY_CLIPBOARD_FORMAT_HTML = 2, \/* HTML format, HTML fragment, UTF-8, newline is LF /;" e enum:uSynergyClipboardFormat
  6461. USYNERGY_CLIPBOARD_FORMAT_TEXT third_party/imgui/examples/libs/usynergy/uSynergy.h /^ USYNERGY_CLIPBOARD_FORMAT_TEXT = 0, \/* Text format, UTF-8, newline is LF *\/$/;" e enum:uSynergyClipboardFormat
  6462. USYNERGY_FALSE third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_FALSE /;" d
  6463. USYNERGY_IDLE_TIMEOUT third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_IDLE_TIMEOUT /;" d
  6464. USYNERGY_IS_PACKET third_party/imgui/examples/libs/usynergy/uSynergy.c /^#define USYNERGY_IS_PACKET(/;" d file:
  6465. USYNERGY_MODIFIER_ALT third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_ALT /;" d
  6466. USYNERGY_MODIFIER_ALT_GR third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_ALT_GR /;" d
  6467. USYNERGY_MODIFIER_CAPSLOCK third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_CAPSLOCK /;" d
  6468. USYNERGY_MODIFIER_CTRL third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_CTRL /;" d
  6469. USYNERGY_MODIFIER_LEVEL5LOCK third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_LEVEL5LOCK /;" d
  6470. USYNERGY_MODIFIER_META third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_META /;" d
  6471. USYNERGY_MODIFIER_NUMLOCK third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_NUMLOCK /;" d
  6472. USYNERGY_MODIFIER_SCROLLOCK third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_SCROLLOCK /;" d
  6473. USYNERGY_MODIFIER_SHIFT third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_SHIFT /;" d
  6474. USYNERGY_MODIFIER_WIN third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_MODIFIER_WIN /;" d
  6475. USYNERGY_NUM_JOYSTICKS third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_NUM_JOYSTICKS /;" d
  6476. USYNERGY_PROTOCOL_MAJOR third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_PROTOCOL_MAJOR /;" d
  6477. USYNERGY_PROTOCOL_MINOR third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_PROTOCOL_MINOR /;" d
  6478. USYNERGY_RECEIVE_BUFFER_SIZE third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_RECEIVE_BUFFER_SIZE /;" d
  6479. USYNERGY_REPLY_BUFFER_SIZE third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_REPLY_BUFFER_SIZE /;" d
  6480. USYNERGY_TRACE_BUFFER_SIZE third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_TRACE_BUFFER_SIZE /;" d
  6481. USYNERGY_TRUE third_party/imgui/examples/libs/usynergy/uSynergy.h /^#define USYNERGY_TRUE /;" d
  6482. UniformColorTriangleCache third_party/imgui_sdl/imgui_sdl.cpp /^ LRUCache<UniformColorTriangleKey, std::unique_ptr<TriangleCacheItem>, UniformColorTriangleCach/;" m struct:__anonaaadc0580110::Device typeref:typename:LRUCache<UniformColorTriangleKey,std::unique_ptr<TriangleCacheItem>,UniformColorTriangleCacheSize> file:
  6483. UniformColorTriangleCacheSize third_party/imgui_sdl/imgui_sdl.cpp /^ static constexpr std::size_t UniformColorTriangleCacheSize = 512;$/;" m struct:__anonaaadc0580110::Device typeref:typename:std::size_t file:
  6484. UniformColorTriangleKey third_party/imgui_sdl/imgui_sdl.cpp /^ using UniformColorTriangleKey = std::tuple<uint32_t, int, int, int, int, int, int>;$/;" t struct:__anonaaadc0580110::Device typeref:typename:std::tuple<uint32_t,int,int,int,int,int,int> file:
  6485. Unindent third_party/imgui/imgui.cpp /^void ImGui::Unindent(float indent_w)$/;" f class:ImGui typeref:typename:void
  6486. UnpackAccumulativeOffsetsIntoRanges third_party/imgui/imgui_draw.cpp /^static void UnpackAccumulativeOffsetsIntoRanges(int base_codepoint, const short* accumulative_of/;" f typeref:typename:void file:
  6487. UnpackBoolVectorToFlatIndexList third_party/imgui/imgui_draw.cpp /^static void UnpackBoolVectorToFlatIndexList(const ImBoolVector* in, ImVector<int>* out)$/;" f typeref:typename:void file:
  6488. Upcoming Changes third_party/imgui/docs/README.md /^### Upcoming Changes$/;" S
  6489. Update third_party/imgui/imgui_widgets.cpp /^void ImGuiMenuColumns::Update(int count, float spacing, bool clear)$/;" f class:ImGuiMenuColumns typeref:typename:void
  6490. UpdateClipRect third_party/imgui/imgui_draw.cpp /^void ImDrawList::UpdateClipRect()$/;" f class:ImDrawList typeref:typename:void
  6491. UpdateDebugToolItemPicker third_party/imgui/imgui.cpp /^void ImGui::UpdateDebugToolItemPicker()$/;" f class:ImGui typeref:typename:void
  6492. UpdateHoveredWindowAndCaptureFlags third_party/imgui/imgui.cpp /^void ImGui::UpdateHoveredWindowAndCaptureFlags()$/;" f class:ImGui typeref:typename:void
  6493. UpdateManualResize third_party/imgui/imgui.cpp /^static bool ImGui::UpdateManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* bor/;" f class:ImGui typeref:typename:bool file:
  6494. UpdateMouseInputs third_party/imgui/imgui.cpp /^static void ImGui::UpdateMouseInputs()$/;" f class:ImGui typeref:typename:void file:
  6495. UpdateMouseMovingWindowEndFrame third_party/imgui/imgui.cpp /^void ImGui::UpdateMouseMovingWindowEndFrame()$/;" f class:ImGui typeref:typename:void
  6496. UpdateMouseMovingWindowNewFrame third_party/imgui/imgui.cpp /^void ImGui::UpdateMouseMovingWindowNewFrame()$/;" f class:ImGui typeref:typename:void
  6497. UpdateMouseWheel third_party/imgui/imgui.cpp /^void ImGui::UpdateMouseWheel()$/;" f class:ImGui typeref:typename:void
  6498. UpdateTextureID third_party/imgui/imgui_draw.cpp /^void ImDrawList::UpdateTextureID()$/;" f class:ImDrawList typeref:typename:void
  6499. UpdateWindowParentAndRootLinks third_party/imgui/imgui.cpp /^void ImGui::UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWin/;" f class:ImGui typeref:typename:void
  6500. Usage third_party/imgui-plot/README.md /^## Usage$/;" s
  6501. Usage third_party/imgui/docs/README.md /^### Usage$/;" S
  6502. Usage third_party/imgui/misc/freetype/README.md /^### Usage$/;" S
  6503. Usage third_party/imgui_sdl/README.md /^## Usage$/;" s
  6504. UseAsDrawColor third_party/imgui_sdl/imgui_sdl.cpp /^ void UseAsDrawColor(SDL_Renderer* renderer) const$/;" f struct:__anonaaadc0580110::Color typeref:typename:void file:
  6505. UseAsRenderTarget third_party/imgui_sdl/imgui_sdl.cpp /^ void UseAsRenderTarget(SDL_Texture* texture)$/;" f struct:__anonaaadc0580110::Device typeref:typename:void file:
  6506. UsedChars third_party/imgui/imgui.h /^ ImVector<ImU32> UsedChars; \/\/ Store 1-bit per Unicode code point (0=unused, 1=u/;" m struct:ImFontGlyphRangesBuilder typeref:typename:ImVector<ImU32>
  6507. UserCallback third_party/imgui/imgui.h /^ ImDrawCallback UserCallback; \/\/ If != NULL, call the function instead of render/;" m struct:ImDrawCmd typeref:typename:ImDrawCallback
  6508. UserCallback third_party/imgui/imgui_internal.h /^ ImGuiInputTextCallback UserCallback; \/\/ "$/;" m struct:ImGuiInputTextState typeref:typename:ImGuiInputTextCallback
  6509. UserCallbackData third_party/imgui/imgui.h /^ void* UserCallbackData; \/\/ The draw callback code can access this.$/;" m struct:ImDrawCmd typeref:typename:void *
  6510. UserCallbackData third_party/imgui/imgui_internal.h /^ void* UserCallbackData; \/\/ "$/;" m struct:ImGuiInputTextState typeref:typename:void *
  6511. UserData third_party/imgui/imgui.h /^ void* UserData; \/\/ What user passed to InputText() \/\/ Read-only$/;" m struct:ImGuiInputTextCallbackData typeref:typename:void *
  6512. UserData third_party/imgui/imgui.h /^ void* UserData; \/\/ = NULL \/\/ Store your own data f/;" m struct:ImGuiIO typeref:typename:void *
  6513. UserData third_party/imgui/imgui.h /^ void* UserData; \/\/ Read-only. What user passed to SetNextWindowSizeConstraints()$/;" m struct:ImGuiSizeCallbackData typeref:typename:void *
  6514. UserData third_party/imgui/imgui_internal.h /^ void* UserData;$/;" m struct:ImGuiSettingsHandler typeref:typename:void *
  6515. UserFlags third_party/imgui/imgui_internal.h /^ ImGuiInputTextFlags UserFlags; \/\/ Temporarily set while we call user's ca/;" m struct:ImGuiInputTextState typeref:typename:ImGuiInputTextFlags
  6516. UserFlags third_party/imgui/misc/freetype/imgui_freetype.cpp /^ unsigned int UserFlags; \/\/ = ImFontConfig::RasterizerFlags$/;" m struct:__anond3bafd850110::FreeTypeFont typeref:typename:unsigned int file:
  6517. UsesOnlyColor third_party/imgui_sdl/imgui_sdl.cpp /^ bool UsesOnlyColor() const$/;" f struct:__anonaaadc0580110::Rect typeref:typename:bool file:
  6518. V0 third_party/imgui/imgui.h /^ float U0, V0, U1, V1; \/\/ Texture coordinates$/;" m struct:ImFontGlyph typeref:typename:float
  6519. V0 third_party/imgui_sdl/imgui_sdl.cpp /^ const ImVec2& V0;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const ImVec2 & file:
  6520. V1 third_party/imgui/imgui.h /^ float U0, V0, U1, V1; \/\/ Texture coordinates$/;" m struct:ImFontGlyph typeref:typename:float
  6521. V1 third_party/imgui_sdl/imgui_sdl.cpp /^ const ImVec2& V1;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const ImVec2 & file:
  6522. V2 third_party/imgui_sdl/imgui_sdl.cpp /^ const ImVec2& V2;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const ImVec2 & file:
  6523. VERTEX_CONSTANT_BUFFER third_party/imgui/examples/imgui_impl_dx10.cpp /^struct VERTEX_CONSTANT_BUFFER$/;" s file:
  6524. VERTEX_CONSTANT_BUFFER third_party/imgui/examples/imgui_impl_dx11.cpp /^struct VERTEX_CONSTANT_BUFFER$/;" s file:
  6525. VERTEX_CONSTANT_BUFFER third_party/imgui/examples/imgui_impl_dx12.cpp /^struct VERTEX_CONSTANT_BUFFER$/;" s file:
  6526. VS third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10VertexShader* VS;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10VertexShader * file:
  6527. VS third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11VertexShader* VS;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11VertexShader * file:
  6528. VSConstantBuffer third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10Buffer *** file:
  6529. VSConstantBuffer third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11Buffer *** file:
  6530. VSInstances third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11ClassInstance *PSInstances[256], *VSInstances[256], *GSInstances[256]; \//;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11ClassInstance * [256]* [256] file:
  6531. VSInstancesCount third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT PSInstancesCount, VSInstancesCount, GSInstancesCount;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6532. VSliderFloat third_party/imgui/imgui_widgets.cpp /^bool ImGui::VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_m/;" f class:ImGui typeref:typename:bool
  6533. VSliderInt third_party/imgui/imgui_widgets.cpp /^bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, cons/;" f class:ImGui typeref:typename:bool
  6534. VSliderScalar third_party/imgui/imgui_widgets.cpp /^bool ImGui::VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* /;" f class:ImGui typeref:typename:bool
  6535. Valid third_party/imgui/imgui.h /^ bool Valid; \/\/ Only valid after Render() is called and before /;" m struct:ImDrawData typeref:typename:bool
  6536. Value third_party/imgui/imgui.h /^ ImVec4 Value;$/;" m struct:ImColor typeref:typename:ImVec4
  6537. Value third_party/imgui/imgui_widgets.cpp /^void ImGui::Value(const char* prefix, bool b)$/;" f class:ImGui typeref:typename:void
  6538. Value third_party/imgui/imgui_widgets.cpp /^void ImGui::Value(const char* prefix, float v, const char* float_format)$/;" f class:ImGui typeref:typename:void
  6539. Value third_party/imgui/imgui_widgets.cpp /^void ImGui::Value(const char* prefix, int v)$/;" f class:ImGui typeref:typename:void
  6540. Value third_party/imgui/imgui_widgets.cpp /^void ImGui::Value(const char* prefix, unsigned int v)$/;" f class:ImGui typeref:typename:void
  6541. Value0 third_party/imgui_sdl/imgui_sdl.cpp /^ const T Value0;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const T file:
  6542. Value1 third_party/imgui_sdl/imgui_sdl.cpp /^ const T Value1;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const T file:
  6543. Value2 third_party/imgui_sdl/imgui_sdl.cpp /^ const T Value2;$/;" m class:__anonaaadc0580110::InterpolatedFactorEquation typeref:typename:const T file:
  6544. Values third_party/imgui-plot/include/imgui_plot.h /^ struct Values {$/;" s struct:ImGui::PlotConfig
  6545. Values third_party/imgui/imgui_widgets.cpp /^ const float* Values;$/;" m struct:ImGuiPlotArrayGetterData typeref:typename:const float * file:
  6546. VarIdx third_party/imgui/imgui_internal.h /^ ImGuiStyleVar VarIdx;$/;" m struct:ImGuiStyleMod typeref:typename:ImGuiStyleVar
  6547. Vec2 libswan/include/swan/Vector2.h /^using Vec2 = Vector2<float>;$/;" t namespace:Swan typeref:typename:Vector2<float>
  6548. Vec2i libswan/include/swan/Vector2.h /^using Vec2i = Vector2<int>;$/;" t namespace:Swan typeref:typename:Vector2<int>
  6549. Vector2 libswan/include/swan/Vector2.h /^ constexpr Vector2(T x = 0, T y = 0): x(x), y(y) {}$/;" f struct:Swan::Vector2
  6550. Vector2 libswan/include/swan/Vector2.h /^struct Vector2 {$/;" s namespace:Swan
  6551. VertexBuffer third_party/imgui/examples/imgui_impl_dx10.cpp /^ ID3D10Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:ID3D10Buffer ** file:
  6552. VertexBuffer third_party/imgui/examples/imgui_impl_dx11.cpp /^ ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:ID3D11Buffer ** file:
  6553. VertexBuffer third_party/imgui/examples/imgui_impl_dx12.cpp /^ ID3D12Resource* VertexBuffer;$/;" m struct:FrameResources typeref:typename:ID3D12Resource * file:
  6554. VertexBuffer third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkBuffer VertexBuffer;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkBuffer file:
  6555. VertexBufferMemory third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkDeviceMemory VertexBufferMemory;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkDeviceMemory file:
  6556. VertexBufferOffset third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6557. VertexBufferOffset third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6558. VertexBufferSize third_party/imgui/examples/imgui_impl_dx12.cpp /^ int VertexBufferSize;$/;" m struct:FrameResources typeref:typename:int file:
  6559. VertexBufferSize third_party/imgui/examples/imgui_impl_vulkan.cpp /^ VkDeviceSize VertexBufferSize;$/;" m struct:ImGui_ImplVulkanH_FrameRenderBuffers typeref:typename:VkDeviceSize file:
  6560. VertexBufferStride third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6561. VertexBufferStride third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6562. VerticalLines third_party/imgui-plot/include/imgui_plot.h /^ struct VerticalLines {$/;" s struct:ImGui::PlotConfig
  6563. ViewController third_party/imgui/examples/example_apple_metal/Shared/ViewController.h /^@interface ViewController : NSViewController$/;" i
  6564. ViewController third_party/imgui/examples/example_apple_metal/Shared/ViewController.h /^@interface ViewController : UIViewController$/;" i
  6565. ViewController third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^@implementation ViewController$/;" I
  6566. ViewController third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^@interface ViewController ()$/;" i
  6567. Viewports third_party/imgui/examples/imgui_impl_dx10.cpp /^ D3D10_VIEWPORT Viewports[D3D10_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PI/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:D3D10_VIEWPORT[] file:
  6568. Viewports third_party/imgui/examples/imgui_impl_dx11.cpp /^ D3D11_VIEWPORT Viewports[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PI/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:D3D11_VIEWPORT[] file:
  6569. ViewportsCount third_party/imgui/examples/imgui_impl_dx10.cpp /^ UINT ScissorRectsCount, ViewportsCount;$/;" m struct:ImGui_ImplDX10_RenderDrawData::BACKUP_DX10_STATE typeref:typename:UINT file:
  6570. ViewportsCount third_party/imgui/examples/imgui_impl_dx11.cpp /^ UINT ScissorRectsCount, ViewportsCount;$/;" m struct:ImGui_ImplDX11_RenderDrawData::BACKUP_DX11_STATE typeref:typename:UINT file:
  6571. VisibleTabId third_party/imgui/imgui_internal.h /^ ImGuiID VisibleTabId; \/\/ Can occasionally be != SelectedTabId (e.g. /;" m struct:ImGuiTabBar typeref:typename:ImGuiID
  6572. VisibleTabWasSubmitted third_party/imgui/imgui_internal.h /^ bool VisibleTabWasSubmitted;$/;" m struct:ImGuiTabBar typeref:typename:bool
  6573. VtxBuffer third_party/imgui/imgui.h /^ ImVector<ImDrawVert> VtxBuffer; \/\/ Vertex buffer.$/;" m struct:ImDrawList typeref:typename:ImVector<ImDrawVert>
  6574. VtxOffset third_party/imgui/imgui.h /^ unsigned int VtxOffset; \/\/ Start offset in vertex buffer. Pre-1.71 or with/;" m struct:ImDrawCmd typeref:typename:unsigned int
  6575. WGDefault core.mod/src/WGDefault.h /^ WGDefault(Swan::World &world):$/;" f class:WGDefault
  6576. WGDefault core.mod/src/WGDefault.h /^class WGDefault: public Swan::WorldGen {$/;" c
  6577. WIN32_LEAN_AND_MEAN third_party/imgui/examples/imgui_impl_win32.cpp /^#define WIN32_LEAN_AND_MEAN$/;" d file:
  6578. WIN32_LEAN_AND_MEAN third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^#define WIN32_LEAN_AND_MEAN /;" d file:
  6579. WIN32_LEAN_AND_MEAN third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define WIN32_LEAN_AND_MEAN /;" d
  6580. WIN32_LEAN_AND_MEAN third_party/imgui/imgui.cpp /^#define WIN32_LEAN_AND_MEAN$/;" d file:
  6581. WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER third_party/imgui/imgui.cpp /^static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 2.00f; \/\/ Lock scrolled windo/;" v typeref:typename:const float file:
  6582. WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER third_party/imgui/imgui.cpp /^static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; \/\/ Reduce visual noise/;" v typeref:typename:const float file:
  6583. WINDOWS_RESIZE_FROM_EDGES_HALF_THICKNESS third_party/imgui/imgui.cpp /^static const float WINDOWS_RESIZE_FROM_EDGES_HALF_THICKNESS = 4.0f; \/\/ Extend outside and /;" v typeref:typename:const float file:
  6584. WINGDIAPI third_party/imgui/examples/imgui_impl_opengl2.cpp /^#define WINGDIAPI /;" d file:
  6585. WINGDIAPI third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define WINGDIAPI /;" d
  6586. WM_MOUSEHWHEEL third_party/imgui/examples/imgui_impl_win32.cpp /^#define WM_MOUSEHWHEEL /;" d file:
  6587. WORD libswan/src/SRF.cc /^ WORD = 4,$/;" e enum:Swan::Type file:
  6588. WORD_ARRAY libswan/src/SRF.cc /^ WORD_ARRAY = 10,$/;" e enum:Swan::Type file:
  6589. WRT_Contents third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6590. WRT_ContentsRegionRect third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6591. WRT_Count third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6592. WRT_InnerClipRect third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6593. WRT_InnerRect third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6594. WRT_OuterRect third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6595. WRT_OuterRectClipped third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6596. WRT_WorkRect third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" e enum:ImGui::ShowMetricsWindow::__anon4b9ae8d40103 file:
  6597. WaitForLastSubmittedFrame third_party/imgui/examples/example_win32_directx12/main.cpp /^void WaitForLastSubmittedFrame()$/;" f typeref:typename:void
  6598. WaitForNextFrameResources third_party/imgui/examples/example_win32_directx12/main.cpp /^FrameContext* WaitForNextFrameResources()$/;" f typeref:typename:FrameContext *
  6599. WantCaptureKeyboard third_party/imgui/imgui.h /^ bool WantCaptureKeyboard; \/\/ When io.WantCaptureKeyboard is true, imgui /;" m struct:ImGuiIO typeref:typename:bool
  6600. WantCaptureKeyboardNextFrame third_party/imgui/imgui_internal.h /^ int WantCaptureKeyboardNextFrame;$/;" m struct:ImGuiContext typeref:typename:int
  6601. WantCaptureMouse third_party/imgui/imgui.h /^ bool WantCaptureMouse; \/\/ When io.WantCaptureMouse is true, imgui wil/;" m struct:ImGuiIO typeref:typename:bool
  6602. WantCaptureMouseNextFrame third_party/imgui/imgui_internal.h /^ int WantCaptureMouseNextFrame; \/\/ Explicit capture via Captur/;" m struct:ImGuiContext typeref:typename:int
  6603. WantClose third_party/imgui/imgui_demo.cpp /^ bool WantClose; \/\/ Set when the document$/;" m struct:MyDocument typeref:typename:bool file:
  6604. WantCollapseToggle third_party/imgui/imgui_internal.h /^ bool WantCollapseToggle;$/;" m struct:ImGuiWindow typeref:typename:bool
  6605. WantLayout third_party/imgui/imgui_internal.h /^ bool WantLayout;$/;" m struct:ImGuiTabBar typeref:typename:bool
  6606. WantSaveIniSettings third_party/imgui/imgui.h /^ bool WantSaveIniSettings; \/\/ When manual .ini load\/save is active (io.I/;" m struct:ImGuiIO typeref:typename:bool
  6607. WantSetMousePos third_party/imgui/imgui.h /^ bool WantSetMousePos; \/\/ MousePos has been altered, back-end should /;" m struct:ImGuiIO typeref:typename:bool
  6608. WantTextInput third_party/imgui/imgui.h /^ bool WantTextInput; \/\/ Mobile\/console: when io.WantTextInput is t/;" m struct:ImGuiIO typeref:typename:bool
  6609. WantTextInputNextFrame third_party/imgui/imgui_internal.h /^ int WantTextInputNextFrame;$/;" m struct:ImGuiContext typeref:typename:int
  6610. WasActive third_party/imgui/imgui_internal.h /^ bool WasActive;$/;" m struct:ImGuiWindow typeref:typename:bool
  6611. WheelingWindow third_party/imgui/imgui_internal.h /^ ImGuiWindow* WheelingWindow;$/;" m struct:ImGuiContext typeref:typename:ImGuiWindow *
  6612. WheelingWindowRefMousePos third_party/imgui/imgui_internal.h /^ ImVec2 WheelingWindowRefMousePos;$/;" m struct:ImGuiContext typeref:typename:ImVec2
  6613. WheelingWindowTimer third_party/imgui/imgui_internal.h /^ float WheelingWindowTimer;$/;" m struct:ImGuiContext typeref:typename:float
  6614. Width third_party/imgui/examples/imgui_impl_vulkan.h /^ int Width;$/;" m struct:ImGui_ImplVulkanH_Window typeref:typename:int
  6615. Width third_party/imgui/imgui.h /^ unsigned short Width, Height; \/\/ Input \/\/ Desired rectangle dimension$/;" m struct:ImFontAtlasCustomRect typeref:typename:unsigned short
  6616. Width third_party/imgui/imgui_internal.h /^ float Width; \/\/ Set by SetNextItemWidth().$/;" m struct:ImGuiNextItemData typeref:typename:float
  6617. Width third_party/imgui/imgui_internal.h /^ float Width; \/\/ Width currently displayed$/;" m struct:ImGuiTabItem typeref:typename:float
  6618. Width third_party/imgui/imgui_internal.h /^ float Width;$/;" m struct:ImGuiShrinkWidthItem typeref:typename:float
  6619. Width third_party/imgui/imgui_internal.h /^ float Width, NextWidth;$/;" m struct:ImGuiMenuColumns typeref:typename:float
  6620. Width third_party/imgui/misc/freetype/imgui_freetype.cpp /^ int Width; \/\/ Glyph's width in pixels.$/;" m struct:__anond3bafd850110::GlyphInfo typeref:typename:int file:
  6621. Width third_party/imgui_sdl/imgui_sdl.cpp /^ int Width = 0, Height = 0;$/;" m struct:__anonaaadc0580110::Device::TriangleCacheItem typeref:typename:int file:
  6622. Width third_party/imgui_sdl/imgui_sdl.cpp /^ int X, Y, Width, Height;$/;" m struct:__anonaaadc0580110::Device::ClipRect typeref:typename:int file:
  6623. WidthContents third_party/imgui/imgui_internal.h /^ float WidthContents; \/\/ Width of actual contents, stored during Beg/;" m struct:ImGuiTabItem typeref:typename:float
  6624. Win libswan/include/swan/Win.h /^ Win(SDL_Window *window, SDL_Renderer *renderer, float scale):$/;" f class:Swan::Win
  6625. Win libswan/include/swan/Win.h /^class Win {$/;" c namespace:Swan
  6626. Window third_party/imgui/imgui_internal.h /^ ImGuiWindow* Window; \/\/ Resolved on BeginPopup() - may stay unresolved if u/;" m struct:ImGuiPopupData typeref:typename:ImGuiWindow *
  6627. Window third_party/imgui/imgui_internal.h /^ ImGuiWindow* Window; \/\/ Best candidate window$/;" m struct:ImGuiNavMoveResult typeref:typename:ImGuiWindow *
  6628. WindowBorderSize third_party/imgui/imgui.h /^ float WindowBorderSize; \/\/ Thickness of border around windows. Generally s/;" m struct:ImGuiStyle typeref:typename:float
  6629. WindowBorderSize third_party/imgui/imgui_internal.h /^ float WindowBorderSize; \/\/ Window border size at the t/;" m struct:ImGuiWindow typeref:typename:float
  6630. WindowMenuButtonPosition third_party/imgui/imgui.h /^ ImGuiDir WindowMenuButtonPosition; \/\/ Side of the collapsing\/docking button in the t/;" m struct:ImGuiStyle typeref:typename:ImGuiDir
  6631. WindowMinSize third_party/imgui/imgui.h /^ ImVec2 WindowMinSize; \/\/ Minimum window size. This is a global setting. /;" m struct:ImGuiStyle typeref:typename:ImVec2
  6632. WindowPadding third_party/imgui/imgui.h /^ ImVec2 WindowPadding; \/\/ Padding within a window.$/;" m struct:ImGuiStyle typeref:typename:ImVec2
  6633. WindowPadding third_party/imgui/imgui_internal.h /^ ImVec2 WindowPadding; \/\/ Window padding at the time /;" m struct:ImGuiWindow typeref:typename:ImVec2
  6634. WindowRounding third_party/imgui/imgui.h /^ float WindowRounding; \/\/ Radius of window corners rounding. Set to 0.0f /;" m struct:ImGuiStyle typeref:typename:float
  6635. WindowRounding third_party/imgui/imgui_internal.h /^ float WindowRounding; \/\/ Window rounding at the time/;" m struct:ImGuiWindow typeref:typename:float
  6636. WindowTitleAlign third_party/imgui/imgui.h /^ ImVec2 WindowTitleAlign; \/\/ Alignment for title bar text. Defaults to (0.0f/;" m struct:ImGuiStyle typeref:typename:ImVec2
  6637. Windows third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindow*> Windows; \/\/ Windows, sorted in display /;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiWindow * >
  6638. WindowsActiveCount third_party/imgui/imgui_internal.h /^ int WindowsActiveCount;$/;" m struct:ImGuiContext typeref:typename:int
  6639. WindowsById third_party/imgui/imgui_internal.h /^ ImGuiStorage WindowsById;$/;" m struct:ImGuiContext typeref:typename:ImGuiStorage
  6640. WindowsFocusOrder third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindow*> WindowsFocusOrder; \/\/ Windows, sorted in focus or/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiWindow * >
  6641. WindowsSortBuffer third_party/imgui/imgui_internal.h /^ ImVector<ImGuiWindow*> WindowsSortBuffer;$/;" m struct:ImGuiContext typeref:typename:ImVector<ImGuiWindow * >
  6642. WndProc third_party/imgui/examples/example_win32_directx10/main.cpp /^LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)$/;" f typeref:typename:LRESULT WINAPI
  6643. WndProc third_party/imgui/examples/example_win32_directx11/main.cpp /^LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)$/;" f typeref:typename:LRESULT WINAPI
  6644. WndProc third_party/imgui/examples/example_win32_directx12/main.cpp /^LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)$/;" f typeref:typename:LRESULT WINAPI
  6645. WndProc third_party/imgui/examples/example_win32_directx9/main.cpp /^LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)$/;" f typeref:typename:LRESULT WINAPI
  6646. WorkRect third_party/imgui/imgui_internal.h /^ ImRect WorkRect; \/\/ Cover the whole scrolling r/;" m struct:ImGuiWindow typeref:typename:ImRect
  6647. World libswan/include/swan/World.h /^class World {$/;" c namespace:Swan
  6648. World libswan/src/World.cc /^World::World(Game *game, unsigned long rand_seed):$/;" f class:Swan::World
  6649. WorldGen libswan/include/swan/WorldGen.h /^class WorldGen {$/;" c namespace:Swan
  6650. WorldPlane libswan/include/swan/WorldPlane.h /^ WorldPlane(ID id, World *world, std::shared_ptr<WorldGen> gen):$/;" f class:Swan::WorldPlane
  6651. WorldPlane libswan/include/swan/WorldPlane.h /^class WorldPlane: NonCopyable {$/;" c namespace:Swan
  6652. WriteAccessed third_party/imgui/imgui_internal.h /^ bool WriteAccessed; \/\/ Set to true when any widget/;" m struct:ImGuiWindow typeref:typename:bool
  6653. WriteAllFn third_party/imgui/imgui_internal.h /^ void (*WriteAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer*/;" m struct:ImGuiSettingsHandler typeref:typename:void (*)(ImGuiContext * ctx,ImGuiSettingsHandler * handler,ImGuiTextBuffer * out_buf)
  6654. X third_party/imgui/imgui.h /^ unsigned short X, Y; \/\/ Output \/\/ Packed position in Atlas$/;" m struct:ImFontAtlasCustomRect typeref:typename:unsigned short
  6655. X third_party/imgui_sdl/imgui_sdl.cpp /^ int X, Y, Width, Height;$/;" m struct:__anonaaadc0580110::Device::ClipRect typeref:typename:int file:
  6656. X0 third_party/imgui/imgui.h /^ float X0, Y0, X1, Y1; \/\/ Glyph corners$/;" m struct:ImFontGlyph typeref:typename:float
  6657. X1 third_party/imgui/imgui.h /^ float X0, Y0, X1, Y1; \/\/ Glyph corners$/;" m struct:ImFontGlyph typeref:typename:float
  6658. X1 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6659. X2 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6660. X3 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6661. Y third_party/imgui/imgui.h /^ unsigned short X, Y; \/\/ Output \/\/ Packed position in Atlas$/;" m struct:ImFontAtlasCustomRect typeref:typename:unsigned short
  6662. Y third_party/imgui_sdl/imgui_sdl.cpp /^ int X, Y, Width, Height;$/;" m struct:__anonaaadc0580110::Device::ClipRect typeref:typename:int file:
  6663. Y0 third_party/imgui/imgui.h /^ float X0, Y0, X1, Y1; \/\/ Glyph corners$/;" m struct:ImFontGlyph typeref:typename:float
  6664. Y1 third_party/imgui/imgui.h /^ float X0, Y0, X1, Y1; \/\/ Glyph corners$/;" m struct:ImFontGlyph typeref:typename:float
  6665. Y1 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6666. Y2 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6667. Y3 third_party/imgui_sdl/imgui_sdl.cpp /^ int X1, X2, X3, Y1, Y2, Y3;$/;" m struct:__anonaaadc0580110::FixedPointTriangleRenderInfo typeref:typename:int file:
  6668. ZERO libswan/include/swan/Vector2.h /^ static const Vector2<T> ZERO;$/;" m struct:Swan::Vector2 typeref:typename:const Vector2<T>
  6669. ZERO libswan/include/swan/Vector2.h /^const Vector2<T> Vector2<T>::ZERO = Vector2<T>(0, 0);$/;" m class:Swan::Vector2<T> typeref:typename:const Vector2<T>
  6670. ^^ include paths ^^ source files ^^ output exe ^^ output dir ^^ libraries third_party/imgui/examples/example_sdl_opengl3/README.md /^# ^^ include paths ^^ source files /;" c
  6671. ^^ include paths ^^ source files ^^ output exe ^^ output dir ^^ libraries third_party/imgui/examples/example_sdl_opengl2/README.md /^# ^^ include paths ^^ source files /;" c
  6672. _CRT_SECURE_NO_WARNINGS third_party/imgui/examples/imgui_impl_opengl3.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6673. _CRT_SECURE_NO_WARNINGS third_party/imgui/imgui.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6674. _CRT_SECURE_NO_WARNINGS third_party/imgui/imgui_demo.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6675. _CRT_SECURE_NO_WARNINGS third_party/imgui/imgui_draw.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6676. _CRT_SECURE_NO_WARNINGS third_party/imgui/imgui_widgets.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6677. _CRT_SECURE_NO_WARNINGS third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define _CRT_SECURE_NO_WARNINGS$/;" d file:
  6678. _Channels third_party/imgui/imgui.h /^ ImVector<ImDrawChannel> _Channels; \/\/ Draw channels (not resized down so _Count migh/;" m struct:ImDrawListSplitter typeref:typename:ImVector<ImDrawChannel>
  6679. _ClipRectStack third_party/imgui/imgui.h /^ ImVector<ImVec4> _ClipRectStack; \/\/ [Internal]$/;" m struct:ImDrawList typeref:typename:ImVector<ImVec4>
  6680. _CmdBuffer third_party/imgui/imgui.h /^ ImVector<ImDrawCmd> _CmdBuffer;$/;" m struct:ImDrawChannel typeref:typename:ImVector<ImDrawCmd>
  6681. _Count third_party/imgui/imgui.h /^ int _Count; \/\/ Number of active channels (1+)$/;" m struct:ImDrawListSplitter typeref:typename:int
  6682. _Current third_party/imgui/imgui.h /^ int _Current; \/\/ Current channel number (0)$/;" m struct:ImDrawListSplitter typeref:typename:int
  6683. _Data third_party/imgui/imgui.h /^ const ImDrawListSharedData* _Data; \/\/ Pointer to shared draw data (you can use Im/;" m struct:ImDrawList typeref:typename:const ImDrawListSharedData *
  6684. _IdxBuffer third_party/imgui/imgui.h /^ ImVector<ImDrawIdx> _IdxBuffer;$/;" m struct:ImDrawChannel typeref:typename:ImVector<ImDrawIdx>
  6685. _IdxWritePtr third_party/imgui/imgui.h /^ ImDrawIdx* _IdxWritePtr; \/\/ [Internal] point within IdxBuffer.Data afte/;" m struct:ImDrawList typeref:typename:ImDrawIdx *
  6686. _OwnerName third_party/imgui/imgui.h /^ const char* _OwnerName; \/\/ Pointer to owner window's name for debuggin/;" m struct:ImDrawList typeref:typename:const char *
  6687. _Path third_party/imgui/imgui.h /^ ImVector<ImVec2> _Path; \/\/ [Internal] current path building$/;" m struct:ImDrawList typeref:typename:ImVector<ImVec2>
  6688. _Splitter third_party/imgui/imgui.h /^ ImDrawListSplitter _Splitter; \/\/ [Internal] for channels api$/;" m struct:ImDrawList typeref:typename:ImDrawListSplitter
  6689. _TextureIdStack third_party/imgui/imgui.h /^ ImVector<ImTextureID> _TextureIdStack; \/\/ [Internal]$/;" m struct:ImDrawList typeref:typename:ImVector<ImTextureID>
  6690. _VtxCurrentIdx third_party/imgui/imgui.h /^ unsigned int _VtxCurrentIdx; \/\/ [Internal] Generally == VtxBuffer.Size unle/;" m struct:ImDrawList typeref:typename:unsigned int
  6691. _VtxCurrentOffset third_party/imgui/imgui.h /^ unsigned int _VtxCurrentOffset; \/\/ [Internal] Always 0 unless 'Flags & ImDrawL/;" m struct:ImDrawList typeref:typename:unsigned int
  6692. _VtxWritePtr third_party/imgui/imgui.h /^ ImDrawVert* _VtxWritePtr; \/\/ [Internal] point within VtxBuffer.Data afte/;" m struct:ImDrawList typeref:typename:ImDrawVert *
  6693. _WIN32 third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ #define _WIN32$/;" d
  6694. __STB_INCLUDE_STB_TRUETYPE_H__ third_party/imgui/imstb_truetype.h /^#define __STB_INCLUDE_STB_TRUETYPE_H__$/;" d
  6695. __anon124b53000108 third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef struct { int ignored; } * uSynergyCookie;$/;" s
  6696. __anon124b53000208 third_party/imgui/examples/libs/usynergy/uSynergy.h /^{$/;" s
  6697. __anon127293d30102 libswan/include/swan/util.h /^ auto l = [=]() mutable -> std::optional<RetT> {$/;" f function:Swan::map typeref:typename:std::optional<RetT> file:
  6698. __anon127293d30202 libswan/include/swan/util.h /^ auto l = [=]() mutable -> std::optional<RetT> {$/;" f function:Swan::filter typeref:typename:std::optional<RetT> file:
  6699. __anon127293d30302 libswan/include/swan/util.h /^ auto l = [=]() mutable -> std::optional<RetT> {$/;" f function:Swan::mapFilter typeref:typename:std::optional<RetT> file:
  6700. __anon1b2b84690103 third_party/imgui/imstb_rectpack.h /^{$/;" g
  6701. __anon1b2b84690203 third_party/imgui/imstb_rectpack.h /^{$/;" g
  6702. __anon1b2b84690308 third_party/imgui/imstb_rectpack.h /^{$/;" s
  6703. __anon1e7c828f0102 libswan/src/Mod.cc /^ return map(begin(images_), end(images_), [=](const ImageResource::Builder &builder) {$/;" f function:Swan::Mod::buildImages file:
  6704. __anon1e7c828f0202 libswan/src/Mod.cc /^ return map(begin(tiles_), end(tiles_), [&](const Tile::Builder &builder) {$/;" f function:Swan::Mod::buildTiles file:
  6705. __anon1e7c828f0302 libswan/src/Mod.cc /^ return map(begin(items_), end(items_), [&](const Item::Builder &builder) {$/;" f function:Swan::Mod::buildItems file:
  6706. __anon1e7c828f0402 libswan/src/Mod.cc /^ return map(begin(worldgens_), end(worldgens_), [](const std::unique_ptr<WorldGen::Factory> &gen/;" f function:Swan::Mod::getWorldGens file:
  6707. __anon1e7c828f0502 libswan/src/Mod.cc /^ return map(begin(entities_), end(entities_), [](const std::unique_ptr<Entity::Factory> &ent){$/;" f function:Swan::Mod::getEntities file:
  6708. __anon217a55d5010a third_party/imgui/imgui_internal.h /^ union { int BackupInt[2]; float BackupFloat[2]; };$/;" u struct:ImGuiStyleMod
  6709. __anon31932c6d0102 libswan/include/swan/WorldPlane.h /^ return mapFilter(entities_.begin(), entities_.end(), [](std::unique_ptr<Entity> &ent) -> std::/;" f function:Swan::WorldPlane::getEntsOfType typeref:typename:std::optional<T * > file:
  6710. __anon3297c23e0108 third_party/imgui/imstb_truetype.h /^{$/;" s
  6711. __anon3297c23e0208 third_party/imgui/imstb_truetype.h /^{$/;" s
  6712. __anon3297c23e0308 third_party/imgui/imstb_truetype.h /^{$/;" s
  6713. __anon3297c23e0408 third_party/imgui/imstb_truetype.h /^{$/;" s
  6714. __anon3297c23e0508 third_party/imgui/imstb_truetype.h /^{$/;" s
  6715. __anon3297c23e0603 third_party/imgui/imstb_truetype.h /^ enum {$/;" g
  6716. __anon3297c23e0708 third_party/imgui/imstb_truetype.h /^ {$/;" s
  6717. __anon3297c23e0808 third_party/imgui/imstb_truetype.h /^{$/;" s
  6718. __anon3297c23e0903 third_party/imgui/imstb_truetype.h /^enum { \/\/ platformID$/;" g
  6719. __anon3297c23e0a03 third_party/imgui/imstb_truetype.h /^enum { \/\/ encodingID for STBTT_PLATFORM_ID_UNICODE$/;" g
  6720. __anon3297c23e0b03 third_party/imgui/imstb_truetype.h /^enum { \/\/ encodingID for STBTT_PLATFORM_ID_MICROSOFT$/;" g
  6721. __anon3297c23e0c03 third_party/imgui/imstb_truetype.h /^enum { \/\/ encodingID for STBTT_PLATFORM_ID_MAC; same as Script Manager codes$/;" g
  6722. __anon3297c23e0d03 third_party/imgui/imstb_truetype.h /^enum { \/\/ languageID for STBTT_PLATFORM_ID_MICROSOFT; same as LCID...$/;" g
  6723. __anon3297c23e0e03 third_party/imgui/imstb_truetype.h /^enum { \/\/ languageID for STBTT_PLATFORM_ID_MAC$/;" g
  6724. __anon3297c23e0f08 third_party/imgui/imstb_truetype.h /^{$/;" s
  6725. __anon3297c23e1008 third_party/imgui/imstb_truetype.h /^{$/;" s
  6726. __anon3297c23e1108 third_party/imgui/imstb_truetype.h /^{$/;" s
  6727. __anon3297c23e1208 third_party/imgui/imstb_truetype.h /^{$/;" s
  6728. __anon409f5b270102 libswan/test/util.t.cc /^ auto mapping = Swan::map(ints, [](int i) { return i \/ 10; });$/;" f file:
  6729. __anon409f5b270202 libswan/test/util.t.cc /^ auto filter = Swan::filter(ints, [](int i) { return i == 200 || i == 400; });$/;" f file:
  6730. __anon409f5b270302 libswan/test/util.t.cc /^ auto mapfilt = Swan::mapFilter(floats, [](float f) -> std::optional<int> {$/;" f typeref:typename:std::optional<int> file:
  6731. __anon4b9ae8d40103 third_party/imgui/imgui.cpp /^ enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, /;" g function:ImGui::ShowMetricsWindow file:
  6732. __anon6b3818470108 third_party/imgui/imstb_textedit.h /^{$/;" s
  6733. __anon6b3818470208 third_party/imgui/imstb_textedit.h /^{$/;" s
  6734. __anon6b3818470308 third_party/imgui/imstb_textedit.h /^{$/;" s
  6735. __anon6b3818470408 third_party/imgui/imstb_textedit.h /^{$/;" s
  6736. __anon6b3818470508 third_party/imgui/imstb_textedit.h /^{$/;" s
  6737. __anon7c6da8cd0102 libswan/test/lib/test.cc /^ std::sort(begin(cases()), end(cases()), [](TestCase &a, TestCase &b) {$/;" f function:main file:
  6738. __anon90a1ff870102 libswan/src/WorldPlane.cc /^ -> std::optional<Entity *> {$/;" f function:Swan::WorldPlane::getEntsInArea typeref:typename:std::optional<Entity * > file:
  6739. __anon90a1ff870202 libswan/src/WorldPlane.cc /^ std::erase_if(active_chunks_, [](Chunk *chunk) { return !chunk->isActive(); });$/;" f function:Swan::WorldPlane::tick file:
  6740. __anon9f73ccf90102 third_party/imgui/imgui.h /^ float operator[] (size_t idx) const { IM_ASSERT(idx <= 1); return (&x)[idx]; } \/\/ We v/;" f struct:ImVec2 file:
  6741. __anon9f73ccf90202 third_party/imgui/imgui.h /^ inline const T& operator[](int i) const { IM_ASSERT(i < Size); return Data[i/;" f struct:ImVector file:
  6742. __anon9f73ccf9030a third_party/imgui/imgui.h /^ union { int val_i; float val_f; void* val_p; };$/;" u struct:ImGuiStorage::ImGuiStoragePair
  6743. __anona804d60b0108 third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static struct {$/;" s file:
  6744. __anonaaadc0580110 third_party/imgui_sdl/imgui_sdl.cpp /^{$/;" n file:
  6745. __anonaaadc0580202 third_party/imgui_sdl/imgui_sdl.cpp /^ DrawTriangleWithColorFunction(renderInfo, [&](float x, float y) {$/;" f function:__anonaaadc0580110::DrawTriangle file:
  6746. __anonaaadc0580302 third_party/imgui_sdl/imgui_sdl.cpp /^ DrawTriangleWithColorFunction(renderInfo, [&color](float, float) { return color; }, cached.get/;" f function:__anonaaadc0580110::DrawUniformColorTriangle file:
  6747. __anond3bafd850110 third_party/imgui/misc/freetype/imgui_freetype.cpp /^{$/;" n file:
  6748. __gl3w_h_ third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define __gl3w_h_$/;" d
  6749. __gl_h_ third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define __gl_h_$/;" d
  6750. __glcorearb_h_ third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^#define __glcorearb_h_$/;" d
  6751. __glsl_shader_frag_spv third_party/imgui/examples/imgui_impl_vulkan.cpp /^static uint32_t __glsl_shader_frag_spv[] =$/;" v typeref:typename:uint32_t[] file:
  6752. __glsl_shader_vert_spv third_party/imgui/examples/imgui_impl_vulkan.cpp /^static uint32_t __glsl_shader_vert_spv[] =$/;" v typeref:typename:uint32_t[] file:
  6753. _glfw3_h_ third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^#define _glfw3_h_$/;" d
  6754. _glfw3_native_h_ third_party/imgui/examples/libs/glfw/include/GLFW/glfw3native.h /^#define _glfw3_native_h_$/;" d
  6755. _grow_capacity third_party/imgui/imgui.h /^ inline int _grow_capacity(int sz) const { int new_capacity = Capacity ? (Cap/;" f struct:ImVector typeref:typename:int
  6756. _renderPipelineStateForFramebufferDescriptor:device: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  6757. _windowResizeEastWestCursor third_party/imgui/examples/imgui_impl_osx.mm /^+ (id)_windowResizeEastWestCursor;$/;" c interface:NSCursor
  6758. _windowResizeNorthEastSouthWestCursor third_party/imgui/examples/imgui_impl_osx.mm /^+ (id)_windowResizeNorthEastSouthWestCursor;$/;" c interface:NSCursor
  6759. _windowResizeNorthSouthCursor third_party/imgui/examples/imgui_impl_osx.mm /^+ (id)_windowResizeNorthSouthCursor;$/;" c interface:NSCursor
  6760. _windowResizeNorthWestSouthEastCursor third_party/imgui/examples/imgui_impl_osx.mm /^+ (id)_windowResizeNorthWestSouthEastCursor;$/;" c interface:NSCursor
  6761. acceptsFirstResponder third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  6762. active_chunks_ libswan/include/swan/WorldPlane.h /^ std::set<Chunk *> active_chunks_;$/;" m class:Swan::WorldPlane typeref:typename:std::set<Chunk * >
  6763. active_head third_party/imgui/imstb_rectpack.h /^ stbrp_node *active_head;$/;" m struct:stbrp_context typeref:typename:stbrp_node *
  6764. addImage libswan/include/swan/Resource.h /^ void addImage(std::unique_ptr<ImageResource> img) { images_[img->name_] = std::move(img); }$/;" f class:Swan::ResourceManager typeref:typename:void
  6765. addMod libswan/src/World.cc /^void World::addMod(std::unique_ptr<Mod> mod) {$/;" f class:Swan::World typeref:typename:void
  6766. addPlane libswan/include/swan/World.h /^ WorldPlane &addPlane() { return addPlane(default_world_gen_); }$/;" f class:Swan::World typeref:typename:WorldPlane &
  6767. addPlane libswan/src/World.cc /^WorldPlane &World::addPlane(const std::string &gen) {$/;" f class:Swan::World typeref:typename:WorldPlane &
  6768. addTestCase libswan/test/lib/test.cc /^void addTestCase(TestSpec *testcase) {$/;" f namespace:testlib typeref:typename:void
  6769. algorithm assets-src/music/happy-1.json /^ "algorithm": "(1 2 3)←4",$/;" s object:channels.2.instruments.0
  6770. algorithm assets-src/music/happy-1.json /^ "algorithm": "1←(2 3 4)",$/;" s object:channels.1.instruments.0
  6771. align third_party/imgui/imstb_rectpack.h /^ int align;$/;" m struct:stbrp_context typeref:typename:int
  6772. all third_party/imgui/examples/example_emscripten/Makefile /^all: $(EXE)$/;" t
  6773. all third_party/imgui/examples/example_glfw_metal/Makefile /^all: $(EXE)$/;" t
  6774. all third_party/imgui/examples/example_glfw_opengl2/Makefile /^all: $(EXE)$/;" t
  6775. all third_party/imgui/examples/example_glfw_opengl3/Makefile /^all: $(EXE)$/;" t
  6776. all third_party/imgui/examples/example_glut_opengl2/Makefile /^all: $(EXE)$/;" t
  6777. all third_party/imgui/examples/example_null/Makefile /^all: $(EXE)$/;" t
  6778. all third_party/imgui/examples/example_sdl_opengl2/Makefile /^all: $(EXE)$/;" t
  6779. all third_party/imgui/examples/example_sdl_opengl3/Makefile /^all: $(EXE)$/;" t
  6780. alloca third_party/imgui/imgui_draw.cpp /^#define alloca /;" d file:
  6781. alpha_ libswan/include/swan/gfxutil.h /^ uint8_t alpha_;$/;" m class:Swan::TexAlphaMod typeref:typename:uint8_t
  6782. amplitude assets-src/music/happy-1.json /^ "amplitude": 0,$/;" n object:channels.1.instruments.0.operators.3
  6783. amplitude assets-src/music/happy-1.json /^ "amplitude": 11,$/;" n object:channels.1.instruments.0.operators.1
  6784. amplitude assets-src/music/happy-1.json /^ "amplitude": 12,$/;" n object:channels.1.instruments.0.operators.2
  6785. amplitude assets-src/music/happy-1.json /^ "amplitude": 13,$/;" n object:channels.1.instruments.0.operators.0
  6786. amplitude assets-src/music/happy-1.json /^ "amplitude": 5,$/;" n object:channels.2.instruments.0.operators.3
  6787. amplitude assets-src/music/happy-1.json /^ "amplitude": 9,$/;" n object:channels.2.instruments.0.operators.0
  6788. amplitude assets-src/music/happy-1.json /^ "amplitude": 9,$/;" n object:channels.2.instruments.0.operators.1
  6789. amplitude assets-src/music/happy-1.json /^ "amplitude": 9,$/;" n object:channels.2.instruments.0.operators.2
  6790. angle libswan/include/swan/Win.h /^ double angle = 0;$/;" m struct:Swan::Win::ShowTextureArgs typeref:typename:double
  6791. animationTimer third_party/imgui/examples/example_apple_opengl2/main.mm /^ NSTimer* animationTimer;$/;" E interface:ImGuiExampleView
  6792. animationTimerFired: third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  6793. anims_ core.mod/src/entities/EntPlayer.h /^ std::array<Swan::Animation, (int)State::COUNT> anims_;$/;" m class:EntPlayer typeref:typename:std::array<Swan::Animation,(int)State::COUNT>
  6794. append third_party/imgui/imgui.cpp /^void ImGuiTextBuffer::append(const char* str, const char* str_end)$/;" f class:ImGuiTextBuffer typeref:typename:void
  6795. appendf third_party/imgui/imgui.cpp /^void ImGuiTextBuffer::appendf(const char* fmt, ...)$/;" f class:ImGuiTextBuffer typeref:typename:void
  6796. appendfv third_party/imgui/imgui.cpp /^void ImGuiTextBuffer::appendfv(const char* fmt, va_list args)$/;" f class:ImGuiTextBuffer typeref:typename:void
  6797. applicationDidFinishLaunching: third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleAppDelegate
  6798. applicationShouldTerminateAfterLastWindowClosed: third_party/imgui/examples/example_apple_metal/Shared/AppDelegate.m /^- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender {$/;" m implementation:AppDelegate
  6799. applicationShouldTerminateAfterLastWindowClosed: third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleAppDelegate
  6800. array_of_unicode_codepoints third_party/imgui/imstb_truetype.h /^ int *array_of_unicode_codepoints; \/\/ if non-zero, then this is an array of unicode co/;" m struct:__anon3297c23e0508 typeref:typename:int *
  6801. assets CMakeLists.txt /^set(assets$/;" v
  6802. assets core.mod/CMakeLists.txt /^set(assets$/;" v
  6803. b third_party/PerlinNoise/Test_PerlinNoise.cpp /^ double b = 0.0;$/;" m struct:RGB typeref:typename:double file:
  6804. b third_party/imgui/imgui.h /^ const char* b;$/;" m struct:ImGuiTextFilter::ImGuiTextRange typeref:typename:const char *
  6805. b_ libswan/include/swan/gfxutil.h /^ uint8_t r_, g_, b_;$/;" m class:Swan::TexColorMod typeref:typename:uint8_t
  6806. back third_party/imgui/imgui.h /^ inline T& back() { IM_ASSERT(Size > 0); return Data[S/;" f struct:ImVector typeref:typename:T &
  6807. back third_party/imgui/imgui.h /^ inline const T& back() const { IM_ASSERT(Size > 0); return Data[S/;" f struct:ImVector typeref:typename:const T &
  6808. baseline_y_delta third_party/imgui/imstb_textedit.h /^ float baseline_y_delta; \/\/ position of baseline relative to previous row's baseline$/;" m struct:__anon6b3818470408 typeref:typename:float
  6809. beatsPerBar assets-src/music/happy-1.json /^ "beatsPerBar": 8,$/;" n
  6810. beatsPerMinute assets-src/music/happy-1.json /^ "beatsPerMinute": 150,$/;" n
  6811. becomeFirstResponder third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  6812. begin third_party/imgui/imgui.h /^ const char* begin() const { return Buf.Data ? &Buf.front() : EmptyString; /;" f struct:ImGuiTextBuffer typeref:typename:const char *
  6813. begin third_party/imgui/imgui.h /^ inline T* begin() { return Data; }$/;" f struct:ImVector typeref:typename:T *
  6814. begin third_party/imgui/imgui.h /^ inline const T* begin() const { return Data; }$/;" f struct:ImVector typeref:typename:const T *
  6815. bfOffBits third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t bfOffBits;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6816. bfReserved1 third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint16_t bfReserved1;$/;" m struct:BMPHeader typeref:typename:std::uint16_t file:
  6817. bfReserved2 third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint16_t bfReserved2;$/;" m struct:BMPHeader typeref:typename:std::uint16_t file:
  6818. bfSize third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t bfSize;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6819. bfType third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint16_t bfType;$/;" m struct:BMPHeader typeref:typename:std::uint16_t file:
  6820. biBitCount third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint16_t biBitCount;$/;" m struct:BMPHeader typeref:typename:std::uint16_t file:
  6821. biClrImportant third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t biClrImportant;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6822. biClrUsed third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t biClrUsed;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6823. biCompression third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t biCompression;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6824. biHeight third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t biHeight;$/;" m struct:BMPHeader typeref:typename:std::int32_t file:
  6825. biPlanes third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint16_t biPlanes;$/;" m struct:BMPHeader typeref:typename:std::uint16_t file:
  6826. biSize third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t biSize;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6827. biSizeImage third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::uint32_t biSizeImage;$/;" m struct:BMPHeader typeref:typename:std::uint32_t file:
  6828. biWidth third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t biWidth;$/;" m struct:BMPHeader typeref:typename:std::int32_t file:
  6829. biXPelsPerMeter third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t biXPelsPerMeter;$/;" m struct:BMPHeader typeref:typename:std::int32_t file:
  6830. biYPelsPerMeter third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t biYPelsPerMeter;$/;" m struct:BMPHeader typeref:typename:std::int32_t file:
  6831. binary_to_compressed_c third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^bool binary_to_compressed_c(const char* filename, const char* symbol, bool use_base85_encoding, /;" f typeref:typename:bool
  6832. blit libswan/include/swan/gfxutil.h /^ int blit(SDL_Rect *destrect, SDL_Surface *srcsurf, SDL_Rect *srcrect = nullptr) {$/;" f class:Swan::TexLock typeref:typename:int
  6833. blue third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ unsigned short* blue;$/;" m struct:GLFWgammaramp typeref:typename:unsigned short *
  6834. blueBits third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int blueBits;$/;" m struct:GLFWvidmode typeref:typename:int
  6835. body_ libswan/include/swan/Entity.h /^ BodyTrait::PhysicsBody body_;$/;" m class:Swan::PhysicsEntity typeref:typename:BodyTrait::PhysicsBody
  6836. bottom libswan/include/swan/traits/BodyTrait.h /^ float bottom() { return pos.y + size.y; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  6837. bottomLeft libswan/include/swan/traits/BodyTrait.h /^ Vec2 bottomLeft() { return { left(), bottom() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  6838. bottomMid libswan/include/swan/traits/BodyTrait.h /^ Vec2 bottomMid() { return { midX(), bottom() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  6839. bottomRight libswan/include/swan/traits/BodyTrait.h /^ Vec2 bottomRight() { return { right(), bottom() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  6840. bottom_y third_party/imgui/imstb_truetype.h /^ int x,y,bottom_y;$/;" m struct:__anon3297c23e1108 typeref:typename:int
  6841. bounciness_ libswan/include/swan/traits/BodyTrait.h /^ float bounciness_ = 0;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:float
  6842. bounds third_party/imgui/imstb_truetype.h /^ int bounds;$/;" m struct:__anon3297c23e0f08 typeref:typename:int
  6843. breakBlock libswan/src/WorldPlane.cc /^void WorldPlane::breakBlock(TilePos pos) {$/;" f class:Swan::WorldPlane typeref:typename:void
  6844. buffer third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong) id<MTLBuffer> buffer;$/;" p interface:MetalBuffer
  6845. bufferCache third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong) NSMutableArray<MetalBuffer *> *bufferCache;$/;" p interface:MetalContext
  6846. buildImages libswan/src/Mod.cc /^Iter<std::unique_ptr<ImageResource>> Mod::buildImages(SDL_Renderer *renderer) {$/;" f class:Swan::Mod typeref:typename:Iter<std::unique_ptr<ImageResource>>
  6847. buildItems libswan/src/Mod.cc /^Iter<std::unique_ptr<Item>> Mod::buildItems(const ResourceManager &resources) {$/;" f class:Swan::Mod typeref:typename:Iter<std::unique_ptr<Item>>
  6848. buildTiles libswan/src/Mod.cc /^Iter<std::unique_ptr<Tile>> Mod::buildTiles(const ResourceManager &resources) {$/;" f class:Swan::Mod typeref:typename:Iter<std::unique_ptr<Tile>>
  6849. bundle third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^CFBundleRef bundle;$/;" v typeref:typename:CFBundleRef
  6850. bundleURL third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^CFURLRef bundleURL;$/;" v typeref:typename:CFURLRef
  6851. c_str third_party/imgui/imgui.h /^ const char* c_str() const { return Buf.Data ? Buf.Data : EmptyString; }$/;" f struct:ImGuiTextBuffer typeref:typename:const char *
  6852. callBegin libswan/include/swan/util.h /^auto callBegin(T &v) {$/;" f namespace:Swan typeref:typename:auto
  6853. callEnd libswan/include/swan/util.h /^auto callEnd(T &v) {$/;" f namespace:Swan typeref:typename:auto
  6854. cam_ libswan/include/swan/Win.h /^ Vec2 cam_;$/;" m class:Swan::Win typeref:typename:Vec2
  6855. capacity third_party/imgui/imgui.h /^ inline int capacity() const { return Capacity; }$/;" f struct:ImVector typeref:typename:int
  6856. cases libswan/test/lib/test.cc /^ std::vector<TestCase> cases;$/;" m struct:testlib::TestFile typeref:typename:std::vector<TestCase> file:
  6857. cases libswan/test/lib/test.cc /^static auto &cases() {$/;" f namespace:testlib typeref:typename:auto & file:
  6858. center libswan/include/swan/Win.h /^ std::optional<SDL_Point> center = std::nullopt;$/;" m struct:Swan::Win::ShowTextureArgs typeref:typename:std::optional<SDL_Point>
  6859. center libswan/include/swan/traits/BodyTrait.h /^ Vec2 center() { return { midX(), midY() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  6860. cff third_party/imgui/imstb_truetype.h /^ stbtt__buf cff; \/\/ cff font data$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  6861. channels assets-src/music/happy-1.json /^ "channels": [$/;" a
  6862. char_storage third_party/imgui/imstb_textedit.h /^ int char_storage;$/;" m struct:__anon6b3818470108 typeref:typename:int
  6863. chardata_for_range third_party/imgui/imstb_truetype.h /^ stbtt_packedchar *chardata_for_range; \/\/ output$/;" m struct:__anon3297c23e0508 typeref:typename:stbtt_packedchar *
  6864. charstrings third_party/imgui/imstb_truetype.h /^ stbtt__buf charstrings; \/\/ the charstring index$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  6865. check CMakeLists.txt /^add_custom_target(check DEPENDS check_libswan)$/;" t
  6866. check_libswan libswan/CMakeLists.txt /^add_custom_target(check_libswan$/;" t
  6867. check_vk_result third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void check_vk_result(VkResult err)$/;" f typeref:typename:void file:
  6868. check_vk_result third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static void check_vk_result(VkResult err)$/;" f typeref:typename:void file:
  6869. check_vk_result third_party/imgui/examples/imgui_impl_vulkan.cpp /^static void check_vk_result(VkResult err)$/;" f typeref:typename:void file:
  6870. chord assets-src/music/happy-1.json /^ "chord": "harmony",$/;" s object:channels.0.instruments.0
  6871. chord assets-src/music/happy-1.json /^ "chord": "harmony",$/;" s object:channels.1.instruments.0
  6872. chord assets-src/music/happy-1.json /^ "chord": "harmony",$/;" s object:channels.2.instruments.0
  6873. chord assets-src/music/happy-1.json /^ "chord": "strum",$/;" s object:channels.3.instruments.0
  6874. chunkLine libswan/src/World.cc /^static void chunkLine(int l, WorldPlane &plane, ChunkPos &abspos, const Vec2i &dir) {$/;" f namespace:Swan typeref:typename:void file:
  6875. chunkPos libswan/src/WorldPlane.cc /^static ChunkPos chunkPos(TilePos pos) {$/;" f namespace:Swan typeref:typename:ChunkPos file:
  6876. chunk_init_list_ libswan/include/swan/WorldPlane.h /^ std::deque<Chunk *> chunk_init_list_;$/;" m class:Swan::WorldPlane typeref:typename:std::deque<Chunk * >
  6877. chunk_renderer_ libswan/include/swan/World.h /^ ChunkRenderer chunk_renderer_;$/;" m class:Swan::World typeref:typename:ChunkRenderer
  6878. chunks_ libswan/include/swan/WorldPlane.h /^ std::map<std::pair<int, int>, Chunk> chunks_;$/;" m class:Swan::WorldPlane typeref:typename:std::map<std::pair<int,int>,Chunk>
  6879. clean third_party/imgui/examples/example_emscripten/Makefile /^clean:$/;" t
  6880. clean third_party/imgui/examples/example_glfw_metal/Makefile /^clean:$/;" t
  6881. clean third_party/imgui/examples/example_glfw_opengl2/Makefile /^clean:$/;" t
  6882. clean third_party/imgui/examples/example_glfw_opengl3/Makefile /^clean:$/;" t
  6883. clean third_party/imgui/examples/example_glut_opengl2/Makefile /^clean:$/;" t
  6884. clean third_party/imgui/examples/example_null/Makefile /^clean:$/;" t
  6885. clean third_party/imgui/examples/example_sdl_opengl2/Makefile /^clean:$/;" t
  6886. clean third_party/imgui/examples/example_sdl_opengl3/Makefile /^clean:$/;" t
  6887. clear third_party/imgui/imgui.h /^ void clear() { Buf.clear(); }$/;" f struct:ImGuiTextBuffer typeref:typename:void
  6888. clear_color third_party/imgui/examples/example_glut_opengl2/main.cpp /^static ImVec4 clear_color = ImVec4(0.45f, 0.55f, 0.60f, 1.00f);$/;" v typeref:typename:ImVec4 file:
  6889. close_libgl third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static void close_libgl(void)$/;" f typeref:typename:void file:
  6890. col third_party/imgui/examples/imgui_impl_allegro5.cpp /^ ALLEGRO_COLOR col;$/;" m struct:ImDrawVertAllegro typeref:typename:ALLEGRO_COLOR file:
  6891. col third_party/imgui/examples/imgui_impl_dx9.cpp /^ D3DCOLOR col;$/;" m struct:CUSTOMVERTEX typeref:typename:D3DCOLOR file:
  6892. col third_party/imgui/imgui.h /^ ImU32 col;$/;" m struct:ImDrawVert typeref:typename:ImU32
  6893. collideX libswan/src/traits/BodyTrait.cc /^void PhysicsBody::collideX(WorldPlane &plane) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  6894. collideY libswan/src/traits/BodyTrait.cc /^void PhysicsBody::collideY(WorldPlane &plane) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  6895. color libswan/test/lib/test.cc /^std::string color(const std::string &color, std::string_view str) {$/;" f namespace:testlib typeref:typename:std::string
  6896. color third_party/imgui-plot/include/imgui_plot.h /^ ImU32 color = 0;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:ImU32
  6897. colorPixelFormat third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) MTLPixelFormat colorPixelFormat;$/;" p interface:FramebufferDescriptor
  6898. color_ libswan/include/swan/log.h /^ std::string color_;$/;" m class:Swan::Logger typeref:typename:std::string
  6899. color_desc libswan/test/lib/test.cc /^static const std::string color_desc = "\\033[33m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6900. color_errormsg libswan/test/lib/test.cc /^static const std::string color_errormsg = "\\033[95m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6901. color_fail libswan/test/lib/test.cc /^static const std::string color_fail = "\\033[31m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6902. color_highlight libswan/test/lib/test.cc /^static const std::string color_highlight = "\\033[1m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6903. color_maybe libswan/test/lib/test.cc /^static const std::string color_maybe = "\\033[35m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6904. color_reset libswan/test/lib/test.cc /^static const std::string color_reset = "\\033[0m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6905. color_success libswan/test/lib/test.cc /^static const std::string color_success = "\\033[32m";$/;" v namespace:testlib typeref:typename:const std::string file:
  6906. color_testing libswan/test/lib/test.cc /^static const std::string color_testing = color_highlight;$/;" v namespace:testlib typeref:typename:const std::string file:
  6907. colors third_party/imgui-plot/include/imgui_plot.h /^ const ImU32* colors = nullptr;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:const ImU32 *
  6908. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:109
  6909. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:110
  6910. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:111
  6911. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:112
  6912. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:26
  6913. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:27
  6914. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:28
  6915. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dcore_mod_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party/;" s object:29
  6916. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:1
  6917. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:100
  6918. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:101
  6919. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:102
  6920. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:103
  6921. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:104
  6922. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:105
  6923. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:106
  6924. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:107
  6925. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:2
  6926. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:3
  6927. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:4
  6928. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:5
  6929. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:58
  6930. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:59
  6931. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:6
  6932. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:60
  6933. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:61
  6934. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:62
  6935. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:63
  6936. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:64
  6937. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:65
  6938. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:66
  6939. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:67
  6940. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:68
  6941. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:69
  6942. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:70
  6943. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:71
  6944. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:72
  6945. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:73
  6946. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:74
  6947. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:75
  6948. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:76
  6949. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:77
  6950. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:78
  6951. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:79
  6952. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:80
  6953. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:81
  6954. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:82
  6955. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:83
  6956. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:84
  6957. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:85
  6958. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:86
  6959. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:87
  6960. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:88
  6961. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:89
  6962. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:90
  6963. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:91
  6964. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:92
  6965. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:93
  6966. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:94
  6967. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:95
  6968. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:96
  6969. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:97
  6970. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:98
  6971. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dimgui_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party\/i/;" s object:99
  6972. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:10
  6973. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:11
  6974. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:12
  6975. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:13
  6976. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:14
  6977. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:15
  6978. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:16
  6979. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:17
  6980. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:18
  6981. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:19
  6982. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:20
  6983. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:21
  6984. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:22
  6985. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:23
  6986. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:24
  6987. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:25
  6988. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:34
  6989. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:35
  6990. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:36
  6991. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:39
  6992. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:40
  6993. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:41
  6994. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:42
  6995. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:44
  6996. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:47
  6997. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:48
  6998. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:49
  6999. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:50
  7000. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:51
  7001. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:52
  7002. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:53
  7003. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:54
  7004. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:55
  7005. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:56
  7006. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -Dlibswan_EXPORTS -I\/home\/martin\/cloud\/dev\/swan\/third_party /;" s object:57
  7007. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:0
  7008. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:108
  7009. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:30
  7010. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:31
  7011. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:32
  7012. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:33
  7013. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:37
  7014. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:38
  7015. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:43
  7016. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:45
  7017. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:46
  7018. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:7
  7019. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:8
  7020. command compile_commands.json /^ "command": "\/usr\/bin\/c++ -I\/home\/martin\/cloud\/dev\/swan\/third_party -I\/usr\/include\//;" s object:9
  7021. commandQueue third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^@property (nonatomic, strong) id <MTLCommandQueue> commandQueue;$/;" p interface:Renderer
  7022. common dist/CMakeLists.txt /^set(common$/;" v
  7023. compile_commands CMakeLists.txt /^ add_custom_target(compile_commands ALL$/;" t
  7024. compress libswan/src/Chunk.cc /^void Chunk::compress() {$/;" f class:Swan::Chunk typeref:typename:void
  7025. compressed_size_ libswan/include/swan/Chunk.h /^ ssize_t compressed_size_ = -1; \/\/ -1 if not compressed, a positive number if compressed$/;" m class:Swan::Chunk typeref:typename:ssize_t
  7026. const_iterator third_party/imgui/imgui.h /^ typedef const value_type* const_iterator;$/;" t struct:ImVector typeref:typename:const value_type *
  7027. contains third_party/imgui/imgui.h /^ inline bool contains(const T& v) const { const T* data = Data; const T* da/;" f struct:ImVector typeref:typename:bool
  7028. content_ libswan/include/swan/traits/InventoryTrait.h /^ std::vector<ItemStack> content_;$/;" m class:Swan::InventoryTrait::BasicInventory typeref:typename:std::vector<ItemStack>
  7029. copyWithZone: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:FramebufferDescriptor
  7030. core.mod core.mod/CMakeLists.txt /^add_library(core.mod SHARED$/;" t
  7031. count libswan/include/swan/ItemStack.h /^ int count() { return count_; }$/;" f class:Swan::ItemStack typeref:typename:int
  7032. count libswan/include/swan/PerfCounter.h /^ void count(T val) {$/;" f class:Swan::PerfCounter::Counter typeref:typename:void
  7033. count third_party/imgui-plot/include/imgui_plot.h /^ int count;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:int
  7034. count third_party/imgui-plot/include/imgui_plot.h /^ size_t count = 0;$/;" m struct:ImGui::PlotConfig::VerticalLines typeref:typename:size_t
  7035. countFrameTime libswan/include/swan/PerfCounter.h /^ void countFrameTime(double secs) { frame_time_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7036. countGameDraw libswan/include/swan/PerfCounter.h /^ void countGameDraw(double secs) { game_draw_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7037. countGameTick libswan/include/swan/PerfCounter.h /^ void countGameTick(double secs) { game_tick_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7038. countGameUpdate libswan/include/swan/PerfCounter.h /^ void countGameUpdate(double secs) { game_update_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7039. countGameUpdatesPerFrame libswan/include/swan/PerfCounter.h /^ void countGameUpdatesPerFrame(double count) { game_updates_per_frame_.count(count); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7040. countMemoryUsage libswan/include/swan/PerfCounter.h /^ void countMemoryUsage(double bytes) { memory_usage_.count(bytes); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7041. countRenderPresent libswan/include/swan/PerfCounter.h /^ void countRenderPresent(double secs) { render_present_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7042. countTotalTime libswan/include/swan/PerfCounter.h /^ void countTotalTime(double secs) { total_time_.count(secs); }$/;" f class:Swan::PerfCounter typeref:typename:void
  7043. count_ libswan/include/swan/ItemStack.h /^ int count_;$/;" m class:Swan::ItemStack typeref:typename:int
  7044. create core.mod/src/WGDefault.h /^ WorldGen *create(Swan::World &world) override { return new WGDefault(world); }$/;" f class:WGDefault::Factory typeref:typename:WorldGen *
  7045. create core.mod/src/entities/EntItemStack.h /^ Swan::Entity *create(const Swan::Context &ctx, const Swan::SRF &params) override {$/;" f class:EntItemStack::Factory typeref:typename:Swan::Entity *
  7046. create core.mod/src/entities/EntPlayer.h /^ Swan::Entity *create(const Swan::Context &ctx, const Swan::SRF &params) override {$/;" f class:EntPlayer::Factory typeref:typename:Swan::Entity *
  7047. createDestRect libswan/include/swan/Win.h /^ SDL_Rect createDestRect(Vec2 pos, Vec2 pixsize) {$/;" f class:Swan::Win typeref:typename:SDL_Rect
  7048. createInvalid libswan/src/Item.cc /^std::unique_ptr<Item> Item::createInvalid(Context &ctx) {$/;" f class:Swan::Item typeref:typename:std::unique_ptr<Item>
  7049. createInvalid libswan/src/Resource.cc /^std::unique_ptr<ImageResource> ImageResource::createInvalid(Win &win) {$/;" f class:Swan::ImageResource typeref:typename:std::unique_ptr<ImageResource>
  7050. createInvalid libswan/src/Tile.cc /^std::unique_ptr<Tile> Tile::createInvalid(const ResourceManager &resources) {$/;" f class:Swan::Tile typeref:typename:std::unique_ptr<Tile>
  7051. createWorld libswan/src/Game.cc /^void Game::createWorld(const std::string &worldgen, std::vector<std::unique_ptr<Mod>> &&mods) {$/;" f class:Swan::Game typeref:typename:void
  7052. current_frame third_party/imgui/imgui.h /^ operator bool() const { int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_/;" m struct:ImGuiOnceUponAFrame typeref:typename:int
  7053. current_plane_ libswan/include/swan/World.h /^ WorldPlane::ID current_plane_;$/;" m class:Swan::World typeref:typename:WorldPlane::ID
  7054. cursor third_party/imgui/imstb_textedit.h /^ int cursor;$/;" m struct:__anon6b3818470308 typeref:typename:int
  7055. cursor third_party/imgui/imstb_truetype.h /^ int cursor;$/;" m struct:__anon3297c23e0108 typeref:typename:int
  7056. cursor_at_end_of_line third_party/imgui/imstb_textedit.h /^ unsigned char cursor_at_end_of_line; \/\/ not implemented yet$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  7057. cursor_to_idx third_party/imgui-plot/src/imgui_plot.cpp /^static int cursor_to_idx(const ImVec2& pos, const ImRect& bb, const PlotConfig& conf, float x_mi/;" f namespace:ImGui typeref:typename:int file:
  7058. cx third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  7059. cx1 third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  7060. cy third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  7061. cy1 third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  7062. data third_party/imgui/imstb_truetype.h /^ unsigned char * data; \/\/ pointer to .ttf file$/;" m struct:stbtt_fontinfo typeref:typename:unsigned char *
  7063. data third_party/imgui/imstb_truetype.h /^ unsigned char *data;$/;" m struct:__anon3297c23e0108 typeref:typename:unsigned char *
  7064. data_ libswan/include/swan/Chunk.h /^ std::unique_ptr<uint8_t[]> data_;$/;" m class:Swan::Chunk typeref:typename:std::unique_ptr<uint8_t[]>
  7065. deactivate_timer_ libswan/include/swan/Chunk.h /^ float deactivate_timer_ = DEACTIVATE_INTERVAL;$/;" m class:Swan::Chunk typeref:typename:float
  7066. dealloc third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleAppDelegate
  7067. dealloc third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  7068. dear imgui third_party/imgui/docs/README.md /^dear imgui$/;" c
  7069. debugBox libswan/src/WorldPlane.cc /^void WorldPlane::debugBox(TilePos pos) {$/;" f class:Swan::WorldPlane typeref:typename:void
  7070. debug_boxes_ libswan/include/swan/WorldPlane.h /^ std::vector<TilePos> debug_boxes_;$/;" m class:Swan::WorldPlane typeref:typename:std::vector<TilePos>
  7071. debug_report third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObj/;" f typeref:typename:VKAPI_ATTR VkBool32 VKAPI_CALL file:
  7072. debug_report third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report(VkDebugReportFlagsEXT flags, VkDebugReportObj/;" f typeref:typename:VKAPI_ATTR VkBool32 VKAPI_CALL file:
  7073. decompress libswan/src/Chunk.cc /^void Chunk::decompress() {$/;" f class:Swan::Chunk typeref:typename:void
  7074. default_world_gen_ libswan/include/swan/World.h /^ std::string default_world_gen_;$/;" m class:Swan::World typeref:typename:std::string
  7075. delete_length third_party/imgui/imstb_textedit.h /^ STB_TEXTEDIT_POSITIONTYPE delete_length;$/;" m struct:__anon6b3818470108 typeref:typename:STB_TEXTEDIT_POSITIONTYPE
  7076. depthPixelFormat third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) MTLPixelFormat depthPixelFormat;$/;" p interface:FramebufferDescriptor
  7077. depthStencilState third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong) id<MTLDepthStencilState> depthStencilState;$/;" p interface:MetalContext
  7078. dequeueReusableBufferOfLength:device: third_party/imgui/examples/imgui_impl_metal.mm /^- (MetalBuffer *)dequeueReusableBufferOfLength:(NSUInteger)length device:(id<MTLDevice>)device;$/;" m interface:MetalContext
  7079. dequeueReusableBufferOfLength:device: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  7080. description libswan/test/lib/test.cc /^ std::string_view description;$/;" m struct:testlib::TestCase typeref:typename:std::string_view file:
  7081. description libswan/test/lib/test.h /^ const char *description;$/;" m struct:testlib::TestSpec typeref:typename:const char *
  7082. despawn libswan/include/swan/Entity.h /^ virtual void despawn() {}$/;" f class:Swan::Entity typeref:typename:void
  7083. despawnEntity libswan/src/WorldPlane.cc /^void WorldPlane::despawnEntity(Entity &ent) {$/;" f class:Swan::WorldPlane typeref:typename:void
  7084. despawn_list_ libswan/include/swan/WorldPlane.h /^ std::vector<Entity *> despawn_list_;$/;" m class:Swan::WorldPlane typeref:typename:std::vector<Entity * >
  7085. despawn_timer_ core.mod/src/entities/EntItemStack.h /^ float despawn_timer_ = DESPAWN_TIME;$/;" m class:EntItemStack typeref:typename:float
  7086. device third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^@property (nonatomic, strong) id <MTLDevice> device;$/;" p interface:Renderer
  7087. did_press_buttons_ libswan/include/swan/Game.h /^ std::bitset<SDL_BUTTON_X2> did_press_buttons_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_BUTTON_X2>
  7088. did_press_keys_ libswan/include/swan/Game.h /^ std::bitset<SDL_NUM_SCANCODES> did_press_keys_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_NUM_SCANCODES>
  7089. did_release_buttons_ libswan/include/swan/Game.h /^ std::bitset<SDL_BUTTON_X2> did_release_buttons_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_BUTTON_X2>
  7090. did_release_keys_ libswan/include/swan/Game.h /^ std::bitset<SDL_NUM_SCANCODES> did_release_keys_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_NUM_SCANCODES>
  7091. did_scroll_ libswan/include/swan/Game.h /^ int did_scroll_ = 0;$/;" m class:Swan::Game typeref:typename:int
  7092. direction third_party/imgui/imstb_truetype.h /^ float direction;$/;" m struct:stbtt__active_edge typeref:typename:float
  7093. direction third_party/imgui/imstb_truetype.h /^ int direction;$/;" m struct:stbtt__active_edge typeref:typename:int
  7094. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:0
  7095. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:30
  7096. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:31
  7097. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:32
  7098. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:33
  7099. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:37
  7100. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build",$/;" s object:46
  7101. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:109
  7102. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:110
  7103. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:111
  7104. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:112
  7105. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:26
  7106. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:27
  7107. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:28
  7108. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/core.mod",$/;" s object:29
  7109. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:10
  7110. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:108
  7111. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:11
  7112. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:12
  7113. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:13
  7114. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:14
  7115. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:15
  7116. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:16
  7117. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:17
  7118. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:18
  7119. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:19
  7120. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:20
  7121. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:21
  7122. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:22
  7123. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:23
  7124. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:24
  7125. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:25
  7126. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:34
  7127. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:35
  7128. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:36
  7129. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:38
  7130. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:39
  7131. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:40
  7132. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:41
  7133. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:42
  7134. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:43
  7135. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:44
  7136. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:45
  7137. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:47
  7138. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:48
  7139. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:49
  7140. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:50
  7141. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:51
  7142. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:52
  7143. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:53
  7144. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:54
  7145. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:55
  7146. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:56
  7147. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:57
  7148. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:7
  7149. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:8
  7150. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/libswan",$/;" s object:9
  7151. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:1
  7152. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:100
  7153. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:101
  7154. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:102
  7155. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:103
  7156. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:104
  7157. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:105
  7158. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:106
  7159. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:107
  7160. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:2
  7161. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:3
  7162. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:4
  7163. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:5
  7164. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:58
  7165. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:59
  7166. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:6
  7167. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:60
  7168. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:61
  7169. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:62
  7170. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:63
  7171. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:64
  7172. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:65
  7173. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:66
  7174. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:67
  7175. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:68
  7176. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:69
  7177. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:70
  7178. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:71
  7179. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:72
  7180. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:73
  7181. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:74
  7182. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:75
  7183. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:76
  7184. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:77
  7185. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:78
  7186. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:79
  7187. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:80
  7188. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:81
  7189. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:82
  7190. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:83
  7191. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:84
  7192. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:85
  7193. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:86
  7194. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:87
  7195. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:88
  7196. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:89
  7197. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:90
  7198. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:91
  7199. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:92
  7200. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:93
  7201. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:94
  7202. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:95
  7203. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:96
  7204. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:97
  7205. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:98
  7206. directory compile_commands.json /^ "directory": "\/home\/martin\/src\/swan-build\/third_party",$/;" s object:99
  7207. draw core.mod/src/entities/EntItemStack.cc /^void EntItemStack::draw(const Swan::Context &ctx, Swan::Win &win) {$/;" f class:EntItemStack typeref:typename:void
  7208. draw core.mod/src/entities/EntPlayer.cc /^void EntPlayer::draw(const Swan::Context &ctx, Swan::Win &win) {$/;" f class:EntPlayer typeref:typename:void
  7209. draw libswan/include/swan/Entity.h /^ virtual void draw(const Context &ctx, Win &win) {}$/;" f class:Swan::Entity typeref:typename:void
  7210. draw libswan/src/Animation.cc /^void Animation::draw(const Vec2 &pos, Win &win) {$/;" f class:Swan::Animation typeref:typename:void
  7211. draw libswan/src/Chunk.cc /^void Chunk::draw(const Context &ctx, Win &win) {$/;" f class:Swan::Chunk typeref:typename:void
  7212. draw libswan/src/Game.cc /^void Game::draw() {$/;" f class:Swan::Game typeref:typename:void
  7213. draw libswan/src/World.cc /^void World::draw(Win &win) {$/;" f class:Swan::World typeref:typename:void
  7214. draw libswan/src/WorldPlane.cc /^void WorldPlane::draw(Win &win) {$/;" f class:Swan::WorldPlane typeref:typename:void
  7215. drawInMTKView: third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^{$/;" m implementation:Renderer
  7216. drawRect libswan/include/swan/Win.h /^ void drawRect(const Vec2 &pos, const Vec2 &size) {$/;" f class:Swan::Win typeref:typename:void
  7217. drawRect: third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  7218. draw_list_ libswan/include/swan/Chunk.h /^ std::vector<std::pair<RelPos, SDL_Texture *>> draw_list_;$/;" m class:Swan::Chunk typeref:typename:std::vector<std::pair<RelPos,SDL_Texture * >>
  7219. dropped_item libswan/include/swan/Tile.h /^ std::optional<std::string> dropped_item = std::nullopt;$/;" m struct:Swan::Tile::Builder typeref:typename:std::optional<std::string>
  7220. dropped_item_ libswan/include/swan/Tile.h /^ const std::optional<std::string> dropped_item_;$/;" m class:Swan::Tile typeref:typename:const std::optional<std::string>
  7221. duration libswan/include/swan/Clock.h /^ double duration() const {$/;" f class:Swan::RTClock typeref:typename:double
  7222. duration libswan/include/swan/Clock.h /^ float duration() { return time_; }$/;" f class:Swan::Clock typeref:typename:float
  7223. dx third_party/imgui/imstb_truetype.h /^ int x,dx;$/;" m struct:stbtt__active_edge typeref:typename:int
  7224. dynlib_ libswan/include/swan/Mod.h /^ OS::Dynlib dynlib_;$/;" m class:Swan::Mod typeref:typename:OS::Dynlib
  7225. e third_party/imgui/imgui.h /^ const char* e;$/;" m struct:ImGuiTextFilter::ImGuiTextRange typeref:typename:const char *
  7226. effects assets-src/music/happy-1.json /^ "effects": "chorus & reverb",$/;" s object:channels.2.instruments.0
  7227. effects assets-src/music/happy-1.json /^ "effects": "reverb",$/;" s object:channels.0.instruments.0
  7228. effects assets-src/music/happy-1.json /^ "effects": "reverb",$/;" s object:channels.1.instruments.0
  7229. effects assets-src/music/happy-1.json /^ "effects": "reverb",$/;" s object:channels.3.instruments.0
  7230. empty libswan/include/swan/ItemStack.h /^ bool empty() { return item_ == nullptr; }$/;" f class:Swan::ItemStack typeref:typename:bool
  7231. empty third_party/imgui/imgui.h /^ bool empty() const { return b == e; }$/;" f struct:ImGuiTextFilter::ImGuiTextRange typeref:typename:bool
  7232. empty third_party/imgui/imgui.h /^ bool empty() { return Buf.Size <= 1; }$/;" f struct:ImGuiTextBuffer typeref:typename:bool
  7233. empty third_party/imgui/imgui.h /^ inline bool empty() const { return Size == 0; }$/;" f struct:ImVector typeref:typename:bool
  7234. emptyRenderPipelineStateCache third_party/imgui/examples/imgui_impl_metal.mm /^- (void)emptyRenderPipelineStateCache;$/;" m interface:MetalContext
  7235. emptyRenderPipelineStateCache third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  7236. end third_party/imgui/imgui.h /^ const char* end() const { return Buf.Data ? &Buf.back() : EmptyString; }/;" f struct:ImGuiTextBuffer typeref:typename:const char *
  7237. end third_party/imgui/imgui.h /^ inline T* end() { return Data + Size; }$/;" f struct:ImVector typeref:typename:T *
  7238. end third_party/imgui/imgui.h /^ inline const T* end() const { return Data + Size; }$/;" f struct:ImVector typeref:typename:const T *
  7239. enqueueReusableBuffer: third_party/imgui/examples/imgui_impl_metal.mm /^- (void)enqueueReusableBuffer:(MetalBuffer *)buffer;$/;" m interface:MetalContext
  7240. enqueueReusableBuffer: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  7241. entities_ libswan/include/swan/Mod.h /^ std::vector<std::unique_ptr<Entity::Factory>> entities_;$/;" m class:Swan::Mod typeref:typename:std::vector<std::unique_ptr<Entity::Factory>>
  7242. entities_ libswan/include/swan/WorldPlane.h /^ std::vector<std::unique_ptr<Entity>> entities_;$/;" m class:Swan::WorldPlane typeref:typename:std::vector<std::unique_ptr<Entity>>
  7243. ents_ libswan/include/swan/World.h /^ std::unordered_map<std::string, Entity::Factory *> ents_;$/;" m class:Swan::World typeref:typename:std::unordered_map<std::string,Entity::Factory * >
  7244. envelope assets-src/music/happy-1.json /^ "envelope": "custom"$/;" s object:channels.1.instruments.0.operators.0
  7245. envelope assets-src/music/happy-1.json /^ "envelope": "custom"$/;" s object:channels.2.instruments.0.operators.0
  7246. envelope assets-src/music/happy-1.json /^ "envelope": "custom"$/;" s object:channels.2.instruments.0.operators.1
  7247. envelope assets-src/music/happy-1.json /^ "envelope": "custom"$/;" s object:channels.2.instruments.0.operators.2
  7248. envelope assets-src/music/happy-1.json /^ "envelope": "steady"$/;" s object:channels.1.instruments.0.operators.1
  7249. envelope assets-src/music/happy-1.json /^ "envelope": "steady"$/;" s object:channels.1.instruments.0.operators.3
  7250. envelope assets-src/music/happy-1.json /^ "envelope": "steady"$/;" s object:channels.2.instruments.0.operators.3
  7251. envelope assets-src/music/happy-1.json /^ "envelope": "swell 1"$/;" s object:channels.1.instruments.0.operators.2
  7252. epsilon libswan/src/traits/BodyTrait.cc /^static float epsilon = 0.0001;$/;" v namespace:Swan::BodyTrait typeref:typename:float file:
  7253. equal third_party/imgui/imstb_truetype.h /^static int equal(float *a, float *b)$/;" f typeref:typename:int
  7254. erase third_party/imgui/imgui.h /^ inline T* erase(const T* it) { IM_ASSERT(it >= Data && it < Data+/;" f struct:ImVector typeref:typename:T *
  7255. erase third_party/imgui/imgui.h /^ inline T* erase(const T* it, const T* it_last){ IM_ASSERT(it >= Data && it < Data+/;" f struct:ImVector typeref:typename:T *
  7256. erase_unsorted third_party/imgui/imgui.h /^ inline T* erase_unsorted(const T* it) { IM_ASSERT(it >= Data && it < Data+/;" f struct:ImVector typeref:typename:T *
  7257. errassert src/main.cc /^#define errassert(/;" d file:
  7258. example_glfw_vulkan third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^add_executable(example_glfw_vulkan ${sources} ${IMGUI_DIR}\/examples\/imgui_impl_glfw.cpp ${IMGU/;" t
  7259. expect libswan/test/lib/test.h /^#define expect(/;" d
  7260. expecteq libswan/test/lib/test.h /^#define expecteq(/;" d
  7261. expectneq libswan/test/lib/test.h /^#define expectneq(/;" d
  7262. extra third_party/imgui/imstb_rectpack.h /^ stbrp_node extra[2]; \/\/ we allocate two extra nodes so optimal user-node-count is 'width' n/;" m struct:stbrp_context typeref:typename:stbrp_node[2]
  7263. ey third_party/imgui/imstb_truetype.h /^ float ey;$/;" m struct:stbtt__active_edge typeref:typename:float
  7264. fdselect third_party/imgui/imstb_truetype.h /^ stbtt__buf fdselect; \/\/ map from glyph to fontdict$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  7265. fdx third_party/imgui/imstb_truetype.h /^ float fx,fdx,fdy;$/;" m struct:stbtt__active_edge typeref:typename:float
  7266. fdy third_party/imgui/imstb_truetype.h /^ float fx,fdx,fdy;$/;" m struct:stbtt__active_edge typeref:typename:float
  7267. feedbackAmplitude assets-src/music/happy-1.json /^ "feedbackAmplitude": 2,$/;" n object:channels.2.instruments.0
  7268. feedbackAmplitude assets-src/music/happy-1.json /^ "feedbackAmplitude": 3,$/;" n object:channels.1.instruments.0
  7269. feedbackEnvelope assets-src/music/happy-1.json /^ "feedbackEnvelope": "flare 1",$/;" s object:channels.2.instruments.0
  7270. feedbackEnvelope assets-src/music/happy-1.json /^ "feedbackEnvelope": "steady",$/;" s object:channels.1.instruments.0
  7271. feedbackType assets-src/music/happy-1.json /^ "feedbackType": "1→2",$/;" s object:channels.1.instruments.0
  7272. feedbackType assets-src/music/happy-1.json /^ "feedbackType": "1⟲ 2⟲ 3⟲",$/;" s object:channels.2.instruments.0
  7273. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/WGDefault.cc"$/;" s object:27
  7274. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/WGDefault.h"$/;" s object:109
  7275. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/entities\/EntItemStack.cc"$/;" s object:29
  7276. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/entities\/EntItemStack.h"$/;" s object:112
  7277. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/entities\/EntPlayer.cc"$/;" s object:28
  7278. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/entities\/EntPlayer.h"$/;" s object:111
  7279. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/core.mod\/src\/main.cc"$/;" s object:26
  7280. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Animation.h"$/;" s object:39
  7281. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Chunk.h"$/;" s object:42
  7282. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Clock.h"$/;" s object:41
  7283. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Entity.h"$/;" s object:46
  7284. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Game.h"$/;" s object:50
  7285. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Item.h"$/;" s object:45
  7286. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/ItemStack.h"$/;" s object:38
  7287. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Mod.h"$/;" s object:51
  7288. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/OS.h"$/;" s object:48
  7289. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/PerfCounter.h"$/;" s object:55
  7290. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Resource.h"$/;" s object:40
  7291. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/SRF.h"$/;" s object:49
  7292. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Tile.h"$/;" s object:44
  7293. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Vector2.h"$/;" s object:36
  7294. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/Win.h"$/;" s object:56
  7295. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/World.h"$/;" s object:53
  7296. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/WorldGen.h"$/;" s object:52
  7297. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/WorldPlane.h"$/;" s object:54
  7298. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/common.h"$/;" s object:35
  7299. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/gfxutil.h"$/;" s object:57
  7300. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/log.h"$/;" s object:47
  7301. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/swan.h"$/;" s object:33
  7302. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/traits\/BodyTrait.h"$/;" s object:34
  7303. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/traits\/InventoryTrait.h"$/;" s object:37
  7304. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/include\/swan\/util.h"$/;" s object:43
  7305. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Animation.cc"$/;" s object:11
  7306. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Chunk.cc"$/;" s object:12
  7307. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Clock.cc"$/;" s object:13
  7308. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Game.cc"$/;" s object:14
  7309. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Item.cc"$/;" s object:16
  7310. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/ItemStack.cc"$/;" s object:17
  7311. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Mod.cc"$/;" s object:18
  7312. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/OS.cc"$/;" s object:19
  7313. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/PerfCounter.cc"$/;" s object:20
  7314. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Resource.cc"$/;" s object:21
  7315. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/SRF.cc"$/;" s object:22
  7316. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/Tile.cc"$/;" s object:23
  7317. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/World.cc"$/;" s object:24
  7318. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/WorldPlane.cc"$/;" s object:25
  7319. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/gfxutil.cc"$/;" s object:15
  7320. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/src\/traits\/BodyTrait.cc"$/;" s object:10
  7321. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/test\/ItemStack.t.cc"$/;" s object:9
  7322. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/test\/lib\/test.cc"$/;" s object:7
  7323. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/test\/lib\/test.h"$/;" s object:108
  7324. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/libswan\/test\/util.t.cc"$/;" s object:8
  7325. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/src\/main.cc"$/;" s object:0
  7326. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/PerlinNoise\/PerlinNoise.hpp"$/;" s object:110
  7327. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui-plot\/include\/imgui_plot.h"$/;" s object:107
  7328. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui-plot\/src\/imgui_plot.cpp"$/;" s object:6
  7329. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imconfig.h"$/;" s object:31
  7330. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui.cpp"$/;" s object:4
  7331. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui.h"$/;" s object:30
  7332. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui_demo.cpp"$/;" s object:1
  7333. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui_draw.cpp"$/;" s object:2
  7334. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui_internal.h"$/;" s object:58
  7335. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imgui_widgets.cpp"$/;" s object:3
  7336. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imstb_rectpack.h"$/;" s object:60
  7337. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imstb_textedit.h"$/;" s object:59
  7338. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui\/imstb_truetype.h"$/;" s object:61
  7339. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui_sdl\/imgui_sdl.cpp"$/;" s object:5
  7340. file compile_commands.json /^ "file": "\/home\/martin\/cloud\/dev\/swan\/third_party\/imgui_sdl\/imgui_sdl.h"$/;" s object:32
  7341. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL.h"$/;" s object:62
  7342. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_assert.h"$/;" s object:69
  7343. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_atomic.h"$/;" s object:70
  7344. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_audio.h"$/;" s object:71
  7345. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_blendmode.h"$/;" s object:84
  7346. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_clipboard.h"$/;" s object:77
  7347. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_config.h"$/;" s object:65
  7348. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_cpuinfo.h"$/;" s object:78
  7349. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_endian.h"$/;" s object:73
  7350. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_error.h"$/;" s object:72
  7351. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_events.h"$/;" s object:79
  7352. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_filesystem.h"$/;" s object:94
  7353. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_gamecontroller.h"$/;" s object:90
  7354. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_gesture.h"$/;" s object:92
  7355. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_haptic.h"$/;" s object:95
  7356. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_hints.h"$/;" s object:96
  7357. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_joystick.h"$/;" s object:89
  7358. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_keyboard.h"$/;" s object:85
  7359. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_keycode.h"$/;" s object:86
  7360. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_loadso.h"$/;" s object:97
  7361. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_log.h"$/;" s object:98
  7362. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_main.h"$/;" s object:63
  7363. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_messagebox.h"$/;" s object:99
  7364. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_mouse.h"$/;" s object:88
  7365. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_mutex.h"$/;" s object:74
  7366. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_pixels.h"$/;" s object:81
  7367. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_platform.h"$/;" s object:66
  7368. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_power.h"$/;" s object:100
  7369. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_quit.h"$/;" s object:91
  7370. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_rect.h"$/;" s object:82
  7371. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_render.h"$/;" s object:101
  7372. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_rwops.h"$/;" s object:76
  7373. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_scancode.h"$/;" s object:87
  7374. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_sensor.h"$/;" s object:102
  7375. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_shape.h"$/;" s object:103
  7376. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_stdinc.h"$/;" s object:64
  7377. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_surface.h"$/;" s object:83
  7378. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_system.h"$/;" s object:104
  7379. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_thread.h"$/;" s object:75
  7380. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_timer.h"$/;" s object:105
  7381. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_touch.h"$/;" s object:93
  7382. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_version.h"$/;" s object:106
  7383. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/SDL_video.h"$/;" s object:80
  7384. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/begin_code.h"$/;" s object:67
  7385. file compile_commands.json /^ "file": "\/usr\/include\/SDL2\/close_code.h"$/;" s object:68
  7386. filename libswan/test/lib/test.cc /^ std::string_view filename;$/;" m struct:testlib::TestCase typeref:typename:std::string_view file:
  7387. filename libswan/test/lib/test.cc /^ std::string_view filename;$/;" m struct:testlib::TestFile typeref:typename:std::string_view file:
  7388. filename libswan/test/lib/test.h /^ const char *filename;$/;" m struct:testlib::TestFailure typeref:typename:const char *
  7389. filename libswan/test/lib/test.h /^ const char *filename;$/;" m struct:testlib::TestSpec typeref:typename:const char *
  7390. fill libswan/include/swan/PerfCounter.h /^ void fill(std::array<DestT, size> &buf) {$/;" f class:Swan::PerfCounter::Counter typeref:typename:void
  7391. filter libswan/include/swan/util.h /^auto filter(InputIterator first, InputIterator last, Func pred) {$/;" f namespace:Swan typeref:typename:auto
  7392. filter libswan/include/swan/util.h /^auto filter(Range &rng, Func func) {$/;" f namespace:Swan typeref:typename:auto
  7393. filter libswan/test/util.t.cc /^ auto filter = Swan::filter(ints, [](int i) { return i == 200 || i == 400; });$/;" v typeref:typename:auto
  7394. filterCutoffHz assets-src/music/happy-1.json /^ "filterCutoffHz": 2828,$/;" n object:channels.0.instruments.0
  7395. filterCutoffHz assets-src/music/happy-1.json /^ "filterCutoffHz": 2828,$/;" n object:channels.3.instruments.0
  7396. filterCutoffHz assets-src/music/happy-1.json /^ "filterCutoffHz": 4000,$/;" n object:channels.2.instruments.0
  7397. filterCutoffHz assets-src/music/happy-1.json /^ "filterCutoffHz": 8000,$/;" n object:channels.1.instruments.0
  7398. filterEnvelope assets-src/music/happy-1.json /^ "filterEnvelope": "punch",$/;" s object:channels.2.instruments.0
  7399. filterEnvelope assets-src/music/happy-1.json /^ "filterEnvelope": "steady",$/;" s object:channels.0.instruments.0
  7400. filterEnvelope assets-src/music/happy-1.json /^ "filterEnvelope": "steady",$/;" s object:channels.1.instruments.0
  7401. filterEnvelope assets-src/music/happy-1.json /^ "filterEnvelope": "twang 1",$/;" s object:channels.3.instruments.0
  7402. filterResonance assets-src/music/happy-1.json /^ "filterResonance": 0,$/;" n object:channels.1.instruments.0
  7403. filterResonance assets-src/music/happy-1.json /^ "filterResonance": 14,$/;" n object:channels.0.instruments.0
  7404. filterResonance assets-src/music/happy-1.json /^ "filterResonance": 14,$/;" n object:channels.2.instruments.0
  7405. filterResonance assets-src/music/happy-1.json /^ "filterResonance": 29,$/;" n object:channels.3.instruments.0
  7406. find third_party/imgui/imgui.h /^ inline T* find(const T& v) { T* data = Data; const T* data_end/;" f struct:ImVector typeref:typename:T *
  7407. find third_party/imgui/imgui.h /^ inline const T* find(const T& v) const { const T* data = Data; const T* da/;" f struct:ImVector typeref:typename:const T *
  7408. find_erase third_party/imgui/imgui.h /^ inline bool find_erase(const T& v) { const T* it = find(v); if (it < Da/;" f struct:ImVector typeref:typename:bool
  7409. find_erase_unsorted third_party/imgui/imgui.h /^ inline bool find_erase_unsorted(const T& v) { const T* it = find(v); if (it < Da/;" f struct:ImVector typeref:typename:bool
  7410. first_char third_party/imgui/imstb_textedit.h /^ int first_char, length; \/\/ first char of row, and length$/;" m struct:__anon6b3818470508 typeref:typename:int
  7411. first_free third_party/imgui/imstb_truetype.h /^ void *first_free;$/;" m struct:stbtt__hheap typeref:typename:void *
  7412. first_unicode_codepoint_in_range third_party/imgui/imstb_truetype.h /^ int first_unicode_codepoint_in_range; \/\/ if non-zero, then the chars are continuous, and t/;" m struct:__anon3297c23e0508 typeref:typename:int
  7413. first_x third_party/imgui/imstb_truetype.h /^ float first_x, first_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:float
  7414. first_y third_party/imgui/imstb_truetype.h /^ float first_x, first_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:float
  7415. flagsChanged: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)flagsChanged:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  7416. flip libswan/include/swan/Win.h /^ SDL_RendererFlip flip = SDL_FLIP_NONE;$/;" m struct:Swan::Win::ShowTextureArgs typeref:typename:SDL_RendererFlip
  7417. flip_ libswan/include/swan/Animation.h /^ SDL_RendererFlip flip_;$/;" m class:Swan::Animation typeref:typename:SDL_RendererFlip
  7418. floats libswan/test/util.t.cc /^ float floats[] = { 10.1, 20.2, 30.3 };$/;" v typeref:typename:float[]
  7419. fontTexture third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong, nullable) id<MTLTexture> fontTexture;$/;" p interface:MetalContext
  7420. font_size third_party/imgui/imstb_truetype.h /^ float font_size;$/;" m struct:__anon3297c23e0508 typeref:typename:float
  7421. fontdicts third_party/imgui/imstb_truetype.h /^ stbtt__buf fontdicts; \/\/ array of font dicts$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  7422. fontstart third_party/imgui/imstb_truetype.h /^ int fontstart; \/\/ offset of start of font$/;" m struct:stbtt_fontinfo typeref:typename:int
  7423. format assets-src/music/happy-1.json /^ "format": "BeepBox",$/;" s
  7424. format third_party/imgui-plot/include/imgui_plot.h /^ const char* format = "%g: %8.4g";$/;" m struct:ImGui::PlotConfig::Tooltip typeref:typename:const char *
  7425. frameRect libswan/include/swan/Resource.h /^ SDL_Rect frameRect(int frame = -1) const {$/;" f class:Swan::ImageResource typeref:typename:SDL_Rect
  7426. frame_ libswan/include/swan/Animation.h /^ int frame_ = 0;$/;" m class:Swan::Animation typeref:typename:int
  7427. frame_ libswan/include/swan/Resource.h /^ int frame_ = 0;$/;" m class:Swan::ImageResource typeref:typename:int
  7428. frame_height libswan/include/swan/Resource.h /^ int frame_height = -1;$/;" m struct:Swan::ImageResource::Builder typeref:typename:int
  7429. frame_height_ libswan/include/swan/Resource.h /^ int frame_height_;$/;" m class:Swan::ImageResource typeref:typename:int
  7430. frame_size third_party/imgui-plot/include/imgui_plot.h /^ ImVec2 frame_size = ImVec2(0.f, 0.f);$/;" m struct:ImGui::PlotConfig typeref:typename:ImVec2
  7431. frame_time_ libswan/include/swan/PerfCounter.h /^ Counter<> frame_time_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  7432. framebufferDescriptor third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong) FramebufferDescriptor *framebufferDescriptor; \/\/ framebuffer des/;" p interface:MetalContext
  7433. free_head third_party/imgui/imstb_rectpack.h /^ stbrp_node *free_head;$/;" m struct:stbrp_context typeref:typename:stbrp_node *
  7434. frequency assets-src/music/happy-1.json /^ "frequency": "1×",$/;" s object:channels.1.instruments.0.operators.1
  7435. frequency assets-src/music/happy-1.json /^ "frequency": "1×",$/;" s object:channels.1.instruments.0.operators.2
  7436. frequency assets-src/music/happy-1.json /^ "frequency": "1×",$/;" s object:channels.1.instruments.0.operators.3
  7437. frequency assets-src/music/happy-1.json /^ "frequency": "1×",$/;" s object:channels.2.instruments.0.operators.0
  7438. frequency assets-src/music/happy-1.json /^ "frequency": "2×",$/;" s object:channels.2.instruments.0.operators.3
  7439. frequency assets-src/music/happy-1.json /^ "frequency": "4×",$/;" s object:channels.2.instruments.0.operators.1
  7440. frequency assets-src/music/happy-1.json /^ "frequency": "6×",$/;" s object:channels.2.instruments.0.operators.2
  7441. frequency assets-src/music/happy-1.json /^ "frequency": "~1×",$/;" s object:channels.1.instruments.0.operators.0
  7442. friction libswan/src/traits/BodyTrait.cc /^void PhysicsBody::friction(Vec2 coef) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  7443. front third_party/imgui/imgui.h /^ inline T& front() { IM_ASSERT(Size > 0); return Data[0/;" f struct:ImVector typeref:typename:T &
  7444. front third_party/imgui/imgui.h /^ inline const T& front() const { IM_ASSERT(Size > 0); return Data[0/;" f struct:ImVector typeref:typename:const T &
  7445. func libswan/test/lib/test.cc /^ void (*func)();$/;" m struct:testlib::TestCase typeref:typename:void (*)() file:
  7446. func libswan/test/lib/test.h /^ void (*func)();$/;" m struct:testlib::TestSpec typeref:typename:void (*)()
  7447. funcs third_party/imgui/imgui_demo.cpp /^ struct funcs$/;" s function:ShowExampleAppPropertyEditor file:
  7448. fx third_party/imgui/imstb_truetype.h /^ float fx,fdx,fdy;$/;" m struct:stbtt__active_edge typeref:typename:float
  7449. g third_party/PerlinNoise/Test_PerlinNoise.cpp /^ double g = 0.0;$/;" m struct:RGB typeref:typename:double file:
  7450. g_ libswan/include/swan/gfxutil.h /^ uint8_t r_, g_, b_;$/;" m class:Swan::TexColorMod typeref:typename:uint8_t
  7451. g_Allocator third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkAllocationCallbacks* g_Allocator = NULL;$/;" v typeref:typename:VkAllocationCallbacks * file:
  7452. g_Allocator third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkAllocationCallbacks* g_Allocator = NULL;$/;" v typeref:typename:VkAllocationCallbacks * file:
  7453. g_AttribLocationProjMtx third_party/imgui/examples/imgui_impl_opengl3.cpp /^static int g_AttribLocationTex = 0, g_AttribLocationProjMtx = 0; /;" v typeref:typename:int file:
  7454. g_AttribLocationTex third_party/imgui/examples/imgui_impl_opengl3.cpp /^static int g_AttribLocationTex = 0, g_AttribLocationProjMtx = 0; /;" v typeref:typename:int file:
  7455. g_AttribLocationVtxColor third_party/imgui/examples/imgui_impl_opengl3.cpp /^static int g_AttribLocationVtxPos = 0, g_AttribLocationVtxUV = 0, g_AttribLocationVtxCo/;" v typeref:typename:int file:
  7456. g_AttribLocationVtxPos third_party/imgui/examples/imgui_impl_opengl3.cpp /^static int g_AttribLocationVtxPos = 0, g_AttribLocationVtxUV = 0, g_AttribLocationVtxCo/;" v typeref:typename:int file:
  7457. g_AttribLocationVtxUV third_party/imgui/examples/imgui_impl_opengl3.cpp /^static int g_AttribLocationVtxPos = 0, g_AttribLocationVtxUV = 0, g_AttribLocationVtxCo/;" v typeref:typename:int file:
  7458. g_BufferMemoryAlignment third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkDeviceSize g_BufferMemoryAlignment = 256;$/;" v typeref:typename:VkDeviceSize file:
  7459. g_ClientApi third_party/imgui/examples/imgui_impl_glfw.cpp /^static GlfwClientApi g_ClientApi = GlfwClientApi_Unknown;$/;" v typeref:typename:GlfwClientApi file:
  7460. g_ClipboardText third_party/imgui/examples/imgui_impl_marmalade.cpp /^static char* g_ClipboardText = NULL;$/;" v typeref:typename:char * file:
  7461. g_ClipboardTextData third_party/imgui/examples/imgui_impl_allegro5.cpp /^static char* g_ClipboardTextData = NULL;$/;" v typeref:typename:char * file:
  7462. g_ClipboardTextData third_party/imgui/examples/imgui_impl_sdl.cpp /^static char* g_ClipboardTextData = NULL;$/;" v typeref:typename:char * file:
  7463. g_DebugReport third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkDebugReportCallbackEXT g_DebugReport = VK_NULL_HANDLE;$/;" v typeref:typename:VkDebugReportCallbackEXT file:
  7464. g_DebugReport third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkDebugReportCallbackEXT g_DebugReport = VK_NULL_HANDLE;$/;" v typeref:typename:VkDebugReportCallbackEXT file:
  7465. g_DescriptorPool third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkDescriptorPool g_DescriptorPool = VK_NULL_HANDLE;$/;" v typeref:typename:VkDescriptorPool file:
  7466. g_DescriptorPool third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkDescriptorPool g_DescriptorPool = VK_NULL_HANDLE;$/;" v typeref:typename:VkDescriptorPool file:
  7467. g_DescriptorSet third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkDescriptorSet g_DescriptorSet = VK_NULL_HANDLE;$/;" v typeref:typename:VkDescriptorSet file:
  7468. g_DescriptorSetLayout third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkDescriptorSetLayout g_DescriptorSetLayout = VK_NULL_HANDLE;$/;" v typeref:typename:VkDescriptorSetLayout file:
  7469. g_Device third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkDevice g_Device = VK_NULL_HANDLE;$/;" v typeref:typename:VkDevice file:
  7470. g_Device third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkDevice g_Device = VK_NULL_HANDLE;$/;" v typeref:typename:VkDevice file:
  7471. g_Display third_party/imgui/examples/imgui_impl_allegro5.cpp /^static ALLEGRO_DISPLAY* g_Display = NULL;$/;" v typeref:typename:ALLEGRO_DISPLAY * file:
  7472. g_ElementsHandle third_party/imgui/examples/imgui_impl_opengl3.cpp /^static unsigned int g_VboHandle = 0, g_ElementsHandle = 0;$/;" v typeref:typename:unsigned int file:
  7473. g_FontImage third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkImage g_FontImage = VK_NULL_HANDLE;$/;" v typeref:typename:VkImage file:
  7474. g_FontMemory third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkDeviceMemory g_FontMemory = VK_NULL_HANDLE;$/;" v typeref:typename:VkDeviceMemory file:
  7475. g_FontSampler third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkSampler g_FontSampler = VK_NULL_HANDLE;$/;" v typeref:typename:VkSampler file:
  7476. g_FontTexture third_party/imgui/examples/imgui_impl_dx9.cpp /^static LPDIRECT3DTEXTURE9 g_FontTexture = NULL;$/;" v typeref:typename:LPDIRECT3DTEXTURE9 file:
  7477. g_FontTexture third_party/imgui/examples/imgui_impl_marmalade.cpp /^static CIwTexture* g_FontTexture = NULL;$/;" v typeref:typename:CIwTexture * file:
  7478. g_FontTexture third_party/imgui/examples/imgui_impl_opengl2.cpp /^static GLuint g_FontTexture = 0;$/;" v typeref:typename:GLuint file:
  7479. g_FontTexture third_party/imgui/examples/imgui_impl_opengl3.cpp /^static GLuint g_FontTexture = 0;$/;" v typeref:typename:GLuint file:
  7480. g_FontView third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkImageView g_FontView = VK_NULL_HANDLE;$/;" v typeref:typename:VkImageView file:
  7481. g_FragHandle third_party/imgui/examples/imgui_impl_opengl3.cpp /^static GLuint g_ShaderHandle = 0, g_VertHandle = 0, g_FragHandle = 0;$/;" v typeref:typename:GLuint file:
  7482. g_GLContext third_party/imgui/examples/example_emscripten/main.cpp /^SDL_GLContext g_GLContext = NULL;$/;" v typeref:typename:SDL_GLContext
  7483. g_GlslVersionString third_party/imgui/examples/imgui_impl_opengl3.cpp /^static char g_GlslVersionString[32] = "";$/;" v typeref:typename:char[32] file:
  7484. g_HasGamepad third_party/imgui/examples/imgui_impl_win32.cpp /^static bool g_HasGamepad = false;$/;" v typeref:typename:bool file:
  7485. g_IndexBufferSize third_party/imgui/examples/imgui_impl_dx10.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7486. g_IndexBufferSize third_party/imgui/examples/imgui_impl_dx11.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7487. g_IndexBufferSize third_party/imgui/examples/imgui_impl_dx9.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7488. g_Instance third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkInstance g_Instance = VK_NULL_HANDLE;$/;" v typeref:typename:VkInstance file:
  7489. g_Instance third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkInstance g_Instance = VK_NULL_HANDLE;$/;" v typeref:typename:VkInstance file:
  7490. g_LastMouseCursor third_party/imgui/examples/imgui_impl_win32.cpp /^static ImGuiMouseCursor g_LastMouseCursor = ImGuiMouseCursor_COUNT;$/;" v typeref:typename:ImGuiMouseCursor file:
  7491. g_MainWindowData third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static ImGui_ImplVulkanH_Window g_MainWindowData;$/;" v typeref:typename:ImGui_ImplVulkanH_Window file:
  7492. g_MainWindowData third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static ImGui_ImplVulkanH_Window g_MainWindowData;$/;" v typeref:typename:ImGui_ImplVulkanH_Window file:
  7493. g_MainWindowRenderBuffers third_party/imgui/examples/imgui_impl_vulkan.cpp /^static ImGui_ImplVulkanH_WindowRenderBuffers g_MainWindowRenderBuffers;$/;" v typeref:typename:ImGui_ImplVulkanH_WindowRenderBuffers file:
  7494. g_MinImageCount third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static int g_MinImageCount = 2;$/;" v typeref:typename:int file:
  7495. g_MinImageCount third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static uint32_t g_MinImageCount = 2;$/;" v typeref:typename:uint32_t file:
  7496. g_MouseCursorInvisible third_party/imgui/examples/imgui_impl_allegro5.cpp /^static ALLEGRO_MOUSE_CURSOR* g_MouseCursorInvisible = NULL;$/;" v typeref:typename:ALLEGRO_MOUSE_CURSOR * file:
  7497. g_MouseCursors third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWcursor* g_MouseCursors[ImGuiMouseCursor_COUNT] = { 0 };$/;" v typeref:typename:GLFWcursor * [] file:
  7498. g_MouseCursors third_party/imgui/examples/imgui_impl_sdl.cpp /^static SDL_Cursor* g_MouseCursors[ImGuiMouseCursor_COUNT] = { 0 };$/;" v typeref:typename:SDL_Cursor * [] file:
  7499. g_MouseJustPressed third_party/imgui/examples/imgui_impl_glfw.cpp /^static bool g_MouseJustPressed[5] = { false, false, false, false, false };$/;" v typeref:typename:bool[5] file:
  7500. g_MousePressed third_party/imgui/examples/imgui_impl_marmalade.cpp /^static bool g_MousePressed[3] = { false, false, false };$/;" v typeref:typename:bool[3] file:
  7501. g_MousePressed third_party/imgui/examples/imgui_impl_sdl.cpp /^static bool g_MousePressed[3] = { false, false, false };$/;" v typeref:typename:bool[3] file:
  7502. g_PhysicalDevice third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkPhysicalDevice g_PhysicalDevice = VK_NULL_HANDLE;$/;" v typeref:typename:VkPhysicalDevice file:
  7503. g_PhysicalDevice third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkPhysicalDevice g_PhysicalDevice = VK_NULL_HANDLE;$/;" v typeref:typename:VkPhysicalDevice file:
  7504. g_Pipeline third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkPipeline g_Pipeline = VK_NULL_HANDLE;$/;" v typeref:typename:VkPipeline file:
  7505. g_PipelineCache third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkPipelineCache g_PipelineCache = VK_NULL_HANDLE;$/;" v typeref:typename:VkPipelineCache file:
  7506. g_PipelineCache third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkPipelineCache g_PipelineCache = VK_NULL_HANDLE;$/;" v typeref:typename:VkPipelineCache file:
  7507. g_PipelineCreateFlags third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkPipelineCreateFlags g_PipelineCreateFlags = 0x00;$/;" v typeref:typename:VkPipelineCreateFlags file:
  7508. g_PipelineLayout third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkPipelineLayout g_PipelineLayout = VK_NULL_HANDLE;$/;" v typeref:typename:VkPipelineLayout file:
  7509. g_PrevUserCallbackChar third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWcharfun g_PrevUserCallbackChar = NULL;$/;" v typeref:typename:GLFWcharfun file:
  7510. g_PrevUserCallbackKey third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWkeyfun g_PrevUserCallbackKey = NULL;$/;" v typeref:typename:GLFWkeyfun file:
  7511. g_PrevUserCallbackMousebutton third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWmousebuttonfun g_PrevUserCallbackMousebutton = NULL;$/;" v typeref:typename:GLFWmousebuttonfun file:
  7512. g_PrevUserCallbackScroll third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWscrollfun g_PrevUserCallbackScroll = NULL;$/;" v typeref:typename:GLFWscrollfun file:
  7513. g_Queue third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static VkQueue g_Queue = VK_NULL_HANDLE;$/;" v typeref:typename:VkQueue file:
  7514. g_Queue third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static VkQueue g_Queue = VK_NULL_HANDLE;$/;" v typeref:typename:VkQueue file:
  7515. g_QueueFamily third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static uint32_t g_QueueFamily = (uint32_t)-1;$/;" v typeref:typename:uint32_t file:
  7516. g_QueueFamily third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static uint32_t g_QueueFamily = (uint32_t)-1;$/;" v typeref:typename:uint32_t file:
  7517. g_RTVFormat third_party/imgui/examples/imgui_impl_dx12.cpp /^static DXGI_FORMAT g_RTVFormat = DXGI_FORMAT_UNKNOWN;$/;" v typeref:typename:DXGI_FORMAT file:
  7518. g_RenderPass third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkRenderPass g_RenderPass = VK_NULL_HANDLE;$/;" v typeref:typename:VkRenderPass file:
  7519. g_RenderScale third_party/imgui/examples/imgui_impl_marmalade.cpp /^static ImVec2 g_RenderScale = ImVec2(1.0f,1.0f);$/;" v typeref:typename:ImVec2 file:
  7520. g_ShaderHandle third_party/imgui/examples/imgui_impl_opengl3.cpp /^static GLuint g_ShaderHandle = 0, g_VertHandle = 0, g_FragHandle = 0;$/;" v typeref:typename:GLuint file:
  7521. g_SwapChainRebuild third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static bool g_SwapChainRebuild = false;$/;" v typeref:typename:bool file:
  7522. g_SwapChainRebuild third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static bool g_SwapChainRebuild = false;$/;" v typeref:typename:bool file:
  7523. g_SwapChainResizeHeight third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static int g_SwapChainResizeHeight = 0;$/;" v typeref:typename:int file:
  7524. g_SwapChainResizeHeight third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static int g_SwapChainResizeHeight = 0;$/;" v typeref:typename:int file:
  7525. g_SwapChainResizeWidth third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static int g_SwapChainResizeWidth = 0;$/;" v typeref:typename:int file:
  7526. g_SwapChainResizeWidth third_party/imgui/examples/example_sdl_vulkan/main.cpp /^static int g_SwapChainResizeWidth = 0;$/;" v typeref:typename:int file:
  7527. g_Texture third_party/imgui/examples/imgui_impl_allegro5.cpp /^static ALLEGRO_BITMAP* g_Texture = NULL;$/;" v typeref:typename:ALLEGRO_BITMAP * file:
  7528. g_TicksPerSecond third_party/imgui/examples/imgui_impl_win32.cpp /^static INT64 g_TicksPerSecond = 0;$/;" v typeref:typename:INT64 file:
  7529. g_Time third_party/imgui/examples/imgui_impl_allegro5.cpp /^static double g_Time = 0.0;$/;" v typeref:typename:double file:
  7530. g_Time third_party/imgui/examples/imgui_impl_glfw.cpp /^static double g_Time = 0.0;$/;" v typeref:typename:double file:
  7531. g_Time third_party/imgui/examples/imgui_impl_glut.cpp /^static int g_Time = 0; \/\/ Current time, in milliseconds$/;" v typeref:typename:int file:
  7532. g_Time third_party/imgui/examples/imgui_impl_marmalade.cpp /^static double g_Time = 0.0f;$/;" v typeref:typename:double file:
  7533. g_Time third_party/imgui/examples/imgui_impl_sdl.cpp /^static Uint64 g_Time = 0;$/;" v typeref:typename:Uint64 file:
  7534. g_Time third_party/imgui/examples/imgui_impl_win32.cpp /^static INT64 g_Time = 0;$/;" v typeref:typename:INT64 file:
  7535. g_UploadBuffer third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkBuffer g_UploadBuffer = VK_NULL_HANDLE;$/;" v typeref:typename:VkBuffer file:
  7536. g_UploadBufferMemory third_party/imgui/examples/imgui_impl_vulkan.cpp /^static VkDeviceMemory g_UploadBufferMemory = VK_NULL_HANDLE;$/;" v typeref:typename:VkDeviceMemory file:
  7537. g_VboHandle third_party/imgui/examples/imgui_impl_opengl3.cpp /^static unsigned int g_VboHandle = 0, g_ElementsHandle = 0;$/;" v typeref:typename:unsigned int file:
  7538. g_VertHandle third_party/imgui/examples/imgui_impl_opengl3.cpp /^static GLuint g_ShaderHandle = 0, g_VertHandle = 0, g_FragHandle = 0;$/;" v typeref:typename:GLuint file:
  7539. g_VertexBufferSize third_party/imgui/examples/imgui_impl_dx10.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7540. g_VertexBufferSize third_party/imgui/examples/imgui_impl_dx11.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7541. g_VertexBufferSize third_party/imgui/examples/imgui_impl_dx9.cpp /^static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;$/;" v typeref:typename:int file:
  7542. g_VertexDecl third_party/imgui/examples/imgui_impl_allegro5.cpp /^static ALLEGRO_VERTEX_DECL* g_VertexDecl = NULL;$/;" v typeref:typename:ALLEGRO_VERTEX_DECL * file:
  7543. g_VulkanInitInfo third_party/imgui/examples/imgui_impl_vulkan.cpp /^static ImGui_ImplVulkan_InitInfo g_VulkanInitInfo = {};$/;" v typeref:typename:ImGui_ImplVulkan_InitInfo file:
  7544. g_WantUpdateHasGamepad third_party/imgui/examples/imgui_impl_win32.cpp /^static bool g_WantUpdateHasGamepad = true;$/;" v typeref:typename:bool file:
  7545. g_Window third_party/imgui/examples/example_emscripten/main.cpp /^SDL_Window* g_Window = NULL;$/;" v typeref:typename:SDL_Window *
  7546. g_Window third_party/imgui/examples/imgui_impl_glfw.cpp /^static GLFWwindow* g_Window = NULL; \/\/ Main window$/;" v typeref:typename:GLFWwindow * file:
  7547. g_Window third_party/imgui/examples/imgui_impl_sdl.cpp /^static SDL_Window* g_Window = NULL;$/;" v typeref:typename:SDL_Window * file:
  7548. g_d3dpp third_party/imgui/examples/example_win32_directx9/main.cpp /^static D3DPRESENT_PARAMETERS g_d3dpp = {};$/;" v typeref:typename:D3DPRESENT_PARAMETERS file:
  7549. g_fence third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12Fence* g_fence = NULL;$/;" v typeref:typename:ID3D12Fence * file:
  7550. g_fenceEvent third_party/imgui/examples/example_win32_directx12/main.cpp /^static HANDLE g_fenceEvent = NULL;$/;" v typeref:typename:HANDLE file:
  7551. g_fenceLastSignaledValue third_party/imgui/examples/example_win32_directx12/main.cpp /^static UINT64 g_fenceLastSignaledValue = 0;$/;" v typeref:typename:UINT64 file:
  7552. g_frameContext third_party/imgui/examples/example_win32_directx12/main.cpp /^static FrameContext g_frameContext[NUM_FRAMES_IN_FLIGHT] = {};$/;" v typeref:typename:FrameContext[] file:
  7553. g_frameIndex third_party/imgui/examples/example_win32_directx12/main.cpp /^static UINT g_frameIndex = 0;$/;" v typeref:typename:UINT file:
  7554. g_frameIndex third_party/imgui/examples/imgui_impl_dx12.cpp /^static UINT g_frameIndex = UINT_MAX;$/;" v typeref:typename:UINT file:
  7555. g_hFontSrvCpuDescHandle third_party/imgui/examples/imgui_impl_dx12.cpp /^static D3D12_CPU_DESCRIPTOR_HANDLE g_hFontSrvCpuDescHandle = {};$/;" v typeref:typename:D3D12_CPU_DESCRIPTOR_HANDLE file:
  7556. g_hFontSrvGpuDescHandle third_party/imgui/examples/imgui_impl_dx12.cpp /^static D3D12_GPU_DESCRIPTOR_HANDLE g_hFontSrvGpuDescHandle = {};$/;" v typeref:typename:D3D12_GPU_DESCRIPTOR_HANDLE file:
  7557. g_hSwapChainWaitableObject third_party/imgui/examples/example_win32_directx12/main.cpp /^static HANDLE g_hSwapChainWaitableObject = NULL;$/;" v typeref:typename:HANDLE file:
  7558. g_hWnd third_party/imgui/examples/imgui_impl_win32.cpp /^static HWND g_hWnd = 0;$/;" v typeref:typename:HWND file:
  7559. g_mainRenderTargetDescriptor third_party/imgui/examples/example_win32_directx12/main.cpp /^static D3D12_CPU_DESCRIPTOR_HANDLE g_mainRenderTargetDescriptor[NUM_BACK_BUFFERS] = {};$/;" v typeref:typename:D3D12_CPU_DESCRIPTOR_HANDLE[] file:
  7560. g_mainRenderTargetResource third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12Resource* g_mainRenderTargetResource[NUM_BACK_BUFFERS] = {};$/;" v typeref:typename:ID3D12Resource * [] file:
  7561. g_mainRenderTargetView third_party/imgui/examples/example_sdl_directx11/main.cpp /^static ID3D11RenderTargetView* g_mainRenderTargetView = NULL;$/;" v typeref:typename:ID3D11RenderTargetView * file:
  7562. g_mainRenderTargetView third_party/imgui/examples/example_win32_directx10/main.cpp /^static ID3D10RenderTargetView* g_mainRenderTargetView = NULL;$/;" v typeref:typename:ID3D10RenderTargetView * file:
  7563. g_mainRenderTargetView third_party/imgui/examples/example_win32_directx11/main.cpp /^static ID3D11RenderTargetView* g_mainRenderTargetView = NULL;$/;" v typeref:typename:ID3D11RenderTargetView * file:
  7564. g_numFramesInFlight third_party/imgui/examples/imgui_impl_dx12.cpp /^static UINT g_numFramesInFlight = 0;$/;" v typeref:typename:UINT file:
  7565. g_osdKeyboardEnabled third_party/imgui/examples/imgui_impl_marmalade.cpp /^static bool g_osdKeyboardEnabled = false;$/;" v typeref:typename:bool file:
  7566. g_pBlendState third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10BlendState* g_pBlendState = NULL;$/;" v typeref:typename:ID3D10BlendState * file:
  7567. g_pBlendState third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11BlendState* g_pBlendState = NULL;$/;" v typeref:typename:ID3D11BlendState * file:
  7568. g_pD3D third_party/imgui/examples/example_win32_directx9/main.cpp /^static LPDIRECT3D9 g_pD3D = NULL;$/;" v typeref:typename:LPDIRECT3D9 file:
  7569. g_pDepthStencilState third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10DepthStencilState* g_pDepthStencilState = NULL;$/;" v typeref:typename:ID3D10DepthStencilState * file:
  7570. g_pDepthStencilState third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11DepthStencilState* g_pDepthStencilState = NULL;$/;" v typeref:typename:ID3D11DepthStencilState * file:
  7571. g_pFactory third_party/imgui/examples/imgui_impl_dx10.cpp /^static IDXGIFactory* g_pFactory = NULL;$/;" v typeref:typename:IDXGIFactory * file:
  7572. g_pFactory third_party/imgui/examples/imgui_impl_dx11.cpp /^static IDXGIFactory* g_pFactory = NULL;$/;" v typeref:typename:IDXGIFactory * file:
  7573. g_pFontSampler third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10SamplerState* g_pFontSampler = NULL;$/;" v typeref:typename:ID3D10SamplerState * file:
  7574. g_pFontSampler third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11SamplerState* g_pFontSampler = NULL;$/;" v typeref:typename:ID3D11SamplerState * file:
  7575. g_pFontTextureResource third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D12Resource* g_pFontTextureResource = NULL;$/;" v typeref:typename:ID3D12Resource * file:
  7576. g_pFontTextureView third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10ShaderResourceView*g_pFontTextureView = NULL;$/;" v typeref:typename:ID3D10ShaderResourceView * file:
  7577. g_pFontTextureView third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11ShaderResourceView*g_pFontTextureView = NULL;$/;" v typeref:typename:ID3D11ShaderResourceView * file:
  7578. g_pFrameResources third_party/imgui/examples/imgui_impl_dx12.cpp /^static FrameResources* g_pFrameResources = NULL;$/;" v typeref:typename:FrameResources * file:
  7579. g_pIB third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Buffer* g_pIB = NULL;$/;" v typeref:typename:ID3D10Buffer * file:
  7580. g_pIB third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11Buffer* g_pIB = NULL;$/;" v typeref:typename:ID3D11Buffer * file:
  7581. g_pIB third_party/imgui/examples/imgui_impl_dx9.cpp /^static LPDIRECT3DINDEXBUFFER9 g_pIB = NULL;$/;" v typeref:typename:LPDIRECT3DINDEXBUFFER9 file:
  7582. g_pInputLayout third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10InputLayout* g_pInputLayout = NULL;$/;" v typeref:typename:ID3D10InputLayout * file:
  7583. g_pInputLayout third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11InputLayout* g_pInputLayout = NULL;$/;" v typeref:typename:ID3D11InputLayout * file:
  7584. g_pPipelineState third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D12PipelineState* g_pPipelineState = NULL;$/;" v typeref:typename:ID3D12PipelineState * file:
  7585. g_pPixelShader third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10PixelShader* g_pPixelShader = NULL;$/;" v typeref:typename:ID3D10PixelShader * file:
  7586. g_pPixelShader third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11PixelShader* g_pPixelShader = NULL;$/;" v typeref:typename:ID3D11PixelShader * file:
  7587. g_pPixelShaderBlob third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Blob* g_pPixelShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7588. g_pPixelShaderBlob third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D10Blob* g_pPixelShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7589. g_pPixelShaderBlob third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D10Blob* g_pPixelShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7590. g_pRasterizerState third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10RasterizerState* g_pRasterizerState = NULL;$/;" v typeref:typename:ID3D10RasterizerState * file:
  7591. g_pRasterizerState third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11RasterizerState* g_pRasterizerState = NULL;$/;" v typeref:typename:ID3D11RasterizerState * file:
  7592. g_pRootSignature third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D12RootSignature* g_pRootSignature = NULL;$/;" v typeref:typename:ID3D12RootSignature * file:
  7593. g_pSwapChain third_party/imgui/examples/example_sdl_directx11/main.cpp /^static IDXGISwapChain* g_pSwapChain = NULL;$/;" v typeref:typename:IDXGISwapChain * file:
  7594. g_pSwapChain third_party/imgui/examples/example_win32_directx10/main.cpp /^static IDXGISwapChain* g_pSwapChain = NULL;$/;" v typeref:typename:IDXGISwapChain * file:
  7595. g_pSwapChain third_party/imgui/examples/example_win32_directx11/main.cpp /^static IDXGISwapChain* g_pSwapChain = NULL;$/;" v typeref:typename:IDXGISwapChain * file:
  7596. g_pSwapChain third_party/imgui/examples/example_win32_directx12/main.cpp /^static IDXGISwapChain3* g_pSwapChain = NULL;$/;" v typeref:typename:IDXGISwapChain3 * file:
  7597. g_pVB third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Buffer* g_pVB = NULL;$/;" v typeref:typename:ID3D10Buffer * file:
  7598. g_pVB third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11Buffer* g_pVB = NULL;$/;" v typeref:typename:ID3D11Buffer * file:
  7599. g_pVB third_party/imgui/examples/imgui_impl_dx9.cpp /^static LPDIRECT3DVERTEXBUFFER9 g_pVB = NULL;$/;" v typeref:typename:LPDIRECT3DVERTEXBUFFER9 file:
  7600. g_pVertexConstantBuffer third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Buffer* g_pVertexConstantBuffer = NULL;$/;" v typeref:typename:ID3D10Buffer * file:
  7601. g_pVertexConstantBuffer third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11Buffer* g_pVertexConstantBuffer = NULL;$/;" v typeref:typename:ID3D11Buffer * file:
  7602. g_pVertexShader third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10VertexShader* g_pVertexShader = NULL;$/;" v typeref:typename:ID3D10VertexShader * file:
  7603. g_pVertexShader third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11VertexShader* g_pVertexShader = NULL;$/;" v typeref:typename:ID3D11VertexShader * file:
  7604. g_pVertexShaderBlob third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Blob* g_pVertexShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7605. g_pVertexShaderBlob third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D10Blob* g_pVertexShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7606. g_pVertexShaderBlob third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D10Blob* g_pVertexShaderBlob = NULL;$/;" v typeref:typename:ID3D10Blob * file:
  7607. g_pd3dCommandList third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12GraphicsCommandList* g_pd3dCommandList = NULL;$/;" v typeref:typename:ID3D12GraphicsCommandList * file:
  7608. g_pd3dCommandQueue third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12CommandQueue* g_pd3dCommandQueue = NULL;$/;" v typeref:typename:ID3D12CommandQueue * file:
  7609. g_pd3dDevice third_party/imgui/examples/example_sdl_directx11/main.cpp /^static ID3D11Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D11Device * file:
  7610. g_pd3dDevice third_party/imgui/examples/example_win32_directx10/main.cpp /^static ID3D10Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D10Device * file:
  7611. g_pd3dDevice third_party/imgui/examples/example_win32_directx11/main.cpp /^static ID3D11Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D11Device * file:
  7612. g_pd3dDevice third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D12Device * file:
  7613. g_pd3dDevice third_party/imgui/examples/example_win32_directx9/main.cpp /^static LPDIRECT3DDEVICE9 g_pd3dDevice = NULL;$/;" v typeref:typename:LPDIRECT3DDEVICE9 file:
  7614. g_pd3dDevice third_party/imgui/examples/imgui_impl_dx10.cpp /^static ID3D10Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D10Device * file:
  7615. g_pd3dDevice third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D11Device * file:
  7616. g_pd3dDevice third_party/imgui/examples/imgui_impl_dx12.cpp /^static ID3D12Device* g_pd3dDevice = NULL;$/;" v typeref:typename:ID3D12Device * file:
  7617. g_pd3dDevice third_party/imgui/examples/imgui_impl_dx9.cpp /^static LPDIRECT3DDEVICE9 g_pd3dDevice = NULL;$/;" v typeref:typename:LPDIRECT3DDEVICE9 file:
  7618. g_pd3dDeviceContext third_party/imgui/examples/example_sdl_directx11/main.cpp /^static ID3D11DeviceContext* g_pd3dDeviceContext = NULL;$/;" v typeref:typename:ID3D11DeviceContext * file:
  7619. g_pd3dDeviceContext third_party/imgui/examples/example_win32_directx11/main.cpp /^static ID3D11DeviceContext* g_pd3dDeviceContext = NULL;$/;" v typeref:typename:ID3D11DeviceContext * file:
  7620. g_pd3dDeviceContext third_party/imgui/examples/imgui_impl_dx11.cpp /^static ID3D11DeviceContext* g_pd3dDeviceContext = NULL;$/;" v typeref:typename:ID3D11DeviceContext * file:
  7621. g_pd3dRtvDescHeap third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12DescriptorHeap* g_pd3dRtvDescHeap = NULL;$/;" v typeref:typename:ID3D12DescriptorHeap * file:
  7622. g_pd3dSrvDescHeap third_party/imgui/examples/example_win32_directx12/main.cpp /^static ID3D12DescriptorHeap* g_pd3dSrvDescHeap = NULL;$/;" v typeref:typename:ID3D12DescriptorHeap * file:
  7623. game libswan/include/swan/common.h /^ Game &game;$/;" m struct:Swan::Context typeref:typename:Game &
  7624. game_ libswan/include/swan/World.h /^ Game *game_;$/;" m class:Swan::World typeref:typename:Game *
  7625. game_draw_ libswan/include/swan/PerfCounter.h /^ Counter<> game_draw_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  7626. game_tick_ libswan/include/swan/PerfCounter.h /^ Counter<> game_tick_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  7627. game_update_ libswan/include/swan/PerfCounter.h /^ Counter<> game_update_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  7628. game_updates_per_frame_ libswan/include/swan/PerfCounter.h /^ Counter<> game_updates_per_frame_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  7629. genChunk core.mod/src/WGDefault.cc /^void WGDefault::genChunk(Swan::WorldPlane &plane, Swan::Chunk &chunk) {$/;" f class:WGDefault typeref:typename:void
  7630. genTile core.mod/src/WGDefault.cc /^Swan::Tile::ID WGDefault::genTile(Swan::TilePos pos) {$/;" f class:WGDefault typeref:typename:Swan::Tile::ID
  7631. gen_ libswan/include/swan/WorldPlane.h /^ std::shared_ptr<WorldGen> gen_;$/;" m class:Swan::WorldPlane typeref:typename:std::shared_ptr<WorldGen>
  7632. get libswan/include/swan/OS.h /^ template<typename T> T get(const std::string &name) { return (T)getVoid(name); }$/;" f class:Swan::OS::Dynlib typeref:typename:T
  7633. get libswan/include/swan/traits/InventoryTrait.h /^ ItemStack get(int slot) override {$/;" f class:Swan::InventoryTrait::BasicInventory typeref:typename:ItemStack
  7634. getBody libswan/include/swan/Entity.h /^ virtual BodyTrait::Body &getBody() override { return body_; }$/;" f class:Swan::PhysicsEntity typeref:typename:BodyTrait::Body &
  7635. getBounds libswan/include/swan/traits/BodyTrait.h /^ BodyTrait::Bounds getBounds() override { return BodyTrait::Bounds{ pos_, size_ }; }$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:BodyTrait::Bounds
  7636. getBounds libswan/include/swan/traits/BodyTrait.h /^ BodyTrait::Bounds getBounds() override { return BodyTrait::Bounds{ pos_, size_ }; }$/;" f class:Swan::BodyTrait::StaticBody typeref:typename:BodyTrait::Bounds
  7637. getChunk libswan/src/WorldPlane.cc /^Chunk &WorldPlane::getChunk(ChunkPos pos) {$/;" f class:Swan::WorldPlane typeref:typename:Chunk &
  7638. getContext libswan/src/WorldPlane.cc /^Context WorldPlane::getContext() {$/;" f class:Swan::WorldPlane typeref:typename:Context
  7639. getEntities libswan/src/Mod.cc /^Iter<Entity::Factory *> Mod::getEntities() {$/;" f class:Swan::Mod typeref:typename:Iter<Entity::Factory * >
  7640. getEntsInArea libswan/src/WorldPlane.cc /^Iter<Entity *> WorldPlane::getEntsInArea(Vec2 center, float radius) {$/;" f class:Swan::WorldPlane typeref:typename:Iter<Entity * >
  7641. getEntsOfType libswan/include/swan/WorldPlane.h /^ Iter<T *>getEntsOfType() {$/;" f class:Swan::WorldPlane typeref:typename:Iter<T * >
  7642. getImage libswan/src/Resource.cc /^ImageResource &ResourceManager::getImage(const std::string &name) const {$/;" f class:Swan::ResourceManager typeref:typename:ImageResource &
  7643. getInventory core.mod/src/entities/EntPlayer.h /^ Swan::InventoryTrait::Inventory &getInventory() override { return inventory_; }$/;" f class:EntPlayer typeref:typename:Swan::InventoryTrait::Inventory &
  7644. getItem libswan/src/World.cc /^Item &World::getItem(const std::string &name) {$/;" f class:Swan::World typeref:typename:Item &
  7645. getMousePos libswan/include/swan/Game.h /^ Vec2i getMousePos() { return mouse_pos_; }$/;" f class:Swan::Game typeref:typename:Vec2i
  7646. getMouseTile libswan/src/Game.cc /^TilePos Game::getMouseTile() {$/;" f class:Swan::Game typeref:typename:TilePos
  7647. getPixSize libswan/include/swan/Win.h /^ Vec2 getPixSize() {$/;" f class:Swan::Win typeref:typename:Vec2
  7648. getSize libswan/include/swan/Win.h /^ Vec2 getSize() {$/;" f class:Swan::Win typeref:typename:Vec2
  7649. getTile libswan/src/World.cc /^Tile &World::getTile(const std::string &name) {$/;" f class:Swan::World typeref:typename:Tile &
  7650. getTile libswan/src/WorldPlane.cc /^Tile &WorldPlane::getTile(TilePos pos) {$/;" f class:Swan::WorldPlane typeref:typename:Tile &
  7651. getTileByID libswan/src/World.cc /^Tile &World::getTileByID(Tile::ID id) {$/;" f class:Swan::World typeref:typename:Tile &
  7652. getTileData libswan/src/Chunk.cc /^Tile::ID *Chunk::getTileData() {$/;" f class:Swan::Chunk typeref:typename:Tile::ID *
  7653. getTileID libswan/src/Chunk.cc /^Tile::ID Chunk::getTileID(RelPos pos) {$/;" f class:Swan::Chunk typeref:typename:Tile::ID
  7654. getTileID libswan/src/World.cc /^Tile::ID World::getTileID(const std::string &name) {$/;" f class:Swan::World typeref:typename:Tile::ID
  7655. getTileID libswan/src/WorldPlane.cc /^Tile::ID WorldPlane::getTileID(TilePos pos) {$/;" f class:Swan::WorldPlane typeref:typename:Tile::ID
  7656. getVoid libswan/src/OS.cc /^void *Dynlib::getVoid(const std::string &name) {$/;" f class:Swan::OS::Dynlib typeref:typename:void *
  7657. getWorldGens libswan/src/Mod.cc /^Iter<WorldGen::Factory *> Mod::getWorldGens() {$/;" f class:Swan::Mod typeref:typename:Iter<WorldGen::Factory * >
  7658. get_proc third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static void *get_proc(const char *proc)$/;" f typeref:typename:void * file:
  7659. gl3wActiveShaderProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLACTIVESHADERPROGRAMPROC gl3wActiveShaderProgram;$/;" v typeref:typename:PFNGLACTIVESHADERPROGRAMPROC
  7660. gl3wActiveTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLACTIVETEXTUREPROC gl3wActiveTexture;$/;" v typeref:typename:PFNGLACTIVETEXTUREPROC
  7661. gl3wAttachShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLATTACHSHADERPROC gl3wAttachShader;$/;" v typeref:typename:PFNGLATTACHSHADERPROC
  7662. gl3wBeginConditionalRender third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBEGINCONDITIONALRENDERPROC gl3wBeginConditionalRender;$/;" v typeref:typename:PFNGLBEGINCONDITIONALRENDERPROC
  7663. gl3wBeginQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBEGINQUERYPROC gl3wBeginQuery;$/;" v typeref:typename:PFNGLBEGINQUERYPROC
  7664. gl3wBeginQueryIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBEGINQUERYINDEXEDPROC gl3wBeginQueryIndexed;$/;" v typeref:typename:PFNGLBEGINQUERYINDEXEDPROC
  7665. gl3wBeginTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBEGINTRANSFORMFEEDBACKPROC gl3wBeginTransformFeedback;$/;" v typeref:typename:PFNGLBEGINTRANSFORMFEEDBACKPROC
  7666. gl3wBindAttribLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDATTRIBLOCATIONPROC gl3wBindAttribLocation;$/;" v typeref:typename:PFNGLBINDATTRIBLOCATIONPROC
  7667. gl3wBindBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDBUFFERPROC gl3wBindBuffer;$/;" v typeref:typename:PFNGLBINDBUFFERPROC
  7668. gl3wBindBufferBase third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDBUFFERBASEPROC gl3wBindBufferBase;$/;" v typeref:typename:PFNGLBINDBUFFERBASEPROC
  7669. gl3wBindBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDBUFFERRANGEPROC gl3wBindBufferRange;$/;" v typeref:typename:PFNGLBINDBUFFERRANGEPROC
  7670. gl3wBindFragDataLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDFRAGDATALOCATIONPROC gl3wBindFragDataLocation;$/;" v typeref:typename:PFNGLBINDFRAGDATALOCATIONPROC
  7671. gl3wBindFragDataLocationIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDFRAGDATALOCATIONINDEXEDPROC gl3wBindFragDataLocationIndexed;$/;" v typeref:typename:PFNGLBINDFRAGDATALOCATIONINDEXEDPROC
  7672. gl3wBindFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDFRAMEBUFFERPROC gl3wBindFramebuffer;$/;" v typeref:typename:PFNGLBINDFRAMEBUFFERPROC
  7673. gl3wBindImageTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDIMAGETEXTUREPROC gl3wBindImageTexture;$/;" v typeref:typename:PFNGLBINDIMAGETEXTUREPROC
  7674. gl3wBindProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDPROGRAMPIPELINEPROC gl3wBindProgramPipeline;$/;" v typeref:typename:PFNGLBINDPROGRAMPIPELINEPROC
  7675. gl3wBindRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDRENDERBUFFERPROC gl3wBindRenderbuffer;$/;" v typeref:typename:PFNGLBINDRENDERBUFFERPROC
  7676. gl3wBindSampler third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDSAMPLERPROC gl3wBindSampler;$/;" v typeref:typename:PFNGLBINDSAMPLERPROC
  7677. gl3wBindTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDTEXTUREPROC gl3wBindTexture;$/;" v typeref:typename:PFNGLBINDTEXTUREPROC
  7678. gl3wBindTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDTRANSFORMFEEDBACKPROC gl3wBindTransformFeedback;$/;" v typeref:typename:PFNGLBINDTRANSFORMFEEDBACKPROC
  7679. gl3wBindVertexArray third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDVERTEXARRAYPROC gl3wBindVertexArray;$/;" v typeref:typename:PFNGLBINDVERTEXARRAYPROC
  7680. gl3wBindVertexBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBINDVERTEXBUFFERPROC gl3wBindVertexBuffer;$/;" v typeref:typename:PFNGLBINDVERTEXBUFFERPROC
  7681. gl3wBlendColor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDCOLORPROC gl3wBlendColor;$/;" v typeref:typename:PFNGLBLENDCOLORPROC
  7682. gl3wBlendEquation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONPROC gl3wBlendEquation;$/;" v typeref:typename:PFNGLBLENDEQUATIONPROC
  7683. gl3wBlendEquationSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONSEPARATEPROC gl3wBlendEquationSeparate;$/;" v typeref:typename:PFNGLBLENDEQUATIONSEPARATEPROC
  7684. gl3wBlendEquationSeparatei third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONSEPARATEIPROC gl3wBlendEquationSeparatei;$/;" v typeref:typename:PFNGLBLENDEQUATIONSEPARATEIPROC
  7685. gl3wBlendEquationSeparateiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONSEPARATEIARBPROC gl3wBlendEquationSeparateiARB;$/;" v typeref:typename:PFNGLBLENDEQUATIONSEPARATEIARBPROC
  7686. gl3wBlendEquationi third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONIPROC gl3wBlendEquationi;$/;" v typeref:typename:PFNGLBLENDEQUATIONIPROC
  7687. gl3wBlendEquationiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDEQUATIONIARBPROC gl3wBlendEquationiARB;$/;" v typeref:typename:PFNGLBLENDEQUATIONIARBPROC
  7688. gl3wBlendFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCPROC gl3wBlendFunc;$/;" v typeref:typename:PFNGLBLENDFUNCPROC
  7689. gl3wBlendFuncSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCSEPARATEPROC gl3wBlendFuncSeparate;$/;" v typeref:typename:PFNGLBLENDFUNCSEPARATEPROC
  7690. gl3wBlendFuncSeparatei third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCSEPARATEIPROC gl3wBlendFuncSeparatei;$/;" v typeref:typename:PFNGLBLENDFUNCSEPARATEIPROC
  7691. gl3wBlendFuncSeparateiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCSEPARATEIARBPROC gl3wBlendFuncSeparateiARB;$/;" v typeref:typename:PFNGLBLENDFUNCSEPARATEIARBPROC
  7692. gl3wBlendFunci third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCIPROC gl3wBlendFunci;$/;" v typeref:typename:PFNGLBLENDFUNCIPROC
  7693. gl3wBlendFunciARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLENDFUNCIARBPROC gl3wBlendFunciARB;$/;" v typeref:typename:PFNGLBLENDFUNCIARBPROC
  7694. gl3wBlitFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBLITFRAMEBUFFERPROC gl3wBlitFramebuffer;$/;" v typeref:typename:PFNGLBLITFRAMEBUFFERPROC
  7695. gl3wBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBUFFERDATAPROC gl3wBufferData;$/;" v typeref:typename:PFNGLBUFFERDATAPROC
  7696. gl3wBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLBUFFERSUBDATAPROC gl3wBufferSubData;$/;" v typeref:typename:PFNGLBUFFERSUBDATAPROC
  7697. gl3wCheckFramebufferStatus third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCHECKFRAMEBUFFERSTATUSPROC gl3wCheckFramebufferStatus;$/;" v typeref:typename:PFNGLCHECKFRAMEBUFFERSTATUSPROC
  7698. gl3wClampColor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLAMPCOLORPROC gl3wClampColor;$/;" v typeref:typename:PFNGLCLAMPCOLORPROC
  7699. gl3wClear third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARPROC gl3wClear;$/;" v typeref:typename:PFNGLCLEARPROC
  7700. gl3wClearBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERDATAPROC gl3wClearBufferData;$/;" v typeref:typename:PFNGLCLEARBUFFERDATAPROC
  7701. gl3wClearBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERSUBDATAPROC gl3wClearBufferSubData;$/;" v typeref:typename:PFNGLCLEARBUFFERSUBDATAPROC
  7702. gl3wClearBufferfi third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERFIPROC gl3wClearBufferfi;$/;" v typeref:typename:PFNGLCLEARBUFFERFIPROC
  7703. gl3wClearBufferfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERFVPROC gl3wClearBufferfv;$/;" v typeref:typename:PFNGLCLEARBUFFERFVPROC
  7704. gl3wClearBufferiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERIVPROC gl3wClearBufferiv;$/;" v typeref:typename:PFNGLCLEARBUFFERIVPROC
  7705. gl3wClearBufferuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARBUFFERUIVPROC gl3wClearBufferuiv;$/;" v typeref:typename:PFNGLCLEARBUFFERUIVPROC
  7706. gl3wClearColor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARCOLORPROC gl3wClearColor;$/;" v typeref:typename:PFNGLCLEARCOLORPROC
  7707. gl3wClearDepth third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARDEPTHPROC gl3wClearDepth;$/;" v typeref:typename:PFNGLCLEARDEPTHPROC
  7708. gl3wClearDepthf third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARDEPTHFPROC gl3wClearDepthf;$/;" v typeref:typename:PFNGLCLEARDEPTHFPROC
  7709. gl3wClearNamedBufferDataEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARNAMEDBUFFERDATAEXTPROC gl3wClearNamedBufferDataEXT;$/;" v typeref:typename:PFNGLCLEARNAMEDBUFFERDATAEXTPROC
  7710. gl3wClearNamedBufferSubDataEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC gl3wClearNamedBufferSubDataEXT;$/;" v typeref:typename:PFNGLCLEARNAMEDBUFFERSUBDATAEXTPROC
  7711. gl3wClearStencil third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLEARSTENCILPROC gl3wClearStencil;$/;" v typeref:typename:PFNGLCLEARSTENCILPROC
  7712. gl3wClientWaitSync third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCLIENTWAITSYNCPROC gl3wClientWaitSync;$/;" v typeref:typename:PFNGLCLIENTWAITSYNCPROC
  7713. gl3wColorMask third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORMASKPROC gl3wColorMask;$/;" v typeref:typename:PFNGLCOLORMASKPROC
  7714. gl3wColorMaski third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORMASKIPROC gl3wColorMaski;$/;" v typeref:typename:PFNGLCOLORMASKIPROC
  7715. gl3wColorP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORP3UIPROC gl3wColorP3ui;$/;" v typeref:typename:PFNGLCOLORP3UIPROC
  7716. gl3wColorP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORP3UIVPROC gl3wColorP3uiv;$/;" v typeref:typename:PFNGLCOLORP3UIVPROC
  7717. gl3wColorP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORP4UIPROC gl3wColorP4ui;$/;" v typeref:typename:PFNGLCOLORP4UIPROC
  7718. gl3wColorP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOLORP4UIVPROC gl3wColorP4uiv;$/;" v typeref:typename:PFNGLCOLORP4UIVPROC
  7719. gl3wCompileShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPILESHADERPROC gl3wCompileShader;$/;" v typeref:typename:PFNGLCOMPILESHADERPROC
  7720. gl3wCompileShaderIncludeARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPILESHADERINCLUDEARBPROC gl3wCompileShaderIncludeARB;$/;" v typeref:typename:PFNGLCOMPILESHADERINCLUDEARBPROC
  7721. gl3wCompressedTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXIMAGE1DPROC gl3wCompressedTexImage1D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXIMAGE1DPROC
  7722. gl3wCompressedTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXIMAGE2DPROC gl3wCompressedTexImage2D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXIMAGE2DPROC
  7723. gl3wCompressedTexImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXIMAGE3DPROC gl3wCompressedTexImage3D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXIMAGE3DPROC
  7724. gl3wCompressedTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC gl3wCompressedTexSubImage1D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC
  7725. gl3wCompressedTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC gl3wCompressedTexSubImage2D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC
  7726. gl3wCompressedTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC gl3wCompressedTexSubImage3D;$/;" v typeref:typename:PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC
  7727. gl3wCopyBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYBUFFERSUBDATAPROC gl3wCopyBufferSubData;$/;" v typeref:typename:PFNGLCOPYBUFFERSUBDATAPROC
  7728. gl3wCopyImageSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYIMAGESUBDATAPROC gl3wCopyImageSubData;$/;" v typeref:typename:PFNGLCOPYIMAGESUBDATAPROC
  7729. gl3wCopyTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYTEXIMAGE1DPROC gl3wCopyTexImage1D;$/;" v typeref:typename:PFNGLCOPYTEXIMAGE1DPROC
  7730. gl3wCopyTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYTEXIMAGE2DPROC gl3wCopyTexImage2D;$/;" v typeref:typename:PFNGLCOPYTEXIMAGE2DPROC
  7731. gl3wCopyTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYTEXSUBIMAGE1DPROC gl3wCopyTexSubImage1D;$/;" v typeref:typename:PFNGLCOPYTEXSUBIMAGE1DPROC
  7732. gl3wCopyTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYTEXSUBIMAGE2DPROC gl3wCopyTexSubImage2D;$/;" v typeref:typename:PFNGLCOPYTEXSUBIMAGE2DPROC
  7733. gl3wCopyTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCOPYTEXSUBIMAGE3DPROC gl3wCopyTexSubImage3D;$/;" v typeref:typename:PFNGLCOPYTEXSUBIMAGE3DPROC
  7734. gl3wCreateProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCREATEPROGRAMPROC gl3wCreateProgram;$/;" v typeref:typename:PFNGLCREATEPROGRAMPROC
  7735. gl3wCreateShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCREATESHADERPROC gl3wCreateShader;$/;" v typeref:typename:PFNGLCREATESHADERPROC
  7736. gl3wCreateShaderProgramv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCREATESHADERPROGRAMVPROC gl3wCreateShaderProgramv;$/;" v typeref:typename:PFNGLCREATESHADERPROGRAMVPROC
  7737. gl3wCreateSyncFromCLeventARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCREATESYNCFROMCLEVENTARBPROC gl3wCreateSyncFromCLeventARB;$/;" v typeref:typename:PFNGLCREATESYNCFROMCLEVENTARBPROC
  7738. gl3wCullFace third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLCULLFACEPROC gl3wCullFace;$/;" v typeref:typename:PFNGLCULLFACEPROC
  7739. gl3wDebugMessageCallback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGECALLBACKPROC gl3wDebugMessageCallback;$/;" v typeref:typename:PFNGLDEBUGMESSAGECALLBACKPROC
  7740. gl3wDebugMessageCallbackARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGECALLBACKARBPROC gl3wDebugMessageCallbackARB;$/;" v typeref:typename:PFNGLDEBUGMESSAGECALLBACKARBPROC
  7741. gl3wDebugMessageControl third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGECONTROLPROC gl3wDebugMessageControl;$/;" v typeref:typename:PFNGLDEBUGMESSAGECONTROLPROC
  7742. gl3wDebugMessageControlARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGECONTROLARBPROC gl3wDebugMessageControlARB;$/;" v typeref:typename:PFNGLDEBUGMESSAGECONTROLARBPROC
  7743. gl3wDebugMessageInsert third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGEINSERTPROC gl3wDebugMessageInsert;$/;" v typeref:typename:PFNGLDEBUGMESSAGEINSERTPROC
  7744. gl3wDebugMessageInsertARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEBUGMESSAGEINSERTARBPROC gl3wDebugMessageInsertARB;$/;" v typeref:typename:PFNGLDEBUGMESSAGEINSERTARBPROC
  7745. gl3wDeleteBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEBUFFERSPROC gl3wDeleteBuffers;$/;" v typeref:typename:PFNGLDELETEBUFFERSPROC
  7746. gl3wDeleteFramebuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEFRAMEBUFFERSPROC gl3wDeleteFramebuffers;$/;" v typeref:typename:PFNGLDELETEFRAMEBUFFERSPROC
  7747. gl3wDeleteNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETENAMEDSTRINGARBPROC gl3wDeleteNamedStringARB;$/;" v typeref:typename:PFNGLDELETENAMEDSTRINGARBPROC
  7748. gl3wDeleteProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEPROGRAMPROC gl3wDeleteProgram;$/;" v typeref:typename:PFNGLDELETEPROGRAMPROC
  7749. gl3wDeleteProgramPipelines third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEPROGRAMPIPELINESPROC gl3wDeleteProgramPipelines;$/;" v typeref:typename:PFNGLDELETEPROGRAMPIPELINESPROC
  7750. gl3wDeleteQueries third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEQUERIESPROC gl3wDeleteQueries;$/;" v typeref:typename:PFNGLDELETEQUERIESPROC
  7751. gl3wDeleteRenderbuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETERENDERBUFFERSPROC gl3wDeleteRenderbuffers;$/;" v typeref:typename:PFNGLDELETERENDERBUFFERSPROC
  7752. gl3wDeleteSamplers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETESAMPLERSPROC gl3wDeleteSamplers;$/;" v typeref:typename:PFNGLDELETESAMPLERSPROC
  7753. gl3wDeleteShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETESHADERPROC gl3wDeleteShader;$/;" v typeref:typename:PFNGLDELETESHADERPROC
  7754. gl3wDeleteSync third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETESYNCPROC gl3wDeleteSync;$/;" v typeref:typename:PFNGLDELETESYNCPROC
  7755. gl3wDeleteTextures third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETETEXTURESPROC gl3wDeleteTextures;$/;" v typeref:typename:PFNGLDELETETEXTURESPROC
  7756. gl3wDeleteTransformFeedbacks third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETETRANSFORMFEEDBACKSPROC gl3wDeleteTransformFeedbacks;$/;" v typeref:typename:PFNGLDELETETRANSFORMFEEDBACKSPROC
  7757. gl3wDeleteVertexArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDELETEVERTEXARRAYSPROC gl3wDeleteVertexArrays;$/;" v typeref:typename:PFNGLDELETEVERTEXARRAYSPROC
  7758. gl3wDepthFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHFUNCPROC gl3wDepthFunc;$/;" v typeref:typename:PFNGLDEPTHFUNCPROC
  7759. gl3wDepthMask third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHMASKPROC gl3wDepthMask;$/;" v typeref:typename:PFNGLDEPTHMASKPROC
  7760. gl3wDepthRange third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHRANGEPROC gl3wDepthRange;$/;" v typeref:typename:PFNGLDEPTHRANGEPROC
  7761. gl3wDepthRangeArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHRANGEARRAYVPROC gl3wDepthRangeArrayv;$/;" v typeref:typename:PFNGLDEPTHRANGEARRAYVPROC
  7762. gl3wDepthRangeIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHRANGEINDEXEDPROC gl3wDepthRangeIndexed;$/;" v typeref:typename:PFNGLDEPTHRANGEINDEXEDPROC
  7763. gl3wDepthRangef third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDEPTHRANGEFPROC gl3wDepthRangef;$/;" v typeref:typename:PFNGLDEPTHRANGEFPROC
  7764. gl3wDetachShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDETACHSHADERPROC gl3wDetachShader;$/;" v typeref:typename:PFNGLDETACHSHADERPROC
  7765. gl3wDisable third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDISABLEPROC gl3wDisable;$/;" v typeref:typename:PFNGLDISABLEPROC
  7766. gl3wDisableVertexAttribArray third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDISABLEVERTEXATTRIBARRAYPROC gl3wDisableVertexAttribArray;$/;" v typeref:typename:PFNGLDISABLEVERTEXATTRIBARRAYPROC
  7767. gl3wDisablei third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDISABLEIPROC gl3wDisablei;$/;" v typeref:typename:PFNGLDISABLEIPROC
  7768. gl3wDispatchCompute third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDISPATCHCOMPUTEPROC gl3wDispatchCompute;$/;" v typeref:typename:PFNGLDISPATCHCOMPUTEPROC
  7769. gl3wDispatchComputeIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDISPATCHCOMPUTEINDIRECTPROC gl3wDispatchComputeIndirect;$/;" v typeref:typename:PFNGLDISPATCHCOMPUTEINDIRECTPROC
  7770. gl3wDrawArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWARRAYSPROC gl3wDrawArrays;$/;" v typeref:typename:PFNGLDRAWARRAYSPROC
  7771. gl3wDrawArraysIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWARRAYSINDIRECTPROC gl3wDrawArraysIndirect;$/;" v typeref:typename:PFNGLDRAWARRAYSINDIRECTPROC
  7772. gl3wDrawArraysInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWARRAYSINSTANCEDPROC gl3wDrawArraysInstanced;$/;" v typeref:typename:PFNGLDRAWARRAYSINSTANCEDPROC
  7773. gl3wDrawArraysInstancedBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC gl3wDrawArraysInstancedBaseInstance;$/;" v typeref:typename:PFNGLDRAWARRAYSINSTANCEDBASEINSTANCEPROC
  7774. gl3wDrawBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWBUFFERPROC gl3wDrawBuffer;$/;" v typeref:typename:PFNGLDRAWBUFFERPROC
  7775. gl3wDrawBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWBUFFERSPROC gl3wDrawBuffers;$/;" v typeref:typename:PFNGLDRAWBUFFERSPROC
  7776. gl3wDrawElements third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSPROC gl3wDrawElements;$/;" v typeref:typename:PFNGLDRAWELEMENTSPROC
  7777. gl3wDrawElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSBASEVERTEXPROC gl3wDrawElementsBaseVertex;$/;" v typeref:typename:PFNGLDRAWELEMENTSBASEVERTEXPROC
  7778. gl3wDrawElementsIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSINDIRECTPROC gl3wDrawElementsIndirect;$/;" v typeref:typename:PFNGLDRAWELEMENTSINDIRECTPROC
  7779. gl3wDrawElementsInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSINSTANCEDPROC gl3wDrawElementsInstanced;$/;" v typeref:typename:PFNGLDRAWELEMENTSINSTANCEDPROC
  7780. gl3wDrawElementsInstancedBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC gl3wDrawElementsInstancedBaseInstance;$/;" v typeref:typename:PFNGLDRAWELEMENTSINSTANCEDBASEINSTANCEPROC
  7781. gl3wDrawElementsInstancedBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC gl3wDrawElementsInstancedBaseVertex;$/;" v typeref:typename:PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC
  7782. gl3wDrawElementsInstancedBaseVertexBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC gl3wDrawElementsInstancedBaseVertexBaseInst/;" v typeref:typename:PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXBASEINSTANCEPROC
  7783. gl3wDrawRangeElements third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWRANGEELEMENTSPROC gl3wDrawRangeElements;$/;" v typeref:typename:PFNGLDRAWRANGEELEMENTSPROC
  7784. gl3wDrawRangeElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC gl3wDrawRangeElementsBaseVertex;$/;" v typeref:typename:PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC
  7785. gl3wDrawTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWTRANSFORMFEEDBACKPROC gl3wDrawTransformFeedback;$/;" v typeref:typename:PFNGLDRAWTRANSFORMFEEDBACKPROC
  7786. gl3wDrawTransformFeedbackInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC gl3wDrawTransformFeedbackInstanced;$/;" v typeref:typename:PFNGLDRAWTRANSFORMFEEDBACKINSTANCEDPROC
  7787. gl3wDrawTransformFeedbackStream third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC gl3wDrawTransformFeedbackStream;$/;" v typeref:typename:PFNGLDRAWTRANSFORMFEEDBACKSTREAMPROC
  7788. gl3wDrawTransformFeedbackStreamInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC gl3wDrawTransformFeedbackStreamInstanced;$/;" v typeref:typename:PFNGLDRAWTRANSFORMFEEDBACKSTREAMINSTANCEDPROC
  7789. gl3wEnable third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENABLEPROC gl3wEnable;$/;" v typeref:typename:PFNGLENABLEPROC
  7790. gl3wEnableVertexAttribArray third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENABLEVERTEXATTRIBARRAYPROC gl3wEnableVertexAttribArray;$/;" v typeref:typename:PFNGLENABLEVERTEXATTRIBARRAYPROC
  7791. gl3wEnablei third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENABLEIPROC gl3wEnablei;$/;" v typeref:typename:PFNGLENABLEIPROC
  7792. gl3wEndConditionalRender third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENDCONDITIONALRENDERPROC gl3wEndConditionalRender;$/;" v typeref:typename:PFNGLENDCONDITIONALRENDERPROC
  7793. gl3wEndQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENDQUERYPROC gl3wEndQuery;$/;" v typeref:typename:PFNGLENDQUERYPROC
  7794. gl3wEndQueryIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENDQUERYINDEXEDPROC gl3wEndQueryIndexed;$/;" v typeref:typename:PFNGLENDQUERYINDEXEDPROC
  7795. gl3wEndTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLENDTRANSFORMFEEDBACKPROC gl3wEndTransformFeedback;$/;" v typeref:typename:PFNGLENDTRANSFORMFEEDBACKPROC
  7796. gl3wFenceSync third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFENCESYNCPROC gl3wFenceSync;$/;" v typeref:typename:PFNGLFENCESYNCPROC
  7797. gl3wFinish third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFINISHPROC gl3wFinish;$/;" v typeref:typename:PFNGLFINISHPROC
  7798. gl3wFlush third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFLUSHPROC gl3wFlush;$/;" v typeref:typename:PFNGLFLUSHPROC
  7799. gl3wFlushMappedBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFLUSHMAPPEDBUFFERRANGEPROC gl3wFlushMappedBufferRange;$/;" v typeref:typename:PFNGLFLUSHMAPPEDBUFFERRANGEPROC
  7800. gl3wFramebufferParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERPARAMETERIPROC gl3wFramebufferParameteri;$/;" v typeref:typename:PFNGLFRAMEBUFFERPARAMETERIPROC
  7801. gl3wFramebufferRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERRENDERBUFFERPROC gl3wFramebufferRenderbuffer;$/;" v typeref:typename:PFNGLFRAMEBUFFERRENDERBUFFERPROC
  7802. gl3wFramebufferTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERTEXTUREPROC gl3wFramebufferTexture;$/;" v typeref:typename:PFNGLFRAMEBUFFERTEXTUREPROC
  7803. gl3wFramebufferTexture1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERTEXTURE1DPROC gl3wFramebufferTexture1D;$/;" v typeref:typename:PFNGLFRAMEBUFFERTEXTURE1DPROC
  7804. gl3wFramebufferTexture2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERTEXTURE2DPROC gl3wFramebufferTexture2D;$/;" v typeref:typename:PFNGLFRAMEBUFFERTEXTURE2DPROC
  7805. gl3wFramebufferTexture3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERTEXTURE3DPROC gl3wFramebufferTexture3D;$/;" v typeref:typename:PFNGLFRAMEBUFFERTEXTURE3DPROC
  7806. gl3wFramebufferTextureLayer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRAMEBUFFERTEXTURELAYERPROC gl3wFramebufferTextureLayer;$/;" v typeref:typename:PFNGLFRAMEBUFFERTEXTURELAYERPROC
  7807. gl3wFrontFace third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLFRONTFACEPROC gl3wFrontFace;$/;" v typeref:typename:PFNGLFRONTFACEPROC
  7808. gl3wGenBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENBUFFERSPROC gl3wGenBuffers;$/;" v typeref:typename:PFNGLGENBUFFERSPROC
  7809. gl3wGenFramebuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENFRAMEBUFFERSPROC gl3wGenFramebuffers;$/;" v typeref:typename:PFNGLGENFRAMEBUFFERSPROC
  7810. gl3wGenProgramPipelines third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENPROGRAMPIPELINESPROC gl3wGenProgramPipelines;$/;" v typeref:typename:PFNGLGENPROGRAMPIPELINESPROC
  7811. gl3wGenQueries third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENQUERIESPROC gl3wGenQueries;$/;" v typeref:typename:PFNGLGENQUERIESPROC
  7812. gl3wGenRenderbuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENRENDERBUFFERSPROC gl3wGenRenderbuffers;$/;" v typeref:typename:PFNGLGENRENDERBUFFERSPROC
  7813. gl3wGenSamplers third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENSAMPLERSPROC gl3wGenSamplers;$/;" v typeref:typename:PFNGLGENSAMPLERSPROC
  7814. gl3wGenTextures third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENTEXTURESPROC gl3wGenTextures;$/;" v typeref:typename:PFNGLGENTEXTURESPROC
  7815. gl3wGenTransformFeedbacks third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENTRANSFORMFEEDBACKSPROC gl3wGenTransformFeedbacks;$/;" v typeref:typename:PFNGLGENTRANSFORMFEEDBACKSPROC
  7816. gl3wGenVertexArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENVERTEXARRAYSPROC gl3wGenVertexArrays;$/;" v typeref:typename:PFNGLGENVERTEXARRAYSPROC
  7817. gl3wGenerateMipmap third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGENERATEMIPMAPPROC gl3wGenerateMipmap;$/;" v typeref:typename:PFNGLGENERATEMIPMAPPROC
  7818. gl3wGetActiveAtomicCounterBufferiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC gl3wGetActiveAtomicCounterBufferiv;$/;" v typeref:typename:PFNGLGETACTIVEATOMICCOUNTERBUFFERIVPROC
  7819. gl3wGetActiveAttrib third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEATTRIBPROC gl3wGetActiveAttrib;$/;" v typeref:typename:PFNGLGETACTIVEATTRIBPROC
  7820. gl3wGetActiveSubroutineName third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVESUBROUTINENAMEPROC gl3wGetActiveSubroutineName;$/;" v typeref:typename:PFNGLGETACTIVESUBROUTINENAMEPROC
  7821. gl3wGetActiveSubroutineUniformName third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC gl3wGetActiveSubroutineUniformName;$/;" v typeref:typename:PFNGLGETACTIVESUBROUTINEUNIFORMNAMEPROC
  7822. gl3wGetActiveSubroutineUniformiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC gl3wGetActiveSubroutineUniformiv;$/;" v typeref:typename:PFNGLGETACTIVESUBROUTINEUNIFORMIVPROC
  7823. gl3wGetActiveUniform third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEUNIFORMPROC gl3wGetActiveUniform;$/;" v typeref:typename:PFNGLGETACTIVEUNIFORMPROC
  7824. gl3wGetActiveUniformBlockName third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC gl3wGetActiveUniformBlockName;$/;" v typeref:typename:PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC
  7825. gl3wGetActiveUniformBlockiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEUNIFORMBLOCKIVPROC gl3wGetActiveUniformBlockiv;$/;" v typeref:typename:PFNGLGETACTIVEUNIFORMBLOCKIVPROC
  7826. gl3wGetActiveUniformName third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEUNIFORMNAMEPROC gl3wGetActiveUniformName;$/;" v typeref:typename:PFNGLGETACTIVEUNIFORMNAMEPROC
  7827. gl3wGetActiveUniformsiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETACTIVEUNIFORMSIVPROC gl3wGetActiveUniformsiv;$/;" v typeref:typename:PFNGLGETACTIVEUNIFORMSIVPROC
  7828. gl3wGetAttachedShaders third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETATTACHEDSHADERSPROC gl3wGetAttachedShaders;$/;" v typeref:typename:PFNGLGETATTACHEDSHADERSPROC
  7829. gl3wGetAttribLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETATTRIBLOCATIONPROC gl3wGetAttribLocation;$/;" v typeref:typename:PFNGLGETATTRIBLOCATIONPROC
  7830. gl3wGetBooleani_v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBOOLEANI_VPROC gl3wGetBooleani_v;$/;" v typeref:typename:PFNGLGETBOOLEANI_VPROC
  7831. gl3wGetBooleanv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBOOLEANVPROC gl3wGetBooleanv;$/;" v typeref:typename:PFNGLGETBOOLEANVPROC
  7832. gl3wGetBufferParameteri64v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBUFFERPARAMETERI64VPROC gl3wGetBufferParameteri64v;$/;" v typeref:typename:PFNGLGETBUFFERPARAMETERI64VPROC
  7833. gl3wGetBufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBUFFERPARAMETERIVPROC gl3wGetBufferParameteriv;$/;" v typeref:typename:PFNGLGETBUFFERPARAMETERIVPROC
  7834. gl3wGetBufferPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBUFFERPOINTERVPROC gl3wGetBufferPointerv;$/;" v typeref:typename:PFNGLGETBUFFERPOINTERVPROC
  7835. gl3wGetBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETBUFFERSUBDATAPROC gl3wGetBufferSubData;$/;" v typeref:typename:PFNGLGETBUFFERSUBDATAPROC
  7836. gl3wGetCompressedTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETCOMPRESSEDTEXIMAGEPROC gl3wGetCompressedTexImage;$/;" v typeref:typename:PFNGLGETCOMPRESSEDTEXIMAGEPROC
  7837. gl3wGetDebugMessageLog third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETDEBUGMESSAGELOGPROC gl3wGetDebugMessageLog;$/;" v typeref:typename:PFNGLGETDEBUGMESSAGELOGPROC
  7838. gl3wGetDebugMessageLogARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETDEBUGMESSAGELOGARBPROC gl3wGetDebugMessageLogARB;$/;" v typeref:typename:PFNGLGETDEBUGMESSAGELOGARBPROC
  7839. gl3wGetDoublei_v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETDOUBLEI_VPROC gl3wGetDoublei_v;$/;" v typeref:typename:PFNGLGETDOUBLEI_VPROC
  7840. gl3wGetDoublev third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETDOUBLEVPROC gl3wGetDoublev;$/;" v typeref:typename:PFNGLGETDOUBLEVPROC
  7841. gl3wGetError third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETERRORPROC gl3wGetError;$/;" v typeref:typename:PFNGLGETERRORPROC
  7842. gl3wGetFloati_v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFLOATI_VPROC gl3wGetFloati_v;$/;" v typeref:typename:PFNGLGETFLOATI_VPROC
  7843. gl3wGetFloatv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFLOATVPROC gl3wGetFloatv;$/;" v typeref:typename:PFNGLGETFLOATVPROC
  7844. gl3wGetFragDataIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFRAGDATAINDEXPROC gl3wGetFragDataIndex;$/;" v typeref:typename:PFNGLGETFRAGDATAINDEXPROC
  7845. gl3wGetFragDataLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFRAGDATALOCATIONPROC gl3wGetFragDataLocation;$/;" v typeref:typename:PFNGLGETFRAGDATALOCATIONPROC
  7846. gl3wGetFramebufferAttachmentParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC gl3wGetFramebufferAttachmentParameteriv;$/;" v typeref:typename:PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC
  7847. gl3wGetFramebufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETFRAMEBUFFERPARAMETERIVPROC gl3wGetFramebufferParameteriv;$/;" v typeref:typename:PFNGLGETFRAMEBUFFERPARAMETERIVPROC
  7848. gl3wGetGraphicsResetStatusARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETGRAPHICSRESETSTATUSARBPROC gl3wGetGraphicsResetStatusARB;$/;" v typeref:typename:PFNGLGETGRAPHICSRESETSTATUSARBPROC
  7849. gl3wGetInteger64i_v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTEGER64I_VPROC gl3wGetInteger64i_v;$/;" v typeref:typename:PFNGLGETINTEGER64I_VPROC
  7850. gl3wGetInteger64v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTEGER64VPROC gl3wGetInteger64v;$/;" v typeref:typename:PFNGLGETINTEGER64VPROC
  7851. gl3wGetIntegeri_v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTEGERI_VPROC gl3wGetIntegeri_v;$/;" v typeref:typename:PFNGLGETINTEGERI_VPROC
  7852. gl3wGetIntegerv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTEGERVPROC gl3wGetIntegerv;$/;" v typeref:typename:PFNGLGETINTEGERVPROC
  7853. gl3wGetInternalformati64v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTERNALFORMATI64VPROC gl3wGetInternalformati64v;$/;" v typeref:typename:PFNGLGETINTERNALFORMATI64VPROC
  7854. gl3wGetInternalformativ third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETINTERNALFORMATIVPROC gl3wGetInternalformativ;$/;" v typeref:typename:PFNGLGETINTERNALFORMATIVPROC
  7855. gl3wGetMultisamplefv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETMULTISAMPLEFVPROC gl3wGetMultisamplefv;$/;" v typeref:typename:PFNGLGETMULTISAMPLEFVPROC
  7856. gl3wGetNamedFramebufferParameterivEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC gl3wGetNamedFramebufferParameterivEXT;$/;" v typeref:typename:PFNGLGETNAMEDFRAMEBUFFERPARAMETERIVEXTPROC
  7857. gl3wGetNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNAMEDSTRINGARBPROC gl3wGetNamedStringARB;$/;" v typeref:typename:PFNGLGETNAMEDSTRINGARBPROC
  7858. gl3wGetNamedStringivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNAMEDSTRINGIVARBPROC gl3wGetNamedStringivARB;$/;" v typeref:typename:PFNGLGETNAMEDSTRINGIVARBPROC
  7859. gl3wGetObjectLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETOBJECTLABELPROC gl3wGetObjectLabel;$/;" v typeref:typename:PFNGLGETOBJECTLABELPROC
  7860. gl3wGetObjectPtrLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETOBJECTPTRLABELPROC gl3wGetObjectPtrLabel;$/;" v typeref:typename:PFNGLGETOBJECTPTRLABELPROC
  7861. gl3wGetPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPOINTERVPROC gl3wGetPointerv;$/;" v typeref:typename:PFNGLGETPOINTERVPROC
  7862. gl3wGetProcAddress third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^void *gl3wGetProcAddress(const char *proc)$/;" f typeref:typename:void *
  7863. gl3wGetProgramBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMBINARYPROC gl3wGetProgramBinary;$/;" v typeref:typename:PFNGLGETPROGRAMBINARYPROC
  7864. gl3wGetProgramInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMINFOLOGPROC gl3wGetProgramInfoLog;$/;" v typeref:typename:PFNGLGETPROGRAMINFOLOGPROC
  7865. gl3wGetProgramInterfaceiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMINTERFACEIVPROC gl3wGetProgramInterfaceiv;$/;" v typeref:typename:PFNGLGETPROGRAMINTERFACEIVPROC
  7866. gl3wGetProgramPipelineInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMPIPELINEINFOLOGPROC gl3wGetProgramPipelineInfoLog;$/;" v typeref:typename:PFNGLGETPROGRAMPIPELINEINFOLOGPROC
  7867. gl3wGetProgramPipelineiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMPIPELINEIVPROC gl3wGetProgramPipelineiv;$/;" v typeref:typename:PFNGLGETPROGRAMPIPELINEIVPROC
  7868. gl3wGetProgramResourceIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMRESOURCEINDEXPROC gl3wGetProgramResourceIndex;$/;" v typeref:typename:PFNGLGETPROGRAMRESOURCEINDEXPROC
  7869. gl3wGetProgramResourceLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMRESOURCELOCATIONPROC gl3wGetProgramResourceLocation;$/;" v typeref:typename:PFNGLGETPROGRAMRESOURCELOCATIONPROC
  7870. gl3wGetProgramResourceLocationIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC gl3wGetProgramResourceLocationIndex;$/;" v typeref:typename:PFNGLGETPROGRAMRESOURCELOCATIONINDEXPROC
  7871. gl3wGetProgramResourceName third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMRESOURCENAMEPROC gl3wGetProgramResourceName;$/;" v typeref:typename:PFNGLGETPROGRAMRESOURCENAMEPROC
  7872. gl3wGetProgramResourceiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMRESOURCEIVPROC gl3wGetProgramResourceiv;$/;" v typeref:typename:PFNGLGETPROGRAMRESOURCEIVPROC
  7873. gl3wGetProgramStageiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMSTAGEIVPROC gl3wGetProgramStageiv;$/;" v typeref:typename:PFNGLGETPROGRAMSTAGEIVPROC
  7874. gl3wGetProgramiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETPROGRAMIVPROC gl3wGetProgramiv;$/;" v typeref:typename:PFNGLGETPROGRAMIVPROC
  7875. gl3wGetQueryIndexediv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYINDEXEDIVPROC gl3wGetQueryIndexediv;$/;" v typeref:typename:PFNGLGETQUERYINDEXEDIVPROC
  7876. gl3wGetQueryObjecti64v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYOBJECTI64VPROC gl3wGetQueryObjecti64v;$/;" v typeref:typename:PFNGLGETQUERYOBJECTI64VPROC
  7877. gl3wGetQueryObjectiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYOBJECTIVPROC gl3wGetQueryObjectiv;$/;" v typeref:typename:PFNGLGETQUERYOBJECTIVPROC
  7878. gl3wGetQueryObjectui64v third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYOBJECTUI64VPROC gl3wGetQueryObjectui64v;$/;" v typeref:typename:PFNGLGETQUERYOBJECTUI64VPROC
  7879. gl3wGetQueryObjectuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYOBJECTUIVPROC gl3wGetQueryObjectuiv;$/;" v typeref:typename:PFNGLGETQUERYOBJECTUIVPROC
  7880. gl3wGetQueryiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETQUERYIVPROC gl3wGetQueryiv;$/;" v typeref:typename:PFNGLGETQUERYIVPROC
  7881. gl3wGetRenderbufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETRENDERBUFFERPARAMETERIVPROC gl3wGetRenderbufferParameteriv;$/;" v typeref:typename:PFNGLGETRENDERBUFFERPARAMETERIVPROC
  7882. gl3wGetSamplerParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSAMPLERPARAMETERIIVPROC gl3wGetSamplerParameterIiv;$/;" v typeref:typename:PFNGLGETSAMPLERPARAMETERIIVPROC
  7883. gl3wGetSamplerParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSAMPLERPARAMETERIUIVPROC gl3wGetSamplerParameterIuiv;$/;" v typeref:typename:PFNGLGETSAMPLERPARAMETERIUIVPROC
  7884. gl3wGetSamplerParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSAMPLERPARAMETERFVPROC gl3wGetSamplerParameterfv;$/;" v typeref:typename:PFNGLGETSAMPLERPARAMETERFVPROC
  7885. gl3wGetSamplerParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSAMPLERPARAMETERIVPROC gl3wGetSamplerParameteriv;$/;" v typeref:typename:PFNGLGETSAMPLERPARAMETERIVPROC
  7886. gl3wGetShaderInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSHADERINFOLOGPROC gl3wGetShaderInfoLog;$/;" v typeref:typename:PFNGLGETSHADERINFOLOGPROC
  7887. gl3wGetShaderPrecisionFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSHADERPRECISIONFORMATPROC gl3wGetShaderPrecisionFormat;$/;" v typeref:typename:PFNGLGETSHADERPRECISIONFORMATPROC
  7888. gl3wGetShaderSource third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSHADERSOURCEPROC gl3wGetShaderSource;$/;" v typeref:typename:PFNGLGETSHADERSOURCEPROC
  7889. gl3wGetShaderiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSHADERIVPROC gl3wGetShaderiv;$/;" v typeref:typename:PFNGLGETSHADERIVPROC
  7890. gl3wGetString third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSTRINGPROC gl3wGetString;$/;" v typeref:typename:PFNGLGETSTRINGPROC
  7891. gl3wGetStringi third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSTRINGIPROC gl3wGetStringi;$/;" v typeref:typename:PFNGLGETSTRINGIPROC
  7892. gl3wGetSubroutineIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSUBROUTINEINDEXPROC gl3wGetSubroutineIndex;$/;" v typeref:typename:PFNGLGETSUBROUTINEINDEXPROC
  7893. gl3wGetSubroutineUniformLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC gl3wGetSubroutineUniformLocation;$/;" v typeref:typename:PFNGLGETSUBROUTINEUNIFORMLOCATIONPROC
  7894. gl3wGetSynciv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETSYNCIVPROC gl3wGetSynciv;$/;" v typeref:typename:PFNGLGETSYNCIVPROC
  7895. gl3wGetTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXIMAGEPROC gl3wGetTexImage;$/;" v typeref:typename:PFNGLGETTEXIMAGEPROC
  7896. gl3wGetTexLevelParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXLEVELPARAMETERFVPROC gl3wGetTexLevelParameterfv;$/;" v typeref:typename:PFNGLGETTEXLEVELPARAMETERFVPROC
  7897. gl3wGetTexLevelParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXLEVELPARAMETERIVPROC gl3wGetTexLevelParameteriv;$/;" v typeref:typename:PFNGLGETTEXLEVELPARAMETERIVPROC
  7898. gl3wGetTexParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXPARAMETERIIVPROC gl3wGetTexParameterIiv;$/;" v typeref:typename:PFNGLGETTEXPARAMETERIIVPROC
  7899. gl3wGetTexParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXPARAMETERIUIVPROC gl3wGetTexParameterIuiv;$/;" v typeref:typename:PFNGLGETTEXPARAMETERIUIVPROC
  7900. gl3wGetTexParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXPARAMETERFVPROC gl3wGetTexParameterfv;$/;" v typeref:typename:PFNGLGETTEXPARAMETERFVPROC
  7901. gl3wGetTexParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTEXPARAMETERIVPROC gl3wGetTexParameteriv;$/;" v typeref:typename:PFNGLGETTEXPARAMETERIVPROC
  7902. gl3wGetTransformFeedbackVarying third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETTRANSFORMFEEDBACKVARYINGPROC gl3wGetTransformFeedbackVarying;$/;" v typeref:typename:PFNGLGETTRANSFORMFEEDBACKVARYINGPROC
  7903. gl3wGetUniformBlockIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMBLOCKINDEXPROC gl3wGetUniformBlockIndex;$/;" v typeref:typename:PFNGLGETUNIFORMBLOCKINDEXPROC
  7904. gl3wGetUniformIndices third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMINDICESPROC gl3wGetUniformIndices;$/;" v typeref:typename:PFNGLGETUNIFORMINDICESPROC
  7905. gl3wGetUniformLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMLOCATIONPROC gl3wGetUniformLocation;$/;" v typeref:typename:PFNGLGETUNIFORMLOCATIONPROC
  7906. gl3wGetUniformSubroutineuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMSUBROUTINEUIVPROC gl3wGetUniformSubroutineuiv;$/;" v typeref:typename:PFNGLGETUNIFORMSUBROUTINEUIVPROC
  7907. gl3wGetUniformdv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMDVPROC gl3wGetUniformdv;$/;" v typeref:typename:PFNGLGETUNIFORMDVPROC
  7908. gl3wGetUniformfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMFVPROC gl3wGetUniformfv;$/;" v typeref:typename:PFNGLGETUNIFORMFVPROC
  7909. gl3wGetUniformiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMIVPROC gl3wGetUniformiv;$/;" v typeref:typename:PFNGLGETUNIFORMIVPROC
  7910. gl3wGetUniformuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETUNIFORMUIVPROC gl3wGetUniformuiv;$/;" v typeref:typename:PFNGLGETUNIFORMUIVPROC
  7911. gl3wGetVertexAttribIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBIIVPROC gl3wGetVertexAttribIiv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBIIVPROC
  7912. gl3wGetVertexAttribIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBIUIVPROC gl3wGetVertexAttribIuiv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBIUIVPROC
  7913. gl3wGetVertexAttribLdv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBLDVPROC gl3wGetVertexAttribLdv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBLDVPROC
  7914. gl3wGetVertexAttribPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBPOINTERVPROC gl3wGetVertexAttribPointerv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBPOINTERVPROC
  7915. gl3wGetVertexAttribdv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBDVPROC gl3wGetVertexAttribdv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBDVPROC
  7916. gl3wGetVertexAttribfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBFVPROC gl3wGetVertexAttribfv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBFVPROC
  7917. gl3wGetVertexAttribiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETVERTEXATTRIBIVPROC gl3wGetVertexAttribiv;$/;" v typeref:typename:PFNGLGETVERTEXATTRIBIVPROC
  7918. gl3wGetnCompressedTexImageARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC gl3wGetnCompressedTexImageARB;$/;" v typeref:typename:PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC
  7919. gl3wGetnTexImageARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNTEXIMAGEARBPROC gl3wGetnTexImageARB;$/;" v typeref:typename:PFNGLGETNTEXIMAGEARBPROC
  7920. gl3wGetnUniformdvARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNUNIFORMDVARBPROC gl3wGetnUniformdvARB;$/;" v typeref:typename:PFNGLGETNUNIFORMDVARBPROC
  7921. gl3wGetnUniformfvARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNUNIFORMFVARBPROC gl3wGetnUniformfvARB;$/;" v typeref:typename:PFNGLGETNUNIFORMFVARBPROC
  7922. gl3wGetnUniformivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNUNIFORMIVARBPROC gl3wGetnUniformivARB;$/;" v typeref:typename:PFNGLGETNUNIFORMIVARBPROC
  7923. gl3wGetnUniformuivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLGETNUNIFORMUIVARBPROC gl3wGetnUniformuivARB;$/;" v typeref:typename:PFNGLGETNUNIFORMUIVARBPROC
  7924. gl3wHint third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLHINTPROC gl3wHint;$/;" v typeref:typename:PFNGLHINTPROC
  7925. gl3wInit third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^int gl3wInit(void)$/;" f typeref:typename:int
  7926. gl3wInvalidateBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATEBUFFERDATAPROC gl3wInvalidateBufferData;$/;" v typeref:typename:PFNGLINVALIDATEBUFFERDATAPROC
  7927. gl3wInvalidateBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATEBUFFERSUBDATAPROC gl3wInvalidateBufferSubData;$/;" v typeref:typename:PFNGLINVALIDATEBUFFERSUBDATAPROC
  7928. gl3wInvalidateFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATEFRAMEBUFFERPROC gl3wInvalidateFramebuffer;$/;" v typeref:typename:PFNGLINVALIDATEFRAMEBUFFERPROC
  7929. gl3wInvalidateSubFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATESUBFRAMEBUFFERPROC gl3wInvalidateSubFramebuffer;$/;" v typeref:typename:PFNGLINVALIDATESUBFRAMEBUFFERPROC
  7930. gl3wInvalidateTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATETEXIMAGEPROC gl3wInvalidateTexImage;$/;" v typeref:typename:PFNGLINVALIDATETEXIMAGEPROC
  7931. gl3wInvalidateTexSubImage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLINVALIDATETEXSUBIMAGEPROC gl3wInvalidateTexSubImage;$/;" v typeref:typename:PFNGLINVALIDATETEXSUBIMAGEPROC
  7932. gl3wIsBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISBUFFERPROC gl3wIsBuffer;$/;" v typeref:typename:PFNGLISBUFFERPROC
  7933. gl3wIsEnabled third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISENABLEDPROC gl3wIsEnabled;$/;" v typeref:typename:PFNGLISENABLEDPROC
  7934. gl3wIsEnabledi third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISENABLEDIPROC gl3wIsEnabledi;$/;" v typeref:typename:PFNGLISENABLEDIPROC
  7935. gl3wIsFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISFRAMEBUFFERPROC gl3wIsFramebuffer;$/;" v typeref:typename:PFNGLISFRAMEBUFFERPROC
  7936. gl3wIsNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISNAMEDSTRINGARBPROC gl3wIsNamedStringARB;$/;" v typeref:typename:PFNGLISNAMEDSTRINGARBPROC
  7937. gl3wIsProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISPROGRAMPROC gl3wIsProgram;$/;" v typeref:typename:PFNGLISPROGRAMPROC
  7938. gl3wIsProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISPROGRAMPIPELINEPROC gl3wIsProgramPipeline;$/;" v typeref:typename:PFNGLISPROGRAMPIPELINEPROC
  7939. gl3wIsQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISQUERYPROC gl3wIsQuery;$/;" v typeref:typename:PFNGLISQUERYPROC
  7940. gl3wIsRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISRENDERBUFFERPROC gl3wIsRenderbuffer;$/;" v typeref:typename:PFNGLISRENDERBUFFERPROC
  7941. gl3wIsSampler third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISSAMPLERPROC gl3wIsSampler;$/;" v typeref:typename:PFNGLISSAMPLERPROC
  7942. gl3wIsShader third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISSHADERPROC gl3wIsShader;$/;" v typeref:typename:PFNGLISSHADERPROC
  7943. gl3wIsSupported third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^int gl3wIsSupported(int major, int minor)$/;" f typeref:typename:int
  7944. gl3wIsSync third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISSYNCPROC gl3wIsSync;$/;" v typeref:typename:PFNGLISSYNCPROC
  7945. gl3wIsTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISTEXTUREPROC gl3wIsTexture;$/;" v typeref:typename:PFNGLISTEXTUREPROC
  7946. gl3wIsTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISTRANSFORMFEEDBACKPROC gl3wIsTransformFeedback;$/;" v typeref:typename:PFNGLISTRANSFORMFEEDBACKPROC
  7947. gl3wIsVertexArray third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLISVERTEXARRAYPROC gl3wIsVertexArray;$/;" v typeref:typename:PFNGLISVERTEXARRAYPROC
  7948. gl3wLineWidth third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLLINEWIDTHPROC gl3wLineWidth;$/;" v typeref:typename:PFNGLLINEWIDTHPROC
  7949. gl3wLinkProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLLINKPROGRAMPROC gl3wLinkProgram;$/;" v typeref:typename:PFNGLLINKPROGRAMPROC
  7950. gl3wLogicOp third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLLOGICOPPROC gl3wLogicOp;$/;" v typeref:typename:PFNGLLOGICOPPROC
  7951. gl3wMapBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMAPBUFFERPROC gl3wMapBuffer;$/;" v typeref:typename:PFNGLMAPBUFFERPROC
  7952. gl3wMapBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMAPBUFFERRANGEPROC gl3wMapBufferRange;$/;" v typeref:typename:PFNGLMAPBUFFERRANGEPROC
  7953. gl3wMemoryBarrier third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMEMORYBARRIERPROC gl3wMemoryBarrier;$/;" v typeref:typename:PFNGLMEMORYBARRIERPROC
  7954. gl3wMinSampleShading third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMINSAMPLESHADINGPROC gl3wMinSampleShading;$/;" v typeref:typename:PFNGLMINSAMPLESHADINGPROC
  7955. gl3wMinSampleShadingARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMINSAMPLESHADINGARBPROC gl3wMinSampleShadingARB;$/;" v typeref:typename:PFNGLMINSAMPLESHADINGARBPROC
  7956. gl3wMultiDrawArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTIDRAWARRAYSPROC gl3wMultiDrawArrays;$/;" v typeref:typename:PFNGLMULTIDRAWARRAYSPROC
  7957. gl3wMultiDrawArraysIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTIDRAWARRAYSINDIRECTPROC gl3wMultiDrawArraysIndirect;$/;" v typeref:typename:PFNGLMULTIDRAWARRAYSINDIRECTPROC
  7958. gl3wMultiDrawElements third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTIDRAWELEMENTSPROC gl3wMultiDrawElements;$/;" v typeref:typename:PFNGLMULTIDRAWELEMENTSPROC
  7959. gl3wMultiDrawElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC gl3wMultiDrawElementsBaseVertex;$/;" v typeref:typename:PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC
  7960. gl3wMultiDrawElementsIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTIDRAWELEMENTSINDIRECTPROC gl3wMultiDrawElementsIndirect;$/;" v typeref:typename:PFNGLMULTIDRAWELEMENTSINDIRECTPROC
  7961. gl3wMultiTexCoordP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP1UIPROC gl3wMultiTexCoordP1ui;$/;" v typeref:typename:PFNGLMULTITEXCOORDP1UIPROC
  7962. gl3wMultiTexCoordP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP1UIVPROC gl3wMultiTexCoordP1uiv;$/;" v typeref:typename:PFNGLMULTITEXCOORDP1UIVPROC
  7963. gl3wMultiTexCoordP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP2UIPROC gl3wMultiTexCoordP2ui;$/;" v typeref:typename:PFNGLMULTITEXCOORDP2UIPROC
  7964. gl3wMultiTexCoordP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP2UIVPROC gl3wMultiTexCoordP2uiv;$/;" v typeref:typename:PFNGLMULTITEXCOORDP2UIVPROC
  7965. gl3wMultiTexCoordP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP3UIPROC gl3wMultiTexCoordP3ui;$/;" v typeref:typename:PFNGLMULTITEXCOORDP3UIPROC
  7966. gl3wMultiTexCoordP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP3UIVPROC gl3wMultiTexCoordP3uiv;$/;" v typeref:typename:PFNGLMULTITEXCOORDP3UIVPROC
  7967. gl3wMultiTexCoordP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP4UIPROC gl3wMultiTexCoordP4ui;$/;" v typeref:typename:PFNGLMULTITEXCOORDP4UIPROC
  7968. gl3wMultiTexCoordP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLMULTITEXCOORDP4UIVPROC gl3wMultiTexCoordP4uiv;$/;" v typeref:typename:PFNGLMULTITEXCOORDP4UIVPROC
  7969. gl3wNamedFramebufferParameteriEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC gl3wNamedFramebufferParameteriEXT;$/;" v typeref:typename:PFNGLNAMEDFRAMEBUFFERPARAMETERIEXTPROC
  7970. gl3wNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLNAMEDSTRINGARBPROC gl3wNamedStringARB;$/;" v typeref:typename:PFNGLNAMEDSTRINGARBPROC
  7971. gl3wNormalP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLNORMALP3UIPROC gl3wNormalP3ui;$/;" v typeref:typename:PFNGLNORMALP3UIPROC
  7972. gl3wNormalP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLNORMALP3UIVPROC gl3wNormalP3uiv;$/;" v typeref:typename:PFNGLNORMALP3UIVPROC
  7973. gl3wObjectLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLOBJECTLABELPROC gl3wObjectLabel;$/;" v typeref:typename:PFNGLOBJECTLABELPROC
  7974. gl3wObjectPtrLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLOBJECTPTRLABELPROC gl3wObjectPtrLabel;$/;" v typeref:typename:PFNGLOBJECTPTRLABELPROC
  7975. gl3wPatchParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPATCHPARAMETERFVPROC gl3wPatchParameterfv;$/;" v typeref:typename:PFNGLPATCHPARAMETERFVPROC
  7976. gl3wPatchParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPATCHPARAMETERIPROC gl3wPatchParameteri;$/;" v typeref:typename:PFNGLPATCHPARAMETERIPROC
  7977. gl3wPauseTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPAUSETRANSFORMFEEDBACKPROC gl3wPauseTransformFeedback;$/;" v typeref:typename:PFNGLPAUSETRANSFORMFEEDBACKPROC
  7978. gl3wPixelStoref third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPIXELSTOREFPROC gl3wPixelStoref;$/;" v typeref:typename:PFNGLPIXELSTOREFPROC
  7979. gl3wPixelStorei third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPIXELSTOREIPROC gl3wPixelStorei;$/;" v typeref:typename:PFNGLPIXELSTOREIPROC
  7980. gl3wPointParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOINTPARAMETERFPROC gl3wPointParameterf;$/;" v typeref:typename:PFNGLPOINTPARAMETERFPROC
  7981. gl3wPointParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOINTPARAMETERFVPROC gl3wPointParameterfv;$/;" v typeref:typename:PFNGLPOINTPARAMETERFVPROC
  7982. gl3wPointParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOINTPARAMETERIPROC gl3wPointParameteri;$/;" v typeref:typename:PFNGLPOINTPARAMETERIPROC
  7983. gl3wPointParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOINTPARAMETERIVPROC gl3wPointParameteriv;$/;" v typeref:typename:PFNGLPOINTPARAMETERIVPROC
  7984. gl3wPointSize third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOINTSIZEPROC gl3wPointSize;$/;" v typeref:typename:PFNGLPOINTSIZEPROC
  7985. gl3wPolygonMode third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOLYGONMODEPROC gl3wPolygonMode;$/;" v typeref:typename:PFNGLPOLYGONMODEPROC
  7986. gl3wPolygonOffset third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOLYGONOFFSETPROC gl3wPolygonOffset;$/;" v typeref:typename:PFNGLPOLYGONOFFSETPROC
  7987. gl3wPopDebugGroup third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPOPDEBUGGROUPPROC gl3wPopDebugGroup;$/;" v typeref:typename:PFNGLPOPDEBUGGROUPPROC
  7988. gl3wPrimitiveRestartIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPRIMITIVERESTARTINDEXPROC gl3wPrimitiveRestartIndex;$/;" v typeref:typename:PFNGLPRIMITIVERESTARTINDEXPROC
  7989. gl3wProgramBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMBINARYPROC gl3wProgramBinary;$/;" v typeref:typename:PFNGLPROGRAMBINARYPROC
  7990. gl3wProgramParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMPARAMETERIPROC gl3wProgramParameteri;$/;" v typeref:typename:PFNGLPROGRAMPARAMETERIPROC
  7991. gl3wProgramUniform1d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1DPROC gl3wProgramUniform1d;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1DPROC
  7992. gl3wProgramUniform1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1DVPROC gl3wProgramUniform1dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1DVPROC
  7993. gl3wProgramUniform1f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1FPROC gl3wProgramUniform1f;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1FPROC
  7994. gl3wProgramUniform1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1FVPROC gl3wProgramUniform1fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1FVPROC
  7995. gl3wProgramUniform1i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1IPROC gl3wProgramUniform1i;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1IPROC
  7996. gl3wProgramUniform1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1IVPROC gl3wProgramUniform1iv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1IVPROC
  7997. gl3wProgramUniform1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1UIPROC gl3wProgramUniform1ui;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1UIPROC
  7998. gl3wProgramUniform1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM1UIVPROC gl3wProgramUniform1uiv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM1UIVPROC
  7999. gl3wProgramUniform2d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2DPROC gl3wProgramUniform2d;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2DPROC
  8000. gl3wProgramUniform2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2DVPROC gl3wProgramUniform2dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2DVPROC
  8001. gl3wProgramUniform2f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2FPROC gl3wProgramUniform2f;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2FPROC
  8002. gl3wProgramUniform2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2FVPROC gl3wProgramUniform2fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2FVPROC
  8003. gl3wProgramUniform2i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2IPROC gl3wProgramUniform2i;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2IPROC
  8004. gl3wProgramUniform2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2IVPROC gl3wProgramUniform2iv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2IVPROC
  8005. gl3wProgramUniform2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2UIPROC gl3wProgramUniform2ui;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2UIPROC
  8006. gl3wProgramUniform2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM2UIVPROC gl3wProgramUniform2uiv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM2UIVPROC
  8007. gl3wProgramUniform3d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3DPROC gl3wProgramUniform3d;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3DPROC
  8008. gl3wProgramUniform3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3DVPROC gl3wProgramUniform3dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3DVPROC
  8009. gl3wProgramUniform3f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3FPROC gl3wProgramUniform3f;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3FPROC
  8010. gl3wProgramUniform3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3FVPROC gl3wProgramUniform3fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3FVPROC
  8011. gl3wProgramUniform3i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3IPROC gl3wProgramUniform3i;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3IPROC
  8012. gl3wProgramUniform3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3IVPROC gl3wProgramUniform3iv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3IVPROC
  8013. gl3wProgramUniform3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3UIPROC gl3wProgramUniform3ui;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3UIPROC
  8014. gl3wProgramUniform3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM3UIVPROC gl3wProgramUniform3uiv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM3UIVPROC
  8015. gl3wProgramUniform4d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4DPROC gl3wProgramUniform4d;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4DPROC
  8016. gl3wProgramUniform4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4DVPROC gl3wProgramUniform4dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4DVPROC
  8017. gl3wProgramUniform4f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4FPROC gl3wProgramUniform4f;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4FPROC
  8018. gl3wProgramUniform4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4FVPROC gl3wProgramUniform4fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4FVPROC
  8019. gl3wProgramUniform4i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4IPROC gl3wProgramUniform4i;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4IPROC
  8020. gl3wProgramUniform4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4IVPROC gl3wProgramUniform4iv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4IVPROC
  8021. gl3wProgramUniform4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4UIPROC gl3wProgramUniform4ui;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4UIPROC
  8022. gl3wProgramUniform4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORM4UIVPROC gl3wProgramUniform4uiv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORM4UIVPROC
  8023. gl3wProgramUniformMatrix2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2DVPROC gl3wProgramUniformMatrix2dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2DVPROC
  8024. gl3wProgramUniformMatrix2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2FVPROC gl3wProgramUniformMatrix2fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2FVPROC
  8025. gl3wProgramUniformMatrix2x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC gl3wProgramUniformMatrix2x3dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2X3DVPROC
  8026. gl3wProgramUniformMatrix2x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC gl3wProgramUniformMatrix2x3fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2X3FVPROC
  8027. gl3wProgramUniformMatrix2x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC gl3wProgramUniformMatrix2x4dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2X4DVPROC
  8028. gl3wProgramUniformMatrix2x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC gl3wProgramUniformMatrix2x4fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX2X4FVPROC
  8029. gl3wProgramUniformMatrix3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3DVPROC gl3wProgramUniformMatrix3dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3DVPROC
  8030. gl3wProgramUniformMatrix3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3FVPROC gl3wProgramUniformMatrix3fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3FVPROC
  8031. gl3wProgramUniformMatrix3x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC gl3wProgramUniformMatrix3x2dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3X2DVPROC
  8032. gl3wProgramUniformMatrix3x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC gl3wProgramUniformMatrix3x2fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3X2FVPROC
  8033. gl3wProgramUniformMatrix3x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC gl3wProgramUniformMatrix3x4dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3X4DVPROC
  8034. gl3wProgramUniformMatrix3x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC gl3wProgramUniformMatrix3x4fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX3X4FVPROC
  8035. gl3wProgramUniformMatrix4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4DVPROC gl3wProgramUniformMatrix4dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4DVPROC
  8036. gl3wProgramUniformMatrix4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4FVPROC gl3wProgramUniformMatrix4fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4FVPROC
  8037. gl3wProgramUniformMatrix4x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC gl3wProgramUniformMatrix4x2dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4X2DVPROC
  8038. gl3wProgramUniformMatrix4x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC gl3wProgramUniformMatrix4x2fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4X2FVPROC
  8039. gl3wProgramUniformMatrix4x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC gl3wProgramUniformMatrix4x3dv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4X3DVPROC
  8040. gl3wProgramUniformMatrix4x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC gl3wProgramUniformMatrix4x3fv;$/;" v typeref:typename:PFNGLPROGRAMUNIFORMMATRIX4X3FVPROC
  8041. gl3wProvokingVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPROVOKINGVERTEXPROC gl3wProvokingVertex;$/;" v typeref:typename:PFNGLPROVOKINGVERTEXPROC
  8042. gl3wPushDebugGroup third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLPUSHDEBUGGROUPPROC gl3wPushDebugGroup;$/;" v typeref:typename:PFNGLPUSHDEBUGGROUPPROC
  8043. gl3wQueryCounter third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLQUERYCOUNTERPROC gl3wQueryCounter;$/;" v typeref:typename:PFNGLQUERYCOUNTERPROC
  8044. gl3wReadBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLREADBUFFERPROC gl3wReadBuffer;$/;" v typeref:typename:PFNGLREADBUFFERPROC
  8045. gl3wReadPixels third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLREADPIXELSPROC gl3wReadPixels;$/;" v typeref:typename:PFNGLREADPIXELSPROC
  8046. gl3wReadnPixelsARB third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLREADNPIXELSARBPROC gl3wReadnPixelsARB;$/;" v typeref:typename:PFNGLREADNPIXELSARBPROC
  8047. gl3wReleaseShaderCompiler third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLRELEASESHADERCOMPILERPROC gl3wReleaseShaderCompiler;$/;" v typeref:typename:PFNGLRELEASESHADERCOMPILERPROC
  8048. gl3wRenderbufferStorage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLRENDERBUFFERSTORAGEPROC gl3wRenderbufferStorage;$/;" v typeref:typename:PFNGLRENDERBUFFERSTORAGEPROC
  8049. gl3wRenderbufferStorageMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC gl3wRenderbufferStorageMultisample;$/;" v typeref:typename:PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC
  8050. gl3wResumeTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLRESUMETRANSFORMFEEDBACKPROC gl3wResumeTransformFeedback;$/;" v typeref:typename:PFNGLRESUMETRANSFORMFEEDBACKPROC
  8051. gl3wSampleCoverage third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLECOVERAGEPROC gl3wSampleCoverage;$/;" v typeref:typename:PFNGLSAMPLECOVERAGEPROC
  8052. gl3wSampleMaski third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLEMASKIPROC gl3wSampleMaski;$/;" v typeref:typename:PFNGLSAMPLEMASKIPROC
  8053. gl3wSamplerParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERIIVPROC gl3wSamplerParameterIiv;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERIIVPROC
  8054. gl3wSamplerParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERIUIVPROC gl3wSamplerParameterIuiv;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERIUIVPROC
  8055. gl3wSamplerParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERFPROC gl3wSamplerParameterf;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERFPROC
  8056. gl3wSamplerParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERFVPROC gl3wSamplerParameterfv;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERFVPROC
  8057. gl3wSamplerParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERIPROC gl3wSamplerParameteri;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERIPROC
  8058. gl3wSamplerParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSAMPLERPARAMETERIVPROC gl3wSamplerParameteriv;$/;" v typeref:typename:PFNGLSAMPLERPARAMETERIVPROC
  8059. gl3wScissor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSCISSORPROC gl3wScissor;$/;" v typeref:typename:PFNGLSCISSORPROC
  8060. gl3wScissorArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSCISSORARRAYVPROC gl3wScissorArrayv;$/;" v typeref:typename:PFNGLSCISSORARRAYVPROC
  8061. gl3wScissorIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSCISSORINDEXEDPROC gl3wScissorIndexed;$/;" v typeref:typename:PFNGLSCISSORINDEXEDPROC
  8062. gl3wScissorIndexedv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSCISSORINDEXEDVPROC gl3wScissorIndexedv;$/;" v typeref:typename:PFNGLSCISSORINDEXEDVPROC
  8063. gl3wSecondaryColorP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSECONDARYCOLORP3UIPROC gl3wSecondaryColorP3ui;$/;" v typeref:typename:PFNGLSECONDARYCOLORP3UIPROC
  8064. gl3wSecondaryColorP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSECONDARYCOLORP3UIVPROC gl3wSecondaryColorP3uiv;$/;" v typeref:typename:PFNGLSECONDARYCOLORP3UIVPROC
  8065. gl3wShaderBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSHADERBINARYPROC gl3wShaderBinary;$/;" v typeref:typename:PFNGLSHADERBINARYPROC
  8066. gl3wShaderSource third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSHADERSOURCEPROC gl3wShaderSource;$/;" v typeref:typename:PFNGLSHADERSOURCEPROC
  8067. gl3wShaderStorageBlockBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSHADERSTORAGEBLOCKBINDINGPROC gl3wShaderStorageBlockBinding;$/;" v typeref:typename:PFNGLSHADERSTORAGEBLOCKBINDINGPROC
  8068. gl3wStencilFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILFUNCPROC gl3wStencilFunc;$/;" v typeref:typename:PFNGLSTENCILFUNCPROC
  8069. gl3wStencilFuncSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILFUNCSEPARATEPROC gl3wStencilFuncSeparate;$/;" v typeref:typename:PFNGLSTENCILFUNCSEPARATEPROC
  8070. gl3wStencilMask third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILMASKPROC gl3wStencilMask;$/;" v typeref:typename:PFNGLSTENCILMASKPROC
  8071. gl3wStencilMaskSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILMASKSEPARATEPROC gl3wStencilMaskSeparate;$/;" v typeref:typename:PFNGLSTENCILMASKSEPARATEPROC
  8072. gl3wStencilOp third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILOPPROC gl3wStencilOp;$/;" v typeref:typename:PFNGLSTENCILOPPROC
  8073. gl3wStencilOpSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLSTENCILOPSEPARATEPROC gl3wStencilOpSeparate;$/;" v typeref:typename:PFNGLSTENCILOPSEPARATEPROC
  8074. gl3wTexBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXBUFFERPROC gl3wTexBuffer;$/;" v typeref:typename:PFNGLTEXBUFFERPROC
  8075. gl3wTexBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXBUFFERRANGEPROC gl3wTexBufferRange;$/;" v typeref:typename:PFNGLTEXBUFFERRANGEPROC
  8076. gl3wTexCoordP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP1UIPROC gl3wTexCoordP1ui;$/;" v typeref:typename:PFNGLTEXCOORDP1UIPROC
  8077. gl3wTexCoordP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP1UIVPROC gl3wTexCoordP1uiv;$/;" v typeref:typename:PFNGLTEXCOORDP1UIVPROC
  8078. gl3wTexCoordP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP2UIPROC gl3wTexCoordP2ui;$/;" v typeref:typename:PFNGLTEXCOORDP2UIPROC
  8079. gl3wTexCoordP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP2UIVPROC gl3wTexCoordP2uiv;$/;" v typeref:typename:PFNGLTEXCOORDP2UIVPROC
  8080. gl3wTexCoordP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP3UIPROC gl3wTexCoordP3ui;$/;" v typeref:typename:PFNGLTEXCOORDP3UIPROC
  8081. gl3wTexCoordP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP3UIVPROC gl3wTexCoordP3uiv;$/;" v typeref:typename:PFNGLTEXCOORDP3UIVPROC
  8082. gl3wTexCoordP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP4UIPROC gl3wTexCoordP4ui;$/;" v typeref:typename:PFNGLTEXCOORDP4UIPROC
  8083. gl3wTexCoordP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXCOORDP4UIVPROC gl3wTexCoordP4uiv;$/;" v typeref:typename:PFNGLTEXCOORDP4UIVPROC
  8084. gl3wTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXIMAGE1DPROC gl3wTexImage1D;$/;" v typeref:typename:PFNGLTEXIMAGE1DPROC
  8085. gl3wTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXIMAGE2DPROC gl3wTexImage2D;$/;" v typeref:typename:PFNGLTEXIMAGE2DPROC
  8086. gl3wTexImage2DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXIMAGE2DMULTISAMPLEPROC gl3wTexImage2DMultisample;$/;" v typeref:typename:PFNGLTEXIMAGE2DMULTISAMPLEPROC
  8087. gl3wTexImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXIMAGE3DPROC gl3wTexImage3D;$/;" v typeref:typename:PFNGLTEXIMAGE3DPROC
  8088. gl3wTexImage3DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXIMAGE3DMULTISAMPLEPROC gl3wTexImage3DMultisample;$/;" v typeref:typename:PFNGLTEXIMAGE3DMULTISAMPLEPROC
  8089. gl3wTexParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERIIVPROC gl3wTexParameterIiv;$/;" v typeref:typename:PFNGLTEXPARAMETERIIVPROC
  8090. gl3wTexParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERIUIVPROC gl3wTexParameterIuiv;$/;" v typeref:typename:PFNGLTEXPARAMETERIUIVPROC
  8091. gl3wTexParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERFPROC gl3wTexParameterf;$/;" v typeref:typename:PFNGLTEXPARAMETERFPROC
  8092. gl3wTexParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERFVPROC gl3wTexParameterfv;$/;" v typeref:typename:PFNGLTEXPARAMETERFVPROC
  8093. gl3wTexParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERIPROC gl3wTexParameteri;$/;" v typeref:typename:PFNGLTEXPARAMETERIPROC
  8094. gl3wTexParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXPARAMETERIVPROC gl3wTexParameteriv;$/;" v typeref:typename:PFNGLTEXPARAMETERIVPROC
  8095. gl3wTexStorage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSTORAGE1DPROC gl3wTexStorage1D;$/;" v typeref:typename:PFNGLTEXSTORAGE1DPROC
  8096. gl3wTexStorage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSTORAGE2DPROC gl3wTexStorage2D;$/;" v typeref:typename:PFNGLTEXSTORAGE2DPROC
  8097. gl3wTexStorage2DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSTORAGE2DMULTISAMPLEPROC gl3wTexStorage2DMultisample;$/;" v typeref:typename:PFNGLTEXSTORAGE2DMULTISAMPLEPROC
  8098. gl3wTexStorage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSTORAGE3DPROC gl3wTexStorage3D;$/;" v typeref:typename:PFNGLTEXSTORAGE3DPROC
  8099. gl3wTexStorage3DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSTORAGE3DMULTISAMPLEPROC gl3wTexStorage3DMultisample;$/;" v typeref:typename:PFNGLTEXSTORAGE3DMULTISAMPLEPROC
  8100. gl3wTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSUBIMAGE1DPROC gl3wTexSubImage1D;$/;" v typeref:typename:PFNGLTEXSUBIMAGE1DPROC
  8101. gl3wTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSUBIMAGE2DPROC gl3wTexSubImage2D;$/;" v typeref:typename:PFNGLTEXSUBIMAGE2DPROC
  8102. gl3wTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXSUBIMAGE3DPROC gl3wTexSubImage3D;$/;" v typeref:typename:PFNGLTEXSUBIMAGE3DPROC
  8103. gl3wTextureBufferRangeEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTUREBUFFERRANGEEXTPROC gl3wTextureBufferRangeEXT;$/;" v typeref:typename:PFNGLTEXTUREBUFFERRANGEEXTPROC
  8104. gl3wTextureStorage1DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTURESTORAGE1DEXTPROC gl3wTextureStorage1DEXT;$/;" v typeref:typename:PFNGLTEXTURESTORAGE1DEXTPROC
  8105. gl3wTextureStorage2DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTURESTORAGE2DEXTPROC gl3wTextureStorage2DEXT;$/;" v typeref:typename:PFNGLTEXTURESTORAGE2DEXTPROC
  8106. gl3wTextureStorage2DMultisampleEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC gl3wTextureStorage2DMultisampleEXT;$/;" v typeref:typename:PFNGLTEXTURESTORAGE2DMULTISAMPLEEXTPROC
  8107. gl3wTextureStorage3DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTURESTORAGE3DEXTPROC gl3wTextureStorage3DEXT;$/;" v typeref:typename:PFNGLTEXTURESTORAGE3DEXTPROC
  8108. gl3wTextureStorage3DMultisampleEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC gl3wTextureStorage3DMultisampleEXT;$/;" v typeref:typename:PFNGLTEXTURESTORAGE3DMULTISAMPLEEXTPROC
  8109. gl3wTextureView third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTEXTUREVIEWPROC gl3wTextureView;$/;" v typeref:typename:PFNGLTEXTUREVIEWPROC
  8110. gl3wTransformFeedbackVaryings third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLTRANSFORMFEEDBACKVARYINGSPROC gl3wTransformFeedbackVaryings;$/;" v typeref:typename:PFNGLTRANSFORMFEEDBACKVARYINGSPROC
  8111. gl3wUniform1d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1DPROC gl3wUniform1d;$/;" v typeref:typename:PFNGLUNIFORM1DPROC
  8112. gl3wUniform1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1DVPROC gl3wUniform1dv;$/;" v typeref:typename:PFNGLUNIFORM1DVPROC
  8113. gl3wUniform1f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1FPROC gl3wUniform1f;$/;" v typeref:typename:PFNGLUNIFORM1FPROC
  8114. gl3wUniform1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1FVPROC gl3wUniform1fv;$/;" v typeref:typename:PFNGLUNIFORM1FVPROC
  8115. gl3wUniform1i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1IPROC gl3wUniform1i;$/;" v typeref:typename:PFNGLUNIFORM1IPROC
  8116. gl3wUniform1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1IVPROC gl3wUniform1iv;$/;" v typeref:typename:PFNGLUNIFORM1IVPROC
  8117. gl3wUniform1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1UIPROC gl3wUniform1ui;$/;" v typeref:typename:PFNGLUNIFORM1UIPROC
  8118. gl3wUniform1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM1UIVPROC gl3wUniform1uiv;$/;" v typeref:typename:PFNGLUNIFORM1UIVPROC
  8119. gl3wUniform2d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2DPROC gl3wUniform2d;$/;" v typeref:typename:PFNGLUNIFORM2DPROC
  8120. gl3wUniform2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2DVPROC gl3wUniform2dv;$/;" v typeref:typename:PFNGLUNIFORM2DVPROC
  8121. gl3wUniform2f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2FPROC gl3wUniform2f;$/;" v typeref:typename:PFNGLUNIFORM2FPROC
  8122. gl3wUniform2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2FVPROC gl3wUniform2fv;$/;" v typeref:typename:PFNGLUNIFORM2FVPROC
  8123. gl3wUniform2i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2IPROC gl3wUniform2i;$/;" v typeref:typename:PFNGLUNIFORM2IPROC
  8124. gl3wUniform2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2IVPROC gl3wUniform2iv;$/;" v typeref:typename:PFNGLUNIFORM2IVPROC
  8125. gl3wUniform2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2UIPROC gl3wUniform2ui;$/;" v typeref:typename:PFNGLUNIFORM2UIPROC
  8126. gl3wUniform2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM2UIVPROC gl3wUniform2uiv;$/;" v typeref:typename:PFNGLUNIFORM2UIVPROC
  8127. gl3wUniform3d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3DPROC gl3wUniform3d;$/;" v typeref:typename:PFNGLUNIFORM3DPROC
  8128. gl3wUniform3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3DVPROC gl3wUniform3dv;$/;" v typeref:typename:PFNGLUNIFORM3DVPROC
  8129. gl3wUniform3f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3FPROC gl3wUniform3f;$/;" v typeref:typename:PFNGLUNIFORM3FPROC
  8130. gl3wUniform3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3FVPROC gl3wUniform3fv;$/;" v typeref:typename:PFNGLUNIFORM3FVPROC
  8131. gl3wUniform3i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3IPROC gl3wUniform3i;$/;" v typeref:typename:PFNGLUNIFORM3IPROC
  8132. gl3wUniform3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3IVPROC gl3wUniform3iv;$/;" v typeref:typename:PFNGLUNIFORM3IVPROC
  8133. gl3wUniform3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3UIPROC gl3wUniform3ui;$/;" v typeref:typename:PFNGLUNIFORM3UIPROC
  8134. gl3wUniform3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM3UIVPROC gl3wUniform3uiv;$/;" v typeref:typename:PFNGLUNIFORM3UIVPROC
  8135. gl3wUniform4d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4DPROC gl3wUniform4d;$/;" v typeref:typename:PFNGLUNIFORM4DPROC
  8136. gl3wUniform4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4DVPROC gl3wUniform4dv;$/;" v typeref:typename:PFNGLUNIFORM4DVPROC
  8137. gl3wUniform4f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4FPROC gl3wUniform4f;$/;" v typeref:typename:PFNGLUNIFORM4FPROC
  8138. gl3wUniform4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4FVPROC gl3wUniform4fv;$/;" v typeref:typename:PFNGLUNIFORM4FVPROC
  8139. gl3wUniform4i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4IPROC gl3wUniform4i;$/;" v typeref:typename:PFNGLUNIFORM4IPROC
  8140. gl3wUniform4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4IVPROC gl3wUniform4iv;$/;" v typeref:typename:PFNGLUNIFORM4IVPROC
  8141. gl3wUniform4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4UIPROC gl3wUniform4ui;$/;" v typeref:typename:PFNGLUNIFORM4UIPROC
  8142. gl3wUniform4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORM4UIVPROC gl3wUniform4uiv;$/;" v typeref:typename:PFNGLUNIFORM4UIVPROC
  8143. gl3wUniformBlockBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMBLOCKBINDINGPROC gl3wUniformBlockBinding;$/;" v typeref:typename:PFNGLUNIFORMBLOCKBINDINGPROC
  8144. gl3wUniformMatrix2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2DVPROC gl3wUniformMatrix2dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2DVPROC
  8145. gl3wUniformMatrix2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2FVPROC gl3wUniformMatrix2fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2FVPROC
  8146. gl3wUniformMatrix2x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2X3DVPROC gl3wUniformMatrix2x3dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2X3DVPROC
  8147. gl3wUniformMatrix2x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2X3FVPROC gl3wUniformMatrix2x3fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2X3FVPROC
  8148. gl3wUniformMatrix2x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2X4DVPROC gl3wUniformMatrix2x4dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2X4DVPROC
  8149. gl3wUniformMatrix2x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX2X4FVPROC gl3wUniformMatrix2x4fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX2X4FVPROC
  8150. gl3wUniformMatrix3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3DVPROC gl3wUniformMatrix3dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3DVPROC
  8151. gl3wUniformMatrix3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3FVPROC gl3wUniformMatrix3fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3FVPROC
  8152. gl3wUniformMatrix3x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3X2DVPROC gl3wUniformMatrix3x2dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3X2DVPROC
  8153. gl3wUniformMatrix3x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3X2FVPROC gl3wUniformMatrix3x2fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3X2FVPROC
  8154. gl3wUniformMatrix3x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3X4DVPROC gl3wUniformMatrix3x4dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3X4DVPROC
  8155. gl3wUniformMatrix3x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX3X4FVPROC gl3wUniformMatrix3x4fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX3X4FVPROC
  8156. gl3wUniformMatrix4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4DVPROC gl3wUniformMatrix4dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4DVPROC
  8157. gl3wUniformMatrix4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4FVPROC gl3wUniformMatrix4fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4FVPROC
  8158. gl3wUniformMatrix4x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4X2DVPROC gl3wUniformMatrix4x2dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4X2DVPROC
  8159. gl3wUniformMatrix4x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4X2FVPROC gl3wUniformMatrix4x2fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4X2FVPROC
  8160. gl3wUniformMatrix4x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4X3DVPROC gl3wUniformMatrix4x3dv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4X3DVPROC
  8161. gl3wUniformMatrix4x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMMATRIX4X3FVPROC gl3wUniformMatrix4x3fv;$/;" v typeref:typename:PFNGLUNIFORMMATRIX4X3FVPROC
  8162. gl3wUniformSubroutinesuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNIFORMSUBROUTINESUIVPROC gl3wUniformSubroutinesuiv;$/;" v typeref:typename:PFNGLUNIFORMSUBROUTINESUIVPROC
  8163. gl3wUnmapBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUNMAPBUFFERPROC gl3wUnmapBuffer;$/;" v typeref:typename:PFNGLUNMAPBUFFERPROC
  8164. gl3wUseProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUSEPROGRAMPROC gl3wUseProgram;$/;" v typeref:typename:PFNGLUSEPROGRAMPROC
  8165. gl3wUseProgramStages third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLUSEPROGRAMSTAGESPROC gl3wUseProgramStages;$/;" v typeref:typename:PFNGLUSEPROGRAMSTAGESPROC
  8166. gl3wValidateProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVALIDATEPROGRAMPROC gl3wValidateProgram;$/;" v typeref:typename:PFNGLVALIDATEPROGRAMPROC
  8167. gl3wValidateProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVALIDATEPROGRAMPIPELINEPROC gl3wValidateProgramPipeline;$/;" v typeref:typename:PFNGLVALIDATEPROGRAMPIPELINEPROC
  8168. gl3wVertexArrayBindVertexBufferEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC gl3wVertexArrayBindVertexBufferEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYBINDVERTEXBUFFEREXTPROC
  8169. gl3wVertexArrayVertexAttribBindingEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC gl3wVertexArrayVertexAttribBindingEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYVERTEXATTRIBBINDINGEXTPROC
  8170. gl3wVertexArrayVertexAttribFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC gl3wVertexArrayVertexAttribFormatEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYVERTEXATTRIBFORMATEXTPROC
  8171. gl3wVertexArrayVertexAttribIFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC gl3wVertexArrayVertexAttribIFormatEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYVERTEXATTRIBIFORMATEXTPROC
  8172. gl3wVertexArrayVertexAttribLFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC gl3wVertexArrayVertexAttribLFormatEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYVERTEXATTRIBLFORMATEXTPROC
  8173. gl3wVertexArrayVertexBindingDivisorEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC gl3wVertexArrayVertexBindingDivisorEXT;$/;" v typeref:typename:PFNGLVERTEXARRAYVERTEXBINDINGDIVISOREXTPROC
  8174. gl3wVertexAttrib1d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1DPROC gl3wVertexAttrib1d;$/;" v typeref:typename:PFNGLVERTEXATTRIB1DPROC
  8175. gl3wVertexAttrib1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1DVPROC gl3wVertexAttrib1dv;$/;" v typeref:typename:PFNGLVERTEXATTRIB1DVPROC
  8176. gl3wVertexAttrib1f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1FPROC gl3wVertexAttrib1f;$/;" v typeref:typename:PFNGLVERTEXATTRIB1FPROC
  8177. gl3wVertexAttrib1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1FVPROC gl3wVertexAttrib1fv;$/;" v typeref:typename:PFNGLVERTEXATTRIB1FVPROC
  8178. gl3wVertexAttrib1s third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1SPROC gl3wVertexAttrib1s;$/;" v typeref:typename:PFNGLVERTEXATTRIB1SPROC
  8179. gl3wVertexAttrib1sv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB1SVPROC gl3wVertexAttrib1sv;$/;" v typeref:typename:PFNGLVERTEXATTRIB1SVPROC
  8180. gl3wVertexAttrib2d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2DPROC gl3wVertexAttrib2d;$/;" v typeref:typename:PFNGLVERTEXATTRIB2DPROC
  8181. gl3wVertexAttrib2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2DVPROC gl3wVertexAttrib2dv;$/;" v typeref:typename:PFNGLVERTEXATTRIB2DVPROC
  8182. gl3wVertexAttrib2f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2FPROC gl3wVertexAttrib2f;$/;" v typeref:typename:PFNGLVERTEXATTRIB2FPROC
  8183. gl3wVertexAttrib2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2FVPROC gl3wVertexAttrib2fv;$/;" v typeref:typename:PFNGLVERTEXATTRIB2FVPROC
  8184. gl3wVertexAttrib2s third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2SPROC gl3wVertexAttrib2s;$/;" v typeref:typename:PFNGLVERTEXATTRIB2SPROC
  8185. gl3wVertexAttrib2sv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB2SVPROC gl3wVertexAttrib2sv;$/;" v typeref:typename:PFNGLVERTEXATTRIB2SVPROC
  8186. gl3wVertexAttrib3d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3DPROC gl3wVertexAttrib3d;$/;" v typeref:typename:PFNGLVERTEXATTRIB3DPROC
  8187. gl3wVertexAttrib3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3DVPROC gl3wVertexAttrib3dv;$/;" v typeref:typename:PFNGLVERTEXATTRIB3DVPROC
  8188. gl3wVertexAttrib3f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3FPROC gl3wVertexAttrib3f;$/;" v typeref:typename:PFNGLVERTEXATTRIB3FPROC
  8189. gl3wVertexAttrib3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3FVPROC gl3wVertexAttrib3fv;$/;" v typeref:typename:PFNGLVERTEXATTRIB3FVPROC
  8190. gl3wVertexAttrib3s third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3SPROC gl3wVertexAttrib3s;$/;" v typeref:typename:PFNGLVERTEXATTRIB3SPROC
  8191. gl3wVertexAttrib3sv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB3SVPROC gl3wVertexAttrib3sv;$/;" v typeref:typename:PFNGLVERTEXATTRIB3SVPROC
  8192. gl3wVertexAttrib4Nbv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NBVPROC gl3wVertexAttrib4Nbv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NBVPROC
  8193. gl3wVertexAttrib4Niv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NIVPROC gl3wVertexAttrib4Niv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NIVPROC
  8194. gl3wVertexAttrib4Nsv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NSVPROC gl3wVertexAttrib4Nsv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NSVPROC
  8195. gl3wVertexAttrib4Nub third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NUBPROC gl3wVertexAttrib4Nub;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NUBPROC
  8196. gl3wVertexAttrib4Nubv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NUBVPROC gl3wVertexAttrib4Nubv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NUBVPROC
  8197. gl3wVertexAttrib4Nuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NUIVPROC gl3wVertexAttrib4Nuiv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NUIVPROC
  8198. gl3wVertexAttrib4Nusv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4NUSVPROC gl3wVertexAttrib4Nusv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4NUSVPROC
  8199. gl3wVertexAttrib4bv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4BVPROC gl3wVertexAttrib4bv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4BVPROC
  8200. gl3wVertexAttrib4d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4DPROC gl3wVertexAttrib4d;$/;" v typeref:typename:PFNGLVERTEXATTRIB4DPROC
  8201. gl3wVertexAttrib4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4DVPROC gl3wVertexAttrib4dv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4DVPROC
  8202. gl3wVertexAttrib4f third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4FPROC gl3wVertexAttrib4f;$/;" v typeref:typename:PFNGLVERTEXATTRIB4FPROC
  8203. gl3wVertexAttrib4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4FVPROC gl3wVertexAttrib4fv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4FVPROC
  8204. gl3wVertexAttrib4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4IVPROC gl3wVertexAttrib4iv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4IVPROC
  8205. gl3wVertexAttrib4s third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4SPROC gl3wVertexAttrib4s;$/;" v typeref:typename:PFNGLVERTEXATTRIB4SPROC
  8206. gl3wVertexAttrib4sv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4SVPROC gl3wVertexAttrib4sv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4SVPROC
  8207. gl3wVertexAttrib4ubv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4UBVPROC gl3wVertexAttrib4ubv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4UBVPROC
  8208. gl3wVertexAttrib4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4UIVPROC gl3wVertexAttrib4uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4UIVPROC
  8209. gl3wVertexAttrib4usv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIB4USVPROC gl3wVertexAttrib4usv;$/;" v typeref:typename:PFNGLVERTEXATTRIB4USVPROC
  8210. gl3wVertexAttribBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBBINDINGPROC gl3wVertexAttribBinding;$/;" v typeref:typename:PFNGLVERTEXATTRIBBINDINGPROC
  8211. gl3wVertexAttribDivisor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBDIVISORPROC gl3wVertexAttribDivisor;$/;" v typeref:typename:PFNGLVERTEXATTRIBDIVISORPROC
  8212. gl3wVertexAttribFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBFORMATPROC gl3wVertexAttribFormat;$/;" v typeref:typename:PFNGLVERTEXATTRIBFORMATPROC
  8213. gl3wVertexAttribI1i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI1IPROC gl3wVertexAttribI1i;$/;" v typeref:typename:PFNGLVERTEXATTRIBI1IPROC
  8214. gl3wVertexAttribI1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI1IVPROC gl3wVertexAttribI1iv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI1IVPROC
  8215. gl3wVertexAttribI1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI1UIPROC gl3wVertexAttribI1ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBI1UIPROC
  8216. gl3wVertexAttribI1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI1UIVPROC gl3wVertexAttribI1uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI1UIVPROC
  8217. gl3wVertexAttribI2i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI2IPROC gl3wVertexAttribI2i;$/;" v typeref:typename:PFNGLVERTEXATTRIBI2IPROC
  8218. gl3wVertexAttribI2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI2IVPROC gl3wVertexAttribI2iv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI2IVPROC
  8219. gl3wVertexAttribI2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI2UIPROC gl3wVertexAttribI2ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBI2UIPROC
  8220. gl3wVertexAttribI2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI2UIVPROC gl3wVertexAttribI2uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI2UIVPROC
  8221. gl3wVertexAttribI3i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI3IPROC gl3wVertexAttribI3i;$/;" v typeref:typename:PFNGLVERTEXATTRIBI3IPROC
  8222. gl3wVertexAttribI3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI3IVPROC gl3wVertexAttribI3iv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI3IVPROC
  8223. gl3wVertexAttribI3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI3UIPROC gl3wVertexAttribI3ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBI3UIPROC
  8224. gl3wVertexAttribI3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI3UIVPROC gl3wVertexAttribI3uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI3UIVPROC
  8225. gl3wVertexAttribI4bv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4BVPROC gl3wVertexAttribI4bv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4BVPROC
  8226. gl3wVertexAttribI4i third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4IPROC gl3wVertexAttribI4i;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4IPROC
  8227. gl3wVertexAttribI4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4IVPROC gl3wVertexAttribI4iv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4IVPROC
  8228. gl3wVertexAttribI4sv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4SVPROC gl3wVertexAttribI4sv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4SVPROC
  8229. gl3wVertexAttribI4ubv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4UBVPROC gl3wVertexAttribI4ubv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4UBVPROC
  8230. gl3wVertexAttribI4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4UIPROC gl3wVertexAttribI4ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4UIPROC
  8231. gl3wVertexAttribI4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4UIVPROC gl3wVertexAttribI4uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4UIVPROC
  8232. gl3wVertexAttribI4usv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBI4USVPROC gl3wVertexAttribI4usv;$/;" v typeref:typename:PFNGLVERTEXATTRIBI4USVPROC
  8233. gl3wVertexAttribIFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBIFORMATPROC gl3wVertexAttribIFormat;$/;" v typeref:typename:PFNGLVERTEXATTRIBIFORMATPROC
  8234. gl3wVertexAttribIPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBIPOINTERPROC gl3wVertexAttribIPointer;$/;" v typeref:typename:PFNGLVERTEXATTRIBIPOINTERPROC
  8235. gl3wVertexAttribL1d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL1DPROC gl3wVertexAttribL1d;$/;" v typeref:typename:PFNGLVERTEXATTRIBL1DPROC
  8236. gl3wVertexAttribL1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL1DVPROC gl3wVertexAttribL1dv;$/;" v typeref:typename:PFNGLVERTEXATTRIBL1DVPROC
  8237. gl3wVertexAttribL2d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL2DPROC gl3wVertexAttribL2d;$/;" v typeref:typename:PFNGLVERTEXATTRIBL2DPROC
  8238. gl3wVertexAttribL2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL2DVPROC gl3wVertexAttribL2dv;$/;" v typeref:typename:PFNGLVERTEXATTRIBL2DVPROC
  8239. gl3wVertexAttribL3d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL3DPROC gl3wVertexAttribL3d;$/;" v typeref:typename:PFNGLVERTEXATTRIBL3DPROC
  8240. gl3wVertexAttribL3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL3DVPROC gl3wVertexAttribL3dv;$/;" v typeref:typename:PFNGLVERTEXATTRIBL3DVPROC
  8241. gl3wVertexAttribL4d third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL4DPROC gl3wVertexAttribL4d;$/;" v typeref:typename:PFNGLVERTEXATTRIBL4DPROC
  8242. gl3wVertexAttribL4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBL4DVPROC gl3wVertexAttribL4dv;$/;" v typeref:typename:PFNGLVERTEXATTRIBL4DVPROC
  8243. gl3wVertexAttribLFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBLFORMATPROC gl3wVertexAttribLFormat;$/;" v typeref:typename:PFNGLVERTEXATTRIBLFORMATPROC
  8244. gl3wVertexAttribLPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBLPOINTERPROC gl3wVertexAttribLPointer;$/;" v typeref:typename:PFNGLVERTEXATTRIBLPOINTERPROC
  8245. gl3wVertexAttribP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP1UIPROC gl3wVertexAttribP1ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBP1UIPROC
  8246. gl3wVertexAttribP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP1UIVPROC gl3wVertexAttribP1uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBP1UIVPROC
  8247. gl3wVertexAttribP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP2UIPROC gl3wVertexAttribP2ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBP2UIPROC
  8248. gl3wVertexAttribP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP2UIVPROC gl3wVertexAttribP2uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBP2UIVPROC
  8249. gl3wVertexAttribP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP3UIPROC gl3wVertexAttribP3ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBP3UIPROC
  8250. gl3wVertexAttribP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP3UIVPROC gl3wVertexAttribP3uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBP3UIVPROC
  8251. gl3wVertexAttribP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP4UIPROC gl3wVertexAttribP4ui;$/;" v typeref:typename:PFNGLVERTEXATTRIBP4UIPROC
  8252. gl3wVertexAttribP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBP4UIVPROC gl3wVertexAttribP4uiv;$/;" v typeref:typename:PFNGLVERTEXATTRIBP4UIVPROC
  8253. gl3wVertexAttribPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXATTRIBPOINTERPROC gl3wVertexAttribPointer;$/;" v typeref:typename:PFNGLVERTEXATTRIBPOINTERPROC
  8254. gl3wVertexBindingDivisor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXBINDINGDIVISORPROC gl3wVertexBindingDivisor;$/;" v typeref:typename:PFNGLVERTEXBINDINGDIVISORPROC
  8255. gl3wVertexP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP2UIPROC gl3wVertexP2ui;$/;" v typeref:typename:PFNGLVERTEXP2UIPROC
  8256. gl3wVertexP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP2UIVPROC gl3wVertexP2uiv;$/;" v typeref:typename:PFNGLVERTEXP2UIVPROC
  8257. gl3wVertexP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP3UIPROC gl3wVertexP3ui;$/;" v typeref:typename:PFNGLVERTEXP3UIPROC
  8258. gl3wVertexP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP3UIVPROC gl3wVertexP3uiv;$/;" v typeref:typename:PFNGLVERTEXP3UIVPROC
  8259. gl3wVertexP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP4UIPROC gl3wVertexP4ui;$/;" v typeref:typename:PFNGLVERTEXP4UIPROC
  8260. gl3wVertexP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVERTEXP4UIVPROC gl3wVertexP4uiv;$/;" v typeref:typename:PFNGLVERTEXP4UIVPROC
  8261. gl3wViewport third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVIEWPORTPROC gl3wViewport;$/;" v typeref:typename:PFNGLVIEWPORTPROC
  8262. gl3wViewportArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVIEWPORTARRAYVPROC gl3wViewportArrayv;$/;" v typeref:typename:PFNGLVIEWPORTARRAYVPROC
  8263. gl3wViewportIndexedf third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVIEWPORTINDEXEDFPROC gl3wViewportIndexedf;$/;" v typeref:typename:PFNGLVIEWPORTINDEXEDFPROC
  8264. gl3wViewportIndexedfv third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLVIEWPORTINDEXEDFVPROC gl3wViewportIndexedfv;$/;" v typeref:typename:PFNGLVIEWPORTINDEXEDFVPROC
  8265. gl3wWaitSync third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^PFNGLWAITSYNCPROC gl3wWaitSync;$/;" v typeref:typename:PFNGLWAITSYNCPROC
  8266. glActiveShaderProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glActiveShaderProgram /;" d
  8267. glActiveTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glActiveTexture /;" d
  8268. glAttachShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glAttachShader /;" d
  8269. glBeginConditionalRender third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBeginConditionalRender /;" d
  8270. glBeginQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBeginQuery /;" d
  8271. glBeginQueryIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBeginQueryIndexed /;" d
  8272. glBeginTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBeginTransformFeedback /;" d
  8273. glBindAttribLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindAttribLocation /;" d
  8274. glBindBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindBuffer /;" d
  8275. glBindBufferBase third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindBufferBase /;" d
  8276. glBindBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindBufferRange /;" d
  8277. glBindFragDataLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindFragDataLocation /;" d
  8278. glBindFragDataLocationIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindFragDataLocationIndexed /;" d
  8279. glBindFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindFramebuffer /;" d
  8280. glBindImageTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindImageTexture /;" d
  8281. glBindProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindProgramPipeline /;" d
  8282. glBindRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindRenderbuffer /;" d
  8283. glBindSampler third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindSampler /;" d
  8284. glBindTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindTexture /;" d
  8285. glBindTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindTransformFeedback /;" d
  8286. glBindVertexArray third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindVertexArray /;" d
  8287. glBindVertexBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBindVertexBuffer /;" d
  8288. glBlendColor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendColor /;" d
  8289. glBlendEquation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquation /;" d
  8290. glBlendEquationSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquationSeparate /;" d
  8291. glBlendEquationSeparatei third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquationSeparatei /;" d
  8292. glBlendEquationSeparateiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquationSeparateiARB /;" d
  8293. glBlendEquationi third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquationi /;" d
  8294. glBlendEquationiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendEquationiARB /;" d
  8295. glBlendFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFunc /;" d
  8296. glBlendFuncSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFuncSeparate /;" d
  8297. glBlendFuncSeparatei third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFuncSeparatei /;" d
  8298. glBlendFuncSeparateiARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFuncSeparateiARB /;" d
  8299. glBlendFunci third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFunci /;" d
  8300. glBlendFunciARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlendFunciARB /;" d
  8301. glBlitFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBlitFramebuffer /;" d
  8302. glBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBufferData /;" d
  8303. glBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glBufferSubData /;" d
  8304. glCheckFramebufferStatus third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCheckFramebufferStatus /;" d
  8305. glClampColor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClampColor /;" d
  8306. glClear third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClear /;" d
  8307. glClearBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferData /;" d
  8308. glClearBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferSubData /;" d
  8309. glClearBufferfi third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferfi /;" d
  8310. glClearBufferfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferfv /;" d
  8311. glClearBufferiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferiv /;" d
  8312. glClearBufferuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearBufferuiv /;" d
  8313. glClearColor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearColor /;" d
  8314. glClearDepth third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearDepth /;" d
  8315. glClearDepthf third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearDepthf /;" d
  8316. glClearNamedBufferDataEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearNamedBufferDataEXT /;" d
  8317. glClearNamedBufferSubDataEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearNamedBufferSubDataEXT /;" d
  8318. glClearStencil third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClearStencil /;" d
  8319. glClientWaitSync third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glClientWaitSync /;" d
  8320. glColorMask third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorMask /;" d
  8321. glColorMaski third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorMaski /;" d
  8322. glColorP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorP3ui /;" d
  8323. glColorP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorP3uiv /;" d
  8324. glColorP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorP4ui /;" d
  8325. glColorP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glColorP4uiv /;" d
  8326. glCompileShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompileShader /;" d
  8327. glCompileShaderIncludeARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompileShaderIncludeARB /;" d
  8328. glCompressedTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexImage1D /;" d
  8329. glCompressedTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexImage2D /;" d
  8330. glCompressedTexImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexImage3D /;" d
  8331. glCompressedTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexSubImage1D /;" d
  8332. glCompressedTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexSubImage2D /;" d
  8333. glCompressedTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCompressedTexSubImage3D /;" d
  8334. glCopyBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyBufferSubData /;" d
  8335. glCopyImageSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyImageSubData /;" d
  8336. glCopyTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyTexImage1D /;" d
  8337. glCopyTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyTexImage2D /;" d
  8338. glCopyTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyTexSubImage1D /;" d
  8339. glCopyTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyTexSubImage2D /;" d
  8340. glCopyTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCopyTexSubImage3D /;" d
  8341. glCreateProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCreateProgram /;" d
  8342. glCreateShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCreateShader /;" d
  8343. glCreateShaderProgramv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCreateShaderProgramv /;" d
  8344. glCreateSyncFromCLeventARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCreateSyncFromCLeventARB /;" d
  8345. glCullFace third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glCullFace /;" d
  8346. glDebugMessageCallback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageCallback /;" d
  8347. glDebugMessageCallbackARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageCallbackARB /;" d
  8348. glDebugMessageControl third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageControl /;" d
  8349. glDebugMessageControlARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageControlARB /;" d
  8350. glDebugMessageInsert third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageInsert /;" d
  8351. glDebugMessageInsertARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDebugMessageInsertARB /;" d
  8352. glDeleteBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteBuffers /;" d
  8353. glDeleteFramebuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteFramebuffers /;" d
  8354. glDeleteNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteNamedStringARB /;" d
  8355. glDeleteProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteProgram /;" d
  8356. glDeleteProgramPipelines third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteProgramPipelines /;" d
  8357. glDeleteQueries third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteQueries /;" d
  8358. glDeleteRenderbuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteRenderbuffers /;" d
  8359. glDeleteSamplers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteSamplers /;" d
  8360. glDeleteShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteShader /;" d
  8361. glDeleteSync third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteSync /;" d
  8362. glDeleteTextures third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteTextures /;" d
  8363. glDeleteTransformFeedbacks third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteTransformFeedbacks /;" d
  8364. glDeleteVertexArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDeleteVertexArrays /;" d
  8365. glDepthFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthFunc /;" d
  8366. glDepthMask third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthMask /;" d
  8367. glDepthRange third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthRange /;" d
  8368. glDepthRangeArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthRangeArrayv /;" d
  8369. glDepthRangeIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthRangeIndexed /;" d
  8370. glDepthRangef third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDepthRangef /;" d
  8371. glDetachShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDetachShader /;" d
  8372. glDisable third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDisable /;" d
  8373. glDisableVertexAttribArray third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDisableVertexAttribArray /;" d
  8374. glDisablei third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDisablei /;" d
  8375. glDispatchCompute third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDispatchCompute /;" d
  8376. glDispatchComputeIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDispatchComputeIndirect /;" d
  8377. glDrawArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawArrays /;" d
  8378. glDrawArraysIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawArraysIndirect /;" d
  8379. glDrawArraysInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawArraysInstanced /;" d
  8380. glDrawArraysInstancedBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawArraysInstancedBaseInstance /;" d
  8381. glDrawBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawBuffer /;" d
  8382. glDrawBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawBuffers /;" d
  8383. glDrawElements third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElements /;" d
  8384. glDrawElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsBaseVertex /;" d
  8385. glDrawElementsIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsIndirect /;" d
  8386. glDrawElementsInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsInstanced /;" d
  8387. glDrawElementsInstancedBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsInstancedBaseInstance /;" d
  8388. glDrawElementsInstancedBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsInstancedBaseVertex /;" d
  8389. glDrawElementsInstancedBaseVertexBaseInstance third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawElementsInstancedBaseVertexBaseInstance /;" d
  8390. glDrawRangeElements third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawRangeElements /;" d
  8391. glDrawRangeElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawRangeElementsBaseVertex /;" d
  8392. glDrawTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawTransformFeedback /;" d
  8393. glDrawTransformFeedbackInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawTransformFeedbackInstanced /;" d
  8394. glDrawTransformFeedbackStream third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawTransformFeedbackStream /;" d
  8395. glDrawTransformFeedbackStreamInstanced third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glDrawTransformFeedbackStreamInstanced /;" d
  8396. glEnable third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEnable /;" d
  8397. glEnableVertexAttribArray third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEnableVertexAttribArray /;" d
  8398. glEnablei third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEnablei /;" d
  8399. glEndConditionalRender third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEndConditionalRender /;" d
  8400. glEndQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEndQuery /;" d
  8401. glEndQueryIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEndQueryIndexed /;" d
  8402. glEndTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glEndTransformFeedback /;" d
  8403. glFenceSync third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFenceSync /;" d
  8404. glFinish third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFinish /;" d
  8405. glFlush third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFlush /;" d
  8406. glFlushMappedBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFlushMappedBufferRange /;" d
  8407. glFramebufferParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferParameteri /;" d
  8408. glFramebufferRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferRenderbuffer /;" d
  8409. glFramebufferTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferTexture /;" d
  8410. glFramebufferTexture1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferTexture1D /;" d
  8411. glFramebufferTexture2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferTexture2D /;" d
  8412. glFramebufferTexture3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferTexture3D /;" d
  8413. glFramebufferTextureLayer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFramebufferTextureLayer /;" d
  8414. glFrontFace third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glFrontFace /;" d
  8415. glGenBuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenBuffers /;" d
  8416. glGenFramebuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenFramebuffers /;" d
  8417. glGenProgramPipelines third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenProgramPipelines /;" d
  8418. glGenQueries third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenQueries /;" d
  8419. glGenRenderbuffers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenRenderbuffers /;" d
  8420. glGenSamplers third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenSamplers /;" d
  8421. glGenTextures third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenTextures /;" d
  8422. glGenTransformFeedbacks third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenTransformFeedbacks /;" d
  8423. glGenVertexArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenVertexArrays /;" d
  8424. glGenerateMipmap third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGenerateMipmap /;" d
  8425. glGetActiveAtomicCounterBufferiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveAtomicCounterBufferiv /;" d
  8426. glGetActiveAttrib third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveAttrib /;" d
  8427. glGetActiveSubroutineName third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveSubroutineName /;" d
  8428. glGetActiveSubroutineUniformName third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveSubroutineUniformName /;" d
  8429. glGetActiveSubroutineUniformiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveSubroutineUniformiv /;" d
  8430. glGetActiveUniform third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveUniform /;" d
  8431. glGetActiveUniformBlockName third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveUniformBlockName /;" d
  8432. glGetActiveUniformBlockiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveUniformBlockiv /;" d
  8433. glGetActiveUniformName third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveUniformName /;" d
  8434. glGetActiveUniformsiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetActiveUniformsiv /;" d
  8435. glGetAttachedShaders third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetAttachedShaders /;" d
  8436. glGetAttribLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetAttribLocation /;" d
  8437. glGetBooleani_v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBooleani_v /;" d
  8438. glGetBooleanv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBooleanv /;" d
  8439. glGetBufferParameteri64v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBufferParameteri64v /;" d
  8440. glGetBufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBufferParameteriv /;" d
  8441. glGetBufferPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBufferPointerv /;" d
  8442. glGetBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetBufferSubData /;" d
  8443. glGetCompressedTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetCompressedTexImage /;" d
  8444. glGetDebugMessageLog third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetDebugMessageLog /;" d
  8445. glGetDebugMessageLogARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetDebugMessageLogARB /;" d
  8446. glGetDoublei_v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetDoublei_v /;" d
  8447. glGetDoublev third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetDoublev /;" d
  8448. glGetError third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetError /;" d
  8449. glGetFloati_v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFloati_v /;" d
  8450. glGetFloatv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFloatv /;" d
  8451. glGetFragDataIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFragDataIndex /;" d
  8452. glGetFragDataLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFragDataLocation /;" d
  8453. glGetFramebufferAttachmentParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFramebufferAttachmentParameteriv /;" d
  8454. glGetFramebufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetFramebufferParameteriv /;" d
  8455. glGetGraphicsResetStatusARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetGraphicsResetStatusARB /;" d
  8456. glGetInteger64i_v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetInteger64i_v /;" d
  8457. glGetInteger64v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetInteger64v /;" d
  8458. glGetIntegeri_v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetIntegeri_v /;" d
  8459. glGetIntegerv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetIntegerv /;" d
  8460. glGetInternalformati64v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetInternalformati64v /;" d
  8461. glGetInternalformativ third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetInternalformativ /;" d
  8462. glGetMultisamplefv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetMultisamplefv /;" d
  8463. glGetNamedFramebufferParameterivEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetNamedFramebufferParameterivEXT /;" d
  8464. glGetNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetNamedStringARB /;" d
  8465. glGetNamedStringivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetNamedStringivARB /;" d
  8466. glGetObjectLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetObjectLabel /;" d
  8467. glGetObjectPtrLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetObjectPtrLabel /;" d
  8468. glGetPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetPointerv /;" d
  8469. glGetProgramBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramBinary /;" d
  8470. glGetProgramInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramInfoLog /;" d
  8471. glGetProgramInterfaceiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramInterfaceiv /;" d
  8472. glGetProgramPipelineInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramPipelineInfoLog /;" d
  8473. glGetProgramPipelineiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramPipelineiv /;" d
  8474. glGetProgramResourceIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramResourceIndex /;" d
  8475. glGetProgramResourceLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramResourceLocation /;" d
  8476. glGetProgramResourceLocationIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramResourceLocationIndex /;" d
  8477. glGetProgramResourceName third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramResourceName /;" d
  8478. glGetProgramResourceiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramResourceiv /;" d
  8479. glGetProgramStageiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramStageiv /;" d
  8480. glGetProgramiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetProgramiv /;" d
  8481. glGetQueryIndexediv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryIndexediv /;" d
  8482. glGetQueryObjecti64v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryObjecti64v /;" d
  8483. glGetQueryObjectiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryObjectiv /;" d
  8484. glGetQueryObjectui64v third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryObjectui64v /;" d
  8485. glGetQueryObjectuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryObjectuiv /;" d
  8486. glGetQueryiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetQueryiv /;" d
  8487. glGetRenderbufferParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetRenderbufferParameteriv /;" d
  8488. glGetSamplerParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSamplerParameterIiv /;" d
  8489. glGetSamplerParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSamplerParameterIuiv /;" d
  8490. glGetSamplerParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSamplerParameterfv /;" d
  8491. glGetSamplerParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSamplerParameteriv /;" d
  8492. glGetShaderInfoLog third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetShaderInfoLog /;" d
  8493. glGetShaderPrecisionFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetShaderPrecisionFormat /;" d
  8494. glGetShaderSource third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetShaderSource /;" d
  8495. glGetShaderiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetShaderiv /;" d
  8496. glGetString third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetString /;" d
  8497. glGetStringi third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetStringi /;" d
  8498. glGetSubroutineIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSubroutineIndex /;" d
  8499. glGetSubroutineUniformLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSubroutineUniformLocation /;" d
  8500. glGetSynciv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetSynciv /;" d
  8501. glGetTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexImage /;" d
  8502. glGetTexLevelParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexLevelParameterfv /;" d
  8503. glGetTexLevelParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexLevelParameteriv /;" d
  8504. glGetTexParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexParameterIiv /;" d
  8505. glGetTexParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexParameterIuiv /;" d
  8506. glGetTexParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexParameterfv /;" d
  8507. glGetTexParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTexParameteriv /;" d
  8508. glGetTransformFeedbackVarying third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetTransformFeedbackVarying /;" d
  8509. glGetUniformBlockIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformBlockIndex /;" d
  8510. glGetUniformIndices third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformIndices /;" d
  8511. glGetUniformLocation third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformLocation /;" d
  8512. glGetUniformSubroutineuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformSubroutineuiv /;" d
  8513. glGetUniformdv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformdv /;" d
  8514. glGetUniformfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformfv /;" d
  8515. glGetUniformiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformiv /;" d
  8516. glGetUniformuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetUniformuiv /;" d
  8517. glGetVertexAttribIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribIiv /;" d
  8518. glGetVertexAttribIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribIuiv /;" d
  8519. glGetVertexAttribLdv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribLdv /;" d
  8520. glGetVertexAttribPointerv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribPointerv /;" d
  8521. glGetVertexAttribdv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribdv /;" d
  8522. glGetVertexAttribfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribfv /;" d
  8523. glGetVertexAttribiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetVertexAttribiv /;" d
  8524. glGetnCompressedTexImageARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnCompressedTexImageARB /;" d
  8525. glGetnTexImageARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnTexImageARB /;" d
  8526. glGetnUniformdvARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnUniformdvARB /;" d
  8527. glGetnUniformfvARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnUniformfvARB /;" d
  8528. glGetnUniformivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnUniformivARB /;" d
  8529. glGetnUniformuivARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glGetnUniformuivARB /;" d
  8530. glHint third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glHint /;" d
  8531. glInvalidateBufferData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateBufferData /;" d
  8532. glInvalidateBufferSubData third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateBufferSubData /;" d
  8533. glInvalidateFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateFramebuffer /;" d
  8534. glInvalidateSubFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateSubFramebuffer /;" d
  8535. glInvalidateTexImage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateTexImage /;" d
  8536. glInvalidateTexSubImage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glInvalidateTexSubImage /;" d
  8537. glIsBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsBuffer /;" d
  8538. glIsEnabled third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsEnabled /;" d
  8539. glIsEnabledi third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsEnabledi /;" d
  8540. glIsFramebuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsFramebuffer /;" d
  8541. glIsNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsNamedStringARB /;" d
  8542. glIsProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsProgram /;" d
  8543. glIsProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsProgramPipeline /;" d
  8544. glIsQuery third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsQuery /;" d
  8545. glIsRenderbuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsRenderbuffer /;" d
  8546. glIsSampler third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsSampler /;" d
  8547. glIsShader third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsShader /;" d
  8548. glIsSync third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsSync /;" d
  8549. glIsTexture third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsTexture /;" d
  8550. glIsTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsTransformFeedback /;" d
  8551. glIsVertexArray third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glIsVertexArray /;" d
  8552. glLineWidth third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glLineWidth /;" d
  8553. glLinkProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glLinkProgram /;" d
  8554. glLogicOp third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glLogicOp /;" d
  8555. glMapBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMapBuffer /;" d
  8556. glMapBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMapBufferRange /;" d
  8557. glMemoryBarrier third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMemoryBarrier /;" d
  8558. glMinSampleShading third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMinSampleShading /;" d
  8559. glMinSampleShadingARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMinSampleShadingARB /;" d
  8560. glMultiDrawArrays third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiDrawArrays /;" d
  8561. glMultiDrawArraysIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiDrawArraysIndirect /;" d
  8562. glMultiDrawElements third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiDrawElements /;" d
  8563. glMultiDrawElementsBaseVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiDrawElementsBaseVertex /;" d
  8564. glMultiDrawElementsIndirect third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiDrawElementsIndirect /;" d
  8565. glMultiTexCoordP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP1ui /;" d
  8566. glMultiTexCoordP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP1uiv /;" d
  8567. glMultiTexCoordP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP2ui /;" d
  8568. glMultiTexCoordP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP2uiv /;" d
  8569. glMultiTexCoordP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP3ui /;" d
  8570. glMultiTexCoordP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP3uiv /;" d
  8571. glMultiTexCoordP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP4ui /;" d
  8572. glMultiTexCoordP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glMultiTexCoordP4uiv /;" d
  8573. glNamedFramebufferParameteriEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glNamedFramebufferParameteriEXT /;" d
  8574. glNamedStringARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glNamedStringARB /;" d
  8575. glNormalP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glNormalP3ui /;" d
  8576. glNormalP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glNormalP3uiv /;" d
  8577. glObjectLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glObjectLabel /;" d
  8578. glObjectPtrLabel third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glObjectPtrLabel /;" d
  8579. glPatchParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPatchParameterfv /;" d
  8580. glPatchParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPatchParameteri /;" d
  8581. glPauseTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPauseTransformFeedback /;" d
  8582. glPixelStoref third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPixelStoref /;" d
  8583. glPixelStorei third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPixelStorei /;" d
  8584. glPointParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPointParameterf /;" d
  8585. glPointParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPointParameterfv /;" d
  8586. glPointParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPointParameteri /;" d
  8587. glPointParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPointParameteriv /;" d
  8588. glPointSize third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPointSize /;" d
  8589. glPolygonMode third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPolygonMode /;" d
  8590. glPolygonOffset third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPolygonOffset /;" d
  8591. glPopDebugGroup third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPopDebugGroup /;" d
  8592. glPrimitiveRestartIndex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPrimitiveRestartIndex /;" d
  8593. glProgramBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramBinary /;" d
  8594. glProgramParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramParameteri /;" d
  8595. glProgramUniform1d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1d /;" d
  8596. glProgramUniform1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1dv /;" d
  8597. glProgramUniform1f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1f /;" d
  8598. glProgramUniform1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1fv /;" d
  8599. glProgramUniform1i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1i /;" d
  8600. glProgramUniform1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1iv /;" d
  8601. glProgramUniform1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1ui /;" d
  8602. glProgramUniform1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform1uiv /;" d
  8603. glProgramUniform2d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2d /;" d
  8604. glProgramUniform2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2dv /;" d
  8605. glProgramUniform2f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2f /;" d
  8606. glProgramUniform2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2fv /;" d
  8607. glProgramUniform2i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2i /;" d
  8608. glProgramUniform2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2iv /;" d
  8609. glProgramUniform2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2ui /;" d
  8610. glProgramUniform2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform2uiv /;" d
  8611. glProgramUniform3d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3d /;" d
  8612. glProgramUniform3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3dv /;" d
  8613. glProgramUniform3f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3f /;" d
  8614. glProgramUniform3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3fv /;" d
  8615. glProgramUniform3i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3i /;" d
  8616. glProgramUniform3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3iv /;" d
  8617. glProgramUniform3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3ui /;" d
  8618. glProgramUniform3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform3uiv /;" d
  8619. glProgramUniform4d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4d /;" d
  8620. glProgramUniform4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4dv /;" d
  8621. glProgramUniform4f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4f /;" d
  8622. glProgramUniform4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4fv /;" d
  8623. glProgramUniform4i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4i /;" d
  8624. glProgramUniform4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4iv /;" d
  8625. glProgramUniform4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4ui /;" d
  8626. glProgramUniform4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniform4uiv /;" d
  8627. glProgramUniformMatrix2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2dv /;" d
  8628. glProgramUniformMatrix2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2fv /;" d
  8629. glProgramUniformMatrix2x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2x3dv /;" d
  8630. glProgramUniformMatrix2x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2x3fv /;" d
  8631. glProgramUniformMatrix2x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2x4dv /;" d
  8632. glProgramUniformMatrix2x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix2x4fv /;" d
  8633. glProgramUniformMatrix3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3dv /;" d
  8634. glProgramUniformMatrix3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3fv /;" d
  8635. glProgramUniformMatrix3x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3x2dv /;" d
  8636. glProgramUniformMatrix3x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3x2fv /;" d
  8637. glProgramUniformMatrix3x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3x4dv /;" d
  8638. glProgramUniformMatrix3x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix3x4fv /;" d
  8639. glProgramUniformMatrix4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4dv /;" d
  8640. glProgramUniformMatrix4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4fv /;" d
  8641. glProgramUniformMatrix4x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4x2dv /;" d
  8642. glProgramUniformMatrix4x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4x2fv /;" d
  8643. glProgramUniformMatrix4x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4x3dv /;" d
  8644. glProgramUniformMatrix4x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProgramUniformMatrix4x3fv /;" d
  8645. glProvokingVertex third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glProvokingVertex /;" d
  8646. glPushDebugGroup third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glPushDebugGroup /;" d
  8647. glQueryCounter third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glQueryCounter /;" d
  8648. glReadBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glReadBuffer /;" d
  8649. glReadPixels third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glReadPixels /;" d
  8650. glReadnPixelsARB third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glReadnPixelsARB /;" d
  8651. glReleaseShaderCompiler third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glReleaseShaderCompiler /;" d
  8652. glRenderbufferStorage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glRenderbufferStorage /;" d
  8653. glRenderbufferStorageMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glRenderbufferStorageMultisample /;" d
  8654. glResumeTransformFeedback third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glResumeTransformFeedback /;" d
  8655. glSampleCoverage third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSampleCoverage /;" d
  8656. glSampleMaski third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSampleMaski /;" d
  8657. glSamplerParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameterIiv /;" d
  8658. glSamplerParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameterIuiv /;" d
  8659. glSamplerParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameterf /;" d
  8660. glSamplerParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameterfv /;" d
  8661. glSamplerParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameteri /;" d
  8662. glSamplerParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSamplerParameteriv /;" d
  8663. glScissor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glScissor /;" d
  8664. glScissorArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glScissorArrayv /;" d
  8665. glScissorIndexed third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glScissorIndexed /;" d
  8666. glScissorIndexedv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glScissorIndexedv /;" d
  8667. glSecondaryColorP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSecondaryColorP3ui /;" d
  8668. glSecondaryColorP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glSecondaryColorP3uiv /;" d
  8669. glShaderBinary third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glShaderBinary /;" d
  8670. glShaderSource third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glShaderSource /;" d
  8671. glShaderStorageBlockBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glShaderStorageBlockBinding /;" d
  8672. glStencilFunc third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilFunc /;" d
  8673. glStencilFuncSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilFuncSeparate /;" d
  8674. glStencilMask third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilMask /;" d
  8675. glStencilMaskSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilMaskSeparate /;" d
  8676. glStencilOp third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilOp /;" d
  8677. glStencilOpSeparate third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glStencilOpSeparate /;" d
  8678. glTexBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexBuffer /;" d
  8679. glTexBufferRange third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexBufferRange /;" d
  8680. glTexCoordP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP1ui /;" d
  8681. glTexCoordP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP1uiv /;" d
  8682. glTexCoordP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP2ui /;" d
  8683. glTexCoordP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP2uiv /;" d
  8684. glTexCoordP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP3ui /;" d
  8685. glTexCoordP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP3uiv /;" d
  8686. glTexCoordP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP4ui /;" d
  8687. glTexCoordP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexCoordP4uiv /;" d
  8688. glTexImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexImage1D /;" d
  8689. glTexImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexImage2D /;" d
  8690. glTexImage2DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexImage2DMultisample /;" d
  8691. glTexImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexImage3D /;" d
  8692. glTexImage3DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexImage3DMultisample /;" d
  8693. glTexParameterIiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameterIiv /;" d
  8694. glTexParameterIuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameterIuiv /;" d
  8695. glTexParameterf third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameterf /;" d
  8696. glTexParameterfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameterfv /;" d
  8697. glTexParameteri third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameteri /;" d
  8698. glTexParameteriv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexParameteriv /;" d
  8699. glTexStorage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexStorage1D /;" d
  8700. glTexStorage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexStorage2D /;" d
  8701. glTexStorage2DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexStorage2DMultisample /;" d
  8702. glTexStorage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexStorage3D /;" d
  8703. glTexStorage3DMultisample third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexStorage3DMultisample /;" d
  8704. glTexSubImage1D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexSubImage1D /;" d
  8705. glTexSubImage2D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexSubImage2D /;" d
  8706. glTexSubImage3D third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTexSubImage3D /;" d
  8707. glTextureBufferRangeEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureBufferRangeEXT /;" d
  8708. glTextureStorage1DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureStorage1DEXT /;" d
  8709. glTextureStorage2DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureStorage2DEXT /;" d
  8710. glTextureStorage2DMultisampleEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureStorage2DMultisampleEXT /;" d
  8711. glTextureStorage3DEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureStorage3DEXT /;" d
  8712. glTextureStorage3DMultisampleEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureStorage3DMultisampleEXT /;" d
  8713. glTextureView third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTextureView /;" d
  8714. glTransformFeedbackVaryings third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glTransformFeedbackVaryings /;" d
  8715. glUniform1d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1d /;" d
  8716. glUniform1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1dv /;" d
  8717. glUniform1f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1f /;" d
  8718. glUniform1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1fv /;" d
  8719. glUniform1i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1i /;" d
  8720. glUniform1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1iv /;" d
  8721. glUniform1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1ui /;" d
  8722. glUniform1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform1uiv /;" d
  8723. glUniform2d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2d /;" d
  8724. glUniform2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2dv /;" d
  8725. glUniform2f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2f /;" d
  8726. glUniform2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2fv /;" d
  8727. glUniform2i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2i /;" d
  8728. glUniform2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2iv /;" d
  8729. glUniform2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2ui /;" d
  8730. glUniform2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform2uiv /;" d
  8731. glUniform3d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3d /;" d
  8732. glUniform3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3dv /;" d
  8733. glUniform3f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3f /;" d
  8734. glUniform3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3fv /;" d
  8735. glUniform3i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3i /;" d
  8736. glUniform3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3iv /;" d
  8737. glUniform3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3ui /;" d
  8738. glUniform3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform3uiv /;" d
  8739. glUniform4d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4d /;" d
  8740. glUniform4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4dv /;" d
  8741. glUniform4f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4f /;" d
  8742. glUniform4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4fv /;" d
  8743. glUniform4i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4i /;" d
  8744. glUniform4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4iv /;" d
  8745. glUniform4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4ui /;" d
  8746. glUniform4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniform4uiv /;" d
  8747. glUniformBlockBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformBlockBinding /;" d
  8748. glUniformMatrix2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2dv /;" d
  8749. glUniformMatrix2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2fv /;" d
  8750. glUniformMatrix2x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2x3dv /;" d
  8751. glUniformMatrix2x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2x3fv /;" d
  8752. glUniformMatrix2x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2x4dv /;" d
  8753. glUniformMatrix2x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix2x4fv /;" d
  8754. glUniformMatrix3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3dv /;" d
  8755. glUniformMatrix3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3fv /;" d
  8756. glUniformMatrix3x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3x2dv /;" d
  8757. glUniformMatrix3x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3x2fv /;" d
  8758. glUniformMatrix3x4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3x4dv /;" d
  8759. glUniformMatrix3x4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix3x4fv /;" d
  8760. glUniformMatrix4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4dv /;" d
  8761. glUniformMatrix4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4fv /;" d
  8762. glUniformMatrix4x2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4x2dv /;" d
  8763. glUniformMatrix4x2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4x2fv /;" d
  8764. glUniformMatrix4x3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4x3dv /;" d
  8765. glUniformMatrix4x3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformMatrix4x3fv /;" d
  8766. glUniformSubroutinesuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUniformSubroutinesuiv /;" d
  8767. glUnmapBuffer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUnmapBuffer /;" d
  8768. glUseProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUseProgram /;" d
  8769. glUseProgramStages third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glUseProgramStages /;" d
  8770. glValidateProgram third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glValidateProgram /;" d
  8771. glValidateProgramPipeline third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glValidateProgramPipeline /;" d
  8772. glVertexArrayBindVertexBufferEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayBindVertexBufferEXT /;" d
  8773. glVertexArrayVertexAttribBindingEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayVertexAttribBindingEXT /;" d
  8774. glVertexArrayVertexAttribFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayVertexAttribFormatEXT /;" d
  8775. glVertexArrayVertexAttribIFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayVertexAttribIFormatEXT /;" d
  8776. glVertexArrayVertexAttribLFormatEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayVertexAttribLFormatEXT /;" d
  8777. glVertexArrayVertexBindingDivisorEXT third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexArrayVertexBindingDivisorEXT /;" d
  8778. glVertexAttrib1d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1d /;" d
  8779. glVertexAttrib1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1dv /;" d
  8780. glVertexAttrib1f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1f /;" d
  8781. glVertexAttrib1fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1fv /;" d
  8782. glVertexAttrib1s third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1s /;" d
  8783. glVertexAttrib1sv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib1sv /;" d
  8784. glVertexAttrib2d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2d /;" d
  8785. glVertexAttrib2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2dv /;" d
  8786. glVertexAttrib2f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2f /;" d
  8787. glVertexAttrib2fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2fv /;" d
  8788. glVertexAttrib2s third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2s /;" d
  8789. glVertexAttrib2sv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib2sv /;" d
  8790. glVertexAttrib3d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3d /;" d
  8791. glVertexAttrib3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3dv /;" d
  8792. glVertexAttrib3f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3f /;" d
  8793. glVertexAttrib3fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3fv /;" d
  8794. glVertexAttrib3s third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3s /;" d
  8795. glVertexAttrib3sv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib3sv /;" d
  8796. glVertexAttrib4Nbv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nbv /;" d
  8797. glVertexAttrib4Niv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Niv /;" d
  8798. glVertexAttrib4Nsv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nsv /;" d
  8799. glVertexAttrib4Nub third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nub /;" d
  8800. glVertexAttrib4Nubv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nubv /;" d
  8801. glVertexAttrib4Nuiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nuiv /;" d
  8802. glVertexAttrib4Nusv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4Nusv /;" d
  8803. glVertexAttrib4bv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4bv /;" d
  8804. glVertexAttrib4d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4d /;" d
  8805. glVertexAttrib4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4dv /;" d
  8806. glVertexAttrib4f third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4f /;" d
  8807. glVertexAttrib4fv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4fv /;" d
  8808. glVertexAttrib4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4iv /;" d
  8809. glVertexAttrib4s third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4s /;" d
  8810. glVertexAttrib4sv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4sv /;" d
  8811. glVertexAttrib4ubv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4ubv /;" d
  8812. glVertexAttrib4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4uiv /;" d
  8813. glVertexAttrib4usv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttrib4usv /;" d
  8814. glVertexAttribBinding third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribBinding /;" d
  8815. glVertexAttribDivisor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribDivisor /;" d
  8816. glVertexAttribFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribFormat /;" d
  8817. glVertexAttribI1i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI1i /;" d
  8818. glVertexAttribI1iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI1iv /;" d
  8819. glVertexAttribI1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI1ui /;" d
  8820. glVertexAttribI1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI1uiv /;" d
  8821. glVertexAttribI2i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI2i /;" d
  8822. glVertexAttribI2iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI2iv /;" d
  8823. glVertexAttribI2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI2ui /;" d
  8824. glVertexAttribI2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI2uiv /;" d
  8825. glVertexAttribI3i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI3i /;" d
  8826. glVertexAttribI3iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI3iv /;" d
  8827. glVertexAttribI3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI3ui /;" d
  8828. glVertexAttribI3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI3uiv /;" d
  8829. glVertexAttribI4bv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4bv /;" d
  8830. glVertexAttribI4i third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4i /;" d
  8831. glVertexAttribI4iv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4iv /;" d
  8832. glVertexAttribI4sv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4sv /;" d
  8833. glVertexAttribI4ubv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4ubv /;" d
  8834. glVertexAttribI4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4ui /;" d
  8835. glVertexAttribI4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4uiv /;" d
  8836. glVertexAttribI4usv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribI4usv /;" d
  8837. glVertexAttribIFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribIFormat /;" d
  8838. glVertexAttribIPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribIPointer /;" d
  8839. glVertexAttribL1d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL1d /;" d
  8840. glVertexAttribL1dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL1dv /;" d
  8841. glVertexAttribL2d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL2d /;" d
  8842. glVertexAttribL2dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL2dv /;" d
  8843. glVertexAttribL3d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL3d /;" d
  8844. glVertexAttribL3dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL3dv /;" d
  8845. glVertexAttribL4d third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL4d /;" d
  8846. glVertexAttribL4dv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribL4dv /;" d
  8847. glVertexAttribLFormat third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribLFormat /;" d
  8848. glVertexAttribLPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribLPointer /;" d
  8849. glVertexAttribP1ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP1ui /;" d
  8850. glVertexAttribP1uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP1uiv /;" d
  8851. glVertexAttribP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP2ui /;" d
  8852. glVertexAttribP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP2uiv /;" d
  8853. glVertexAttribP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP3ui /;" d
  8854. glVertexAttribP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP3uiv /;" d
  8855. glVertexAttribP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP4ui /;" d
  8856. glVertexAttribP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribP4uiv /;" d
  8857. glVertexAttribPointer third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexAttribPointer /;" d
  8858. glVertexBindingDivisor third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexBindingDivisor /;" d
  8859. glVertexP2ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP2ui /;" d
  8860. glVertexP2uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP2uiv /;" d
  8861. glVertexP3ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP3ui /;" d
  8862. glVertexP3uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP3uiv /;" d
  8863. glVertexP4ui third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP4ui /;" d
  8864. glVertexP4uiv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glVertexP4uiv /;" d
  8865. glViewport third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glViewport /;" d
  8866. glViewportArrayv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glViewportArrayv /;" d
  8867. glViewportIndexedf third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glViewportIndexedf /;" d
  8868. glViewportIndexedfv third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glViewportIndexedfv /;" d
  8869. glWaitSync third_party/imgui/examples/libs/gl3w/GL/gl3w.h /^#define glWaitSync /;" d
  8870. glfw_error_callback third_party/imgui/examples/example_glfw_metal/main.mm /^static void glfw_error_callback(int error, const char* description)$/;" f
  8871. glfw_error_callback third_party/imgui/examples/example_glfw_opengl2/main.cpp /^static void glfw_error_callback(int error, const char* description)$/;" f typeref:typename:void file:
  8872. glfw_error_callback third_party/imgui/examples/example_glfw_opengl3/main.cpp /^static void glfw_error_callback(int error, const char* description)$/;" f typeref:typename:void file:
  8873. glfw_error_callback third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void glfw_error_callback(int error, const char* description)$/;" f typeref:typename:void file:
  8874. glfw_resize_callback third_party/imgui/examples/example_glfw_vulkan/main.cpp /^static void glfw_resize_callback(GLFWwindow*, int w, int h)$/;" f typeref:typename:void file:
  8875. glut_display_func third_party/imgui/examples/example_glut_opengl2/main.cpp /^void glut_display_func()$/;" f typeref:typename:void
  8876. glyf third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  8877. gpos third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  8878. grassLevel core.mod/src/WGDefault.cc /^static int grassLevel(const siv::PerlinNoise &perlin, int x) {$/;" f typeref:typename:int file:
  8879. gravity libswan/src/traits/BodyTrait.cc /^void PhysicsBody::gravity(Vec2 g) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  8880. green third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ unsigned short* green;$/;" m struct:GLFWgammaramp typeref:typename:unsigned short *
  8881. greenBits third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int greenBits;$/;" m struct:GLFWvidmode typeref:typename:int
  8882. grid_x third_party/imgui-plot/include/imgui_plot.h /^ } grid_x, grid_y;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Grid
  8883. grid_y third_party/imgui-plot/include/imgui_plot.h /^ } grid_x, grid_y;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Grid
  8884. gsubrs third_party/imgui/imstb_truetype.h /^ stbtt__buf gsubrs; \/\/ global charstring subroutines index$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  8885. h third_party/imgui/imstb_rectpack.h /^ stbrp_coord w, h;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  8886. h third_party/imgui/imstb_truetype.h /^ int id,w,h,was_packed;$/;" m struct:stbrp_rect typeref:typename:int
  8887. h third_party/imgui/imstb_truetype.h /^ int w,h,stride;$/;" m struct:__anon3297c23e0808 typeref:typename:int
  8888. h_oversample third_party/imgui/imstb_truetype.h /^ unsigned char h_oversample, v_oversample; \/\/ don't set these, they're used internally$/;" m struct:__anon3297c23e0508 typeref:typename:unsigned char
  8889. h_oversample third_party/imgui/imstb_truetype.h /^ unsigned int h_oversample, v_oversample;$/;" m struct:stbtt_pack_context typeref:typename:unsigned int
  8890. handle_ libswan/include/swan/OS.h /^ void *handle_;$/;" m class:Swan::OS::Dynlib typeref:typename:void *
  8891. hasChunk libswan/src/WorldPlane.cc /^bool WorldPlane::hasChunk(ChunkPos pos) {$/;" f class:Swan::WorldPlane typeref:typename:bool
  8892. has_preferred_x third_party/imgui/imstb_textedit.h /^ unsigned char has_preferred_x;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  8893. hash third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:FramebufferDescriptor
  8894. hdrs third_party/imgui-plot/CMakeLists.txt /^set(hdrs$/;" v
  8895. head third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  8896. head third_party/imgui/imstb_truetype.h /^ struct stbtt__hheap_chunk *head;$/;" m struct:stbtt__hheap typeref:struct:stbtt__hheap_chunk *
  8897. height third_party/PerlinNoise/Test_PerlinNoise.cpp /^ int height() const$/;" f class:Image typeref:typename:int file:
  8898. height third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int height;$/;" m struct:GLFWimage typeref:typename:int
  8899. height third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int height;$/;" m struct:GLFWvidmode typeref:typename:int
  8900. height third_party/imgui/imstb_rectpack.h /^ int height;$/;" m struct:stbrp_context typeref:typename:int
  8901. height third_party/imgui/imstb_textedit.h /^ float height; \/\/ height of line$/;" m struct:__anon6b3818470508 typeref:typename:float
  8902. height third_party/imgui/imstb_truetype.h /^ int height;$/;" m struct:stbtt_pack_context typeref:typename:int
  8903. height third_party/imgui/imstb_truetype.h /^ int width,height;$/;" m struct:__anon3297c23e1108 typeref:typename:int
  8904. heuristic third_party/imgui/imstb_rectpack.h /^ int heuristic;$/;" m struct:stbrp_context typeref:typename:int
  8905. hexchr libswan/src/SRF.cc /^static char hexchr(uint8_t nibble) {$/;" f namespace:Swan typeref:typename:char file:
  8906. hhea third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  8907. hmtx third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  8908. hscale libswan/include/swan/Win.h /^ double hscale = 1;$/;" m struct:Swan::Win::ShowTextureArgs typeref:typename:double
  8909. iOS / OSX Metal example third_party/imgui/examples/example_apple_metal/README.md /^# iOS \/ OSX Metal example$/;" c
  8910. id third_party/imgui/imstb_rectpack.h /^ int id;$/;" m struct:stbrp_rect typeref:typename:int
  8911. id third_party/imgui/imstb_truetype.h /^ int id,w,h,was_packed;$/;" m struct:stbrp_rect typeref:typename:int
  8912. id_ libswan/include/swan/WorldPlane.h /^ ID id_;$/;" m class:Swan::WorldPlane typeref:typename:ID
  8913. idx_ libswan/include/swan/PerfCounter.h /^ size_t idx_ = 0;$/;" m class:Swan::PerfCounter::Counter typeref:typename:size_t
  8914. ignored third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef struct { int ignored; } * uSynergyCookie;$/;" m struct:__anon124b53000108 typeref:typename:int
  8915. image libswan/include/swan/Item.h /^ std::string image;$/;" m struct:Swan::Item::Builder typeref:typename:std::string
  8916. image libswan/include/swan/Tile.h /^ std::string image;$/;" m struct:Swan::Tile::Builder typeref:typename:std::string
  8917. image_ libswan/include/swan/Item.h /^ const ImageResource &image_;$/;" m class:Swan::Item typeref:typename:const ImageResource &
  8918. image_ libswan/include/swan/Tile.h /^ const ImageResource &image_;$/;" m class:Swan::Tile typeref:typename:const ImageResource &
  8919. images_ libswan/include/swan/Mod.h /^ std::vector<ImageResource::Builder> images_;$/;" m class:Swan::Mod typeref:typename:std::vector<ImageResource::Builder>
  8920. images_ libswan/include/swan/Resource.h /^ std::unordered_map<std::string, std::unique_ptr<ImageResource>> images_;$/;" m class:Swan::ResourceManager typeref:typename:std::unordered_map<std::string,std::unique_ptr<ImageResource>>
  8921. imgassert src/main.cc /^#define imgassert(/;" d file:
  8922. imgui third_party/CMakeLists.txt /^add_library(imgui SHARED$/;" t
  8923. imgui-plot third_party/imgui-plot/README.md /^# imgui-plot$/;" c
  8924. imgui_example_glfw_vulkan third_party/imgui/examples/example_glfw_vulkan/CMakeLists.txt /^project(imgui_example_glfw_vulkan C CXX)$/;" p
  8925. imgui_freetype third_party/imgui/misc/freetype/README.md /^# imgui_freetype$/;" c
  8926. imgui_plot third_party/imgui-plot/CMakeLists.txt /^add_library(imgui_plot ${srcs} ${hdrs})$/;" t
  8927. imgui_sdl third_party/imgui_sdl/README.md /^# imgui_sdl$/;" c
  8928. inBounds third_party/PerlinNoise/Test_PerlinNoise.cpp /^ bool inBounds(std::int32_t y, std::int32_t x) const noexcept$/;" f class:Image typeref:typename:bool file:
  8929. index libswan/test/lib/test.cc /^ int index;$/;" m struct:testlib::TestCase typeref:typename:int file:
  8930. index libswan/test/lib/test.h /^ int index;$/;" m struct:testlib::TestSpec typeref:typename:int
  8931. indexToLocFormat third_party/imgui/imstb_truetype.h /^ int indexToLocFormat; \/\/ format needed to map from glyph index to glyph$/;" m struct:stbtt_fontinfo typeref:typename:int
  8932. index_from_ptr third_party/imgui/imgui.h /^ inline int index_from_ptr(const T* it) const { IM_ASSERT(it >= Data && it <= Data/;" f struct:ImVector typeref:typename:int
  8933. index_map third_party/imgui/imstb_truetype.h /^ int index_map; \/\/ a cmap mapping for our chosen character encoding$/;" m struct:stbtt_fontinfo typeref:typename:int
  8934. indices third_party/imgui-plot/include/imgui_plot.h /^ const size_t* indices = nullptr; \/\/ at which indices to draw the lines$/;" m struct:ImGui::PlotConfig::VerticalLines typeref:typename:const size_t *
  8935. info libswan/include/swan/log.h /^static Logger info(logstream, "info", OS::isTTY(stderr), "\\033[36m");$/;" v namespace:Swan typeref:typename:Logger
  8936. init libswan/src/Mod.cc /^void Mod::init(const std::string &name) {$/;" f class:Swan::Mod typeref:typename:void
  8937. init third_party/imgui/examples/imgui_impl_metal.mm /^- (instancetype)init {$/;" m implementation:MetalContext
  8938. initWithBuffer: third_party/imgui/examples/imgui_impl_metal.mm /^- (instancetype)initWithBuffer:(id<MTLBuffer>)buffer;$/;" m interface:MetalBuffer
  8939. initWithBuffer: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalBuffer
  8940. initWithRenderPassDescriptor: third_party/imgui/examples/imgui_impl_metal.mm /^- (instancetype)initWithRenderPassDescriptor:(MTLRenderPassDescriptor *)renderPassDescriptor;$/;" m interface:FramebufferDescriptor
  8941. initWithRenderPassDescriptor: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:FramebufferDescriptor
  8942. initWithView: third_party/imgui/examples/example_apple_metal/Shared/Renderer.h /^-(nonnull instancetype)initWithView:(nonnull MTKView *)view;$/;" m interface:Renderer
  8943. initWithView: third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^-(nonnull instancetype)initWithView:(nonnull MTKView *)view;$/;" m implementation:Renderer
  8944. init_mode third_party/imgui/imstb_rectpack.h /^ int init_mode;$/;" m struct:stbrp_context typeref:typename:int
  8945. inited_ libswan/include/swan/Mod.h /^ bool inited_ = false;$/;" m class:Swan::Mod typeref:typename:bool
  8946. initialized third_party/imgui/imstb_textedit.h /^ unsigned char initialized;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  8947. insert libswan/include/swan/traits/InventoryTrait.h /^ ItemStack insert(ItemStack stack) { return insert(0, stack); }$/;" f class:Swan::InventoryTrait::Inventory typeref:typename:ItemStack
  8948. insert libswan/include/swan/traits/InventoryTrait.h /^ ItemStack insert(int slot, ItemStack stack) override {$/;" f class:Swan::InventoryTrait::BasicInventory typeref:typename:ItemStack
  8949. insert libswan/src/ItemStack.cc /^ItemStack ItemStack::insert(ItemStack st) {$/;" f class:Swan::ItemStack typeref:typename:ItemStack
  8950. insert third_party/imgui/imgui.h /^ inline T* insert(const T* it, const T& v) { IM_ASSERT(it >= Data && it <= Data/;" f struct:ImVector typeref:typename:T *
  8951. insert_length third_party/imgui/imstb_textedit.h /^ STB_TEXTEDIT_POSITIONTYPE insert_length;$/;" m struct:__anon6b3818470108 typeref:typename:STB_TEXTEDIT_POSITIONTYPE
  8952. insert_mode third_party/imgui/imstb_textedit.h /^ unsigned char insert_mode;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  8953. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.0
  8954. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.1
  8955. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.2
  8956. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.3
  8957. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.4
  8958. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.5
  8959. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.6
  8960. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.0.patterns.7
  8961. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.0
  8962. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.1
  8963. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.2
  8964. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.3
  8965. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.4
  8966. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.5
  8967. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.6
  8968. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.1.patterns.7
  8969. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.0
  8970. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.1
  8971. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.2
  8972. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.3
  8973. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.4
  8974. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.5
  8975. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.6
  8976. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.2.patterns.7
  8977. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.0
  8978. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.1
  8979. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.2
  8980. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.3
  8981. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.4
  8982. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.5
  8983. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.6
  8984. instrument assets-src/music/happy-1.json /^ "instrument": 1,$/;" n object:channels.3.patterns.7
  8985. instruments assets-src/music/happy-1.json /^ "instruments": [$/;" a object:channels.0
  8986. instruments assets-src/music/happy-1.json /^ "instruments": [$/;" a object:channels.1
  8987. instruments assets-src/music/happy-1.json /^ "instruments": [$/;" a object:channels.2
  8988. instruments assets-src/music/happy-1.json /^ "instruments": [$/;" a object:channels.3
  8989. int32_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef __int32 int32_t;$/;" t typeref:typename:__int32
  8990. int32_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef long int int32_t;$/;" t typeref:typename:long int
  8991. int64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef __int64 int64_t;$/;" t typeref:typename:__int64
  8992. int64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef long int int64_t;$/;" t typeref:typename:long int
  8993. int64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef long long int int64_t;$/;" t typeref:typename:long long int
  8994. interval assets-src/music/happy-1.json /^ "interval": "hum",$/;" s object:channels.0.instruments.0
  8995. interval_ libswan/include/swan/Animation.h /^ float interval_;$/;" m class:Swan::Animation typeref:typename:float
  8996. introBars assets-src/music/happy-1.json /^ "introBars": 0,$/;" n
  8997. ints libswan/test/util.t.cc /^ int ints[] = { 100, 200, 300, 400 };$/;" v typeref:typename:int[]
  8998. invalid_image_ libswan/include/swan/Game.h /^ std::unique_ptr<ImageResource> invalid_image_ = NULL;$/;" m class:Swan::Game typeref:typename:std::unique_ptr<ImageResource>
  8999. invalid_item_ libswan/include/swan/Game.h /^ std::unique_ptr<Item> invalid_item_ = NULL;$/;" m class:Swan::Game typeref:typename:std::unique_ptr<Item>
  9000. invalid_tile_ libswan/include/swan/Game.h /^ std::unique_ptr<Tile> invalid_tile_ = NULL;$/;" m class:Swan::Game typeref:typename:std::unique_ptr<Tile>
  9001. inventory_ core.mod/src/entities/EntPlayer.h /^ Swan::InventoryTrait::BasicInventory inventory_;$/;" m class:EntPlayer typeref:typename:Swan::InventoryTrait::BasicInventory
  9002. invert third_party/imgui/imstb_truetype.h /^ int invert;$/;" m struct:stbtt__edge typeref:typename:int
  9003. isActive libswan/include/swan/Chunk.h /^ bool isActive() { return deactivate_timer_ > 0; }$/;" f class:Swan::Chunk typeref:typename:bool
  9004. isCompressed libswan/include/swan/Chunk.h /^ bool isCompressed() { return compressed_size_ != -1; }$/;" f class:Swan::Chunk typeref:typename:bool
  9005. isEqual: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:FramebufferDescriptor
  9006. isKeyPressed libswan/include/swan/Game.h /^ bool isKeyPressed(SDL_Scancode code) { return pressed_keys_[code]; }$/;" f class:Swan::Game typeref:typename:bool
  9007. isMousePressed libswan/include/swan/Game.h /^ bool isMousePressed(Uint8 button) { return pressed_buttons_[button]; }$/;" f class:Swan::Game typeref:typename:bool
  9008. isTTY libswan/src/OS.cc /^bool isTTY(FILE *f) {$/;" f namespace:Swan::OS typeref:typename:bool
  9009. is_separator third_party/imgui/imgui_widgets.cpp /^static bool is_separator(unsigned int c) { return ImCharI/;" f namespace:ImStb typeref:typename:bool file:
  9010. is_solid libswan/include/swan/Tile.h /^ bool is_solid = true;$/;" m struct:Swan::Tile::Builder typeref:typename:bool
  9011. is_solid_ libswan/include/swan/Tile.h /^ const bool is_solid_;$/;" m class:Swan::Tile typeref:typename:const bool
  9012. is_word_boundary third_party/imgui/imstb_textedit.h /^static int is_word_boundary( STB_TEXTEDIT_STRING *str, int idx )$/;" f typeref:typename:int
  9013. is_word_boundary_from_left third_party/imgui/imgui_widgets.cpp /^static int is_word_boundary_from_left(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0/;" f namespace:ImStb typeref:typename:int file:
  9014. is_word_boundary_from_right third_party/imgui/imgui_widgets.cpp /^static int is_word_boundary_from_right(STB_TEXTEDIT_STRING* obj, int idx) { return idx > 0/;" f namespace:ImStb typeref:typename:int file:
  9015. item libswan/include/swan/ItemStack.h /^ Item *item() { return item_; }$/;" f class:Swan::ItemStack typeref:typename:Item *
  9016. item1 libswan/test/ItemStack.t.cc /^ MockItem item1({ .name = "item1", .image = "no" });$/;" v typeref:typename:MockItem
  9017. item1 libswan/test/ItemStack.t.cc /^ MockItem item1({ .name = "item1", .image = "no", .max_stack = 20 });$/;" v typeref:typename:MockItem
  9018. item2 libswan/test/ItemStack.t.cc /^ MockItem item2({ .name = "itemm2", .image = "no" });$/;" v typeref:typename:MockItem
  9019. item_ core.mod/src/entities/EntItemStack.h /^ Swan::Item *item_ = NULL;$/;" m class:EntItemStack typeref:typename:Swan::Item *
  9020. item_ libswan/include/swan/ItemStack.h /^ Item *item_;$/;" m class:Swan::ItemStack typeref:typename:Item *
  9021. items_ libswan/include/swan/Mod.h /^ std::vector<Item::Builder> items_;$/;" m class:Swan::Mod typeref:typename:std::vector<Item::Builder>
  9022. items_ libswan/include/swan/World.h /^ std::unordered_map<std::string, std::unique_ptr<Item>> items_;$/;" m class:Swan::World typeref:typename:std::unordered_map<std::string,std::unique_ptr<Item>>
  9023. iter libswan/test/util.t.cc /^ auto iter = filter.begin();$/;" v typeref:typename:auto
  9024. iter libswan/test/util.t.cc /^ auto iter = mapfilt.begin();$/;" v typeref:typename:auto
  9025. iter libswan/test/util.t.cc /^ auto iter = mapping.begin();$/;" v typeref:typename:auto
  9026. iterator third_party/imgui/imgui.h /^ typedef value_type* iterator;$/;" t struct:ImVector typeref:typename:value_type *
  9027. jump_timer_ core.mod/src/entities/EntPlayer.h /^ Swan::Clock jump_timer_;$/;" m class:EntPlayer typeref:typename:Swan::Clock
  9028. keepActive libswan/src/Chunk.cc /^bool Chunk::keepActive() {$/;" f class:Swan::Chunk typeref:typename:bool
  9029. kern third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  9030. key assets-src/music/happy-1.json /^ "key": "F",$/;" s
  9031. key third_party/imgui/imgui.h /^ ImGuiID key;$/;" m struct:ImGuiStorage::ImGuiStoragePair typeref:typename:ImGuiID
  9032. keyDown: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)keyDown:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9033. keyUp: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)keyUp:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9034. lastBufferCachePurge third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) NSTimeInterval lastBufferCachePurge;$/;" p interface:MetalContext
  9035. lastReuseTime third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) NSTimeInterval lastReuseTime;$/;" p interface:MetalBuffer
  9036. left libswan/include/swan/traits/BodyTrait.h /^ float left() { return pos.x; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  9037. length libswan/include/swan/Vector2.h /^ constexpr T length() {$/;" f struct:Swan::Vector2 typeref:typename:T
  9038. length third_party/imgui-plot/include/imgui_plot.h /^ uint32_t* length = nullptr;$/;" m struct:ImGui::PlotConfig::Selection typeref:typename:uint32_t *
  9039. length third_party/imgui/imstb_textedit.h /^ int first_char, length; \/\/ first char of row, and length$/;" m struct:__anon6b3818470508 typeref:typename:int
  9040. libgl third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static HMODULE libgl;$/;" v typeref:typename:HMODULE file:
  9041. libgl third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static void *libgl;$/;" v typeref:typename:void * file:
  9042. libraries CMakeLists.txt /^set(libraries imgui SDL2 SDL2_image dl z)$/;" v
  9043. libswan libswan/CMakeLists.txt /^add_library(libswan SHARED$/;" t
  9044. line_thickness third_party/imgui-plot/include/imgui_plot.h /^ float line_thickness = 1.f;$/;" m struct:ImGui::PlotConfig typeref:typename:float
  9045. linenum libswan/test/lib/test.cc /^ int linenum;$/;" m struct:testlib::TestCase typeref:typename:int file:
  9046. linenum libswan/test/lib/test.h /^ int linenum;$/;" m struct:testlib::TestFailure typeref:typename:int
  9047. linenum libswan/test/lib/test.h /^ int linenum;$/;" m struct:testlib::TestSpec typeref:typename:int
  9048. loadMod libswan/src/Game.cc /^std::unique_ptr<Mod> Game::loadMod(const std::string &path) {$/;" f class:Swan::Game typeref:typename:std::unique_ptr<Mod>
  9049. load_procs third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static void load_procs(void)$/;" f typeref:typename:void file:
  9050. loca third_party/imgui/imstb_truetype.h /^ int loca,head,glyf,hhea,hmtx,kern,gpos; \/\/ table locations as offset from start of .ttf$/;" m struct:stbtt_fontinfo typeref:typename:int
  9051. logstream libswan/include/swan/log.h /^static std::ostream &logstream = std::clog;$/;" v namespace:Swan typeref:typename:std::ostream &
  9052. loopBars assets-src/music/happy-1.json /^ "loopBars": 16,$/;" n
  9053. m_clientHeight third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint16_t m_clientHeight; \/* Height of screen *\/$/;" m struct:__anon124b53000208 typeref:typename:uint16_t
  9054. m_clientName third_party/imgui/examples/libs/usynergy/uSynergy.h /^ const char* m_clientName; \/* Name of Synergy Screen \/ Client *\/$/;" m struct:__anon124b53000208 typeref:typename:const char *
  9055. m_clientWidth third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint16_t m_clientWidth; \/* Width of screen *\/$/;" m struct:__anon124b53000208 typeref:typename:uint16_t
  9056. m_clipboardCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyClipboardCallback m_clipboardCallback; \/* Callback for clipboard events *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyClipboardCallback
  9057. m_connectFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyConnectFunc m_connectFunc; \/* Connect function *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyConnectFunc
  9058. m_connected third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_connected; \/* Is our socket connected? *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9059. m_cookie third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyCookie m_cookie; \/* Cookie pointer passed to callback functions (can be N/;" m struct:__anon124b53000208 typeref:typename:uSynergyCookie
  9060. m_data third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::vector<RGB> m_data;$/;" m class:Image typeref:typename:std::vector<RGB> file:
  9061. m_getTimeFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyGetTimeFunc m_getTimeFunc; \/* Get current time function *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyGetTimeFunc
  9062. m_hasReceivedHello third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_hasReceivedHello; \/* Have we received a 'Hello' from the server? *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9063. m_height third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t m_width = 0, m_height = 0;$/;" m class:Image typeref:typename:std::int32_t file:
  9064. m_isCaptured third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_isCaptured; \/* Is Synergy active (i.e. this client is receiving inp/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9065. m_joystickButtons third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint16_t m_joystickButtons[USYNERGY_NUM_JOYSTICKS]; \/* Joystick button state *\/$/;" m struct:__anon124b53000208 typeref:typename:uint16_t[]
  9066. m_joystickCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyJoystickCallback m_joystickCallback; \/* Callback for joystick events *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyJoystickCallback
  9067. m_joystickSticks third_party/imgui/examples/libs/usynergy/uSynergy.h /^ int8_t m_joystickSticks[USYNERGY_NUM_JOYSTICKS][4]; \/* Joystick stick position in 2 axes/;" m struct:__anon124b53000208 typeref:typename:int8_t[][4]
  9068. m_keyboardCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyKeyboardCallback m_keyboardCallback; \/* Callback for keyboard events *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyKeyboardCallback
  9069. m_lastMessageTime third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint32_t m_lastMessageTime; \/* Time at which last message was received *\/$/;" m struct:__anon124b53000208 typeref:typename:uint32_t
  9070. m_mouseButtonLeft third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_mouseButtonLeft; \/* Mouse left button *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9071. m_mouseButtonMiddle third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_mouseButtonMiddle; \/* Mouse middle button *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9072. m_mouseButtonRight third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyBool m_mouseButtonRight; \/* Mouse right button *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyBool
  9073. m_mouseCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyMouseCallback m_mouseCallback; \/* Callback for mouse events *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyMouseCallback
  9074. m_mouseWheelX third_party/imgui/examples/libs/usynergy/uSynergy.h /^ int16_t m_mouseWheelX; \/* Mouse wheel X position *\/$/;" m struct:__anon124b53000208 typeref:typename:int16_t
  9075. m_mouseWheelY third_party/imgui/examples/libs/usynergy/uSynergy.h /^ int16_t m_mouseWheelY; \/* Mouse wheel Y position *\/$/;" m struct:__anon124b53000208 typeref:typename:int16_t
  9076. m_mouseX third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint16_t m_mouseX; \/* Mouse X position *\/$/;" m struct:__anon124b53000208 typeref:typename:uint16_t
  9077. m_mouseY third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint16_t m_mouseY; \/* Mouse Y position *\/$/;" m struct:__anon124b53000208 typeref:typename:uint16_t
  9078. m_receiveBuffer third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint8_t m_receiveBuffer[USYNERGY_RECEIVE_BUFFER_SIZE]; \/* Receive buffer *\/$/;" m struct:__anon124b53000208 typeref:typename:uint8_t[]
  9079. m_receiveFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyReceiveFunc m_receiveFunc; \/* Receive data function *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyReceiveFunc
  9080. m_receiveOfs third_party/imgui/examples/libs/usynergy/uSynergy.h /^ int m_receiveOfs; \/* Receive buffer offset *\/$/;" m struct:__anon124b53000208 typeref:typename:int
  9081. m_replyBuffer third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint8_t m_replyBuffer[USYNERGY_REPLY_BUFFER_SIZE]; \/* Reply buffer *\/$/;" m struct:__anon124b53000208 typeref:typename:uint8_t[]
  9082. m_replyCur third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint8_t* m_replyCur; \/* Write offset into reply buffer *\/$/;" m struct:__anon124b53000208 typeref:typename:uint8_t *
  9083. m_screenActiveCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyScreenActiveCallback m_screenActiveCallback; \/* Callback for entering and leavin/;" m struct:__anon124b53000208 typeref:typename:uSynergyScreenActiveCallback
  9084. m_sendFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergySendFunc m_sendFunc; \/* Send data function *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergySendFunc
  9085. m_sequenceNumber third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uint32_t m_sequenceNumber; \/* Packet sequence number *\/$/;" m struct:__anon124b53000208 typeref:typename:uint32_t
  9086. m_sleepFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergySleepFunc m_sleepFunc; \/* Thread sleep function *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergySleepFunc
  9087. m_traceFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^ uSynergyTraceFunc m_traceFunc; \/* Function for tracing status (can be NULL) *\/$/;" m struct:__anon124b53000208 typeref:typename:uSynergyTraceFunc
  9088. m_width third_party/PerlinNoise/Test_PerlinNoise.cpp /^ std::int32_t m_width = 0, m_height = 0;$/;" m class:Image typeref:typename:std::int32_t file:
  9089. main libswan/test/lib/test.cc /^int main() {$/;" f typeref:typename:int
  9090. main src/main.cc /^int main(int argc, char **argv) {$/;" f typeref:typename:int
  9091. main third_party/PerlinNoise/Test_PerlinNoise.cpp /^int main()$/;" f typeref:typename:int
  9092. main third_party/imgui/examples/example_allegro5/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9093. main third_party/imgui/examples/example_apple_metal/Shared/main.m /^int main(int argc, char * argv[]) {$/;" f
  9094. main third_party/imgui/examples/example_apple_metal/Shared/main.m /^int main(int argc, const char * argv[]) {$/;" f
  9095. main third_party/imgui/examples/example_apple_opengl2/main.mm /^int main(int argc, const char* argv[])$/;" f
  9096. main third_party/imgui/examples/example_emscripten/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9097. main third_party/imgui/examples/example_glfw_metal/main.mm /^int main(int, char**)$/;" f
  9098. main third_party/imgui/examples/example_glfw_opengl2/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9099. main third_party/imgui/examples/example_glfw_opengl3/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9100. main third_party/imgui/examples/example_glfw_vulkan/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9101. main third_party/imgui/examples/example_glut_opengl2/main.cpp /^int main(int argc, char** argv)$/;" f typeref:typename:int
  9102. main third_party/imgui/examples/example_marmalade/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9103. main third_party/imgui/examples/example_null/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9104. main third_party/imgui/examples/example_sdl_directx11/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9105. main third_party/imgui/examples/example_sdl_opengl2/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9106. main third_party/imgui/examples/example_sdl_opengl3/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9107. main third_party/imgui/examples/example_sdl_vulkan/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9108. main third_party/imgui/examples/example_win32_directx10/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9109. main third_party/imgui/examples/example_win32_directx11/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9110. main third_party/imgui/examples/example_win32_directx12/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9111. main third_party/imgui/examples/example_win32_directx9/main.cpp /^int main(int, char**)$/;" f typeref:typename:int
  9112. main third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^int main(int argc, char** argv)$/;" f typeref:typename:int
  9113. main third_party/imgui_sdl/example.cpp /^int main()$/;" f typeref:typename:int
  9114. main_clipboard third_party/imgui/imgui.cpp /^static PasteboardRef main_clipboard = 0;$/;" v typeref:typename:PasteboardRef file:
  9115. main_loop third_party/imgui/examples/example_emscripten/main.cpp /^void main_loop(void* arg)$/;" f typeref:typename:void
  9116. major third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^ int major, minor;$/;" m struct:__anona804d60b0108 typeref:typename:int file:
  9117. makeDeviceObjectsWithDevice: third_party/imgui/examples/imgui_impl_metal.mm /^- (void)makeDeviceObjectsWithDevice:(id<MTLDevice>)device;$/;" m interface:MetalContext
  9118. makeDeviceObjectsWithDevice: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  9119. makeFontTextureWithDevice: third_party/imgui/examples/imgui_impl_metal.mm /^- (void)makeFontTextureWithDevice:(id<MTLDevice>)device;$/;" m interface:MetalContext
  9120. makeFontTextureWithDevice: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  9121. map libswan/include/swan/util.h /^auto map(InputIterator first, InputIterator last, Func func) {$/;" f namespace:Swan typeref:typename:auto
  9122. map libswan/include/swan/util.h /^auto map(Range &rng, Func func) {$/;" f namespace:Swan typeref:typename:auto
  9123. mapCharacterToKey third_party/imgui/examples/imgui_impl_osx.mm /^static int mapCharacterToKey(int c)$/;" f
  9124. mapFilter libswan/include/swan/util.h /^auto mapFilter(InputIterator first, InputIterator last, Func func) {$/;" f namespace:Swan typeref:typename:auto
  9125. mapFilter libswan/include/swan/util.h /^auto mapFilter(Range &rng, Func func) {$/;" f namespace:Swan typeref:typename:auto
  9126. mapfilt libswan/test/util.t.cc /^ auto mapfilt = Swan::mapFilter(floats, [](float f) -> std::optional<int> {$/;" v typeref:typename:auto
  9127. mapping libswan/test/util.t.cc /^ auto mapping = Swan::map(ints, [](int i) { return i \/ 10; });$/;" v typeref:typename:auto
  9128. mass_ libswan/include/swan/traits/BodyTrait.h /^ float mass_;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:float
  9129. max third_party/imgui-plot/include/imgui_plot.h /^ float max;$/;" m struct:ImGui::PlotConfig::Scale typeref:typename:float
  9130. max_stack libswan/include/swan/Item.h /^ int max_stack = 64;$/;" m struct:Swan::Item::Builder typeref:typename:int
  9131. max_stack_ libswan/include/swan/Item.h /^ const int max_stack_;$/;" m class:Swan::Item typeref:typename:const int
  9132. max_x third_party/imgui/imstb_truetype.h /^ stbtt_int32 min_x, max_x, min_y, max_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:stbtt_int32
  9133. max_y third_party/imgui/imstb_truetype.h /^ stbtt_int32 min_x, max_x, min_y, max_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:stbtt_int32
  9134. memory_usage_ libswan/include/swan/PerfCounter.h /^ Counter<> memory_usage_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  9135. message libswan/test/lib/test.h /^ const char *message;$/;" m struct:testlib::TestFailure typeref:typename:const char *
  9136. midLeft libswan/include/swan/traits/BodyTrait.h /^ Vec2 midLeft() { return { left(), midY() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  9137. midRight libswan/include/swan/traits/BodyTrait.h /^ Vec2 midRight() { return { right(), midY() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  9138. midX libswan/include/swan/traits/BodyTrait.h /^ float midX() { return pos.x + size.x \/ 2; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  9139. midY libswan/include/swan/traits/BodyTrait.h /^ float midY() { return pos.y + size.y \/ 2; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  9140. min third_party/imgui-plot/include/imgui_plot.h /^ float min;$/;" m struct:ImGui::PlotConfig::Scale typeref:typename:float
  9141. min_x third_party/imgui/imstb_truetype.h /^ stbtt_int32 min_x, max_x, min_y, max_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:stbtt_int32
  9142. min_y third_party/imgui/imstb_truetype.h /^ stbtt_int32 min_x, max_x, min_y, max_y;$/;" m struct:__anon3297c23e0f08 typeref:typename:stbtt_int32
  9143. minor third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^ int major, minor;$/;" m struct:__anona804d60b0108 typeref:typename:int file:
  9144. mod_init core.mod/src/main.cc /^extern "C" void mod_init(Swan::Mod &mod) {$/;" f typeref:typename:void
  9145. modpath libswan/include/swan/Resource.h /^ std::string modpath = "";$/;" m struct:Swan::ImageResource::Builder typeref:typename:std::string
  9146. mods_ libswan/include/swan/World.h /^ std::vector<std::unique_ptr<Mod>> mods_;$/;" m class:Swan::World typeref:typename:std::vector<std::unique_ptr<Mod>>
  9147. mouseDown: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)mouseDown:(NSEvent *)event {$/;" m implementation:ViewController
  9148. mouseDown: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)mouseDown:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9149. mouseDragged: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)mouseDragged:(NSEvent *)event {$/;" m implementation:ViewController
  9150. mouseDragged: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)mouseDragged:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9151. mouseMoved: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)mouseMoved:(NSEvent *)event {$/;" m implementation:ViewController
  9152. mouseMoved: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)mouseMoved:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9153. mouseUp: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)mouseUp:(NSEvent *)event {$/;" m implementation:ViewController
  9154. mouseUp: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)mouseUp:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9155. mouse_pos_ libswan/include/swan/Game.h /^ Vec2i mouse_pos_;$/;" m class:Swan::Game typeref:typename:Vec2i
  9156. mouse_tile_ core.mod/src/entities/EntPlayer.h /^ Swan::TilePos mouse_tile_;$/;" m class:EntPlayer typeref:typename:Swan::TilePos
  9157. move libswan/include/swan/traits/BodyTrait.h /^ void move(Vec2 rel) override { pos_ += rel; }$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  9158. move libswan/include/swan/traits/BodyTrait.h /^ void move(Vec2 rel) override { pos_ += rel; }$/;" f class:Swan::BodyTrait::StaticBody typeref:typename:void
  9159. moveTo libswan/include/swan/traits/BodyTrait.h /^ void moveTo(Vec2 pos) override { pos_ = pos; }$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  9160. moveTo libswan/include/swan/traits/BodyTrait.h /^ void moveTo(Vec2 pos) override { pos_ = pos; }$/;" f class:Swan::BodyTrait::StaticBody typeref:typename:void
  9161. mtkView third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (MTKView *)mtkView {$/;" m implementation:ViewController
  9162. mtkView third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^@property (nonatomic, readonly) MTKView *mtkView;$/;" p interface:ViewController
  9163. mtkView:drawableSizeWillChange: third_party/imgui/examples/example_apple_metal/Shared/Renderer.mm /^{$/;" m implementation:Renderer
  9164. mushyness_ libswan/include/swan/traits/BodyTrait.h /^ float mushyness_ = 2;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:float
  9165. mvp third_party/imgui/examples/imgui_impl_dx10.cpp /^ float mvp[4][4];$/;" m struct:VERTEX_CONSTANT_BUFFER typeref:typename:float[4][4] file:
  9166. mvp third_party/imgui/examples/imgui_impl_dx11.cpp /^ float mvp[4][4];$/;" m struct:VERTEX_CONSTANT_BUFFER typeref:typename:float[4][4] file:
  9167. mvp third_party/imgui/examples/imgui_impl_dx12.cpp /^ float mvp[4][4];$/;" m struct:VERTEX_CONSTANT_BUFFER typeref:typename:float[4][4] file:
  9168. my_display_code third_party/imgui/examples/example_glut_opengl2/main.cpp /^void my_display_code()$/;" f typeref:typename:void
  9169. name libswan/include/swan/Item.h /^ std::string name;$/;" m struct:Swan::Item::Builder typeref:typename:std::string
  9170. name libswan/include/swan/Resource.h /^ std::string name;$/;" m struct:Swan::ImageResource::Builder typeref:typename:std::string
  9171. name libswan/include/swan/Tile.h /^ std::string name;$/;" m struct:Swan::Tile::Builder typeref:typename:std::string
  9172. name_ libswan/include/swan/Entity.h /^ std::string name_;$/;" m class:Swan::Entity::Factory typeref:typename:std::string
  9173. name_ libswan/include/swan/Item.h /^ const std::string name_;$/;" m class:Swan::Item typeref:typename:const std::string
  9174. name_ libswan/include/swan/Mod.h /^ std::string name_ = "@uninitialized";$/;" m class:Swan::Mod typeref:typename:std::string
  9175. name_ libswan/include/swan/Resource.h /^ std::string name_;$/;" m class:Swan::ImageResource typeref:typename:std::string
  9176. name_ libswan/include/swan/Tile.h /^ const std::string name_;$/;" m class:Swan::Tile typeref:typename:const std::string
  9177. name_ libswan/include/swan/WorldGen.h /^ std::string name_;$/;" m class:Swan::WorldGen::Factory typeref:typename:std::string
  9178. name_ libswan/include/swan/log.h /^ std::string name_;$/;" m class:Swan::Logger typeref:typename:std::string
  9179. need_render_ libswan/include/swan/Chunk.h /^ bool need_render_ = false;$/;" m class:Swan::Chunk typeref:typename:bool
  9180. next third_party/imgui/imstb_rectpack.h /^ stbrp_node *next;$/;" m struct:stbrp_node typeref:typename:stbrp_node *
  9181. next third_party/imgui/imstb_truetype.h /^ struct stbtt__active_edge *next;$/;" m struct:stbtt__active_edge typeref:struct:stbtt__active_edge *
  9182. next third_party/imgui/imstb_truetype.h /^ struct stbtt__hheap_chunk *next;$/;" m struct:stbtt__hheap_chunk typeref:struct:stbtt__hheap_chunk *
  9183. nodes third_party/imgui/imstb_truetype.h /^ void *nodes;$/;" m struct:stbtt_pack_context typeref:typename:void *
  9184. noise third_party/PerlinNoise/PerlinNoise.hpp /^ double noise(double x) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9185. noise third_party/PerlinNoise/PerlinNoise.hpp /^ double noise(double x, double y) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9186. noise third_party/PerlinNoise/PerlinNoise.hpp /^ double noise(double x, double y, double z) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9187. noise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double noise0_1(double x) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9188. noise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double noise0_1(double x, double y) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9189. noise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double noise0_1(double x, double y, double z) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9190. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.0.patterns.0
  9191. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.0.patterns.1
  9192. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.0.patterns.2
  9193. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.0.patterns.3
  9194. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.2.patterns.0
  9195. notes assets-src/music/happy-1.json /^ "notes": [$/;" a object:channels.3.patterns.0
  9196. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.0.patterns.4
  9197. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.0.patterns.5
  9198. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.0.patterns.6
  9199. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.0.patterns.7
  9200. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.0
  9201. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.1
  9202. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.2
  9203. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.3
  9204. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.4
  9205. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.5
  9206. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.6
  9207. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.1.patterns.7
  9208. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.1
  9209. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.2
  9210. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.3
  9211. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.4
  9212. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.5
  9213. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.6
  9214. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.2.patterns.7
  9215. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.1
  9216. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.2
  9217. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.3
  9218. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.4
  9219. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.5
  9220. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.6
  9221. notes assets-src/music/happy-1.json /^ "notes": []$/;" a object:channels.3.patterns.7
  9222. nothing third_party/imgui-plot/include/imgui_plot.h /^ nothing,$/;" e enum:ImGui::PlotStatus
  9223. numGlyphs third_party/imgui/imstb_truetype.h /^ int numGlyphs; \/\/ number of glyphs, needed for range checking$/;" m struct:stbtt_fontinfo typeref:typename:int
  9224. num_chars third_party/imgui/imstb_textedit.h /^ int num_chars;$/;" m struct:__anon6b3818470408 typeref:typename:int
  9225. num_chars third_party/imgui/imstb_truetype.h /^ int num_chars;$/;" m struct:__anon3297c23e0508 typeref:typename:int
  9226. num_frames_ libswan/include/swan/Resource.h /^ int num_frames_;$/;" m class:Swan::ImageResource typeref:typename:int
  9227. num_nodes third_party/imgui/imstb_rectpack.h /^ int num_nodes;$/;" m struct:stbrp_context typeref:typename:int
  9228. num_remaining_in_head_chunk third_party/imgui/imstb_truetype.h /^ int num_remaining_in_head_chunk;$/;" m struct:stbtt__hheap typeref:typename:int
  9229. num_vertices third_party/imgui/imstb_truetype.h /^ int num_vertices;$/;" m struct:__anon3297c23e0f08 typeref:typename:int
  9230. octaveNoise third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise(double x, double y, double z, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9231. octaveNoise third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise(double x, double y, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9232. octaveNoise third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise(double x, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9233. octaveNoise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise0_1(double x, double y, double z, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9234. octaveNoise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise0_1(double x, double y, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9235. octaveNoise0_1 third_party/PerlinNoise/PerlinNoise.hpp /^ double octaveNoise0_1(double x, std::int32_t octaves) const$/;" f class:siv::PerlinNoise typeref:typename:double
  9236. octaveScrollBar assets-src/music/happy-1.json /^ "octaveScrollBar": 0,$/;" n object:channels.3
  9237. octaveScrollBar assets-src/music/happy-1.json /^ "octaveScrollBar": 1,$/;" n object:channels.2
  9238. octaveScrollBar assets-src/music/happy-1.json /^ "octaveScrollBar": 2,$/;" n object:channels.1
  9239. octaveScrollBar assets-src/music/happy-1.json /^ "octaveScrollBar": 3,$/;" n object:channels.0
  9240. offset third_party/imgui-plot/include/imgui_plot.h /^ int offset = 0;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:int
  9241. onKeyDown libswan/include/swan/Game.h /^ void onKeyDown(SDL_Keysym sym) {$/;" f class:Swan::Game typeref:typename:void
  9242. onKeyUp libswan/include/swan/Game.h /^ void onKeyUp(SDL_Keysym sym) {$/;" f class:Swan::Game typeref:typename:void
  9243. onMouseDown libswan/include/swan/Game.h /^ void onMouseDown(Sint32 x, Sint32 y, Uint8 button) {$/;" f class:Swan::Game typeref:typename:void
  9244. onMouseMove libswan/include/swan/Game.h /^ void onMouseMove(Sint32 x, Sint32 y) {$/;" f class:Swan::Game typeref:typename:void
  9245. onMouseUp libswan/include/swan/Game.h /^ void onMouseUp(Sint32 x, Sint32 y, Uint8 button) {$/;" f class:Swan::Game typeref:typename:void
  9246. onResize libswan/include/swan/Win.h /^ void onResize(int w, int h) {$/;" f class:Swan::Win typeref:typename:void
  9247. onScrollWheel libswan/include/swan/Game.h /^ void onScrollWheel(Sint32 y) {$/;" f class:Swan::Game typeref:typename:void
  9248. on_ground_ libswan/include/swan/traits/BodyTrait.h /^ bool on_ground_ = false;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:bool
  9249. open_libgl third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static void open_libgl(void)$/;" f typeref:typename:void file:
  9250. operator != libswan/include/swan/Vector2.h /^ constexpr bool operator!=(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:bool
  9251. operator () libswan/include/swan/util.h /^ void operator()(T *ptr) { Func(ptr); }$/;" f class:Swan::CPtrDeleter typeref:typename:void
  9252. operator () third_party/imgui_sdl/imgui_sdl.cpp /^ std::size_t operator()(const T& value) const$/;" f struct:__anonaaadc0580110::TupleHash::Hash typeref:typename:std::size_t file:
  9253. operator * libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator*(T num) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9254. operator * libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator*(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9255. operator * third_party/imgui/imgui_internal.h /^static inline ImVec2 operator*(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  9256. operator * third_party/imgui/imgui_internal.h /^static inline ImVec2 operator*(const ImVec2& lhs, const float rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  9257. operator * third_party/imgui/imgui_internal.h /^static inline ImVec4 operator*(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(/;" f typeref:typename:ImVec4
  9258. operator * third_party/imgui_sdl/imgui_sdl.cpp /^ Color operator*(const Color& c) const { return Color(R * c.R, G * c.G, B * c.B, A * c.A); }$/;" f struct:__anonaaadc0580110::Color typeref:typename:Color file:
  9259. operator * third_party/imgui_sdl/imgui_sdl.cpp /^ Color operator*(float v) const { return Color(R * v, G * v, B * v, A * v); }$/;" f struct:__anonaaadc0580110::Color typeref:typename:Color file:
  9260. operator *= libswan/include/swan/Vector2.h /^ constexpr Vector2<T> &operator*=(const Vector2<T> &vec) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T> &
  9261. operator *= libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator*=(T num) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9262. operator *= third_party/imgui/imgui_internal.h /^static inline ImVec2& operator*=(ImVec2& lhs, const float rhs) { lhs.x *= rhs; /;" f typeref:typename:ImVec2 &
  9263. operator + libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator+(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9264. operator + third_party/imgui/imgui_internal.h /^static inline ImVec2 operator+(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  9265. operator + third_party/imgui/imgui_internal.h /^static inline ImVec4 operator+(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(/;" f typeref:typename:ImVec4
  9266. operator + third_party/imgui_sdl/imgui_sdl.cpp /^ Color operator+(const Color& c) const { return Color(R + c.R, G + c.G, B + c.B, A + c.A); }$/;" f struct:__anonaaadc0580110::Color typeref:typename:Color file:
  9267. operator += libswan/include/swan/Vector2.h /^ constexpr Vector2<T> &operator+=(const Vector2<T> &vec) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T> &
  9268. operator += third_party/imgui/imgui_internal.h /^static inline ImVec2& operator+=(ImVec2& lhs, const ImVec2& rhs) { lhs.x += rhs.x/;" f typeref:typename:ImVec2 &
  9269. operator - libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator-() const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9270. operator - libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator-(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9271. operator - third_party/imgui/imgui_internal.h /^static inline ImVec2 operator-(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(/;" f typeref:typename:ImVec2
  9272. operator - third_party/imgui/imgui_internal.h /^static inline ImVec4 operator-(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(/;" f typeref:typename:ImVec4
  9273. operator -= libswan/include/swan/Vector2.h /^ constexpr Vector2<T> &operator-=(const Vector2<T> &vec) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T> &
  9274. operator -= third_party/imgui/imgui_internal.h /^static inline ImVec2& operator-=(ImVec2& lhs, const ImVec2& rhs) { lhs.x -= rhs.x/;" f typeref:typename:ImVec2 &
  9275. operator / libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator\/(T num) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9276. operator / libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator\/(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9277. operator / third_party/imgui/imgui_internal.h /^static inline ImVec2 operator\/(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2/;" f typeref:typename:ImVec2
  9278. operator / third_party/imgui/imgui_internal.h /^static inline ImVec2 operator\/(const ImVec2& lhs, const float rhs) { return ImVec2/;" f typeref:typename:ImVec2
  9279. operator /= libswan/include/swan/Vector2.h /^ constexpr Vector2<T> &operator\/=(const Vector2<T> &vec) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T> &
  9280. operator /= libswan/include/swan/Vector2.h /^ constexpr Vector2<T> operator\/=(T num) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9281. operator /= third_party/imgui/imgui_internal.h /^static inline ImVec2& operator\/=(ImVec2& lhs, const float rhs) { lhs.x \/= rhs/;" f typeref:typename:ImVec2 &
  9282. operator << libswan/include/swan/Clock.h /^ friend std::ostream &operator<<(std::ostream &os, const RTClock &clock) {$/;" f namespace:Swan typeref:typename:std::ostream &
  9283. operator << libswan/include/swan/Vector2.h /^std::ostream &operator<<(std::ostream &os, const Vector2<T> &vec) {$/;" f namespace:Swan typeref:typename:std::ostream &
  9284. operator << libswan/include/swan/gfxutil.h /^inline std::ostream &operator<<(std::ostream &os, const SDL_Rect &rect) {$/;" f namespace:Swan typeref:typename:std::ostream &
  9285. operator << libswan/include/swan/log.h /^ NewlineStream &operator<<(const T &val) {$/;" f class:Swan::Logger::NewlineStream typeref:typename:NewlineStream &
  9286. operator << libswan/include/swan/log.h /^ NewlineStream operator<<(const T &val) {$/;" f class:Swan::Logger typeref:typename:NewlineStream
  9287. operator << libswan/src/SRF.cc /^std::ostream &operator<<(std::ostream &os, const SRF &srf) {$/;" f namespace:Swan typeref:typename:std::ostream &
  9288. operator = libswan/src/OS.cc /^Dynlib &Dynlib::operator=(Dynlib &&dl) noexcept {$/;" f class:Swan::OS::Dynlib typeref:typename:Dynlib &
  9289. operator = third_party/imgui/imgui.h /^ inline ImVector<T>& operator=(const ImVector<T>& src) { clear(); resize(src.Size); memcpy(/;" f struct:ImVector typeref:typename:ImVector<T> &
  9290. operator == libswan/include/swan/Vector2.h /^ constexpr bool operator==(const Vector2<T> &vec) const {$/;" f struct:Swan::Vector2 typeref:typename:bool
  9291. operator [] third_party/imgui/imgui.h /^ inline T& operator[](int i) { IM_ASSERT(i < Size); return Data[i/;" f struct:ImVector typeref:typename:T &
  9292. operator [] third_party/imgui/imgui.h /^ inline char operator[](int i) { IM_ASSERT(Buf.Data != NULL); return Buf.Data[i/;" f struct:ImGuiTextBuffer typeref:typename:char
  9293. operator [] third_party/imgui/imgui.h /^ inline const T& operator[](int i) const { IM_ASSERT(i < Size); return Data[i/;" f struct:ImVector typeref:typename:const T &
  9294. operator [] third_party/imgui/imgui.h /^ float operator[] (size_t idx) const { IM_ASSERT(idx <= 1); return (&x)[idx]; } \/\/ We v/;" f struct:ImVec2 typeref:typename:float
  9295. operator delete third_party/imgui/imgui.h /^inline void operator delete(void*, ImNewDummy, void*) {} \/\/ This is only required so we can/;" f typeref:typename:void
  9296. operator new third_party/imgui/imgui.h /^inline void* operator new(size_t, ImNewDummy, void* ptr) { return ptr; }$/;" f typeref:typename:void *
  9297. operators assets-src/music/happy-1.json /^ "operators": [$/;" a object:channels.1.instruments.0
  9298. operators assets-src/music/happy-1.json /^ "operators": [$/;" a object:channels.2.instruments.0
  9299. or for 64-bit: third_party/imgui/examples/example_sdl_opengl2/README.md /^# or for 64-bit:$/;" c
  9300. or for 64-bit: third_party/imgui/examples/example_sdl_opengl3/README.md /^# or for 64-bit:$/;" c
  9301. os_ libswan/include/swan/log.h /^ std::ostream &os_;$/;" m class:Swan::Logger::NewlineStream typeref:typename:std::ostream &
  9302. os_ libswan/include/swan/log.h /^ std::ostream &os_;$/;" m class:Swan::Logger typeref:typename:std::ostream &
  9303. outline libswan/src/traits/BodyTrait.cc /^void PhysicsBody::outline(Win &win) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  9304. outliterals third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static void outliterals(stb_uchar *in, int numlit)$/;" f typeref:typename:void file:
  9305. overlay_text third_party/imgui-plot/include/imgui_plot.h /^ const char* overlay_text = nullptr;$/;" m struct:ImGui::PlotConfig typeref:typename:const char *
  9306. p third_party/PerlinNoise/PerlinNoise.hpp /^ std::uint8_t p[512];$/;" m class:siv::PerlinNoise typeref:typename:std::uint8_t[512]
  9307. pack_info third_party/imgui/imstb_truetype.h /^ void *pack_info;$/;" m struct:stbtt_pack_context typeref:typename:void *
  9308. padding third_party/imgui/imstb_truetype.h /^ unsigned char type,padding;$/;" m struct:__anon3297c23e0708 typeref:typename:unsigned char
  9309. padding third_party/imgui/imstb_truetype.h /^ int padding;$/;" m struct:stbtt_pack_context typeref:typename:int
  9310. padding1 third_party/imgui/imstb_textedit.h /^ unsigned char padding1, padding2, padding3;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  9311. padding2 third_party/imgui/imstb_textedit.h /^ unsigned char padding1, padding2, padding3;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  9312. padding3 third_party/imgui/imstb_textedit.h /^ unsigned char padding1, padding2, padding3;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  9313. panic libswan/include/swan/log.h /^static Logger panic(logstream, "panic", OS::isTTY(stderr), "\\033[1m\\033[31m");$/;" v namespace:Swan typeref:typename:Logger
  9314. parse libswan/src/SRF.cc /^void SRFArray::parse(std::istream &is) {$/;" f class:Swan::SRFArray typeref:typename:void
  9315. parse libswan/src/SRF.cc /^void SRFByte::parse(std::istream &is) {$/;" f class:Swan::SRFByte typeref:typename:void
  9316. parse libswan/src/SRF.cc /^void SRFByteArray::parse(std::istream &is) {$/;" f class:Swan::SRFByteArray typeref:typename:void
  9317. parse libswan/src/SRF.cc /^void SRFDouble::parse(std::istream &is) {$/;" f class:Swan::SRFDouble typeref:typename:void
  9318. parse libswan/src/SRF.cc /^void SRFDoubleArray::parse(std::istream &is) {$/;" f class:Swan::SRFDoubleArray typeref:typename:void
  9319. parse libswan/src/SRF.cc /^void SRFFloat::parse(std::istream &is) {$/;" f class:Swan::SRFFloat typeref:typename:void
  9320. parse libswan/src/SRF.cc /^void SRFFloatArray::parse(std::istream &is) {$/;" f class:Swan::SRFFloatArray typeref:typename:void
  9321. parse libswan/src/SRF.cc /^void SRFInt::parse(std::istream &is) {$/;" f class:Swan::SRFInt typeref:typename:void
  9322. parse libswan/src/SRF.cc /^void SRFIntArray::parse(std::istream &is) {$/;" f class:Swan::SRFIntArray typeref:typename:void
  9323. parse libswan/src/SRF.cc /^void SRFNone::parse(std::istream &is) {}$/;" f class:Swan::SRFNone typeref:typename:void
  9324. parse libswan/src/SRF.cc /^void SRFObject::parse(std::istream &is) {$/;" f class:Swan::SRFObject typeref:typename:void
  9325. parse libswan/src/SRF.cc /^void SRFString::parse(std::istream &is) {$/;" f class:Swan::SRFString typeref:typename:void
  9326. parse libswan/src/SRF.cc /^void SRFWord::parse(std::istream &is) {$/;" f class:Swan::SRFWord typeref:typename:void
  9327. parse libswan/src/SRF.cc /^void SRFWordArray::parse(std::istream &is) {$/;" f class:Swan::SRFWordArray typeref:typename:void
  9328. parse_version third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^static int parse_version(void)$/;" f typeref:typename:int file:
  9329. path libswan/include/swan/Resource.h /^ std::string path;$/;" m struct:Swan::ImageResource::Builder typeref:typename:std::string
  9330. path_ libswan/include/swan/Mod.h /^ std::string path_;$/;" m class:Swan::Mod typeref:typename:std::string
  9331. patterns assets-src/music/happy-1.json /^ "patterns": [$/;" a object:channels.0
  9332. patterns assets-src/music/happy-1.json /^ "patterns": [$/;" a object:channels.1
  9333. patterns assets-src/music/happy-1.json /^ "patterns": [$/;" a object:channels.2
  9334. patterns assets-src/music/happy-1.json /^ "patterns": [$/;" a object:channels.3
  9335. periodic libswan/src/Clock.cc /^bool Clock::periodic(float secs) {$/;" f class:Swan::Clock typeref:typename:bool
  9336. perlin_ core.mod/src/WGDefault.h /^ siv::PerlinNoise perlin_ = siv::PerlinNoise(100);$/;" m class:WGDefault typeref:typename:siv::PerlinNoise
  9337. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.0.points.0
  9338. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.0.points.1
  9339. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.1.points.0
  9340. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.1.points.1
  9341. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.2.points.0
  9342. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.2.points.1
  9343. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.3.points.0
  9344. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.3.points.1
  9345. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.4.points.0
  9346. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.4.points.1
  9347. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.5.points.0
  9348. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.5.points.1
  9349. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.6.points.0
  9350. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.0.notes.6.points.1
  9351. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.0.points.0
  9352. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.0.points.1
  9353. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.1.points.0
  9354. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.1.points.1
  9355. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.2.points.0
  9356. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.2.points.1
  9357. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.3.points.0
  9358. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.3.points.1
  9359. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.4.points.0
  9360. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.4.points.1
  9361. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.5.points.0
  9362. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.5.points.1
  9363. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.6.points.0
  9364. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.1.notes.6.points.1
  9365. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.0.points.0
  9366. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.0.points.1
  9367. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.1.points.0
  9368. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.1.points.1
  9369. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.2.points.0
  9370. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.2.points.1
  9371. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.3.points.0
  9372. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.3.points.1
  9373. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.4.points.0
  9374. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.4.points.1
  9375. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.5.points.0
  9376. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.5.points.1
  9377. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.6.points.0
  9378. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.2.notes.6.points.1
  9379. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.0.points.0
  9380. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.0.points.1
  9381. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.1.points.0
  9382. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.1.points.1
  9383. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.2.points.0
  9384. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.2.points.1
  9385. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.3.points.0
  9386. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.3.points.1
  9387. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.4.points.0
  9388. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.4.points.1
  9389. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.5.points.0
  9390. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.0.patterns.3.notes.5.points.1
  9391. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.0.points.0
  9392. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.0.points.1
  9393. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.1.points.0
  9394. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.1.points.1
  9395. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.2.points.0
  9396. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.2.points.1
  9397. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.3.points.0
  9398. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.3.points.1
  9399. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.4.points.0
  9400. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.4.points.1
  9401. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.5.points.0
  9402. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.5.points.1
  9403. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.6.points.0
  9404. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.6.points.1
  9405. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.7.points.0
  9406. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.2.patterns.0.notes.7.points.1
  9407. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.0.points.0
  9408. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.0.points.1
  9409. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.1.points.0
  9410. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.1.points.1
  9411. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.10.points.0
  9412. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.10.points.1
  9413. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.11.points.0
  9414. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.11.points.1
  9415. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.2.points.0
  9416. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.2.points.1
  9417. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.3.points.0
  9418. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.3.points.1
  9419. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.4.points.0
  9420. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.4.points.1
  9421. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.5.points.0
  9422. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.5.points.1
  9423. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.6.points.0
  9424. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.6.points.1
  9425. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.7.points.0
  9426. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.7.points.1
  9427. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.8.points.0
  9428. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.8.points.1
  9429. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.9.points.0
  9430. pitchBend assets-src/music/happy-1.json /^ "pitchBend": 0,$/;" n object:channels.3.patterns.0.notes.9.points.1
  9431. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.0
  9432. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.1
  9433. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.2
  9434. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.3
  9435. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.4
  9436. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.5
  9437. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.0.notes.6
  9438. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.0
  9439. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.1
  9440. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.2
  9441. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.3
  9442. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.4
  9443. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.5
  9444. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.1.notes.6
  9445. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.0
  9446. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.1
  9447. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.2
  9448. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.3
  9449. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.4
  9450. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.5
  9451. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.2.notes.6
  9452. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.0
  9453. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.1
  9454. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.2
  9455. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.3
  9456. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.4
  9457. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.0.patterns.3.notes.5
  9458. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.0
  9459. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.1
  9460. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.2
  9461. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.3
  9462. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.4
  9463. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.5
  9464. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.6
  9465. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.2.patterns.0.notes.7
  9466. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.0
  9467. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.1
  9468. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.10
  9469. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.11
  9470. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.2
  9471. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.3
  9472. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.4
  9473. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.5
  9474. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.6
  9475. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.7
  9476. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.8
  9477. pitches assets-src/music/happy-1.json /^ "pitches": [$/;" a object:channels.3.patterns.0.notes.9
  9478. pixels third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ unsigned char* pixels;$/;" m struct:GLFWimage typeref:typename:unsigned char *
  9479. pixels third_party/imgui/imstb_truetype.h /^ unsigned char *pixels;$/;" m struct:__anon3297c23e0808 typeref:typename:unsigned char *
  9480. pixels third_party/imgui/imstb_truetype.h /^ unsigned char *pixels;$/;" m struct:stbtt_pack_context typeref:typename:unsigned char *
  9481. plane libswan/include/swan/common.h /^ WorldPlane &plane;$/;" m struct:Swan::Context typeref:typename:WorldPlane &
  9482. planes_ libswan/include/swan/World.h /^ std::vector<WorldPlane> planes_;$/;" m class:Swan::World typeref:typename:std::vector<WorldPlane>
  9483. player_ libswan/include/swan/World.h /^ BodyTrait::HasBody *player_;$/;" m class:Swan::World typeref:typename:BodyTrait::HasBody *
  9484. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.0
  9485. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.1
  9486. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.2
  9487. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.3
  9488. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.4
  9489. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.5
  9490. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.0.notes.6
  9491. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.0
  9492. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.1
  9493. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.2
  9494. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.3
  9495. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.4
  9496. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.5
  9497. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.1.notes.6
  9498. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.0
  9499. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.1
  9500. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.2
  9501. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.3
  9502. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.4
  9503. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.5
  9504. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.2.notes.6
  9505. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.0
  9506. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.1
  9507. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.2
  9508. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.3
  9509. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.4
  9510. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.0.patterns.3.notes.5
  9511. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.0
  9512. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.1
  9513. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.2
  9514. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.3
  9515. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.4
  9516. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.5
  9517. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.6
  9518. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.2.patterns.0.notes.7
  9519. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.0
  9520. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.1
  9521. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.10
  9522. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.11
  9523. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.2
  9524. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.3
  9525. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.4
  9526. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.5
  9527. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.6
  9528. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.7
  9529. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.8
  9530. points assets-src/music/happy-1.json /^ "points": [$/;" a object:channels.3.patterns.0.notes.9
  9531. pop_back third_party/imgui/imgui.h /^ inline void pop_back() { IM_ASSERT(Size > 0); Size--; }$/;" f struct:ImVector typeref:typename:void
  9532. pos libswan/include/swan/traits/BodyTrait.h /^ Vec2 pos;$/;" m struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  9533. pos third_party/imgui/examples/imgui_impl_allegro5.cpp /^ ImVec2 pos;$/;" m struct:ImDrawVertAllegro typeref:typename:ImVec2 file:
  9534. pos third_party/imgui/examples/imgui_impl_dx9.cpp /^ float pos[3];$/;" m struct:CUSTOMVERTEX typeref:typename:float[3] file:
  9535. pos third_party/imgui/imgui.h /^ ImVec2 pos;$/;" m struct:ImDrawVert typeref:typename:ImVec2
  9536. pos_ libswan/include/swan/Chunk.h /^ ChunkPos pos_;$/;" m class:Swan::Chunk typeref:typename:ChunkPos
  9537. pos_ libswan/include/swan/traits/BodyTrait.h /^ Vec2 pos_;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:Vec2
  9538. pos_ libswan/include/swan/traits/BodyTrait.h /^ Vec2 pos_;$/;" m class:Swan::BodyTrait::StaticBody typeref:typename:Vec2
  9539. preferred_x third_party/imgui/imstb_textedit.h /^ float preferred_x; \/\/ this determines where the cursor up\/down tries to seek to along x$/;" m struct:__anon6b3818470308 typeref:typename:float
  9540. prefix dist/CMakeLists.txt /^set(prefix ${PROJECT_BINARY_DIR}\/prefix)$/;" v
  9541. prepareOpenGL third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  9542. preset assets-src/music/happy-1.json /^ "preset": 454,$/;" n object:channels.1.instruments.0
  9543. preset assets-src/music/happy-1.json /^ "preset": 515,$/;" n object:channels.2.instruments.0
  9544. preset assets-src/music/happy-1.json /^ "preset": 66,$/;" n object:channels.0.instruments.0
  9545. preset assets-src/music/happy-1.json /^ "preset": 966,$/;" n object:channels.3.instruments.0
  9546. pressed_buttons_ libswan/include/swan/Game.h /^ std::bitset<SDL_BUTTON_X2> pressed_buttons_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_BUTTON_X2>
  9547. pressed_keys_ libswan/include/swan/Game.h /^ std::bitset<SDL_NUM_SCANCODES> pressed_keys_;$/;" m class:Swan::Game typeref:typename:std::bitset<SDL_NUM_SCANCODES>
  9548. pretty libswan/src/SRF.cc /^std::ostream &SRFArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFArray typeref:typename:std::ostream &
  9549. pretty libswan/src/SRF.cc /^std::ostream &SRFByte::pretty(std::ostream &os) const {$/;" f class:Swan::SRFByte typeref:typename:std::ostream &
  9550. pretty libswan/src/SRF.cc /^std::ostream &SRFByteArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFByteArray typeref:typename:std::ostream &
  9551. pretty libswan/src/SRF.cc /^std::ostream &SRFDouble::pretty(std::ostream &os) const {$/;" f class:Swan::SRFDouble typeref:typename:std::ostream &
  9552. pretty libswan/src/SRF.cc /^std::ostream &SRFDoubleArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFDoubleArray typeref:typename:std::ostream &
  9553. pretty libswan/src/SRF.cc /^std::ostream &SRFFloat::pretty(std::ostream &os) const {$/;" f class:Swan::SRFFloat typeref:typename:std::ostream &
  9554. pretty libswan/src/SRF.cc /^std::ostream &SRFFloatArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFFloatArray typeref:typename:std::ostream &
  9555. pretty libswan/src/SRF.cc /^std::ostream &SRFInt::pretty(std::ostream &os) const {$/;" f class:Swan::SRFInt typeref:typename:std::ostream &
  9556. pretty libswan/src/SRF.cc /^std::ostream &SRFIntArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFIntArray typeref:typename:std::ostream &
  9557. pretty libswan/src/SRF.cc /^std::ostream &SRFNone::pretty(std::ostream &os) const {$/;" f class:Swan::SRFNone typeref:typename:std::ostream &
  9558. pretty libswan/src/SRF.cc /^std::ostream &SRFObject::pretty(std::ostream &os) const {$/;" f class:Swan::SRFObject typeref:typename:std::ostream &
  9559. pretty libswan/src/SRF.cc /^std::ostream &SRFString::pretty(std::ostream &os) const {$/;" f class:Swan::SRFString typeref:typename:std::ostream &
  9560. pretty libswan/src/SRF.cc /^std::ostream &SRFWord::pretty(std::ostream &os) const {$/;" f class:Swan::SRFWord typeref:typename:std::ostream &
  9561. pretty libswan/src/SRF.cc /^std::ostream &SRFWordArray::pretty(std::ostream &os) const {$/;" f class:Swan::SRFWordArray typeref:typename:std::ostream &
  9562. prettyname libswan/test/lib/test.cc /^ std::string prettyname;$/;" m struct:testlib::TestFile typeref:typename:std::string file:
  9563. prev_first third_party/imgui/imstb_textedit.h /^ int prev_first; \/\/ first char of previous row$/;" m struct:__anon6b3818470508 typeref:typename:int
  9564. prev_link third_party/imgui/imstb_rectpack.h /^ stbrp_node **prev_link;$/;" m struct:__anon1b2b84690308 typeref:typename:stbrp_node **
  9565. prev_target_ libswan/include/swan/gfxutil.h /^ SDL_Texture *prev_target_;$/;" m class:Swan::RenderTarget typeref:typename:SDL_Texture *
  9566. printFailure libswan/test/lib/test.cc /^static std::stringstream printFailure(const TestFailure &failure) {$/;" f namespace:testlib typeref:typename:std::stringstream file:
  9567. printFailure libswan/test/lib/test.cc /^static std::stringstream printFailure(const std::string &msg) {$/;" f namespace:testlib typeref:typename:std::stringstream file:
  9568. proggy_clean_ttf_compressed_data_base85 third_party/imgui/imgui_draw.cpp /^static const char proggy_clean_ttf_compressed_data_base85[11980+1] =$/;" v typeref:typename:const char[] file:
  9569. push_back third_party/imgui/imgui.h /^ inline void push_back(const T& v) { if (Size == Capacity) reserve(_gro/;" f struct:ImVector typeref:typename:void
  9570. push_front third_party/imgui/imgui.h /^ inline void push_front(const T& v) { if (Size == 0) push_back(v); else /;" f struct:ImVector typeref:typename:void
  9571. pvertices third_party/imgui/imstb_truetype.h /^ stbtt_vertex *pvertices;$/;" m struct:__anon3297c23e0f08 typeref:typename:stbtt_vertex *
  9572. r third_party/PerlinNoise/Test_PerlinNoise.cpp /^ double r = 0.0;$/;" m struct:RGB typeref:typename:double file:
  9573. r_ libswan/include/swan/gfxutil.h /^ uint8_t r_, g_, b_;$/;" m class:Swan::TexColorMod typeref:typename:uint8_t
  9574. random_ libswan/include/swan/World.h /^ std::mt19937 random_;$/;" m class:Swan::World typeref:typename:std::mt19937
  9575. read libswan/src/SRF.cc /^SRF *SRF::read(std::istream &is) {$/;" f class:Swan::SRF typeref:typename:SRF *
  9576. readByte libswan/src/SRF.cc /^static uint8_t readByte(std::istream &is) {$/;" f namespace:Swan typeref:typename:uint8_t file:
  9577. readDouble libswan/src/SRF.cc /^static double readDouble(std::istream &is) {$/;" f namespace:Swan typeref:typename:double file:
  9578. readFloat libswan/src/SRF.cc /^static float readFloat(std::istream &is) {$/;" f namespace:Swan typeref:typename:float file:
  9579. readInt libswan/src/SRF.cc /^int32_t readInt(std::istream &is) {$/;" f namespace:Swan typeref:typename:int32_t
  9580. readSRF core.mod/src/entities/EntItemStack.cc /^void EntItemStack::readSRF(const Swan::Context &ctx, const Swan::SRF &srf) {$/;" f class:EntItemStack typeref:typename:void
  9581. readSRF core.mod/src/entities/EntPlayer.cc /^void EntPlayer::readSRF(const Swan::Context &ctx, const Swan::SRF &srf) {$/;" f class:EntPlayer typeref:typename:void
  9582. readSRF libswan/include/swan/Entity.h /^ virtual void readSRF(const Swan::Context &ctx, const SRF &srf) {}$/;" f class:Swan::Entity typeref:typename:void
  9583. readString libswan/src/SRF.cc /^static std::string readString(std::istream &is) {$/;" f namespace:Swan typeref:typename:std::string file:
  9584. readWord libswan/src/SRF.cc /^static uint16_t readWord(std::istream &is) {$/;" f namespace:Swan typeref:typename:uint16_t file:
  9585. rect_height_compare third_party/imgui/imstb_rectpack.h /^static int STBRP__CDECL rect_height_compare(const void *a, const void *b)$/;" f typeref:typename:int STBRP__CDECL
  9586. rect_original_order third_party/imgui/imstb_rectpack.h /^static int STBRP__CDECL rect_original_order(const void *a, const void *b)$/;" f typeref:typename:int STBRP__CDECL
  9587. red third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ unsigned short* red;$/;" m struct:GLFWgammaramp typeref:typename:unsigned short *
  9588. redBits third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int redBits;$/;" m struct:GLFWvidmode typeref:typename:int
  9589. redo_char_point third_party/imgui/imstb_textedit.h /^ int undo_char_point, redo_char_point;$/;" m struct:__anon6b3818470208 typeref:typename:int
  9590. redo_point third_party/imgui/imstb_textedit.h /^ short undo_point, redo_point;$/;" m struct:__anon6b3818470208 typeref:typename:short
  9591. refreshRate third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int refreshRate;$/;" m struct:GLFWvidmode typeref:typename:int
  9592. registerEntity libswan/src/Mod.cc /^void Mod::registerEntity(const std::string &name, std::unique_ptr<Entity::Factory> ent) {$/;" f class:Swan::Mod typeref:typename:void
  9593. registerImage libswan/src/Mod.cc /^void Mod::registerImage(ImageResource::Builder image) {$/;" f class:Swan::Mod typeref:typename:void
  9594. registerItem libswan/src/Mod.cc /^void Mod::registerItem(Item::Builder item) {$/;" f class:Swan::Mod typeref:typename:void
  9595. registerTile libswan/src/Mod.cc /^void Mod::registerTile(Tile::Builder tile) {$/;" f class:Swan::Mod typeref:typename:void
  9596. registerWorldGen libswan/src/Mod.cc /^void Mod::registerWorldGen(const std::string &name, std::unique_ptr<WorldGen::Factory> gen) {$/;" f class:Swan::Mod typeref:typename:void
  9597. relPos libswan/src/WorldPlane.cc /^static Chunk::RelPos relPos(TilePos pos) {$/;" f namespace:Swan typeref:typename:Chunk::RelPos file:
  9598. render libswan/src/Chunk.cc /^void Chunk::render(const Context &ctx, SDL_Renderer *rnd) {$/;" f class:Swan::Chunk typeref:typename:void
  9599. render libswan/src/PerfCounter.cc /^void PerfCounter::render() {$/;" f class:Swan::PerfCounter typeref:typename:void
  9600. renderDrawData:commandBuffer:commandEncoder: third_party/imgui/examples/imgui_impl_metal.mm /^ commandEncoder:(id<MTLRenderCommandEncoder>)commandEncoder;$/;" m interface:MetalContext
  9601. renderDrawData:commandBuffer:commandEncoder: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  9602. renderList libswan/src/Chunk.cc /^void Chunk::renderList(SDL_Renderer *rnd) {$/;" f class:Swan::Chunk typeref:typename:void
  9603. renderPipelineStateCache third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, strong) NSMutableDictionary *renderPipelineStateCache; \/\/ pipeline cache/;" p interface:MetalContext
  9604. renderPipelineStateForFrameAndDevice: third_party/imgui/examples/imgui_impl_metal.mm /^- (id<MTLRenderPipelineState>)renderPipelineStateForFrameAndDevice:(id<MTLDevice>)device;$/;" m interface:MetalContext
  9605. renderPipelineStateForFrameAndDevice: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  9606. render_present_ libswan/include/swan/PerfCounter.h /^ Counter<> render_present_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  9607. renderbuf libswan/include/swan/Chunk.h /^ static uint8_t *renderbuf;$/;" m class:Swan::Chunk typeref:typename:uint8_t *
  9608. renderbuf libswan/src/Chunk.cc /^uint8_t *Chunk::renderbuf = new uint8_t[CHUNK_WIDTH * TILE_SIZE * CHUNK_HEIGHT * TILE_SIZE * 4];$/;" m class:Swan::Chunk typeref:typename:uint8_t *
  9609. renderer third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^@property (nonatomic, strong) Renderer *renderer;$/;" p interface:ViewController
  9610. renderer_ libswan/include/swan/Win.h /^ SDL_Renderer *renderer_;$/;" m class:Swan::Win typeref:typename:SDL_Renderer *
  9611. rescale third_party/imgui-plot/src/imgui_plot.cpp /^static float rescale(float t, float min, float max, PlotConfig::Scale::Type type) {$/;" f namespace:ImGui typeref:typename:float file:
  9612. rescale_inv third_party/imgui-plot/src/imgui_plot.cpp /^static float rescale_inv(float t, float min, float max, PlotConfig::Scale::Type type) {$/;" f namespace:ImGui typeref:typename:float file:
  9613. reseed third_party/PerlinNoise/PerlinNoise.hpp /^ void reseed(URNG& urng)$/;" f class:siv::PerlinNoise typeref:typename:void
  9614. reseed third_party/PerlinNoise/PerlinNoise.hpp /^ void reseed(std::uint32_t seed)$/;" f class:siv::PerlinNoise typeref:typename:void
  9615. reserve third_party/imgui/imgui.h /^ inline void reserve(int new_capacity) { if (new_capacity <= Capacity) retu/;" f struct:ImVector typeref:typename:void
  9616. reserve third_party/imgui/imgui.h /^ void reserve(int capacity) { Buf.reserve(capacity); }$/;" f struct:ImGuiTextBuffer typeref:typename:void
  9617. reset libswan/include/swan/Clock.h /^ void reset() { time_ = 0; }$/;" f class:Swan::Clock typeref:typename:void
  9618. reset libswan/include/swan/Clock.h /^ void reset() {$/;" f class:Swan::RTClock typeref:typename:void
  9619. reset libswan/src/Animation.cc /^void Animation::reset() {$/;" f class:Swan::Animation typeref:typename:void
  9620. resetKeys third_party/imgui/examples/imgui_impl_osx.mm /^static void resetKeys()$/;" f
  9621. reshape third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  9622. resignFirstResponder third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  9623. resize third_party/imgui/imgui.h /^ inline void resize(int new_size) { if (new_size > Capacity) reserve(_/;" f struct:ImVector typeref:typename:void
  9624. resize third_party/imgui/imgui.h /^ inline void resize(int new_size, const T& v) { if (new_size > Capacity) reserve(_/;" f struct:ImVector typeref:typename:void
  9625. resize_grip_def third_party/imgui/imgui.cpp /^static const ImGuiResizeGripDef resize_grip_def[4] =$/;" v typeref:typename:const ImGuiResizeGripDef[4] file:
  9626. resource_ libswan/include/swan/Animation.h /^ ImageResource &resource_;$/;" m class:Swan::Animation typeref:typename:ImageResource &
  9627. resources libswan/include/swan/common.h /^ ResourceManager &resources;$/;" m struct:Swan::Context typeref:typename:ResourceManager &
  9628. resources_ libswan/include/swan/World.h /^ ResourceManager resources_;$/;" m class:Swan::World typeref:typename:ResourceManager
  9629. ret libswan/test/ItemStack.t.cc /^ Swan::ItemStack ret = s1.insert(s2);$/;" v typeref:typename:Swan::ItemStack
  9630. reverb assets-src/music/happy-1.json /^ "reverb": 0,$/;" n
  9631. right libswan/include/swan/traits/BodyTrait.h /^ float right() { return pos.x + size.x; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  9632. rinfo_ libswan/include/swan/Win.h /^ SDL_RendererInfo rinfo_;$/;" m class:Swan::Win typeref:typename:SDL_RendererInfo
  9633. rnd_ libswan/include/swan/gfxutil.h /^ SDL_Renderer *rnd_;$/;" m class:Swan::RenderTarget typeref:typename:SDL_Renderer *
  9634. s0 third_party/imgui/imstb_truetype.h /^ float x0,y0,s0,t0; \/\/ top-left$/;" m struct:__anon3297c23e0308 typeref:typename:float
  9635. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(&item1, 0);$/;" v typeref:typename:Swan::ItemStack
  9636. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(&item1, 10);$/;" v typeref:typename:Swan::ItemStack
  9637. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(&item1, 15);$/;" v typeref:typename:Swan::ItemStack
  9638. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(&item1, 40);$/;" v typeref:typename:Swan::ItemStack
  9639. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(&item1, 5);$/;" v typeref:typename:Swan::ItemStack
  9640. s1 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s1(nullptr, 0);$/;" v typeref:typename:Swan::ItemStack
  9641. s1 third_party/imgui/imstb_truetype.h /^ float x1,y1,s1,t1; \/\/ bottom-right$/;" m struct:__anon3297c23e0308 typeref:typename:float
  9642. s2 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s2(&item1, 10);$/;" v typeref:typename:Swan::ItemStack
  9643. s2 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s2(&item1, 19);$/;" v typeref:typename:Swan::ItemStack
  9644. s2 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s2(&item1, 40);$/;" v typeref:typename:Swan::ItemStack
  9645. s2 libswan/test/ItemStack.t.cc /^ Swan::ItemStack s2(&item2, 10);$/;" v typeref:typename:Swan::ItemStack
  9646. sAddString third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sAddString(uSynergyContext *context, const char *string)$/;" f typeref:typename:void file:
  9647. sAddUInt16 third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sAddUInt16(uSynergyContext *context, uint16_t value)$/;" f typeref:typename:void file:
  9648. sAddUInt32 third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sAddUInt32(uSynergyContext *context, uint32_t value)$/;" f typeref:typename:void file:
  9649. sAddUInt8 third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sAddUInt8(uSynergyContext *context, uint8_t value)$/;" f typeref:typename:void file:
  9650. sNetToNative16 third_party/imgui/examples/libs/usynergy/uSynergy.c /^static int16_t sNetToNative16(const unsigned char *value)$/;" f typeref:typename:int16_t file:
  9651. sNetToNative32 third_party/imgui/examples/libs/usynergy/uSynergy.c /^static int32_t sNetToNative32(const unsigned char *value)$/;" f typeref:typename:int32_t file:
  9652. sProcessMessage third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sProcessMessage(uSynergyContext *context, const uint8_t *message)$/;" f typeref:typename:void file:
  9653. sSendJoystickCallback third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sSendJoystickCallback(uSynergyContext *context, uint8_t joyNum)$/;" f typeref:typename:void file:
  9654. sSendKeyboardCallback third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sSendKeyboardCallback(uSynergyContext *context, uint16_t key, uint16_t modifiers, uS/;" f typeref:typename:void file:
  9655. sSendMouseCallback third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sSendMouseCallback(uSynergyContext *context)$/;" f typeref:typename:void file:
  9656. sSendReply third_party/imgui/examples/libs/usynergy/uSynergy.c /^static uSynergyBool sSendReply(uSynergyContext *context)$/;" f typeref:typename:uSynergyBool file:
  9657. sSetDisconnected third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sSetDisconnected(uSynergyContext *context)$/;" f typeref:typename:void file:
  9658. sTrace third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sTrace(uSynergyContext *context, const char* text)$/;" f typeref:typename:void file:
  9659. sUpdateContext third_party/imgui/examples/libs/usynergy/uSynergy.c /^static void sUpdateContext(uSynergyContext *context)$/;" f typeref:typename:void file:
  9660. sampleCount third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) unsigned long sampleCount;$/;" p interface:FramebufferDescriptor
  9661. sanitize_fn third_party/imgui-plot/include/imgui_plot.h /^ uint32_t(*sanitize_fn)(uint32_t) = nullptr;$/;" m struct:ImGui::PlotConfig::Selection typeref:typename:uint32_t (*)(uint32_t)
  9662. saveBMP third_party/PerlinNoise/Test_PerlinNoise.cpp /^ bool saveBMP(const std::string& path)$/;" f class:Image typeref:typename:bool file:
  9663. scale assets-src/music/happy-1.json /^ "scale": "easy :)",$/;" s
  9664. scale libswan/include/swan/Vector2.h /^ constexpr Vector2<T> scale(T s) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9665. scale libswan/include/swan/Vector2.h /^ constexpr Vector2<T> scale(T sx, T sy) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9666. scale third_party/imgui-plot/include/imgui_plot.h /^ } scale;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Scale
  9667. scale_ libswan/include/swan/Win.h /^ float scale_;$/;" m class:Swan::Win typeref:typename:float
  9668. scrollWheel: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)scrollWheel:(NSEvent *)event {$/;" m implementation:ViewController
  9669. scrollWheel: third_party/imgui/examples/example_apple_opengl2/main.mm /^-(void)scrollWheel:(NSEvent *)event { ImGui_ImplOSX_HandleEvent(event, self); }$/;" m implementation:ImGuiExampleView
  9670. sdlButtonToImGuiButton src/main.cc /^int sdlButtonToImGuiButton(uint8_t button) {$/;" f typeref:typename:int
  9671. sdlassert src/main.cc /^#define sdlassert(/;" d file:
  9672. select_end third_party/imgui/imstb_textedit.h /^ int select_end;$/;" m struct:__anon6b3818470308 typeref:typename:int
  9673. select_start third_party/imgui/imstb_textedit.h /^ int select_start; \/\/ selection start point$/;" m struct:__anon6b3818470308 typeref:typename:int
  9674. selection third_party/imgui-plot/include/imgui_plot.h /^ } selection;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Selection
  9675. selection_updated third_party/imgui-plot/include/imgui_plot.h /^ selection_updated,$/;" e enum:ImGui::PlotStatus
  9676. sequence assets-src/music/happy-1.json /^ "sequence": [$/;" a object:channels.0
  9677. sequence assets-src/music/happy-1.json /^ "sequence": [$/;" a object:channels.1
  9678. sequence assets-src/music/happy-1.json /^ "sequence": [$/;" a object:channels.2
  9679. sequence assets-src/music/happy-1.json /^ "sequence": [$/;" a object:channels.3
  9680. serialize libswan/src/SRF.cc /^void SRFArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFArray typeref:typename:void
  9681. serialize libswan/src/SRF.cc /^void SRFByte::serialize(std::ostream &os) const {$/;" f class:Swan::SRFByte typeref:typename:void
  9682. serialize libswan/src/SRF.cc /^void SRFByteArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFByteArray typeref:typename:void
  9683. serialize libswan/src/SRF.cc /^void SRFDouble::serialize(std::ostream &os) const {$/;" f class:Swan::SRFDouble typeref:typename:void
  9684. serialize libswan/src/SRF.cc /^void SRFDoubleArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFDoubleArray typeref:typename:void
  9685. serialize libswan/src/SRF.cc /^void SRFFloat::serialize(std::ostream &os) const {$/;" f class:Swan::SRFFloat typeref:typename:void
  9686. serialize libswan/src/SRF.cc /^void SRFFloatArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFFloatArray typeref:typename:void
  9687. serialize libswan/src/SRF.cc /^void SRFInt::serialize(std::ostream &os) const {$/;" f class:Swan::SRFInt typeref:typename:void
  9688. serialize libswan/src/SRF.cc /^void SRFIntArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFIntArray typeref:typename:void
  9689. serialize libswan/src/SRF.cc /^void SRFNone::serialize(std::ostream &os) const {$/;" f class:Swan::SRFNone typeref:typename:void
  9690. serialize libswan/src/SRF.cc /^void SRFObject::serialize(std::ostream &os) const {$/;" f class:Swan::SRFObject typeref:typename:void
  9691. serialize libswan/src/SRF.cc /^void SRFString::serialize(std::ostream &os) const {$/;" f class:Swan::SRFString typeref:typename:void
  9692. serialize libswan/src/SRF.cc /^void SRFWord::serialize(std::ostream &os) const {$/;" f class:Swan::SRFWord typeref:typename:void
  9693. serialize libswan/src/SRF.cc /^void SRFWordArray::serialize(std::ostream &os) const {$/;" f class:Swan::SRFWordArray typeref:typename:void
  9694. set libswan/include/swan/Vector2.h /^ constexpr Vector2<T> &set(T x, T y) {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T> &
  9695. set libswan/include/swan/traits/InventoryTrait.h /^ ItemStack set(int slot, ItemStack stack) override {$/;" f class:Swan::InventoryTrait::BasicInventory typeref:typename:ItemStack
  9696. set third_party/PerlinNoise/Test_PerlinNoise.cpp /^ void set(std::int32_t x, std::int32_t y, const RGB& color)$/;" f class:Image typeref:typename:void file:
  9697. setCurrentPlane libswan/src/World.cc /^void World::setCurrentPlane(WorldPlane &plane) {$/;" f class:Swan::World typeref:typename:void
  9698. setTile libswan/src/WorldPlane.cc /^void WorldPlane::setTile(TilePos pos, const std::string &name) {$/;" f class:Swan::WorldPlane typeref:typename:void
  9699. setTileData libswan/src/Chunk.cc /^void Chunk::setTileData(RelPos pos, Tile::ID id) {$/;" f class:Swan::Chunk typeref:typename:void
  9700. setTileID libswan/src/Chunk.cc /^void Chunk::setTileID(RelPos pos, Tile::ID id, SDL_Texture *tex) {$/;" f class:Swan::Chunk typeref:typename:void
  9701. setTileID libswan/src/WorldPlane.cc /^void WorldPlane::setTileID(TilePos pos, Tile::ID id) {$/;" f class:Swan::WorldPlane typeref:typename:void
  9702. setWorldGen libswan/src/World.cc /^void World::setWorldGen(const std::string &gen) {$/;" f class:Swan::World typeref:typename:void
  9703. setupMenu third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleAppDelegate
  9704. setupRenderState:commandBuffer:commandEncoder:renderPipelineState:vertexBuffer:vertexBufferOffset: third_party/imgui/examples/imgui_impl_metal.mm /^ vertexBufferOffset:(size_t)vertexBufferOffset;$/;" m interface:MetalContext
  9705. setupRenderState:commandBuffer:commandEncoder:renderPipelineState:vertexBuffer:vertexBufferOffset: third_party/imgui/examples/imgui_impl_metal.mm /^{$/;" m implementation:MetalContext
  9706. show third_party/imgui-plot/include/imgui_plot.h /^ bool show = false;$/;" m struct:ImGui::PlotConfig::Grid typeref:typename:bool
  9707. show third_party/imgui-plot/include/imgui_plot.h /^ bool show = false;$/;" m struct:ImGui::PlotConfig::Selection typeref:typename:bool
  9708. show third_party/imgui-plot/include/imgui_plot.h /^ bool show = false;$/;" m struct:ImGui::PlotConfig::Tooltip typeref:typename:bool
  9709. show third_party/imgui-plot/include/imgui_plot.h /^ bool show = false;$/;" m struct:ImGui::PlotConfig::VerticalLines typeref:typename:bool
  9710. showTexture libswan/include/swan/Win.h /^ void showTexture($/;" f class:Swan::Win typeref:typename:void
  9711. showTexture libswan/include/swan/Win.h /^ void showTexture(const Vec2 &pos, SDL_Texture *tex, SDL_Rect *srcrect) {$/;" f class:Swan::Win typeref:typename:void
  9712. show_another_window third_party/imgui/examples/example_glut_opengl2/main.cpp /^static bool show_another_window = false;$/;" v typeref:typename:bool file:
  9713. show_demo_window third_party/imgui/examples/example_glut_opengl2/main.cpp /^static bool show_demo_window = true;$/;" v typeref:typename:bool file:
  9714. sign libswan/include/swan/Vector2.h /^ constexpr Vector2<T> sign() {$/;" f struct:Swan::Vector2 typeref:typename:Vector2<T>
  9715. single_line third_party/imgui/imstb_textedit.h /^ unsigned char single_line;$/;" m struct:__anon6b3818470308 typeref:typename:unsigned char
  9716. siv third_party/PerlinNoise/PerlinNoise.hpp /^namespace siv$/;" n
  9717. siv::PerlinNoise third_party/PerlinNoise/README.md /^# siv::PerlinNoise$/;" c
  9718. size libswan/include/swan/traits/BodyTrait.h /^ Vec2 size;$/;" m struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  9719. size libswan/include/swan/traits/InventoryTrait.h /^ int size() override { return size_; }$/;" f class:Swan::InventoryTrait::BasicInventory typeref:typename:int
  9720. size third_party/imgui-plot/include/imgui_plot.h /^ float size = 100; \/\/ at which intervals to draw the grid$/;" m struct:ImGui::PlotConfig::Grid typeref:typename:float
  9721. size third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ unsigned int size;$/;" m struct:GLFWgammaramp typeref:typename:unsigned int
  9722. size third_party/imgui/imgui.h /^ inline int size() const { return Size; }$/;" f struct:ImVector typeref:typename:int
  9723. size third_party/imgui/imgui.h /^ int size() const { return Buf.Size ? Buf.Size - 1 : 0; }$/;" f struct:ImGuiTextBuffer typeref:typename:int
  9724. size third_party/imgui/imstb_truetype.h /^ int size;$/;" m struct:__anon3297c23e0108 typeref:typename:int
  9725. size_ libswan/include/swan/traits/BodyTrait.h /^ Vec2 size_;$/;" m class:Swan::BodyTrait::PhysicsBody typeref:typename:Vec2
  9726. size_ libswan/include/swan/traits/BodyTrait.h /^ Vec2 size_;$/;" m class:Swan::BodyTrait::StaticBody typeref:typename:Vec2
  9727. size_ libswan/include/swan/traits/InventoryTrait.h /^ int size_;$/;" m class:Swan::InventoryTrait::BasicInventory typeref:typename:int
  9728. size_in_bytes third_party/imgui/imgui.h /^ inline int size_in_bytes() const { return Size * (int)sizeof(T); }$/;" f struct:ImVector typeref:typename:int
  9729. skip_missing third_party/imgui/imstb_truetype.h /^ int skip_missing;$/;" m struct:stbtt_pack_context typeref:typename:int
  9730. skip_small_lines third_party/imgui-plot/include/imgui_plot.h /^ bool skip_small_lines = true;$/;" m struct:ImGui::PlotConfig typeref:typename:bool
  9731. snprintf third_party/imgui/imgui_demo.cpp /^#define snprintf /;" d file:
  9732. spawnEntity libswan/src/WorldPlane.cc /^Entity *WorldPlane::spawnEntity(const std::string &name, const SRF &params) {$/;" f class:Swan::WorldPlane typeref:typename:Entity *
  9733. spawnPlayer core.mod/src/WGDefault.cc /^Swan::BodyTrait::HasBody *WGDefault::spawnPlayer(Swan::WorldPlane &plane) {$/;" f class:WGDefault typeref:typename:Swan::BodyTrait::HasBody *
  9734. spawnPlayer libswan/src/World.cc /^void World::spawnPlayer() {$/;" f class:Swan::World typeref:typename:void
  9735. spawnPlayer libswan/src/WorldPlane.cc /^BodyTrait::HasBody *WorldPlane::spawnPlayer() {$/;" f class:Swan::WorldPlane typeref:typename:BodyTrait::HasBody *
  9736. spawn_list_ libswan/include/swan/WorldPlane.h /^ std::vector<std::unique_ptr<Entity>> spawn_list_;$/;" m class:Swan::WorldPlane typeref:typename:std::vector<std::unique_ptr<Entity>>
  9737. spectrum assets-src/music/happy-1.json /^ "spectrum": [$/;" a object:channels.3.instruments.0
  9738. split third_party/imgui/imgui.cpp /^void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector<ImGuiTextRange>* out) const$/;" f class:ImGuiTextFilter::ImGuiTextRange typeref:typename:void
  9739. squareLength libswan/include/swan/Vector2.h /^ constexpr T squareLength() {$/;" f struct:Swan::Vector2 typeref:typename:T
  9740. srcs third_party/imgui-plot/CMakeLists.txt /^set (srcs$/;" v
  9741. standardForces libswan/include/swan/traits/BodyTrait.h /^ void standardForces() { friction(); gravity(); }$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  9742. start third_party/imgui-plot/include/imgui_plot.h /^ uint32_t* start = nullptr;$/;" m struct:ImGui::PlotConfig::Selection typeref:typename:uint32_t *
  9743. start_ libswan/include/swan/Clock.h /^ std::chrono::time_point<std::chrono::steady_clock> start_ =$/;" m class:Swan::RTClock typeref:typename:std::chrono::time_point<std::chrono::steady_clock>
  9744. started third_party/imgui/imstb_truetype.h /^ int started;$/;" m struct:__anon3297c23e0f08 typeref:typename:int
  9745. state_ core.mod/src/entities/EntPlayer.h /^ State state_ = State::IDLE;$/;" m class:EntPlayer typeref:typename:State
  9746. stb__barrier_in_b third_party/imgui/imgui_draw.cpp /^static const unsigned char *stb__barrier_in_b;$/;" v typeref:typename:const unsigned char * file:
  9747. stb__barrier_out_b third_party/imgui/imgui_draw.cpp /^static unsigned char *stb__barrier_out_e, *stb__barrier_out_b;$/;" v typeref:typename:unsigned char ** file:
  9748. stb__barrier_out_e third_party/imgui/imgui_draw.cpp /^static unsigned char *stb__barrier_out_e, *stb__barrier_out_b;$/;" v typeref:typename:unsigned char * file:
  9749. stb__dout third_party/imgui/imgui_draw.cpp /^static unsigned char *stb__dout;$/;" v typeref:typename:unsigned char * file:
  9750. stb__hashsize third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static stb_uint stb__hashsize = 32768;$/;" v typeref:typename:stb_uint file:
  9751. stb__hc third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define stb__hc(/;" d file:
  9752. stb__hc2 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define stb__hc2(/;" d file:
  9753. stb__hc3 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define stb__hc3(/;" d file:
  9754. stb__in2 third_party/imgui/imgui_draw.cpp /^#define stb__in2(/;" d file:
  9755. stb__in3 third_party/imgui/imgui_draw.cpp /^#define stb__in3(/;" d file:
  9756. stb__in4 third_party/imgui/imgui_draw.cpp /^#define stb__in4(/;" d file:
  9757. stb__lit third_party/imgui/imgui_draw.cpp /^static void stb__lit(const unsigned char *data, unsigned int length)$/;" f typeref:typename:void file:
  9758. stb__match third_party/imgui/imgui_draw.cpp /^static void stb__match(const unsigned char *data, unsigned int length)$/;" f typeref:typename:void file:
  9759. stb__nc third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define stb__nc(/;" d file:
  9760. stb__out third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static stb_uchar *stb__out;$/;" v typeref:typename:stb_uchar * file:
  9761. stb__outbytes third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static stb_uint stb__outbytes;$/;" v typeref:typename:stb_uint file:
  9762. stb__outfile third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static FILE *stb__outfile;$/;" v typeref:typename:FILE * file:
  9763. stb__running_adler third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static unsigned int stb__running_adler;$/;" v typeref:typename:unsigned int file:
  9764. stb__window third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static int stb__window = 0x40000; \/\/ 256K$/;" v typeref:typename:int file:
  9765. stb__write third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static void stb__write(unsigned char v)$/;" f typeref:typename:void file:
  9766. stb_adler32 third_party/imgui/imgui_draw.cpp /^static unsigned int stb_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen/;" f typeref:typename:unsigned int file:
  9767. stb_adler32 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static stb_uint stb_adler32(stb_uint adler32, stb_uchar *buffer, stb_uint buflen)$/;" f typeref:typename:stb_uint file:
  9768. stb_compress third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^stb_uint stb_compress(stb_uchar *out, stb_uchar *input, stb_uint length)$/;" f typeref:typename:stb_uint
  9769. stb_compress_chunk third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static int stb_compress_chunk(stb_uchar *history,$/;" f typeref:typename:int file:
  9770. stb_compress_inner third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static int stb_compress_inner(stb_uchar *input, stb_uint length)$/;" f typeref:typename:int file:
  9771. stb_decompress third_party/imgui/imgui_draw.cpp /^static unsigned int stb_decompress(unsigned char *output, const unsigned char *i, unsigned int \//;" f typeref:typename:unsigned int file:
  9772. stb_decompress_length third_party/imgui/imgui_draw.cpp /^static unsigned int stb_decompress_length(const unsigned char *input)$/;" f typeref:typename:unsigned int file:
  9773. stb_decompress_token third_party/imgui/imgui_draw.cpp /^static const unsigned char *stb_decompress_token(const unsigned char *i)$/;" f typeref:typename:const unsigned char * file:
  9774. stb_matchlen third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static unsigned int stb_matchlen(stb_uchar *m1, stb_uchar *m2, stb_uint maxlen)$/;" f typeref:typename:unsigned int file:
  9775. stb_not_crap third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static int stb_not_crap(int best, int dist)$/;" f typeref:typename:int file:
  9776. stb_out third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^#define stb_out(/;" d file:
  9777. stb_out2 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static void stb_out2(stb_uint v) { stb_out(v >> 8); stb_out(v); }$/;" f typeref:typename:void file:
  9778. stb_out3 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static void stb_out3(stb_uint v) { stb_out(v >> 16); stb_out(v >> 8); stb_out(v); }$/;" f typeref:typename:void file:
  9779. stb_out4 third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^static void stb_out4(stb_uint v) { stb_out(v >> 24); stb_out(v >> 16); stb_out(v >> 8 ); stb_out/;" f typeref:typename:void file:
  9780. stb_text_create_undo_record third_party/imgui/imstb_textedit.h /^static StbUndoRecord *stb_text_create_undo_record(StbUndoState *state, int numchars)$/;" f typeref:typename:StbUndoRecord *
  9781. stb_text_createundo third_party/imgui/imstb_textedit.h /^static STB_TEXTEDIT_CHARTYPE *stb_text_createundo(StbUndoState *state, int pos, int insert_len, /;" f typeref:typename:STB_TEXTEDIT_CHARTYPE *
  9782. stb_text_locate_coord third_party/imgui/imstb_textedit.h /^static int stb_text_locate_coord(STB_TEXTEDIT_STRING *str, float x, float y)$/;" f typeref:typename:int
  9783. stb_text_makeundo_delete third_party/imgui/imstb_textedit.h /^static void stb_text_makeundo_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int whe/;" f typeref:typename:void
  9784. stb_text_makeundo_insert third_party/imgui/imstb_textedit.h /^static void stb_text_makeundo_insert(STB_TexteditState *state, int where, int length)$/;" f typeref:typename:void
  9785. stb_text_makeundo_replace third_party/imgui/imstb_textedit.h /^static void stb_text_makeundo_replace(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int wh/;" f typeref:typename:void
  9786. stb_text_redo third_party/imgui/imstb_textedit.h /^static void stb_text_redo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:void
  9787. stb_text_undo third_party/imgui/imstb_textedit.h /^static void stb_text_undo(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:void
  9788. stb_textedit_clamp third_party/imgui/imstb_textedit.h /^static void stb_textedit_clamp(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:void
  9789. stb_textedit_clear_state third_party/imgui/imstb_textedit.h /^static void stb_textedit_clear_state(STB_TexteditState *state, int is_single_line)$/;" f typeref:typename:void
  9790. stb_textedit_click third_party/imgui/imstb_textedit.h /^static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, floa/;" f typeref:typename:void
  9791. stb_textedit_cut third_party/imgui/imstb_textedit.h /^static int stb_textedit_cut(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:int
  9792. stb_textedit_delete third_party/imgui/imstb_textedit.h /^static void stb_textedit_delete(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, i/;" f typeref:typename:void
  9793. stb_textedit_delete_selection third_party/imgui/imstb_textedit.h /^static void stb_textedit_delete_selection(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:void
  9794. stb_textedit_discard_redo third_party/imgui/imstb_textedit.h /^static void stb_textedit_discard_redo(StbUndoState *state)$/;" f typeref:typename:void
  9795. stb_textedit_discard_undo third_party/imgui/imstb_textedit.h /^static void stb_textedit_discard_undo(StbUndoState *state)$/;" f typeref:typename:void
  9796. stb_textedit_drag third_party/imgui/imstb_textedit.h /^static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float/;" f typeref:typename:void
  9797. stb_textedit_find_charpos third_party/imgui/imstb_textedit.h /^static void stb_textedit_find_charpos(StbFindState *find, STB_TEXTEDIT_STRING *str, int n, int s/;" f typeref:typename:void
  9798. stb_textedit_flush_redo third_party/imgui/imstb_textedit.h /^static void stb_textedit_flush_redo(StbUndoState *state)$/;" f typeref:typename:void
  9799. stb_textedit_initialize_state third_party/imgui/imstb_textedit.h /^static void stb_textedit_initialize_state(STB_TexteditState *state, int is_single_line)$/;" f typeref:typename:void
  9800. stb_textedit_key third_party/imgui/imstb_textedit.h /^static void stb_textedit_key(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_KE/;" f typeref:typename:void
  9801. stb_textedit_move_to_first third_party/imgui/imstb_textedit.h /^static void stb_textedit_move_to_first(STB_TexteditState *state)$/;" f typeref:typename:void
  9802. stb_textedit_move_to_last third_party/imgui/imstb_textedit.h /^static void stb_textedit_move_to_last(STB_TEXTEDIT_STRING *str, STB_TexteditState *state)$/;" f typeref:typename:void
  9803. stb_textedit_move_to_word_next third_party/imgui/imstb_textedit.h /^static int stb_textedit_move_to_word_next( STB_TEXTEDIT_STRING *str, int c )$/;" f typeref:typename:int
  9804. stb_textedit_move_to_word_previous third_party/imgui/imstb_textedit.h /^static int stb_textedit_move_to_word_previous( STB_TEXTEDIT_STRING *str, int c )$/;" f typeref:typename:int
  9805. stb_textedit_paste third_party/imgui/imstb_textedit.h /^static int stb_textedit_paste(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_C/;" f typeref:typename:int
  9806. stb_textedit_paste_internal third_party/imgui/imstb_textedit.h /^static int stb_textedit_paste_internal(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_T/;" f typeref:typename:int
  9807. stb_textedit_prep_selection_at_cursor third_party/imgui/imstb_textedit.h /^static void stb_textedit_prep_selection_at_cursor(STB_TexteditState *state)$/;" f typeref:typename:void
  9808. stb_textedit_sortselection third_party/imgui/imstb_textedit.h /^static void stb_textedit_sortselection(STB_TexteditState *state)$/;" f typeref:typename:void
  9809. stb_uchar third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^typedef unsigned char stb_uchar;$/;" t typeref:typename:unsigned char file:
  9810. stb_uint third_party/imgui/misc/fonts/binary_to_compressed_c.cpp /^typedef unsigned int stb_uint;$/;" t typeref:typename:unsigned int file:
  9811. stbrp__findresult third_party/imgui/imstb_rectpack.h /^} stbrp__findresult;$/;" t typeref:struct:__anon1b2b84690308
  9812. stbrp__skyline_find_best_pos third_party/imgui/imstb_rectpack.h /^static stbrp__findresult stbrp__skyline_find_best_pos(stbrp_context *c, int width, int height)$/;" f typeref:typename:stbrp__findresult
  9813. stbrp__skyline_find_min_y third_party/imgui/imstb_rectpack.h /^static int stbrp__skyline_find_min_y(stbrp_context *c, stbrp_node *first, int x0, int width, int/;" f typeref:typename:int
  9814. stbrp__skyline_pack_rectangle third_party/imgui/imstb_rectpack.h /^static stbrp__findresult stbrp__skyline_pack_rectangle(stbrp_context *context, int width, int he/;" f typeref:typename:stbrp__findresult
  9815. stbrp_context third_party/imgui/imstb_rectpack.h /^struct stbrp_context$/;" s
  9816. stbrp_context third_party/imgui/imstb_rectpack.h /^typedef struct stbrp_context stbrp_context;$/;" t typeref:struct:stbrp_context
  9817. stbrp_context third_party/imgui/imstb_truetype.h /^} stbrp_context;$/;" t typeref:struct:__anon3297c23e1108
  9818. stbrp_coord third_party/imgui/imstb_rectpack.h /^typedef int stbrp_coord;$/;" t typeref:typename:int
  9819. stbrp_coord third_party/imgui/imstb_rectpack.h /^typedef unsigned short stbrp_coord;$/;" t typeref:typename:unsigned short
  9820. stbrp_coord third_party/imgui/imstb_truetype.h /^typedef int stbrp_coord;$/;" t typeref:typename:int
  9821. stbrp_init_target third_party/imgui/imstb_rectpack.h /^STBRP_DEF void stbrp_init_target(stbrp_context *context, int width, int height, stbrp_node *node/;" f typeref:typename:STBRP_DEF void
  9822. stbrp_init_target third_party/imgui/imstb_truetype.h /^static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nod/;" f typeref:typename:void
  9823. stbrp_node third_party/imgui/imstb_rectpack.h /^struct stbrp_node$/;" s
  9824. stbrp_node third_party/imgui/imstb_rectpack.h /^typedef struct stbrp_node stbrp_node;$/;" t typeref:struct:stbrp_node
  9825. stbrp_node third_party/imgui/imstb_truetype.h /^} stbrp_node;$/;" t typeref:struct:__anon3297c23e1208
  9826. stbrp_pack_rects third_party/imgui/imstb_rectpack.h /^STBRP_DEF int stbrp_pack_rects(stbrp_context *context, stbrp_rect *rects, int num_rects)$/;" f typeref:typename:STBRP_DEF int
  9827. stbrp_pack_rects third_party/imgui/imstb_truetype.h /^static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects)$/;" f typeref:typename:void
  9828. stbrp_rect third_party/imgui/imstb_rectpack.h /^struct stbrp_rect$/;" s
  9829. stbrp_rect third_party/imgui/imstb_rectpack.h /^typedef struct stbrp_rect stbrp_rect;$/;" t typeref:struct:stbrp_rect
  9830. stbrp_rect third_party/imgui/imstb_truetype.h /^struct stbrp_rect$/;" s
  9831. stbrp_rect third_party/imgui/imstb_truetype.h /^typedef struct stbrp_rect stbrp_rect;$/;" t typeref:struct:stbrp_rect
  9832. stbrp_setup_allow_out_of_mem third_party/imgui/imstb_rectpack.h /^STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context *context, int allow_out_of_mem)$/;" f typeref:typename:STBRP_DEF void
  9833. stbrp_setup_heuristic third_party/imgui/imstb_rectpack.h /^STBRP_DEF void stbrp_setup_heuristic(stbrp_context *context, int heuristic)$/;" f typeref:typename:STBRP_DEF void
  9834. stbtt_BakeFontBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset,$/;" f typeref:typename:STBTT_DEF int
  9835. stbtt_BakeFontBitmap_internal third_party/imgui/imstb_truetype.h /^static int stbtt_BakeFontBitmap_internal(unsigned char *data, int offset, \/\/ font location (u/;" f typeref:typename:int
  9836. stbtt_CompareUTF8toUTF16_bigendian third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int l/;" f typeref:typename:STBTT_DEF int
  9837. stbtt_CompareUTF8toUTF16_bigendian_internal third_party/imgui/imstb_truetype.h /^static int stbtt_CompareUTF8toUTF16_bigendian_internal(char *s1, int len1, char *s2, int len2) $/;" f typeref:typename:int
  9838. stbtt_FindGlyphIndex third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint)$/;" f typeref:typename:STBTT_DEF int
  9839. stbtt_FindMatchingFont third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags)$/;" f typeref:typename:STBTT_DEF int
  9840. stbtt_FindMatchingFont_internal third_party/imgui/imstb_truetype.h /^static int stbtt_FindMatchingFont_internal(unsigned char *font_collection, char *name_utf8, stbt/;" f typeref:typename:int
  9841. stbtt_FlattenCurves third_party/imgui/imstb_truetype.h /^static stbtt__point *stbtt_FlattenCurves(stbtt_vertex *vertices, int num_verts, float objspace_f/;" f typeref:typename:stbtt__point *
  9842. stbtt_FreeBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata)$/;" f typeref:typename:STBTT_DEF void
  9843. stbtt_FreeSDF third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata)$/;" f typeref:typename:STBTT_DEF void
  9844. stbtt_FreeShape third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v)$/;" f typeref:typename:STBTT_DEF void
  9845. stbtt_GetBakedQuad third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_inde/;" f typeref:typename:STBTT_DEF void
  9846. stbtt_GetCodepointBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, flo/;" f typeref:typename:STBTT_DEF unsigned char *
  9847. stbtt_GetCodepointBitmapBox third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scal/;" f typeref:typename:STBTT_DEF void
  9848. stbtt_GetCodepointBitmapBoxSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, fl/;" f typeref:typename:STBTT_DEF void
  9849. stbtt_GetCodepointBitmapSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scal/;" f typeref:typename:STBTT_DEF unsigned char *
  9850. stbtt_GetCodepointBox third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0,/;" f typeref:typename:STBTT_DEF int
  9851. stbtt_GetCodepointHMetrics third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanc/;" f typeref:typename:STBTT_DEF void
  9852. stbtt_GetCodepointKernAdvance third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2)$/;" f typeref:typename:STBTT_DEF int
  9853. stbtt_GetCodepointSDF third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int cod/;" f typeref:typename:STBTT_DEF unsigned char *
  9854. stbtt_GetCodepointShape third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_v/;" f typeref:typename:STBTT_DEF int
  9855. stbtt_GetFontBoundingBox third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, i/;" f typeref:typename:STBTT_DEF void
  9856. stbtt_GetFontNameString third_party/imgui/imstb_truetype.h /^STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platf/;" f typeref:typename:STBTT_DEF const char *
  9857. stbtt_GetFontOffsetForIndex third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index)$/;" f typeref:typename:STBTT_DEF int
  9858. stbtt_GetFontOffsetForIndex_internal third_party/imgui/imstb_truetype.h /^static int stbtt_GetFontOffsetForIndex_internal(unsigned char *font_collection, int index)$/;" f typeref:typename:int
  9859. stbtt_GetFontVMetrics third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int /;" f typeref:typename:STBTT_DEF void
  9860. stbtt_GetFontVMetricsOS2 third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDe/;" f typeref:typename:STBTT_DEF int
  9861. stbtt_GetGlyphBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float s/;" f typeref:typename:STBTT_DEF unsigned char *
  9862. stbtt_GetGlyphBitmapBox third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, flo/;" f typeref:typename:STBTT_DEF void
  9863. stbtt_GetGlyphBitmapBoxSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scal/;" f typeref:typename:STBTT_DEF void
  9864. stbtt_GetGlyphBitmapSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x,/;" f typeref:typename:STBTT_DEF unsigned char *
  9865. stbtt_GetGlyphBox third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, i/;" f typeref:typename:STBTT_DEF int
  9866. stbtt_GetGlyphHMetrics third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceW/;" f typeref:typename:STBTT_DEF void
  9867. stbtt_GetGlyphKernAdvance third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int g1, int g2)$/;" f typeref:typename:STBTT_DEF int
  9868. stbtt_GetGlyphSDF third_party/imgui/imstb_truetype.h /^STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, /;" f typeref:typename:STBTT_DEF unsigned char *
  9869. stbtt_GetGlyphShape third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pv/;" f typeref:typename:STBTT_DEF int
  9870. stbtt_GetNumberOfFonts third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data)$/;" f typeref:typename:STBTT_DEF int
  9871. stbtt_GetNumberOfFonts_internal third_party/imgui/imstb_truetype.h /^static int stbtt_GetNumberOfFonts_internal(unsigned char *font_collection)$/;" f typeref:typename:int
  9872. stbtt_GetPackedQuad third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_in/;" f typeref:typename:STBTT_DEF void
  9873. stbtt_GetScaledFontVMetrics third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size,/;" f typeref:typename:STBTT_DEF void
  9874. stbtt_InitFont third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset)$/;" f typeref:typename:STBTT_DEF int
  9875. stbtt_InitFont_internal third_party/imgui/imstb_truetype.h /^static int stbtt_InitFont_internal(stbtt_fontinfo *info, unsigned char *data, int fontstart)$/;" f typeref:typename:int
  9876. stbtt_IsGlyphEmpty third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index)$/;" f typeref:typename:STBTT_DEF int
  9877. stbtt_MakeCodepointBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int /;" f typeref:typename:STBTT_DEF void
  9878. stbtt_MakeCodepointBitmapSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *outp/;" f typeref:typename:STBTT_DEF void
  9879. stbtt_MakeCodepointBitmapSubpixelPrefilter third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned c/;" f typeref:typename:STBTT_DEF void
  9880. stbtt_MakeGlyphBitmap third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_/;" f typeref:typename:STBTT_DEF void
  9881. stbtt_MakeGlyphBitmapSubpixel third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, /;" f typeref:typename:STBTT_DEF void
  9882. stbtt_MakeGlyphBitmapSubpixelPrefilter third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char /;" f typeref:typename:STBTT_DEF void
  9883. stbtt_PackBegin third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, in/;" f typeref:typename:STBTT_DEF int
  9884. stbtt_PackEnd third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc)$/;" f typeref:typename:STBTT_DEF void
  9885. stbtt_PackFontRange third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int fo/;" f typeref:typename:STBTT_DEF int
  9886. stbtt_PackFontRanges third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int f/;" f typeref:typename:STBTT_DEF int
  9887. stbtt_PackFontRangesGatherRects third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *inf/;" f typeref:typename:STBTT_DEF int
  9888. stbtt_PackFontRangesPackRects third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num/;" f typeref:typename:STBTT_DEF void
  9889. stbtt_PackFontRangesRenderIntoRects third_party/imgui/imstb_truetype.h /^STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo /;" f typeref:typename:STBTT_DEF int
  9890. stbtt_PackSetOversampling third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, uns/;" f typeref:typename:STBTT_DEF void
  9891. stbtt_PackSetSkipMissingCodepoints third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip)$/;" f typeref:typename:STBTT_DEF void
  9892. stbtt_Rasterize third_party/imgui/imstb_truetype.h /^STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *ve/;" f typeref:typename:STBTT_DEF void
  9893. stbtt_ScaleForMappingEmToPixels third_party/imgui/imstb_truetype.h /^STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels)$/;" f typeref:typename:STBTT_DEF float
  9894. stbtt_ScaleForPixelHeight third_party/imgui/imstb_truetype.h /^STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float height)$/;" f typeref:typename:STBTT_DEF float
  9895. stbtt__CompareUTF8toUTF16_bigendian_prefix third_party/imgui/imstb_truetype.h /^static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1,/;" f typeref:typename:stbtt_int32
  9896. stbtt__GetCoverageIndex third_party/imgui/imstb_truetype.h /^static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable, int glyph)$/;" f typeref:typename:stbtt_int32
  9897. stbtt__GetGlyfOffset third_party/imgui/imstb_truetype.h /^static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index)$/;" f typeref:typename:int
  9898. stbtt__GetGlyphClass third_party/imgui/imstb_truetype.h /^static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable, int glyph)$/;" f typeref:typename:stbtt_int32
  9899. stbtt__GetGlyphGPOSInfoAdvance third_party/imgui/imstb_truetype.h /^static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int g/;" f typeref:typename:stbtt_int32
  9900. stbtt__GetGlyphInfoT2 third_party/imgui/imstb_truetype.h /^static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, /;" f typeref:typename:int
  9901. stbtt__GetGlyphKernInfoAdvance third_party/imgui/imstb_truetype.h /^static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2)$/;" f typeref:typename:int
  9902. stbtt__GetGlyphShapeT2 third_party/imgui/imstb_truetype.h /^static int stbtt__GetGlyphShapeT2(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pv/;" f typeref:typename:int
  9903. stbtt__GetGlyphShapeTT third_party/imgui/imstb_truetype.h /^static int stbtt__GetGlyphShapeTT(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pv/;" f typeref:typename:int
  9904. stbtt__active_edge third_party/imgui/imstb_truetype.h /^typedef struct stbtt__active_edge$/;" s
  9905. stbtt__active_edge third_party/imgui/imstb_truetype.h /^} stbtt__active_edge;$/;" t typeref:struct:stbtt__active_edge
  9906. stbtt__add_point third_party/imgui/imstb_truetype.h /^static void stbtt__add_point(stbtt__point *points, int n, float x, float y)$/;" f typeref:typename:void
  9907. stbtt__bitmap third_party/imgui/imstb_truetype.h /^} stbtt__bitmap;$/;" t typeref:struct:__anon3297c23e0808
  9908. stbtt__buf third_party/imgui/imstb_truetype.h /^} stbtt__buf;$/;" t typeref:struct:__anon3297c23e0108
  9909. stbtt__buf_get third_party/imgui/imstb_truetype.h /^static stbtt_uint32 stbtt__buf_get(stbtt__buf *b, int n)$/;" f typeref:typename:stbtt_uint32
  9910. stbtt__buf_get16 third_party/imgui/imstb_truetype.h /^#define stbtt__buf_get16(/;" d
  9911. stbtt__buf_get32 third_party/imgui/imstb_truetype.h /^#define stbtt__buf_get32(/;" d
  9912. stbtt__buf_get8 third_party/imgui/imstb_truetype.h /^static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b)$/;" f typeref:typename:stbtt_uint8
  9913. stbtt__buf_peek8 third_party/imgui/imstb_truetype.h /^static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b)$/;" f typeref:typename:stbtt_uint8
  9914. stbtt__buf_range third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__buf_range(const stbtt__buf *b, int o, int s)$/;" f typeref:typename:stbtt__buf
  9915. stbtt__buf_seek third_party/imgui/imstb_truetype.h /^static void stbtt__buf_seek(stbtt__buf *b, int o)$/;" f typeref:typename:void
  9916. stbtt__buf_skip third_party/imgui/imstb_truetype.h /^static void stbtt__buf_skip(stbtt__buf *b, int o)$/;" f typeref:typename:void
  9917. stbtt__cff_get_index third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__cff_get_index(stbtt__buf *b)$/;" f typeref:typename:stbtt__buf
  9918. stbtt__cff_index_count third_party/imgui/imstb_truetype.h /^static int stbtt__cff_index_count(stbtt__buf *b)$/;" f typeref:typename:int
  9919. stbtt__cff_index_get third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__cff_index_get(stbtt__buf b, int i)$/;" f typeref:typename:stbtt__buf
  9920. stbtt__cff_int third_party/imgui/imstb_truetype.h /^static stbtt_uint32 stbtt__cff_int(stbtt__buf *b)$/;" f typeref:typename:stbtt_uint32
  9921. stbtt__cff_skip_operand third_party/imgui/imstb_truetype.h /^static void stbtt__cff_skip_operand(stbtt__buf *b) {$/;" f typeref:typename:void
  9922. stbtt__check_size16 third_party/imgui/imstb_truetype.h /^ typedef char stbtt__check_size16[sizeof(stbtt_int16)==2 ? 1 : -1];$/;" t typeref:typename:char[sizeof (stbtt_int16)==2?1:-1]
  9923. stbtt__check_size32 third_party/imgui/imstb_truetype.h /^ typedef char stbtt__check_size32[sizeof(stbtt_int32)==4 ? 1 : -1];$/;" t typeref:typename:char[sizeof (stbtt_int32)==4?1:-1]
  9924. stbtt__cid_get_glyph_subrs third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__cid_get_glyph_subrs(const stbtt_fontinfo *info, int glyph_index)$/;" f typeref:typename:stbtt__buf
  9925. stbtt__close_shape third_party/imgui/imstb_truetype.h /^static int stbtt__close_shape(stbtt_vertex *vertices, int num_vertices, int was_off, int start_o/;" f typeref:typename:int
  9926. stbtt__compute_crossings_x third_party/imgui/imstb_truetype.h /^static int stbtt__compute_crossings_x(float x, float y, int nverts, stbtt_vertex *verts)$/;" f typeref:typename:int
  9927. stbtt__csctx third_party/imgui/imstb_truetype.h /^} stbtt__csctx;$/;" t typeref:struct:__anon3297c23e0f08
  9928. stbtt__csctx_close_shape third_party/imgui/imstb_truetype.h /^static void stbtt__csctx_close_shape(stbtt__csctx *ctx)$/;" f typeref:typename:void
  9929. stbtt__csctx_rccurve_to third_party/imgui/imstb_truetype.h /^static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx, float dx1, float dy1, float dx2, float dy/;" f typeref:typename:void
  9930. stbtt__csctx_rline_to third_party/imgui/imstb_truetype.h /^static void stbtt__csctx_rline_to(stbtt__csctx *ctx, float dx, float dy)$/;" f typeref:typename:void
  9931. stbtt__csctx_rmove_to third_party/imgui/imstb_truetype.h /^static void stbtt__csctx_rmove_to(stbtt__csctx *ctx, float dx, float dy)$/;" f typeref:typename:void
  9932. stbtt__csctx_v third_party/imgui/imstb_truetype.h /^static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbt/;" f typeref:typename:void
  9933. stbtt__cuberoot third_party/imgui/imstb_truetype.h /^static float stbtt__cuberoot( float x )$/;" f typeref:typename:float
  9934. stbtt__dict_get third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__dict_get(stbtt__buf *b, int key)$/;" f typeref:typename:stbtt__buf
  9935. stbtt__dict_get_ints third_party/imgui/imstb_truetype.h /^static void stbtt__dict_get_ints(stbtt__buf *b, int key, int outcount, stbtt_uint32 *out)$/;" f typeref:typename:void
  9936. stbtt__edge third_party/imgui/imstb_truetype.h /^typedef struct stbtt__edge {$/;" s
  9937. stbtt__edge third_party/imgui/imstb_truetype.h /^} stbtt__edge;$/;" t typeref:struct:stbtt__edge
  9938. stbtt__fill_active_edges third_party/imgui/imstb_truetype.h /^static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, in/;" f typeref:typename:void
  9939. stbtt__fill_active_edges_new third_party/imgui/imstb_truetype.h /^static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill, int len, stbtt__/;" f typeref:typename:void
  9940. stbtt__find_table third_party/imgui/imstb_truetype.h /^static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag/;" f typeref:typename:stbtt_uint32
  9941. stbtt__get_subr third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n)$/;" f typeref:typename:stbtt__buf
  9942. stbtt__get_subrs third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__get_subrs(stbtt__buf cff, stbtt__buf fontdict)$/;" f typeref:typename:stbtt__buf
  9943. stbtt__h_prefilter third_party/imgui/imstb_truetype.h /^static void stbtt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigne/;" f typeref:typename:void
  9944. stbtt__handle_clipped_edge third_party/imgui/imstb_truetype.h /^static void stbtt__handle_clipped_edge(float *scanline, int x, stbtt__active_edge *e, float x0, /;" f typeref:typename:void
  9945. stbtt__hheap third_party/imgui/imstb_truetype.h /^typedef struct stbtt__hheap$/;" s
  9946. stbtt__hheap third_party/imgui/imstb_truetype.h /^} stbtt__hheap;$/;" t typeref:struct:stbtt__hheap
  9947. stbtt__hheap_alloc third_party/imgui/imstb_truetype.h /^static void *stbtt__hheap_alloc(stbtt__hheap *hh, size_t size, void *userdata)$/;" f typeref:typename:void *
  9948. stbtt__hheap_chunk third_party/imgui/imstb_truetype.h /^typedef struct stbtt__hheap_chunk$/;" s
  9949. stbtt__hheap_chunk third_party/imgui/imstb_truetype.h /^} stbtt__hheap_chunk;$/;" t typeref:struct:stbtt__hheap_chunk
  9950. stbtt__hheap_cleanup third_party/imgui/imstb_truetype.h /^static void stbtt__hheap_cleanup(stbtt__hheap *hh, void *userdata)$/;" f typeref:typename:void
  9951. stbtt__hheap_free third_party/imgui/imstb_truetype.h /^static void stbtt__hheap_free(stbtt__hheap *hh, void *p)$/;" f typeref:typename:void
  9952. stbtt__isfont third_party/imgui/imstb_truetype.h /^static int stbtt__isfont(stbtt_uint8 *font)$/;" f typeref:typename:int
  9953. stbtt__matches third_party/imgui/imstb_truetype.h /^static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 f/;" f typeref:typename:int
  9954. stbtt__matchpair third_party/imgui/imstb_truetype.h /^static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nle/;" f typeref:typename:int
  9955. stbtt__new_active third_party/imgui/imstb_truetype.h /^static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float /;" f typeref:typename:stbtt__active_edge *
  9956. stbtt__new_buf third_party/imgui/imstb_truetype.h /^static stbtt__buf stbtt__new_buf(const void *p, size_t size)$/;" f typeref:typename:stbtt__buf
  9957. stbtt__oversample_shift third_party/imgui/imstb_truetype.h /^static float stbtt__oversample_shift(int oversample)$/;" f typeref:typename:float
  9958. stbtt__point third_party/imgui/imstb_truetype.h /^} stbtt__point;$/;" t typeref:struct:__anon3297c23e1008
  9959. stbtt__rasterize third_party/imgui/imstb_truetype.h /^static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings/;" f typeref:typename:void
  9960. stbtt__rasterize_sorted_edges third_party/imgui/imstb_truetype.h /^static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsub/;" f typeref:typename:void
  9961. stbtt__ray_intersect_bezier third_party/imgui/imstb_truetype.h /^static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], fl/;" f typeref:typename:int
  9962. stbtt__run_charstring third_party/imgui/imstb_truetype.h /^static int stbtt__run_charstring(const stbtt_fontinfo *info, int glyph_index, stbtt__csctx *c)$/;" f typeref:typename:int
  9963. stbtt__solve_cubic third_party/imgui/imstb_truetype.h /^static int stbtt__solve_cubic(float a, float b, float c, float* r)$/;" f typeref:typename:int
  9964. stbtt__sort_edges third_party/imgui/imstb_truetype.h /^static void stbtt__sort_edges(stbtt__edge *p, int n)$/;" f typeref:typename:void
  9965. stbtt__sort_edges_ins_sort third_party/imgui/imstb_truetype.h /^static void stbtt__sort_edges_ins_sort(stbtt__edge *p, int n)$/;" f typeref:typename:void
  9966. stbtt__sort_edges_quicksort third_party/imgui/imstb_truetype.h /^static void stbtt__sort_edges_quicksort(stbtt__edge *p, int n)$/;" f typeref:typename:void
  9967. stbtt__tesselate_cubic third_party/imgui/imstb_truetype.h /^static void stbtt__tesselate_cubic(stbtt__point *points, int *num_points, float x0, float y0, fl/;" f typeref:typename:void
  9968. stbtt__tesselate_curve third_party/imgui/imstb_truetype.h /^static int stbtt__tesselate_curve(stbtt__point *points, int *num_points, float x0, float y0, flo/;" f typeref:typename:int
  9969. stbtt__test_oversample_pow2 third_party/imgui/imstb_truetype.h /^typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ?/;" t typeref:typename:int[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1))==0?1:-1]
  9970. stbtt__track_vertex third_party/imgui/imstb_truetype.h /^static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y)$/;" f typeref:typename:void
  9971. stbtt__v_prefilter third_party/imgui/imstb_truetype.h /^static void stbtt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigne/;" f typeref:typename:void
  9972. stbtt_aligned_quad third_party/imgui/imstb_truetype.h /^} stbtt_aligned_quad;$/;" t typeref:struct:__anon3297c23e0308
  9973. stbtt_bakedchar third_party/imgui/imstb_truetype.h /^} stbtt_bakedchar;$/;" t typeref:struct:__anon3297c23e0208
  9974. stbtt_fontinfo third_party/imgui/imstb_truetype.h /^struct stbtt_fontinfo$/;" s
  9975. stbtt_fontinfo third_party/imgui/imstb_truetype.h /^typedef struct stbtt_fontinfo stbtt_fontinfo;$/;" t typeref:struct:stbtt_fontinfo
  9976. stbtt_int16 third_party/imgui/imstb_truetype.h /^ typedef signed short stbtt_int16;$/;" t typeref:typename:signed short
  9977. stbtt_int32 third_party/imgui/imstb_truetype.h /^ typedef signed int stbtt_int32;$/;" t typeref:typename:signed int
  9978. stbtt_int8 third_party/imgui/imstb_truetype.h /^ typedef signed char stbtt_int8;$/;" t typeref:typename:signed char
  9979. stbtt_pack_context third_party/imgui/imstb_truetype.h /^struct stbtt_pack_context {$/;" s
  9980. stbtt_pack_context third_party/imgui/imstb_truetype.h /^typedef struct stbtt_pack_context stbtt_pack_context;$/;" t typeref:struct:stbtt_pack_context
  9981. stbtt_pack_range third_party/imgui/imstb_truetype.h /^} stbtt_pack_range;$/;" t typeref:struct:__anon3297c23e0508
  9982. stbtt_packedchar third_party/imgui/imstb_truetype.h /^} stbtt_packedchar;$/;" t typeref:struct:__anon3297c23e0408
  9983. stbtt_setvertex third_party/imgui/imstb_truetype.h /^static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stb/;" f typeref:typename:void
  9984. stbtt_tag third_party/imgui/imstb_truetype.h /^#define stbtt_tag(/;" d
  9985. stbtt_tag4 third_party/imgui/imstb_truetype.h /^#define stbtt_tag4(/;" d
  9986. stbtt_uint16 third_party/imgui/imstb_truetype.h /^ typedef unsigned short stbtt_uint16;$/;" t typeref:typename:unsigned short
  9987. stbtt_uint32 third_party/imgui/imstb_truetype.h /^ typedef unsigned int stbtt_uint32;$/;" t typeref:typename:unsigned int
  9988. stbtt_uint8 third_party/imgui/imstb_truetype.h /^ typedef unsigned char stbtt_uint8;$/;" t typeref:typename:unsigned char
  9989. stbtt_vertex third_party/imgui/imstb_truetype.h /^ } stbtt_vertex;$/;" t typeref:struct:__anon3297c23e0708
  9990. stbtt_vertex_type third_party/imgui/imstb_truetype.h /^ #define stbtt_vertex_type /;" d
  9991. stencilPixelFormat third_party/imgui/examples/imgui_impl_metal.mm /^@property (nonatomic, assign) MTLPixelFormat stencilPixelFormat;$/;" p interface:FramebufferDescriptor
  9992. stoneLevel core.mod/src/WGDefault.cc /^static int stoneLevel(const siv::PerlinNoise &perlin, int x) {$/;" f typeref:typename:int file:
  9993. stride third_party/imgui/imstb_truetype.h /^ int w,h,stride;$/;" m struct:__anon3297c23e0808 typeref:typename:int
  9994. stride_in_bytes third_party/imgui/imstb_truetype.h /^ int stride_in_bytes;$/;" m struct:stbtt_pack_context typeref:typename:int
  9995. subrs third_party/imgui/imstb_truetype.h /^ stbtt__buf subrs; \/\/ private charstring subroutines index$/;" m struct:stbtt_fontinfo typeref:typename:stbtt__buf
  9996. subticks third_party/imgui-plot/include/imgui_plot.h /^ int subticks = 10; \/\/ how many subticks in each tick$/;" m struct:ImGui::PlotConfig::Grid typeref:typename:int
  9997. surf_ libswan/include/swan/gfxutil.h /^ CPtr<SDL_Surface, SDL_FreeSurface> surf_;$/;" m class:Swan::TexLock typeref:typename:CPtr<SDL_Surface,SDL_FreeSurface>
  9998. swan CMakeLists.txt /^add_executable(swan$/;" t
  9999. swan CMakeLists.txt /^project(swan)$/;" p
  10000. swan-dist dist/CMakeLists.txt /^project(swan-dist)$/;" p
  10001. swap third_party/imgui/imgui.h /^ inline void swap(ImVector<T>& rhs) { int rhs_size = rhs.Size; rhs.Size /;" f struct:ImVector typeref:typename:void
  10002. switch_interval_ libswan/include/swan/Resource.h /^ float switch_interval_ = 1;$/;" m class:Swan::ImageResource typeref:typename:float
  10003. switch_timer_ libswan/include/swan/Resource.h /^ float switch_timer_ = switch_interval_;$/;" m class:Swan::ImageResource typeref:typename:float
  10004. sy third_party/imgui/imstb_truetype.h /^ float sy;$/;" m struct:stbtt__active_edge typeref:typename:float
  10005. t0 third_party/imgui/imstb_truetype.h /^ float x0,y0,s0,t0; \/\/ top-left$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10006. t1 third_party/imgui/imstb_truetype.h /^ float x1,y1,s1,t1; \/\/ bottom-right$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10007. tAir_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10008. tDirt_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10009. tGrass_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10010. tLeaves_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10011. tStone_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10012. tTreeTrunk_ core.mod/src/WGDefault.h /^ Swan::Tile::ID tGrass_, tDirt_, tStone_, tAir_, tTreeTrunk_, tLeaves_;$/;" m class:WGDefault typeref:typename:Swan::Tile::ID
  10013. test libswan/test/lib/test.h /^#define test(/;" d
  10014. test2 libswan/test/lib/test.h /^#define test2(/;" d
  10015. test3 libswan/test/lib/test.h /^#define test3(/;" d
  10016. test_libswan libswan/CMakeLists.txt /^add_executable(test_libswan EXCLUDE_FROM_ALL$/;" t
  10017. testlib libswan/test/lib/test.cc /^namespace testlib {$/;" n file:
  10018. testlib libswan/test/lib/test.h /^namespace testlib {$/;" n
  10019. tex_ libswan/include/swan/gfxutil.h /^ SDL_Texture *tex_;$/;" m class:Swan::TexAlphaMod typeref:typename:SDL_Texture *
  10020. tex_ libswan/include/swan/gfxutil.h /^ SDL_Texture *tex_;$/;" m class:Swan::TexColorMod typeref:typename:SDL_Texture *
  10021. tex_ libswan/include/swan/gfxutil.h /^ SDL_Texture *tex_;$/;" m class:Swan::TexLock typeref:typename:SDL_Texture *
  10022. texture_ libswan/include/swan/Chunk.h /^ CPtr<SDL_Texture, SDL_DestroyTexture> texture_;$/;" m class:Swan::Chunk typeref:typename:CPtr<SDL_Texture,SDL_DestroyTexture>
  10023. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.0.patterns.0.notes.0.points.0
  10024. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.0.patterns.1.notes.0.points.0
  10025. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.0.patterns.2.notes.0.points.0
  10026. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.0.patterns.3.notes.0.points.0
  10027. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.2.patterns.0.notes.0.points.0
  10028. tick assets-src/music/happy-1.json /^ "tick": 0,$/;" n object:channels.3.patterns.0.notes.0.points.0
  10029. tick assets-src/music/happy-1.json /^ "tick": 10,$/;" n object:channels.2.patterns.0.notes.2.points.1
  10030. tick assets-src/music/happy-1.json /^ "tick": 10,$/;" n object:channels.3.patterns.0.notes.4.points.1
  10031. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.0.patterns.0.notes.2.points.0
  10032. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.0.patterns.1.notes.2.points.0
  10033. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.0.patterns.2.notes.2.points.0
  10034. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.0.patterns.3.notes.2.points.0
  10035. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.2.patterns.0.notes.3.points.0
  10036. tick assets-src/music/happy-1.json /^ "tick": 12,$/;" n object:channels.3.patterns.0.notes.5.points.0
  10037. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.0.patterns.0.notes.2.points.1
  10038. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.0.patterns.1.notes.2.points.1
  10039. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.0.patterns.2.notes.2.points.1
  10040. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.0.patterns.3.notes.2.points.1
  10041. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.2.patterns.0.notes.3.points.1
  10042. tick assets-src/music/happy-1.json /^ "tick": 14,$/;" n object:channels.3.patterns.0.notes.5.points.1
  10043. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.0.patterns.0.notes.3.points.0
  10044. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.0.patterns.1.notes.3.points.0
  10045. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.0.patterns.2.notes.3.points.0
  10046. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.0.patterns.3.notes.3.points.0
  10047. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.2.patterns.0.notes.4.points.0
  10048. tick assets-src/music/happy-1.json /^ "tick": 16,$/;" n object:channels.3.patterns.0.notes.6.points.0
  10049. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.0.patterns.0.notes.3.points.1
  10050. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.0.patterns.1.notes.3.points.1
  10051. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.0.patterns.2.notes.3.points.1
  10052. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.0.patterns.3.notes.3.points.1
  10053. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.2.patterns.0.notes.4.points.1
  10054. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.3.patterns.0.notes.6.points.1
  10055. tick assets-src/music/happy-1.json /^ "tick": 18,$/;" n object:channels.3.patterns.0.notes.7.points.0
  10056. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.0.patterns.0.notes.0.points.1
  10057. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.0.patterns.1.notes.0.points.1
  10058. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.0.patterns.2.notes.0.points.1
  10059. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.0.patterns.3.notes.0.points.1
  10060. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.2.patterns.0.notes.0.points.1
  10061. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.3.patterns.0.notes.0.points.1
  10062. tick assets-src/music/happy-1.json /^ "tick": 2,$/;" n object:channels.3.patterns.0.notes.1.points.0
  10063. tick assets-src/music/happy-1.json /^ "tick": 20,$/;" n object:channels.2.patterns.0.notes.5.points.0
  10064. tick assets-src/music/happy-1.json /^ "tick": 20,$/;" n object:channels.3.patterns.0.notes.7.points.1
  10065. tick assets-src/music/happy-1.json /^ "tick": 20,$/;" n object:channels.3.patterns.0.notes.8.points.0
  10066. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.0.patterns.0.notes.4.points.0
  10067. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.0.patterns.1.notes.4.points.0
  10068. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.0.patterns.2.notes.4.points.0
  10069. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.0.patterns.3.notes.4.points.0
  10070. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.2.patterns.0.notes.5.points.1
  10071. tick assets-src/music/happy-1.json /^ "tick": 22,$/;" n object:channels.3.patterns.0.notes.8.points.1
  10072. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.0.notes.4.points.1
  10073. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.0.notes.5.points.0
  10074. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.1.notes.4.points.1
  10075. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.1.notes.5.points.0
  10076. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.2.notes.4.points.1
  10077. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.2.notes.5.points.0
  10078. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.0.patterns.3.notes.4.points.1
  10079. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.2.patterns.0.notes.6.points.0
  10080. tick assets-src/music/happy-1.json /^ "tick": 24,$/;" n object:channels.3.patterns.0.notes.9.points.0
  10081. tick assets-src/music/happy-1.json /^ "tick": 26,$/;" n object:channels.0.patterns.0.notes.5.points.1
  10082. tick assets-src/music/happy-1.json /^ "tick": 26,$/;" n object:channels.0.patterns.1.notes.5.points.1
  10083. tick assets-src/music/happy-1.json /^ "tick": 26,$/;" n object:channels.0.patterns.2.notes.5.points.1
  10084. tick assets-src/music/happy-1.json /^ "tick": 26,$/;" n object:channels.2.patterns.0.notes.6.points.1
  10085. tick assets-src/music/happy-1.json /^ "tick": 26,$/;" n object:channels.3.patterns.0.notes.9.points.1
  10086. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.0.patterns.0.notes.6.points.0
  10087. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.0.patterns.1.notes.6.points.0
  10088. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.0.patterns.2.notes.6.points.0
  10089. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.0.patterns.3.notes.5.points.0
  10090. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.2.patterns.0.notes.7.points.0
  10091. tick assets-src/music/happy-1.json /^ "tick": 28,$/;" n object:channels.3.patterns.0.notes.10.points.0
  10092. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.0.patterns.0.notes.6.points.1
  10093. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.0.patterns.1.notes.6.points.1
  10094. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.0.patterns.2.notes.6.points.1
  10095. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.0.patterns.3.notes.5.points.1
  10096. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.2.patterns.0.notes.7.points.1
  10097. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.3.patterns.0.notes.10.points.1
  10098. tick assets-src/music/happy-1.json /^ "tick": 30,$/;" n object:channels.3.patterns.0.notes.11.points.0
  10099. tick assets-src/music/happy-1.json /^ "tick": 32,$/;" n object:channels.3.patterns.0.notes.11.points.1
  10100. tick assets-src/music/happy-1.json /^ "tick": 4,$/;" n object:channels.2.patterns.0.notes.1.points.0
  10101. tick assets-src/music/happy-1.json /^ "tick": 4,$/;" n object:channels.3.patterns.0.notes.1.points.1
  10102. tick assets-src/music/happy-1.json /^ "tick": 4,$/;" n object:channels.3.patterns.0.notes.2.points.0
  10103. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.0.patterns.0.notes.1.points.0
  10104. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.0.patterns.1.notes.1.points.0
  10105. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.0.patterns.2.notes.1.points.0
  10106. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.0.patterns.3.notes.1.points.0
  10107. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.2.patterns.0.notes.1.points.1
  10108. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.3.patterns.0.notes.2.points.1
  10109. tick assets-src/music/happy-1.json /^ "tick": 6,$/;" n object:channels.3.patterns.0.notes.3.points.0
  10110. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.0.patterns.0.notes.1.points.1
  10111. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.0.patterns.1.notes.1.points.1
  10112. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.0.patterns.2.notes.1.points.1
  10113. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.0.patterns.3.notes.1.points.1
  10114. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.2.patterns.0.notes.2.points.0
  10115. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.3.patterns.0.notes.3.points.1
  10116. tick assets-src/music/happy-1.json /^ "tick": 8,$/;" n object:channels.3.patterns.0.notes.4.points.0
  10117. tick core.mod/src/entities/EntItemStack.cc /^void EntItemStack::tick(const Swan::Context &ctx, float dt) {$/;" f class:EntItemStack typeref:typename:void
  10118. tick core.mod/src/entities/EntPlayer.cc /^void EntPlayer::tick(const Swan::Context &ctx, float dt) {$/;" f class:EntPlayer typeref:typename:void
  10119. tick libswan/include/swan/Clock.h /^ void tick(float dt) { time_ += dt; }$/;" f class:Swan::Clock typeref:typename:void
  10120. tick libswan/include/swan/Entity.h /^ virtual void tick(const Context &ctx, float dt) {}$/;" f class:Swan::Entity typeref:typename:void
  10121. tick libswan/src/Animation.cc /^void Animation::tick(float dt) {$/;" f class:Swan::Animation typeref:typename:void
  10122. tick libswan/src/Chunk.cc /^void Chunk::tick(float dt) {$/;" f class:Swan::Chunk typeref:typename:void
  10123. tick libswan/src/Game.cc /^void Game::tick(float dt) {$/;" f class:Swan::Game typeref:typename:void
  10124. tick libswan/src/Resource.cc /^void ImageResource::tick(float dt) {$/;" f class:Swan::ImageResource typeref:typename:void
  10125. tick libswan/src/Resource.cc /^void ResourceManager::tick(float dt) {$/;" f class:Swan::ResourceManager typeref:typename:void
  10126. tick libswan/src/World.cc /^void World::ChunkRenderer::tick(WorldPlane &plane, ChunkPos abspos) {$/;" f class:Swan::World::ChunkRenderer typeref:typename:void
  10127. tick libswan/src/World.cc /^void World::tick(float dt) {$/;" f class:Swan::World typeref:typename:void
  10128. tick libswan/src/WorldPlane.cc /^void WorldPlane::tick(float dt) {$/;" f class:Swan::WorldPlane typeref:typename:void
  10129. ticksPerBeat assets-src/music/happy-1.json /^ "ticksPerBeat": 4,$/;" n
  10130. tiles_ libswan/include/swan/Mod.h /^ std::vector<Tile::Builder> tiles_;$/;" m class:Swan::Mod typeref:typename:std::vector<Tile::Builder>
  10131. tiles_ libswan/include/swan/World.h /^ std::vector<std::unique_ptr<Tile>> tiles_;$/;" m class:Swan::World typeref:typename:std::vector<std::unique_ptr<Tile>>
  10132. tiles_map_ libswan/include/swan/World.h /^ std::unordered_map<std::string, Tile::ID> tiles_map_;$/;" m class:Swan::World typeref:typename:std::unordered_map<std::string,Tile::ID>
  10133. time_ libswan/include/swan/Clock.h /^ float time_ = 0;$/;" m class:Swan::Clock typeref:typename:float
  10134. timer_ libswan/include/swan/Animation.h /^ float timer_;$/;" m class:Swan::Animation typeref:typename:float
  10135. tooltip third_party/imgui-plot/include/imgui_plot.h /^ } tooltip;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Tooltip
  10136. top libswan/include/swan/traits/BodyTrait.h /^ float top() { return pos.y; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:float
  10137. topLeft libswan/include/swan/traits/BodyTrait.h /^ Vec2 topLeft() { return { left(), top() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  10138. topMid libswan/include/swan/traits/BodyTrait.h /^ Vec2 topMid() { return { midX(), top() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  10139. topRight libswan/include/swan/traits/BodyTrait.h /^ Vec2 topRight() { return { right(), top() }; }$/;" f struct:Swan::BodyTrait::Bounds typeref:typename:Vec2
  10140. total_time_ libswan/include/swan/PerfCounter.h /^ Counter<> total_time_;$/;" m class:Swan::PerfCounter typeref:typename:Counter<>
  10141. touchesBegan:withEvent: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {$/;" m implementation:ViewController
  10142. touchesCancelled:withEvent: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)touchesCancelled:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {$/;" m implementation:ViewController
  10143. touchesEnded:withEvent: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {$/;" m implementation:ViewController
  10144. touchesMoved:withEvent: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event {$/;" m implementation:ViewController
  10145. transition assets-src/music/happy-1.json /^ "transition": "hard fade",$/;" s object:channels.3.instruments.0
  10146. transition assets-src/music/happy-1.json /^ "transition": "hard",$/;" s object:channels.0.instruments.0
  10147. transition assets-src/music/happy-1.json /^ "transition": "hard",$/;" s object:channels.1.instruments.0
  10148. transition assets-src/music/happy-1.json /^ "transition": "hard",$/;" s object:channels.2.instruments.0
  10149. ttBYTE third_party/imgui/imstb_truetype.h /^#define ttBYTE(/;" d
  10150. ttCHAR third_party/imgui/imstb_truetype.h /^#define ttCHAR(/;" d
  10151. ttFixed third_party/imgui/imstb_truetype.h /^#define ttFixed(/;" d
  10152. ttLONG third_party/imgui/imstb_truetype.h /^static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]/;" f typeref:typename:stbtt_int32
  10153. ttSHORT third_party/imgui/imstb_truetype.h /^static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }$/;" f typeref:typename:stbtt_int16
  10154. ttULONG third_party/imgui/imstb_truetype.h /^static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]/;" f typeref:typename:stbtt_uint32
  10155. ttUSHORT third_party/imgui/imstb_truetype.h /^static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }$/;" f typeref:typename:stbtt_uint16
  10156. type assets-src/music/happy-1.json /^ "type": "FM",$/;" s object:channels.1.instruments.0
  10157. type assets-src/music/happy-1.json /^ "type": "FM",$/;" s object:channels.2.instruments.0
  10158. type assets-src/music/happy-1.json /^ "type": "chip",$/;" s object:channels.0.instruments.0
  10159. type assets-src/music/happy-1.json /^ "type": "spectrum",$/;" s object:channels.3.instruments.0
  10160. type assets-src/music/happy-1.json /^ "type": "drum",$/;" s object:channels.3
  10161. type assets-src/music/happy-1.json /^ "type": "pitch",$/;" s object:channels.0
  10162. type assets-src/music/happy-1.json /^ "type": "pitch",$/;" s object:channels.1
  10163. type assets-src/music/happy-1.json /^ "type": "pitch",$/;" s object:channels.2
  10164. type third_party/imgui-plot/include/imgui_plot.h /^ Type type = Linear;$/;" m struct:ImGui::PlotConfig::Scale typeref:typename:Type
  10165. type third_party/imgui/imstb_truetype.h /^ unsigned char type,padding;$/;" m struct:__anon3297c23e0708 typeref:typename:unsigned char
  10166. uSynergyBool third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef int uSynergyBool;$/;" t typeref:typename:int
  10167. uSynergyClipboardCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyClipboardCallback)(uSynergyCookie cookie, enum uSynergyClipboardFormat f/;" t typeref:typename:void (*)(uSynergyCookie cookie,enum uSynergyClipboardFormat format,const uint8_t * data,uint32_t size)
  10168. uSynergyClipboardFormat third_party/imgui/examples/libs/usynergy/uSynergy.h /^enum uSynergyClipboardFormat$/;" g
  10169. uSynergyConnectFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef uSynergyBool (*uSynergyConnectFunc)(uSynergyCookie cookie);$/;" t typeref:typename:uSynergyBool (*)(uSynergyCookie cookie)
  10170. uSynergyContext third_party/imgui/examples/libs/usynergy/uSynergy.h /^} uSynergyContext;$/;" t typeref:struct:__anon124b53000208
  10171. uSynergyCookie third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef struct { int ignored; } * uSynergyCookie;$/;" t typeref:struct:__anon124b53000108 *
  10172. uSynergyGetTimeFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef uint32_t (*uSynergyGetTimeFunc)();$/;" t typeref:typename:uint32_t (*)()
  10173. uSynergyInit third_party/imgui/examples/libs/usynergy/uSynergy.c /^void uSynergyInit(uSynergyContext *context)$/;" f typeref:typename:void
  10174. uSynergyJoystickCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyJoystickCallback)(uSynergyCookie cookie, uint8_t joyNum, uint16_t button/;" t typeref:typename:void (*)(uSynergyCookie cookie,uint8_t joyNum,uint16_t buttons,int8_t leftStickX,int8_t leftStickY,int8_t rightStickX,int8_t rightStickY)
  10175. uSynergyKeyboardCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyKeyboardCallback)(uSynergyCookie cookie, uint16_t key, uint16_t modifier/;" t typeref:typename:void (*)(uSynergyCookie cookie,uint16_t key,uint16_t modifiers,uSynergyBool down,uSynergyBool repeat)
  10176. uSynergyMouseCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyMouseCallback)(uSynergyCookie cookie, uint16_t x, uint16_t y, int16_t wh/;" t typeref:typename:void (*)(uSynergyCookie cookie,uint16_t x,uint16_t y,int16_t wheelX,int16_t wheelY,uSynergyBool buttonLeft,uSynergyBool buttonRight,uSynergyBool buttonMiddle)
  10177. uSynergyReceiveFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef uSynergyBool (*uSynergyReceiveFunc)(uSynergyCookie cookie, uint8_t *buffer, int maxLengt/;" t typeref:typename:uSynergyBool (*)(uSynergyCookie cookie,uint8_t * buffer,int maxLength,int * outLength)
  10178. uSynergyScreenActiveCallback third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyScreenActiveCallback)(uSynergyCookie cookie, uSynergyBool active);$/;" t typeref:typename:void (*)(uSynergyCookie cookie,uSynergyBool active)
  10179. uSynergySendClipboard third_party/imgui/examples/libs/usynergy/uSynergy.c /^void uSynergySendClipboard(uSynergyContext *context, const char *text)$/;" f typeref:typename:void
  10180. uSynergySendFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef uSynergyBool (*uSynergySendFunc)(uSynergyCookie cookie, const uint8_t *buffer, int lengt/;" t typeref:typename:uSynergyBool (*)(uSynergyCookie cookie,const uint8_t * buffer,int length)
  10181. uSynergySleepFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergySleepFunc)(uSynergyCookie cookie, int timeMs);$/;" t typeref:typename:void (*)(uSynergyCookie cookie,int timeMs)
  10182. uSynergyTraceFunc third_party/imgui/examples/libs/usynergy/uSynergy.h /^typedef void (*uSynergyTraceFunc)(uSynergyCookie cookie, const char *text);$/;" t typeref:typename:void (*)(uSynergyCookie cookie,const char * text)
  10183. uSynergyUpdate third_party/imgui/examples/libs/usynergy/uSynergy.c /^void uSynergyUpdate(uSynergyContext *context)$/;" f typeref:typename:void
  10184. uint64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned __int64 uint64_t;$/;" t typeref:typename:unsigned __int64
  10185. uint64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned long int uint64_t;$/;" t typeref:typename:unsigned long int
  10186. uint64_t third_party/imgui/examples/libs/gl3w/GL/glcorearb.h /^typedef unsigned long long int uint64_t;$/;" t typeref:typename:unsigned long long int
  10187. undo_char third_party/imgui/imstb_textedit.h /^ STB_TEXTEDIT_CHARTYPE undo_char[STB_TEXTEDIT_UNDOCHARCOUNT];$/;" m struct:__anon6b3818470208 typeref:typename:STB_TEXTEDIT_CHARTYPE[]
  10188. undo_char_point third_party/imgui/imstb_textedit.h /^ int undo_char_point, redo_char_point;$/;" m struct:__anon6b3818470208 typeref:typename:int
  10189. undo_point third_party/imgui/imstb_textedit.h /^ short undo_point, redo_point;$/;" m struct:__anon6b3818470208 typeref:typename:short
  10190. undo_rec third_party/imgui/imstb_textedit.h /^ StbUndoRecord undo_rec [STB_TEXTEDIT_UNDOSTATECOUNT];$/;" m struct:__anon6b3818470208 typeref:typename:StbUndoRecord[]
  10191. undostate third_party/imgui/imstb_textedit.h /^ StbUndoState undostate;$/;" m struct:__anon6b3818470308 typeref:typename:StbUndoState
  10192. update core.mod/src/entities/EntPlayer.cc /^void EntPlayer::update(const Swan::Context &ctx, float dt) {$/;" f class:EntPlayer typeref:typename:void
  10193. update libswan/include/swan/Entity.h /^ virtual void update(const Context &ctx, float dt) override {$/;" f class:Swan::PhysicsEntity typeref:typename:void
  10194. update libswan/include/swan/Entity.h /^ virtual void update(const Context &ctx, float dt) {}$/;" f class:Swan::Entity typeref:typename:void
  10195. update libswan/src/Game.cc /^void Game::update(float dt) {$/;" f class:Swan::Game typeref:typename:void
  10196. update libswan/src/World.cc /^void World::update(float dt) {$/;" f class:Swan::World typeref:typename:void
  10197. update libswan/src/WorldPlane.cc /^void WorldPlane::update(float dt) {$/;" f class:Swan::WorldPlane typeref:typename:void
  10198. update libswan/src/traits/BodyTrait.cc /^void PhysicsBody::update(const Swan::Context &ctx, float dt) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  10199. updateAndDrawDemoView third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleView
  10200. updateIOWithTouchEvent: third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^- (void)updateIOWithTouchEvent:(UIEvent *)event {$/;" m implementation:ViewController
  10201. updateWithoutCollision libswan/src/traits/BodyTrait.cc /^void PhysicsBody::updateWithoutCollision(float dt) {$/;" f class:Swan::BodyTrait::PhysicsBody typeref:typename:void
  10202. use_color_ libswan/include/swan/log.h /^ bool use_color_;$/;" m class:Swan::Logger typeref:typename:bool
  10203. user_allocator_context third_party/imgui/imstb_truetype.h /^ void *user_allocator_context;$/;" m struct:stbtt_pack_context typeref:typename:void *
  10204. userdata third_party/imgui/imstb_truetype.h /^ void * userdata;$/;" m struct:stbtt_fontinfo typeref:typename:void *
  10205. uv third_party/imgui/examples/imgui_impl_allegro5.cpp /^ ImVec2 uv;$/;" m struct:ImDrawVertAllegro typeref:typename:ImVec2 file:
  10206. uv third_party/imgui/examples/imgui_impl_dx9.cpp /^ float uv[2];$/;" m struct:CUSTOMVERTEX typeref:typename:float[2] file:
  10207. uv third_party/imgui/imgui.h /^ ImVec2 uv;$/;" m struct:ImDrawVert typeref:typename:ImVec2
  10208. v_lines third_party/imgui-plot/include/imgui_plot.h /^ } v_lines;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::VerticalLines
  10209. v_oversample third_party/imgui/imstb_truetype.h /^ unsigned char h_oversample, v_oversample; \/\/ don't set these, they're used internally$/;" m struct:__anon3297c23e0508 typeref:typename:unsigned char
  10210. v_oversample third_party/imgui/imstb_truetype.h /^ unsigned int h_oversample, v_oversample;$/;" m struct:stbtt_pack_context typeref:typename:unsigned int
  10211. va_copy third_party/imgui/imgui.cpp /^#define va_copy(/;" d file:
  10212. val libswan/include/swan/SRF.h /^ double val;$/;" m struct:Swan::SRFDouble typeref:typename:double
  10213. val libswan/include/swan/SRF.h /^ float val;$/;" m struct:Swan::SRFFloat typeref:typename:float
  10214. val libswan/include/swan/SRF.h /^ int32_t val;$/;" m struct:Swan::SRFInt typeref:typename:int32_t
  10215. val libswan/include/swan/SRF.h /^ std::string val;$/;" m struct:Swan::SRFString typeref:typename:std::string
  10216. val libswan/include/swan/SRF.h /^ std::unordered_map<std::string, std::unique_ptr<SRF>> val;$/;" m struct:Swan::SRFObject typeref:typename:std::unordered_map<std::string,std::unique_ptr<SRF>>
  10217. val libswan/include/swan/SRF.h /^ std::vector<double> val;$/;" m struct:Swan::SRFDoubleArray typeref:typename:std::vector<double>
  10218. val libswan/include/swan/SRF.h /^ std::vector<float> val;$/;" m struct:Swan::SRFFloatArray typeref:typename:std::vector<float>
  10219. val libswan/include/swan/SRF.h /^ std::vector<int32_t> val;$/;" m struct:Swan::SRFIntArray typeref:typename:std::vector<int32_t>
  10220. val libswan/include/swan/SRF.h /^ std::vector<std::unique_ptr<SRF>> val;$/;" m struct:Swan::SRFArray typeref:typename:std::vector<std::unique_ptr<SRF>>
  10221. val libswan/include/swan/SRF.h /^ std::vector<uint16_t> val;$/;" m struct:Swan::SRFWordArray typeref:typename:std::vector<uint16_t>
  10222. val libswan/include/swan/SRF.h /^ std::vector<uint8_t> val;$/;" m struct:Swan::SRFByteArray typeref:typename:std::vector<uint8_t>
  10223. val libswan/include/swan/SRF.h /^ uint16_t val;$/;" m struct:Swan::SRFWord typeref:typename:uint16_t
  10224. val libswan/include/swan/SRF.h /^ uint8_t val;$/;" m struct:Swan::SRFByte typeref:typename:uint8_t
  10225. val_f third_party/imgui/imgui.h /^ union { int val_i; float val_f; void* val_p; };$/;" m union:ImGuiStorage::ImGuiStoragePair::__anon9f73ccf9030a typeref:typename:float
  10226. val_i third_party/imgui/imgui.h /^ union { int val_i; float val_f; void* val_p; };$/;" m union:ImGuiStorage::ImGuiStoragePair::__anon9f73ccf9030a typeref:typename:int
  10227. val_p third_party/imgui/imgui.h /^ union { int val_i; float val_f; void* val_p; };$/;" m union:ImGuiStorage::ImGuiStoragePair::__anon9f73ccf9030a typeref:typename:void *
  10228. value_type third_party/imgui/imgui.h /^ typedef T value_type;$/;" t struct:ImVector typeref:typename:T
  10229. values third_party/imgui-plot/include/imgui_plot.h /^ } values;$/;" m struct:ImGui::PlotConfig typeref:struct:ImGui::PlotConfig::Values
  10230. version assets-src/music/happy-1.json /^ "version": 7,$/;" n
  10231. version third_party/imgui/examples/libs/gl3w/GL/gl3w.c /^} version;$/;" v typeref:struct:__anona804d60b0108
  10232. vibrato assets-src/music/happy-1.json /^ "vibrato": "delayed",$/;" s object:channels.1.instruments.0
  10233. vibrato assets-src/music/happy-1.json /^ "vibrato": "delayed",$/;" s object:channels.2.instruments.0
  10234. vibrato assets-src/music/happy-1.json /^ "vibrato": "none"$/;" s object:channels.0.instruments.0
  10235. viewDidLoad third_party/imgui/examples/example_apple_metal/Shared/ViewController.mm /^{$/;" m implementation:ViewController
  10236. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.0.points.1
  10237. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.1.points.1
  10238. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.10.points.1
  10239. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.11.points.1
  10240. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.2.points.1
  10241. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.3.points.1
  10242. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.4.points.1
  10243. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.5.points.1
  10244. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.6.points.1
  10245. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.7.points.1
  10246. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.8.points.1
  10247. volume assets-src/music/happy-1.json /^ "volume": 0$/;" n object:channels.3.patterns.0.notes.9.points.1
  10248. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.0.points.0
  10249. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.0.points.1
  10250. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.1.points.0
  10251. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.1.points.1
  10252. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.2.points.0
  10253. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.2.points.1
  10254. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.3.points.0
  10255. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.3.points.1
  10256. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.4.points.0
  10257. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.4.points.1
  10258. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.5.points.0
  10259. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.5.points.1
  10260. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.6.points.0
  10261. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.0.notes.6.points.1
  10262. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.0.points.0
  10263. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.0.points.1
  10264. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.1.points.0
  10265. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.1.points.1
  10266. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.2.points.0
  10267. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.2.points.1
  10268. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.3.points.0
  10269. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.3.points.1
  10270. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.4.points.0
  10271. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.4.points.1
  10272. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.5.points.0
  10273. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.5.points.1
  10274. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.6.points.0
  10275. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.1.notes.6.points.1
  10276. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.0.points.0
  10277. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.0.points.1
  10278. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.1.points.0
  10279. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.1.points.1
  10280. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.2.points.0
  10281. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.2.points.1
  10282. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.3.points.0
  10283. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.3.points.1
  10284. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.4.points.0
  10285. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.4.points.1
  10286. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.5.points.0
  10287. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.5.points.1
  10288. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.6.points.0
  10289. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.2.notes.6.points.1
  10290. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.0.points.0
  10291. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.0.points.1
  10292. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.1.points.0
  10293. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.1.points.1
  10294. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.2.points.0
  10295. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.2.points.1
  10296. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.3.points.0
  10297. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.3.points.1
  10298. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.4.points.0
  10299. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.4.points.1
  10300. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.5.points.0
  10301. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.0.patterns.3.notes.5.points.1
  10302. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.0.points.0
  10303. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.0.points.1
  10304. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.1.points.0
  10305. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.1.points.1
  10306. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.2.points.0
  10307. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.2.points.1
  10308. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.3.points.0
  10309. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.3.points.1
  10310. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.4.points.0
  10311. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.4.points.1
  10312. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.5.points.0
  10313. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.5.points.1
  10314. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.6.points.0
  10315. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.6.points.1
  10316. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.7.points.0
  10317. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.2.patterns.0.notes.7.points.1
  10318. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.0.points.0
  10319. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.1.points.0
  10320. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.10.points.0
  10321. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.11.points.0
  10322. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.2.points.0
  10323. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.3.points.0
  10324. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.4.points.0
  10325. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.5.points.0
  10326. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.6.points.0
  10327. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.7.points.0
  10328. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.8.points.0
  10329. volume assets-src/music/happy-1.json /^ "volume": 100$/;" n object:channels.3.patterns.0.notes.9.points.0
  10330. volume assets-src/music/happy-1.json /^ "volume": 100,$/;" n object:channels.0.instruments.0
  10331. volume assets-src/music/happy-1.json /^ "volume": 100,$/;" n object:channels.1.instruments.0
  10332. volume assets-src/music/happy-1.json /^ "volume": 100,$/;" n object:channels.2.instruments.0
  10333. volume assets-src/music/happy-1.json /^ "volume": 100,$/;" n object:channels.3.instruments.0
  10334. vscale libswan/include/swan/Win.h /^ double vscale = 1;$/;" m struct:Swan::Win::ShowTextureArgs typeref:typename:double
  10335. vsnprintf third_party/imgui/imgui.cpp /^#define vsnprintf /;" d file:
  10336. vsnprintf third_party/imgui/imgui_demo.cpp /^#define vsnprintf /;" d file:
  10337. w third_party/imgui/imgui.h /^ float x, y, z, w;$/;" m struct:ImVec4 typeref:typename:float
  10338. w third_party/imgui/imstb_rectpack.h /^ stbrp_coord w, h;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  10339. w third_party/imgui/imstb_truetype.h /^ int id,w,h,was_packed;$/;" m struct:stbrp_rect typeref:typename:int
  10340. w third_party/imgui/imstb_truetype.h /^ int w,h,stride;$/;" m struct:__anon3297c23e0808 typeref:typename:int
  10341. warn libswan/include/swan/log.h /^static Logger warn(logstream, "warning", OS::isTTY(stderr), "\\033[33m");$/;" v namespace:Swan typeref:typename:Logger
  10342. wasKeyPressed libswan/include/swan/Game.h /^ bool wasKeyPressed(SDL_Scancode code) { return did_press_keys_[code]; }$/;" f class:Swan::Game typeref:typename:bool
  10343. wasKeyReleased libswan/include/swan/Game.h /^ bool wasKeyReleased(SDL_Scancode code) { return did_release_keys_[code]; }$/;" f class:Swan::Game typeref:typename:bool
  10344. wasMousePressed libswan/include/swan/Game.h /^ bool wasMousePressed(Uint8 button) { return did_press_buttons_[button]; }$/;" f class:Swan::Game typeref:typename:bool
  10345. wasMouseReleased libswan/include/swan/Game.h /^ bool wasMouseReleased(Uint8 button) { return did_release_buttons_[button]; }$/;" f class:Swan::Game typeref:typename:bool
  10346. wasWheelScrolled libswan/include/swan/Game.h /^ int wasWheelScrolled() { return did_scroll_; }$/;" f class:Swan::Game typeref:typename:int
  10347. was_packed third_party/imgui/imstb_rectpack.h /^ int was_packed; \/\/ non-zero if valid packing$/;" m struct:stbrp_rect typeref:typename:int
  10348. was_packed third_party/imgui/imstb_truetype.h /^ int id,w,h,was_packed;$/;" m struct:stbrp_rect typeref:typename:int
  10349. wave assets-src/music/happy-1.json /^ "wave": "square",$/;" s object:channels.0.instruments.0
  10350. where third_party/imgui/imstb_textedit.h /^ STB_TEXTEDIT_POSITIONTYPE where;$/;" m struct:__anon6b3818470108 typeref:typename:STB_TEXTEDIT_POSITIONTYPE
  10351. width third_party/PerlinNoise/Test_PerlinNoise.cpp /^ int width() const$/;" f class:Image typeref:typename:int file:
  10352. width third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int width;$/;" m struct:GLFWimage typeref:typename:int
  10353. width third_party/imgui/examples/libs/glfw/include/GLFW/glfw3.h /^ int width;$/;" m struct:GLFWvidmode typeref:typename:int
  10354. width third_party/imgui/imstb_rectpack.h /^ int width;$/;" m struct:stbrp_context typeref:typename:int
  10355. width third_party/imgui/imstb_truetype.h /^ int width;$/;" m struct:stbtt_pack_context typeref:typename:int
  10356. width third_party/imgui/imstb_truetype.h /^ int width,height;$/;" m struct:__anon3297c23e1108 typeref:typename:int
  10357. win_ libswan/include/swan/Game.h /^ Win &win_;$/;" m class:Swan::Game typeref:typename:Win &
  10358. window third_party/imgui/examples/example_apple_metal/Shared/AppDelegate.h /^@property (strong, nonatomic) UIWindow *window;$/;" p interface:AppDelegate
  10359. window third_party/imgui/examples/example_apple_opengl2/main.mm /^@property (nonatomic, readonly) NSWindow* window;$/;" p interface:ImGuiExampleAppDelegate
  10360. window third_party/imgui/examples/example_apple_opengl2/main.mm /^{$/;" m implementation:ImGuiExampleAppDelegate
  10361. window_ libswan/include/swan/Win.h /^ SDL_Window *window_;$/;" m class:Swan::Win typeref:typename:SDL_Window *
  10362. world libswan/include/swan/common.h /^ World &world;$/;" m struct:Swan::Context typeref:typename:World &
  10363. world_ libswan/include/swan/Game.h /^ std::unique_ptr<World> world_ = NULL;$/;" m class:Swan::Game typeref:typename:std::unique_ptr<World>
  10364. world_ libswan/include/swan/WorldPlane.h /^ World *world_;$/;" m class:Swan::WorldPlane typeref:typename:World *
  10365. worldgens_ libswan/include/swan/Mod.h /^ std::vector<std::unique_ptr<WorldGen::Factory>> worldgens_;$/;" m class:Swan::Mod typeref:typename:std::vector<std::unique_ptr<WorldGen::Factory>>
  10366. worldgens_ libswan/include/swan/World.h /^ std::unordered_map<std::string, WorldGen::Factory *> worldgens_;$/;" m class:Swan::World typeref:typename:std::unordered_map<std::string,WorldGen::Factory * >
  10367. writeByte libswan/src/SRF.cc /^static void writeByte(std::ostream &os, uint8_t val) {$/;" f namespace:Swan typeref:typename:void file:
  10368. writeDouble libswan/src/SRF.cc /^static void writeDouble(std::ostream &os, double val) {$/;" f namespace:Swan typeref:typename:void file:
  10369. writeFloat libswan/src/SRF.cc /^static void writeFloat(std::ostream &os, float val) {$/;" f namespace:Swan typeref:typename:void file:
  10370. writeInt libswan/src/SRF.cc /^static void writeInt(std::ostream &os, int32_t val) {$/;" f namespace:Swan typeref:typename:void file:
  10371. writeSRF core.mod/src/entities/EntItemStack.cc /^Swan::SRF *EntItemStack::writeSRF(const Swan::Context &ctx) {$/;" f class:EntItemStack typeref:typename:Swan::SRF *
  10372. writeSRF core.mod/src/entities/EntPlayer.cc /^Swan::SRF *EntPlayer::writeSRF(const Swan::Context &ctx) {$/;" f class:EntPlayer typeref:typename:Swan::SRF *
  10373. writeSRF libswan/include/swan/Entity.h /^ virtual SRF *writeSRF(const Swan::Context &ctx) { return new SRFNone(); }$/;" f class:Swan::Entity typeref:typename:SRF *
  10374. writeString libswan/src/SRF.cc /^static void writeString(std::ostream &os, const std::string &str) {$/;" f namespace:Swan typeref:typename:void file:
  10375. writeWord libswan/src/SRF.cc /^static void writeWord(std::ostream &os, uint16_t val) {$/;" f namespace:Swan typeref:typename:void file:
  10376. x libswan/include/swan/Vector2.h /^ T x;$/;" m struct:Swan::Vector2 typeref:typename:T
  10377. x third_party/imgui/imgui.h /^ float x, y, z, w;$/;" m struct:ImVec4 typeref:typename:float
  10378. x third_party/imgui/imgui.h /^ float x, y;$/;" m struct:ImVec2 typeref:typename:float
  10379. x third_party/imgui/imgui_internal.h /^ float x;$/;" m struct:ImVec1 typeref:typename:float
  10380. x third_party/imgui/imgui_internal.h /^ short x, y;$/;" m struct:ImVec2ih typeref:typename:short
  10381. x third_party/imgui/imstb_rectpack.h /^ int x,y;$/;" m struct:__anon1b2b84690308 typeref:typename:int
  10382. x third_party/imgui/imstb_rectpack.h /^ stbrp_coord x, y;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  10383. x third_party/imgui/imstb_rectpack.h /^ stbrp_coord x,y;$/;" m struct:stbrp_node typeref:typename:stbrp_coord
  10384. x third_party/imgui/imstb_textedit.h /^ float x,y; \/\/ position of n'th character$/;" m struct:__anon6b3818470508 typeref:typename:float
  10385. x third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  10386. x third_party/imgui/imstb_truetype.h /^ float x, y;$/;" m struct:__anon3297c23e0f08 typeref:typename:float
  10387. x third_party/imgui/imstb_truetype.h /^ float x,y;$/;" m struct:__anon3297c23e1008 typeref:typename:float
  10388. x third_party/imgui/imstb_truetype.h /^ int x,dx;$/;" m struct:stbtt__active_edge typeref:typename:int
  10389. x third_party/imgui/imstb_truetype.h /^ int x,y,bottom_y;$/;" m struct:__anon3297c23e1108 typeref:typename:int
  10390. x third_party/imgui/imstb_truetype.h /^ stbrp_coord x,y;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  10391. x third_party/imgui/imstb_truetype.h /^ unsigned char x;$/;" m struct:__anon3297c23e1208 typeref:typename:unsigned char
  10392. x0 third_party/imgui/imstb_textedit.h /^ float x0,x1; \/\/ starting x location, end x location (allows for align=right, et/;" m struct:__anon6b3818470408 typeref:typename:float
  10393. x0 third_party/imgui/imstb_truetype.h /^ float x0,y0, x1,y1;$/;" m struct:stbtt__edge typeref:typename:float
  10394. x0 third_party/imgui/imstb_truetype.h /^ float x0,y0,s0,t0; \/\/ top-left$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10395. x0 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0208 typeref:typename:unsigned short
  10396. x0 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0408 typeref:typename:unsigned short
  10397. x1 third_party/imgui/imstb_textedit.h /^ float x0,x1; \/\/ starting x location, end x location (allows for align=right, et/;" m struct:__anon6b3818470408 typeref:typename:float
  10398. x1 third_party/imgui/imstb_truetype.h /^ float x0,y0, x1,y1;$/;" m struct:stbtt__edge typeref:typename:float
  10399. x1 third_party/imgui/imstb_truetype.h /^ float x1,y1,s1,t1; \/\/ bottom-right$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10400. x1 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0208 typeref:typename:unsigned short
  10401. x1 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0408 typeref:typename:unsigned short
  10402. xadvance third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0208 typeref:typename:float
  10403. xadvance third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0408 typeref:typename:float
  10404. xoff third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0208 typeref:typename:float
  10405. xoff third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0408 typeref:typename:float
  10406. xoff2 third_party/imgui/imstb_truetype.h /^ float xoff2,yoff2;$/;" m struct:__anon3297c23e0408 typeref:typename:float
  10407. xs third_party/imgui-plot/include/imgui_plot.h /^ const float *xs = nullptr;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:const float *
  10408. y libswan/include/swan/Vector2.h /^ T y;$/;" m struct:Swan::Vector2 typeref:typename:T
  10409. y third_party/imgui/imgui.h /^ float x, y, z, w;$/;" m struct:ImVec4 typeref:typename:float
  10410. y third_party/imgui/imgui.h /^ float x, y;$/;" m struct:ImVec2 typeref:typename:float
  10411. y third_party/imgui/imgui_internal.h /^ short x, y;$/;" m struct:ImVec2ih typeref:typename:short
  10412. y third_party/imgui/imstb_rectpack.h /^ int x,y;$/;" m struct:__anon1b2b84690308 typeref:typename:int
  10413. y third_party/imgui/imstb_rectpack.h /^ stbrp_coord x, y;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  10414. y third_party/imgui/imstb_rectpack.h /^ stbrp_coord x,y;$/;" m struct:stbrp_node typeref:typename:stbrp_coord
  10415. y third_party/imgui/imstb_textedit.h /^ float x,y; \/\/ position of n'th character$/;" m struct:__anon6b3818470508 typeref:typename:float
  10416. y third_party/imgui/imstb_truetype.h /^ stbtt_vertex_type x,y,cx,cy,cx1,cy1;$/;" m struct:__anon3297c23e0708 typeref:typename:stbtt_vertex_type
  10417. y third_party/imgui/imstb_truetype.h /^ float x, y;$/;" m struct:__anon3297c23e0f08 typeref:typename:float
  10418. y third_party/imgui/imstb_truetype.h /^ float x,y;$/;" m struct:__anon3297c23e1008 typeref:typename:float
  10419. y third_party/imgui/imstb_truetype.h /^ int x,y,bottom_y;$/;" m struct:__anon3297c23e1108 typeref:typename:int
  10420. y third_party/imgui/imstb_truetype.h /^ stbrp_coord x,y;$/;" m struct:stbrp_rect typeref:typename:stbrp_coord
  10421. y0 third_party/imgui/imstb_truetype.h /^ float x0,y0, x1,y1;$/;" m struct:stbtt__edge typeref:typename:float
  10422. y0 third_party/imgui/imstb_truetype.h /^ float x0,y0,s0,t0; \/\/ top-left$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10423. y0 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0208 typeref:typename:unsigned short
  10424. y0 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0408 typeref:typename:unsigned short
  10425. y1 third_party/imgui/imstb_truetype.h /^ float x0,y0, x1,y1;$/;" m struct:stbtt__edge typeref:typename:float
  10426. y1 third_party/imgui/imstb_truetype.h /^ float x1,y1,s1,t1; \/\/ bottom-right$/;" m struct:__anon3297c23e0308 typeref:typename:float
  10427. y1 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0208 typeref:typename:unsigned short
  10428. y1 third_party/imgui/imstb_truetype.h /^ unsigned short x0,y0,x1,y1; \/\/ coordinates of bbox in bitmap$/;" m struct:__anon3297c23e0408 typeref:typename:unsigned short
  10429. ymax third_party/imgui/imstb_textedit.h /^ float ymin,ymax; \/\/ height of row above and below baseline$/;" m struct:__anon6b3818470408 typeref:typename:float
  10430. ymin third_party/imgui/imstb_textedit.h /^ float ymin,ymax; \/\/ height of row above and below baseline$/;" m struct:__anon6b3818470408 typeref:typename:float
  10431. yoff third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0208 typeref:typename:float
  10432. yoff third_party/imgui/imstb_truetype.h /^ float xoff,yoff,xadvance;$/;" m struct:__anon3297c23e0408 typeref:typename:float
  10433. yoff2 third_party/imgui/imstb_truetype.h /^ float xoff2,yoff2;$/;" m struct:__anon3297c23e0408 typeref:typename:float
  10434. ys third_party/imgui-plot/include/imgui_plot.h /^ const float *ys = nullptr;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:const float *
  10435. ys_count third_party/imgui-plot/include/imgui_plot.h /^ int ys_count = 0;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:int
  10436. ys_list third_party/imgui-plot/include/imgui_plot.h /^ const float **ys_list = nullptr;$/;" m struct:ImGui::PlotConfig::Values typeref:typename:const float **
  10437. z third_party/imgui/imgui.h /^ float x, y, z, w;$/;" m struct:ImVec4 typeref:typename:float
  10438. zoom_ libswan/include/swan/Win.h /^ float zoom_ = 1;$/;" m class:Swan::Win typeref:typename:float
  10439. ~Deferred libswan/include/swan/util.h /^ ~Deferred() { Func(); }$/;" f class:Swan::Deferred
  10440. ~Dynlib libswan/src/OS.cc /^Dynlib::~Dynlib() {$/;" f class:Swan::OS::Dynlib
  10441. ~ExampleAppConsole third_party/imgui/imgui_demo.cpp /^ ~ExampleAppConsole()$/;" f struct:ExampleAppConsole file:
  10442. ~FreeTypeFont third_party/imgui/misc/freetype/imgui_freetype.cpp /^ ~FreeTypeFont() { CloseFont(); }$/;" f struct:__anond3bafd850110::FreeTypeFont file:
  10443. ~ImDrawData third_party/imgui/imgui.h /^ ~ImDrawData() { Clear(); }$/;" f struct:ImDrawData
  10444. ~ImDrawList third_party/imgui/imgui.h /^ ~ImDrawList() { ClearFreeMemory(); }$/;" f struct:ImDrawList
  10445. ~ImDrawListSplitter third_party/imgui/imgui.h /^ inline ~ImDrawListSplitter() { ClearFreeMemory(); }$/;" f struct:ImDrawListSplitter
  10446. ~ImFont third_party/imgui/imgui_draw.cpp /^ImFont::~ImFont()$/;" f class:ImFont
  10447. ~ImFontAtlas third_party/imgui/imgui_draw.cpp /^ImFontAtlas::~ImFontAtlas()$/;" f class:ImFontAtlas
  10448. ~ImGuiListClipper third_party/imgui/imgui.h /^ ~ImGuiListClipper() { IM_ASSERT(ItemsCount =/;" f struct:ImGuiListClipper
  10449. ~ImGuiWindow third_party/imgui/imgui.cpp /^ImGuiWindow::~ImGuiWindow()$/;" f class:ImGuiWindow
  10450. ~ImPool third_party/imgui/imgui_internal.h /^ ~ImPool() { Clear(); }$/;" f struct:ImPool
  10451. ~ImVector third_party/imgui/imgui.h /^ inline ~ImVector() { if (Data) IM_FREE(Data); }$/;" f struct:ImVector
  10452. ~Mod libswan/src/Mod.cc /^Mod::~Mod() {$/;" f class:Swan::Mod
  10453. ~NewlineStream libswan/include/swan/log.h /^ ~NewlineStream() {$/;" f class:Swan::Logger::NewlineStream
  10454. ~RenderTarget libswan/include/swan/gfxutil.h /^ ~RenderTarget() {$/;" f class:Swan::RenderTarget
  10455. ~TexAlphaMod libswan/include/swan/gfxutil.h /^ ~TexAlphaMod() {$/;" f class:Swan::TexAlphaMod
  10456. ~TexColorMod libswan/include/swan/gfxutil.h /^ ~TexColorMod() {$/;" f class:Swan::TexColorMod
  10457. ~TexLock libswan/include/swan/gfxutil.h /^ ~TexLock() { SDL_UnlockTexture(tex_); }$/;" f class:Swan::TexLock
  10458. ~Texture third_party/imgui_sdl/imgui_sdl.cpp /^ ~Texture()$/;" f struct:__anonaaadc0580110::Texture file:
  10459. ~TriangleCacheItem third_party/imgui_sdl/imgui_sdl.cpp /^ ~TriangleCacheItem() { if (Texture) SDL_DestroyTexture(Texture); }$/;" f struct:__anonaaadc0580110::Device::TriangleCacheItem file: