makepanda.vcproj 397 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="9,00"
  5. Name="makepanda"
  6. ProjectGUID="{F4935D7A-20AD-4132-B3CB-ADFF4F928D25}"
  7. RootNamespace="makepanda"
  8. Keyword="MakeFileProj"
  9. TargetFrameworkVersion="0"
  10. >
  11. <Platforms>
  12. <Platform
  13. Name="Win32"
  14. />
  15. </Platforms>
  16. <ToolFiles>
  17. </ToolFiles>
  18. <Configurations>
  19. <Configuration
  20. Name="Debug|Win32"
  21. OutputDirectory="..\debug"
  22. IntermediateDirectory="..\debug"
  23. ConfigurationType="0"
  24. >
  25. <Tool
  26. Name="VCNMakeTool"
  27. BuildCommandLine="cd .. &amp; makepanda\makepanda --everything --optimize 1 --outputdir debug"
  28. ReBuildCommandLine=""
  29. CleanCommandLine="cd .. &amp; RD /S /Q debug"
  30. Output=""
  31. PreprocessorDefinitions=""
  32. IncludeSearchPath=""
  33. ForcedIncludes=""
  34. AssemblySearchPath=""
  35. ForcedUsingAssemblies=""
  36. CompileAsManaged=""
  37. />
  38. </Configuration>
  39. <Configuration
  40. Name="Release|Win32"
  41. OutputDirectory="..\built"
  42. IntermediateDirectory="..\built"
  43. ConfigurationType="0"
  44. >
  45. <Tool
  46. Name="VCNMakeTool"
  47. BuildCommandLine="cd .. &amp; makepanda\makepanda --everything --optimize 3 --installer"
  48. ReBuildCommandLine=""
  49. CleanCommandLine="cd .. &amp; RD /S /Q built"
  50. Output=""
  51. PreprocessorDefinitions=""
  52. IncludeSearchPath=""
  53. ForcedIncludes=""
  54. AssemblySearchPath=""
  55. ForcedUsingAssemblies=""
  56. CompileAsManaged=""
  57. />
  58. </Configuration>
  59. </Configurations>
  60. <References>
  61. </References>
  62. <Files>
  63. <Filter Name="dtool">
  64. <Filter Name="dconfig">
  65. <File RelativePath="..\dtool\src\dconfig\config_dconfig.h"></File>
  66. <File RelativePath="..\dtool\src\dconfig\dconfig.cxx"></File>
  67. <File RelativePath="..\dtool\src\dconfig\config_dconfig.cxx"></File>
  68. <File RelativePath="..\dtool\src\dconfig\dconfig_composite1.cxx"></File>
  69. <File RelativePath="..\dtool\src\dconfig\test_searchpath.cxx"></File>
  70. <File RelativePath="..\dtool\src\dconfig\test_config.cxx"></File>
  71. <File RelativePath="..\dtool\src\dconfig\test_pfstream.cxx"></File>
  72. <File RelativePath="..\dtool\src\dconfig\test_expand.cxx"></File>
  73. <File RelativePath="..\dtool\src\dconfig\dconfig.I"></File>
  74. <File RelativePath="..\dtool\src\dconfig\dconfig.h"></File>
  75. <File RelativePath="..\dtool\src\dconfig\dconfig_composite.cxx"></File>
  76. </Filter>
  77. <Filter Name="parser-inc">
  78. <File RelativePath="..\dtool\src\parser-inc\setjmp.h"></File>
  79. <File RelativePath="..\dtool\src\parser-inc\Max.h"></File>
  80. <File RelativePath="..\dtool\src\parser-inc\NxCapsuleController.h"></File>
  81. <File RelativePath="..\dtool\src\parser-inc\ucontext.h"></File>
  82. <File RelativePath="..\dtool\src\parser-inc\semaphore.h"></File>
  83. <File RelativePath="..\dtool\src\parser-inc\avformat.h"></File>
  84. <File RelativePath="..\dtool\src\parser-inc\stdcompare.h"></File>
  85. <File RelativePath="..\dtool\src\parser-inc\rational.h"></File>
  86. <File RelativePath="..\dtool\src\parser-inc\cg.h"></File>
  87. <File RelativePath="..\dtool\src\parser-inc\NxCooking.h"></File>
  88. <File RelativePath="..\dtool\src\parser-inc\NxPhysics.h"></File>
  89. <File RelativePath="..\dtool\src\parser-inc\libtar.h"></File>
  90. <File RelativePath="..\dtool\src\parser-inc\tcp.h"></File>
  91. <File RelativePath="..\dtool\src\parser-inc\NxStream.h"></File>
  92. <File RelativePath="..\dtool\src\parser-inc\cv.h"></File>
  93. <File RelativePath="..\dtool\src\parser-inc\hex.h"></File>
  94. <File RelativePath="..\dtool\src\parser-inc\iparamm2.h"></File>
  95. <File RelativePath="..\dtool\src\parser-inc\cxcore.h"></File>
  96. <File RelativePath="..\dtool\src\parser-inc\hxcore.h"></File>
  97. <File RelativePath="..\dtool\src\parser-inc\math.h"></File>
  98. <File RelativePath="..\dtool\src\parser-inc\cxtypes.h"></File>
  99. <File RelativePath="..\dtool\src\parser-inc\pthreadtypes.h"></File>
  100. <File RelativePath="..\dtool\src\parser-inc\istdplug.h"></File>
  101. <File RelativePath="..\dtool\src\parser-inc\intfloat_readwrite.h"></File>
  102. <File RelativePath="..\dtool\src\parser-inc\pem.h"></File>
  103. <File RelativePath="..\dtool\src\parser-inc\dllpath.h"></File>
  104. <File RelativePath="..\dtool\src\parser-inc\tinyxml.h"></File>
  105. <File RelativePath="..\dtool\src\parser-inc\hxengin.h"></File>
  106. <File RelativePath="..\dtool\src\parser-inc\artools.h"></File>
  107. <File RelativePath="..\dtool\src\parser-inc\swscale.h"></File>
  108. <File RelativePath="..\dtool\src\parser-inc\stdmat.h"></File>
  109. <File RelativePath="..\dtool\src\parser-inc\iskin.h"></File>
  110. <File RelativePath="..\dtool\src\parser-inc\phyexp.h"></File>
  111. <File RelativePath="..\dtool\src\parser-inc\hxerror.h"></File>
  112. <File RelativePath="..\dtool\src\parser-inc\collision_trimesh.h"></File>
  113. <File RelativePath="..\dtool\src\parser-inc\pyconfig.h"></File>
  114. <File RelativePath="..\dtool\src\parser-inc\iparamb2.h"></File>
  115. <File RelativePath="..\dtool\src\parser-inc\rtp.h"></File>
  116. <File RelativePath="..\dtool\src\parser-inc\ode.h"></File>
  117. <File RelativePath="..\dtool\src\parser-inc\windows.h"></File>
  118. <File RelativePath="..\dtool\src\parser-inc\hxcom.h"></File>
  119. <File RelativePath="..\dtool\src\parser-inc\hxfiles.h"></File>
  120. <File RelativePath="..\dtool\src\parser-inc\md5.h"></File>
  121. <File RelativePath="..\dtool\src\parser-inc\WebView.h"></File>
  122. <File RelativePath="..\dtool\src\parser-inc\rtsp.h"></File>
  123. <File RelativePath="..\dtool\src\parser-inc\highgui.h"></File>
  124. <File RelativePath="..\dtool\src\parser-inc\cgGL.h"></File>
  125. <File RelativePath="..\dtool\src\parser-inc\cvtypes.h"></File>
  126. <File RelativePath="..\dtool\src\parser-inc\x509v3.h"></File>
  127. <File RelativePath="..\dtool\src\parser-inc\NxExtended.h"></File>
  128. <File RelativePath="..\dtool\src\parser-inc\x509.h"></File>
  129. <File RelativePath="..\dtool\src\parser-inc\rfftw.h"></File>
  130. <File RelativePath="..\dtool\src\parser-inc\hxcomm.h"></File>
  131. <File RelativePath="..\dtool\src\parser-inc\krb5.h"></File>
  132. <File RelativePath="..\dtool\src\parser-inc\files.h"></File>
  133. <File RelativePath="..\dtool\src\parser-inc\NxBoxController.h"></File>
  134. <File RelativePath="..\dtool\src\parser-inc\WebViewListener.h"></File>
  135. <File RelativePath="..\dtool\src\parser-inc\py_panda.h"></File>
  136. <File RelativePath="..\dtool\src\parser-inc\mathematics.h"></File>
  137. <File RelativePath="..\dtool\src\parser-inc\hxtbuf.h"></File>
  138. <File RelativePath="..\dtool\src\parser-inc\avutil.h"></File>
  139. <File RelativePath="..\dtool\src\parser-inc\stdtypedefs.h"></File>
  140. <File RelativePath="..\dtool\src\parser-inc\cxerror.h"></File>
  141. <File RelativePath="..\dtool\src\parser-inc\malloc.h"></File>
  142. <File RelativePath="..\dtool\src\parser-inc\ssl.h"></File>
  143. <File RelativePath="..\dtool\src\parser-inc\zlib.h"></File>
  144. <File RelativePath="..\dtool\src\parser-inc\winsock2.h"></File>
  145. <File RelativePath="..\dtool\src\parser-inc\socket.h"></File>
  146. <File RelativePath="..\dtool\src\parser-inc\ctype.h"></File>
  147. <File RelativePath="..\dtool\src\parser-inc\err.h"></File>
  148. <File RelativePath="..\dtool\src\parser-inc\pthread.h"></File>
  149. <File RelativePath="..\dtool\src\parser-inc\ft2build.h"></File>
  150. <File RelativePath="..\dtool\src\parser-inc\hxwin.h"></File>
  151. <File RelativePath="..\dtool\src\parser-inc\mmsystem.h"></File>
  152. <File RelativePath="..\dtool\src\parser-inc\avio.h"></File>
  153. <File RelativePath="..\dtool\src\parser-inc\NxController.h"></File>
  154. <File RelativePath="..\dtool\src\parser-inc\NxControllerManager.h"></File>
  155. <File RelativePath="..\dtool\src\parser-inc\stddef.h"></File>
  156. <File RelativePath="..\dtool\src\parser-inc\Python.h"></File>
  157. <File RelativePath="..\dtool\src\parser-inc\WebCore.h"></File>
  158. <File RelativePath="..\dtool\src\parser-inc\stdint.h"></File>
  159. <File RelativePath="..\dtool\src\parser-inc\control.h"></File>
  160. <File RelativePath="..\dtool\src\parser-inc\rtspcodes.h"></File>
  161. <File RelativePath="..\dtool\src\parser-inc\hxtbuff.h"></File>
  162. <File RelativePath="..\dtool\src\parser-inc\ar.h"></File>
  163. <File RelativePath="..\dtool\src\parser-inc\integer.h"></File>
  164. <File RelativePath="..\dtool\src\parser-inc\ip.h"></File>
  165. <File RelativePath="..\dtool\src\parser-inc\crypto.h"></File>
  166. <File RelativePath="..\dtool\src\parser-inc\rand.h"></File>
  167. <File RelativePath="..\dtool\src\parser-inc\MainHelix.h"></File>
  168. <File RelativePath="..\dtool\src\parser-inc\evp.h"></File>
  169. <File RelativePath="..\dtool\src\parser-inc\rsa.h"></File>
  170. <File RelativePath="..\dtool\src\parser-inc\avcodec.h"></File>
  171. </Filter>
  172. <Filter Name="prc">
  173. <File RelativePath="..\dtool\src\prc\configVariableSearchPath.cxx"></File>
  174. <File RelativePath="..\dtool\src\prc\notifyCategoryProxy.I"></File>
  175. <File RelativePath="..\dtool\src\prc\configVariableList.h"></File>
  176. <File RelativePath="..\dtool\src\prc\reversedNumericData.h"></File>
  177. <File RelativePath="..\dtool\src\prc\bigEndian.h"></File>
  178. <File RelativePath="..\dtool\src\prc\configVariableManager.I"></File>
  179. <File RelativePath="..\dtool\src\prc\configFlags.h"></File>
  180. <File RelativePath="..\dtool\src\prc\nativeNumericData.I"></File>
  181. <File RelativePath="..\dtool\src\prc\notifySeverity.h"></File>
  182. <File RelativePath="..\dtool\src\prc\configVariableSearchPath.I"></File>
  183. <File RelativePath="..\dtool\src\prc\prcKeyRegistry.h"></File>
  184. <File RelativePath="..\dtool\src\prc\configDeclaration.I"></File>
  185. <File RelativePath="..\dtool\src\prc\littleEndian.h"></File>
  186. <File RelativePath="..\dtool\src\prc\reversedNumericData.cxx"></File>
  187. <File RelativePath="..\dtool\src\prc\configPage.I"></File>
  188. <File RelativePath="..\dtool\src\prc\streamWriter.I"></File>
  189. <File RelativePath="..\dtool\src\prc\configVariable.h"></File>
  190. <File RelativePath="..\dtool\src\prc\configVariableCore.h"></File>
  191. <File RelativePath="..\dtool\src\prc\configVariable.cxx"></File>
  192. <File RelativePath="..\dtool\src\prc\encryptStreamBuf.I"></File>
  193. <File RelativePath="..\dtool\src\prc\configVariableBool.I"></File>
  194. <File RelativePath="..\dtool\src\prc\configVariableFilename.cxx"></File>
  195. <File RelativePath="..\dtool\src\prc\configVariableEnum.cxx"></File>
  196. <File RelativePath="..\dtool\src\prc\streamReader.h"></File>
  197. <File RelativePath="..\dtool\src\prc\reversedNumericData.I"></File>
  198. <File RelativePath="..\dtool\src\prc\configDeclaration.cxx"></File>
  199. <File RelativePath="..\dtool\src\prc\configVariableBase.cxx"></File>
  200. <File RelativePath="..\dtool\src\prc\encryptStream.h"></File>
  201. <File RelativePath="..\dtool\src\prc\configVariableInt.I"></File>
  202. <File RelativePath="..\dtool\src\prc\configVariableDouble.cxx"></File>
  203. <File RelativePath="..\dtool\src\prc\prcKeyRegistry.I"></File>
  204. <File RelativePath="..\dtool\src\prc\configVariableString.I"></File>
  205. <File RelativePath="..\dtool\src\prc\streamWrapper.cxx"></File>
  206. <File RelativePath="..\dtool\src\prc\notifySeverity.cxx"></File>
  207. <File RelativePath="..\dtool\src\prc\configVariableEnum.h"></File>
  208. <File RelativePath="..\dtool\src\prc\configVariableSearchPath.h"></File>
  209. <File RelativePath="..\dtool\src\prc\encryptStreamBuf.h"></File>
  210. <File RelativePath="..\dtool\src\prc\config_prc.h"></File>
  211. <File RelativePath="..\dtool\src\prc\configDeclaration.h"></File>
  212. <File RelativePath="..\dtool\src\prc\globPattern.I"></File>
  213. <File RelativePath="..\dtool\src\prc\prcKeyRegistry.cxx"></File>
  214. <File RelativePath="..\dtool\src\prc\configVariableInt64.h"></File>
  215. <File RelativePath="..\dtool\src\prc\configVariableInt64.I"></File>
  216. <File RelativePath="..\dtool\src\prc\streamReader.cxx"></File>
  217. <File RelativePath="..\dtool\src\prc\config_prc.cxx"></File>
  218. <File RelativePath="..\dtool\src\prc\configPageManager.I"></File>
  219. <File RelativePath="..\dtool\src\prc\notifyCategory.I"></File>
  220. <File RelativePath="..\dtool\src\prc\encryptStreamBuf.cxx"></File>
  221. <File RelativePath="..\dtool\src\prc\notifyCategory.h"></File>
  222. <File RelativePath="..\dtool\src\prc\streamWrapper.I"></File>
  223. <File RelativePath="..\dtool\src\prc\configVariableBase.h"></File>
  224. <File RelativePath="..\dtool\src\prc\configPageManager.h"></File>
  225. <File RelativePath="..\dtool\src\prc\configVariableFilename.I"></File>
  226. <File RelativePath="..\dtool\src\prc\nativeNumericData.h"></File>
  227. <File RelativePath="..\dtool\src\prc\configPage.cxx"></File>
  228. <File RelativePath="..\dtool\src\prc\globPattern.cxx"></File>
  229. <File RelativePath="..\dtool\src\prc\configVariableList.I"></File>
  230. <File RelativePath="..\dtool\src\prc\notifyCategory.cxx"></File>
  231. <File RelativePath="..\dtool\src\prc\configVariableFilename.h"></File>
  232. <File RelativePath="..\dtool\src\prc\configVariableEnum.I"></File>
  233. <File RelativePath="..\dtool\src\prc\prc_composite.cxx"></File>
  234. <File RelativePath="..\dtool\src\prc\configVariableCore.I"></File>
  235. <File RelativePath="..\dtool\src\prc\streamWrapper.h"></File>
  236. <File RelativePath="..\dtool\src\prc\configVariableInt64.cxx"></File>
  237. <File RelativePath="..\dtool\src\prc\configVariableBool.cxx"></File>
  238. <File RelativePath="..\dtool\src\prc\encryptStream.I"></File>
  239. <File RelativePath="..\dtool\src\prc\notifyCategoryProxy.h"></File>
  240. <File RelativePath="..\dtool\src\prc\encryptStream.cxx"></File>
  241. <File RelativePath="..\dtool\src\prc\pnotify.I"></File>
  242. <File RelativePath="..\dtool\src\prc\configVariableDouble.h"></File>
  243. <File RelativePath="..\dtool\src\prc\prc_composite2.cxx"></File>
  244. <File RelativePath="..\dtool\src\prc\configVariableCore.cxx"></File>
  245. <File RelativePath="..\dtool\src\prc\configVariableManager.cxx"></File>
  246. <File RelativePath="..\dtool\src\prc\configVariableBase.I"></File>
  247. <File RelativePath="..\dtool\src\prc\configVariableString.h"></File>
  248. <File RelativePath="..\dtool\src\prc\configFlags.cxx"></File>
  249. <File RelativePath="..\dtool\src\prc\configVariableList.cxx"></File>
  250. <File RelativePath="..\dtool\src\prc\streamWriter.h"></File>
  251. <File RelativePath="..\dtool\src\prc\configVariableBool.h"></File>
  252. <File RelativePath="..\dtool\src\prc\globPattern.h"></File>
  253. <File RelativePath="..\dtool\src\prc\configPage.h"></File>
  254. <File RelativePath="..\dtool\src\prc\configVariableInt.h"></File>
  255. <File RelativePath="..\dtool\src\prc\configFlags.I"></File>
  256. <File RelativePath="..\dtool\src\prc\configVariableManager.h"></File>
  257. <File RelativePath="..\dtool\src\prc\configPageManager.cxx"></File>
  258. <File RelativePath="..\dtool\src\prc\configVariableInt.cxx"></File>
  259. <File RelativePath="..\dtool\src\prc\configVariable.I"></File>
  260. <File RelativePath="..\dtool\src\prc\streamWriter.cxx"></File>
  261. <File RelativePath="..\dtool\src\prc\streamReader.I"></File>
  262. <File RelativePath="..\dtool\src\prc\notify.cxx"></File>
  263. <File RelativePath="..\dtool\src\prc\configVariableDouble.I"></File>
  264. <File RelativePath="..\dtool\src\prc\pnotify.h"></File>
  265. <File RelativePath="..\dtool\src\prc\nativeNumericData.cxx"></File>
  266. <File RelativePath="..\dtool\src\prc\configVariableString.cxx"></File>
  267. <File RelativePath="..\dtool\src\prc\prc_composite1.cxx"></File>
  268. </Filter>
  269. <Filter Name="newheader">
  270. <File RelativePath="..\dtool\src\newheader\newheader.cxx"></File>
  271. </Filter>
  272. <Filter Name="dtoolbase">
  273. <File RelativePath="..\dtool\src\dtoolbase\lookup3.c"></File>
  274. <File RelativePath="..\dtool\src\dtoolbase\cmath.I"></File>
  275. <File RelativePath="..\dtool\src\dtoolbase\register_type.h"></File>
  276. <File RelativePath="..\dtool\src\dtoolbase\dlmalloc_src.cxx"></File>
  277. <File RelativePath="..\dtool\src\dtoolbase\typedObject.cxx"></File>
  278. <File RelativePath="..\dtool\src\dtoolbase\deletedBufferChain.cxx"></File>
  279. <File RelativePath="..\dtool\src\dtoolbase\pallocator.h"></File>
  280. <File RelativePath="..\dtool\src\dtoolbase\verdate.cpp"></File>
  281. <File RelativePath="..\dtool\src\dtoolbase\typeRegistry.cxx"></File>
  282. <File RelativePath="..\dtool\src\dtoolbase\deletedBufferChain.I"></File>
  283. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustDummyImpl.cxx"></File>
  284. <File RelativePath="..\dtool\src\dtoolbase\deletedChain.h"></File>
  285. <File RelativePath="..\dtool\src\dtoolbase\pstrtod.h"></File>
  286. <File RelativePath="..\dtool\src\dtoolbase\dtoolsymbols.h"></File>
  287. <File RelativePath="..\dtool\src\dtoolbase\mutexImpl.h"></File>
  288. <File RelativePath="..\dtool\src\dtoolbase\mutexDummyImpl.cxx"></File>
  289. <File RelativePath="..\dtool\src\dtoolbase\numeric_types.h"></File>
  290. <File RelativePath="..\dtool\src\dtoolbase\mutexPosixImpl.h"></File>
  291. <File RelativePath="..\dtool\src\dtoolbase\addHash.cxx"></File>
  292. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustPosixImpl.I"></File>
  293. <File RelativePath="..\dtool\src\dtoolbase\dtoolbase.h"></File>
  294. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustWin32Impl.I"></File>
  295. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustI386Impl.h"></File>
  296. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustI386Impl.cxx"></File>
  297. <File RelativePath="..\dtool\src\dtoolbase\typeHandle.h"></File>
  298. <File RelativePath="..\dtool\src\dtoolbase\addHash.h"></File>
  299. <File RelativePath="..\dtool\src\dtoolbase\register_type.cxx"></File>
  300. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustWin32Impl.h"></File>
  301. <File RelativePath="..\dtool\src\dtoolbase\dtool_platform.h"></File>
  302. <File RelativePath="..\dtool\src\dtoolbase\nearly_zero.h"></File>
  303. <File RelativePath="..\dtool\src\dtoolbase\neverFreeMemory.I"></File>
  304. <File RelativePath="..\dtool\src\dtoolbase\pmap.h"></File>
  305. <File RelativePath="..\dtool\src\dtoolbase\memoryHook.cxx"></File>
  306. <File RelativePath="..\dtool\src\dtoolbase\mutexWin32Impl.I"></File>
  307. <File RelativePath="..\dtool\src\dtoolbase\dtoolbase_composite1.cxx"></File>
  308. <File RelativePath="..\dtool\src\dtoolbase\typeRegistry.I"></File>
  309. <File RelativePath="..\dtool\src\dtoolbase\pset.h"></File>
  310. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustPosixImpl.cxx"></File>
  311. <File RelativePath="..\dtool\src\dtoolbase\mutexSpinlockImpl.h"></File>
  312. <File RelativePath="..\dtool\src\dtoolbase\plist.h"></File>
  313. <File RelativePath="..\dtool\src\dtoolbase\indent.cxx"></File>
  314. <File RelativePath="..\dtool\src\dtoolbase\lookup3.h"></File>
  315. <File RelativePath="..\dtool\src\dtoolbase\version.h"></File>
  316. <File RelativePath="..\dtool\src\dtoolbase\typeRegistryNode.h"></File>
  317. <File RelativePath="..\dtool\src\dtoolbase\selectThreadImpl.h"></File>
  318. <File RelativePath="..\dtool\src\dtoolbase\ptmalloc2_smp_src.cxx"></File>
  319. <File RelativePath="..\dtool\src\dtoolbase\indent.I"></File>
  320. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustI386Impl.I"></File>
  321. <File RelativePath="..\dtool\src\dtoolbase\dtoolbase_composite2.cxx"></File>
  322. <File RelativePath="..\dtool\src\dtoolbase\memoryBase.cxx"></File>
  323. <File RelativePath="..\dtool\src\dtoolbase\mutexSpinlockImpl.I"></File>
  324. <File RelativePath="..\dtool\src\dtoolbase\deletedBufferChain.h"></File>
  325. <File RelativePath="..\dtool\src\dtoolbase\neverFreeMemory.cxx"></File>
  326. <File RelativePath="..\dtool\src\dtoolbase\typedObject.I"></File>
  327. <File RelativePath="..\dtool\src\dtoolbase\typeRegistryNode.cxx"></File>
  328. <File RelativePath="..\dtool\src\dtoolbase\mutexSpinlockImpl.cxx"></File>
  329. <File RelativePath="..\dtool\src\dtoolbase\mutexDummyImpl.I"></File>
  330. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustPosixImpl.h"></File>
  331. <File RelativePath="..\dtool\src\dtoolbase\test_strtod.cxx"></File>
  332. <File RelativePath="..\dtool\src\dtoolbase\memoryHook.I"></File>
  333. <File RelativePath="..\dtool\src\dtoolbase\stl_compares.h"></File>
  334. <File RelativePath="..\dtool\src\dtoolbase\pvector.h"></File>
  335. <File RelativePath="..\dtool\src\dtoolbase\typeRegistryNode.I"></File>
  336. <File RelativePath="..\dtool\src\dtoolbase\mutexPosixImpl.I"></File>
  337. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjust.h"></File>
  338. <File RelativePath="..\dtool\src\dtoolbase\register_type.I"></File>
  339. <File RelativePath="..\dtool\src\dtoolbase\mutexPosixImpl.cxx"></File>
  340. <File RelativePath="..\dtool\src\dtoolbase\memoryBase.h"></File>
  341. <File RelativePath="..\dtool\src\dtoolbase\pstrtod.cxx"></File>
  342. <File RelativePath="..\dtool\src\dtoolbase\typeHandle.cxx"></File>
  343. <File RelativePath="..\dtool\src\dtoolbase\indent.h"></File>
  344. <File RelativePath="..\dtool\src\dtoolbase\dlmalloc.h"></File>
  345. <File RelativePath="..\dtool\src\dtoolbase\addHash.I"></File>
  346. <File RelativePath="..\dtool\src\dtoolbase\mutexWin32Impl.h"></File>
  347. <File RelativePath="..\dtool\src\dtoolbase\neverFreeMemory.h"></File>
  348. <File RelativePath="..\dtool\src\dtoolbase\mutexDummyImpl.h"></File>
  349. <File RelativePath="..\dtool\src\dtoolbase\fakestringstream.h"></File>
  350. <File RelativePath="..\dtool\src\dtoolbase\cmath.h"></File>
  351. <File RelativePath="..\dtool\src\dtoolbase\pdeque.h"></File>
  352. <File RelativePath="..\dtool\src\dtoolbase\typeRegistry.h"></File>
  353. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustDummyImpl.h"></File>
  354. <File RelativePath="..\dtool\src\dtoolbase\dtoolbase.cxx"></File>
  355. <File RelativePath="..\dtool\src\dtoolbase\memoryHook.h"></File>
  356. <File RelativePath="..\dtool\src\dtoolbase\typeHandle.I"></File>
  357. <File RelativePath="..\dtool\src\dtoolbase\dtoolbase_cc.h"></File>
  358. <File RelativePath="..\dtool\src\dtoolbase\stl_compares.I"></File>
  359. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustDummyImpl.I"></File>
  360. <File RelativePath="..\dtool\src\dtoolbase\atomicAdjustWin32Impl.cxx"></File>
  361. <File RelativePath="..\dtool\src\dtoolbase\typedObject.h"></File>
  362. <File RelativePath="..\dtool\src\dtoolbase\mutexWin32Impl.cxx"></File>
  363. </Filter>
  364. <Filter Name="pystub">
  365. <File RelativePath="..\dtool\src\pystub\pystub.h"></File>
  366. <File RelativePath="..\dtool\src\pystub\pystub.cxx"></File>
  367. </Filter>
  368. <Filter Name="dtoolutil">
  369. <File RelativePath="..\dtool\src\dtoolutil\pandaFileStreamBuf.h"></File>
  370. <File RelativePath="..\dtool\src\dtoolutil\vector_src.h"></File>
  371. <File RelativePath="..\dtool\src\dtoolutil\dSearchPath.I"></File>
  372. <File RelativePath="..\dtool\src\dtoolutil\pfstreamBuf.h"></File>
  373. <File RelativePath="..\dtool\src\dtoolutil\config_dtoolutil.h"></File>
  374. <File RelativePath="..\dtool\src\dtoolutil\load_dso.cxx"></File>
  375. <File RelativePath="..\dtool\src\dtoolutil\dtoolutil_composite.cxx"></File>
  376. <File RelativePath="..\dtool\src\dtoolutil\pfstreamBuf.cxx"></File>
  377. <File RelativePath="..\dtool\src\dtoolutil\filename.I"></File>
  378. <File RelativePath="..\dtool\src\dtoolutil\pandaFileStream.cxx"></File>
  379. <File RelativePath="..\dtool\src\dtoolutil\executionEnvironment.I"></File>
  380. <File RelativePath="..\dtool\src\dtoolutil\dtoolutil_composite1.cxx"></File>
  381. <File RelativePath="..\dtool\src\dtoolutil\filename.cxx"></File>
  382. <File RelativePath="..\dtool\src\dtoolutil\vector_string.h"></File>
  383. <File RelativePath="..\dtool\src\dtoolutil\filename.h"></File>
  384. <File RelativePath="..\dtool\src\dtoolutil\executionEnvironment.cxx"></File>
  385. <File RelativePath="..\dtool\src\dtoolutil\executionEnvironment.h"></File>
  386. <File RelativePath="..\dtool\src\dtoolutil\test_touch.cxx"></File>
  387. <File RelativePath="..\dtool\src\dtoolutil\test_pfstream.cxx"></File>
  388. <File RelativePath="..\dtool\src\dtoolutil\vector_src.cxx"></File>
  389. <File RelativePath="..\dtool\src\dtoolutil\gnu_getopt.c"></File>
  390. <File RelativePath="..\dtool\src\dtoolutil\gnu_getopt.h"></File>
  391. <File RelativePath="..\dtool\src\dtoolutil\dSearchPath.h"></File>
  392. <File RelativePath="..\dtool\src\dtoolutil\filename_assist.h"></File>
  393. <File RelativePath="..\dtool\src\dtoolutil\config_dtoolutil.cxx"></File>
  394. <File RelativePath="..\dtool\src\dtoolutil\pandaFileStream.I"></File>
  395. <File RelativePath="..\dtool\src\dtoolutil\pfstream.cxx"></File>
  396. <File RelativePath="..\dtool\src\dtoolutil\vector_string.cxx"></File>
  397. <File RelativePath="..\dtool\src\dtoolutil\pandaSystem.h"></File>
  398. <File RelativePath="..\dtool\src\dtoolutil\gnu_getopt1.c"></File>
  399. <File RelativePath="..\dtool\src\dtoolutil\pandaFileStreamBuf.cxx"></File>
  400. <File RelativePath="..\dtool\src\dtoolutil\dtoolutil_composite2.cxx"></File>
  401. <File RelativePath="..\dtool\src\dtoolutil\pfstream.h"></File>
  402. <File RelativePath="..\dtool\src\dtoolutil\dSearchPath.cxx"></File>
  403. <File RelativePath="..\dtool\src\dtoolutil\load_dso.h"></File>
  404. <File RelativePath="..\dtool\src\dtoolutil\pandaSystem.cxx"></File>
  405. <File RelativePath="..\dtool\src\dtoolutil\pandaFileStream.h"></File>
  406. <File RelativePath="..\dtool\src\dtoolutil\pfstream.I"></File>
  407. </Filter>
  408. <Filter Name="test_interrogate">
  409. <File RelativePath="..\dtool\src\test_interrogate\test_lib.h"></File>
  410. <File RelativePath="..\dtool\src\test_interrogate\test_lib.cxx"></File>
  411. <File RelativePath="..\dtool\src\test_interrogate\test_interrogate.cxx"></File>
  412. </Filter>
  413. <Filter Name="interrogate">
  414. <File RelativePath="..\dtool\src\interrogate\interrogateBuilder.cxx"></File>
  415. <File RelativePath="..\dtool\src\interrogate\functionWriterPtrToPython.cxx"></File>
  416. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringPtrToString.h"></File>
  417. <File RelativePath="..\dtool\src\interrogate\parameterRemapToString.h"></File>
  418. <File RelativePath="..\dtool\src\interrogate\interrogate_composite1.cxx"></File>
  419. <File RelativePath="..\dtool\src\interrogate\functionWriter.h"></File>
  420. <File RelativePath="..\dtool\src\interrogate\parameterRemap.I"></File>
  421. <File RelativePath="..\dtool\src\interrogate\functionRemap.cxx"></File>
  422. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonObj.h"></File>
  423. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringToString.cxx"></File>
  424. <File RelativePath="..\dtool\src\interrogate\parameterRemap.cxx"></File>
  425. <File RelativePath="..\dtool\src\interrogate\parameterRemapReferenceToPointer.h"></File>
  426. <File RelativePath="..\dtool\src\interrogate\parameterRemapToString.cxx"></File>
  427. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringRefToString.h"></File>
  428. <File RelativePath="..\dtool\src\interrogate\interrogate_composite2.cxx"></File>
  429. <File RelativePath="..\dtool\src\interrogate\typeManager.cxx"></File>
  430. <File RelativePath="..\dtool\src\interrogate\parameterRemapCharStarToString.h"></File>
  431. <File RelativePath="..\dtool\src\interrogate\parse_file.cxx"></File>
  432. <File RelativePath="..\dtool\src\interrogate\interrogateBuilder.h"></File>
  433. <File RelativePath="..\dtool\src\interrogate\parameterRemapThis.cxx"></File>
  434. <File RelativePath="..\dtool\src\interrogate\parameterRemapEnumToInt.cxx"></File>
  435. <File RelativePath="..\dtool\src\interrogate\parameterRemapPTToPointer.cxx"></File>
  436. <File RelativePath="..\dtool\src\interrogate\parameterRemapEnumToInt.h"></File>
  437. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonObj.cxx"></File>
  438. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringRefToString.cxx"></File>
  439. <File RelativePath="..\dtool\src\interrogate\parameterRemapPTToPointer.h"></File>
  440. <File RelativePath="..\dtool\src\interrogate\interrogate.cxx"></File>
  441. <File RelativePath="..\dtool\src\interrogate\interfaceMakerC.cxx"></File>
  442. <File RelativePath="..\dtool\src\interrogate\parameterRemapConstToNonConst.cxx"></File>
  443. <File RelativePath="..\dtool\src\interrogate\parameterRemapReferenceToConcrete.cxx"></File>
  444. <File RelativePath="..\dtool\src\interrogate\parameterRemapUnchanged.h"></File>
  445. <File RelativePath="..\dtool\src\interrogate\parameterRemapReferenceToConcrete.h"></File>
  446. <File RelativePath="..\dtool\src\interrogate\typeManager.h"></File>
  447. <File RelativePath="..\dtool\src\interrogate\parameterRemapConstToNonConst.h"></File>
  448. <File RelativePath="..\dtool\src\interrogate\interrogate_composite.cxx"></File>
  449. <File RelativePath="..\dtool\src\interrogate\parameterRemapReferenceToPointer.cxx"></File>
  450. <File RelativePath="..\dtool\src\interrogate\functionRemap.h"></File>
  451. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonNative.h"></File>
  452. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringPtrToString.cxx"></File>
  453. <File RelativePath="..\dtool\src\interrogate\interfaceMaker.h"></File>
  454. <File RelativePath="..\dtool\src\interrogate\functionWriterPtrFromPython.h"></File>
  455. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPython.cxx"></File>
  456. <File RelativePath="..\dtool\src\interrogate\parameterRemapConcreteToPointer.cxx"></File>
  457. <File RelativePath="..\dtool\src\interrogate\parameterRemapBasicStringToString.h"></File>
  458. <File RelativePath="..\dtool\src\interrogate\functionWriters.cxx"></File>
  459. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonNative.cxx"></File>
  460. <File RelativePath="..\dtool\src\interrogate\functionWriterPtrToPython.h"></File>
  461. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonSimple.cxx"></File>
  462. <File RelativePath="..\dtool\src\interrogate\parameterRemapUnchanged.cxx"></File>
  463. <File RelativePath="..\dtool\src\interrogate\functionWriters.h"></File>
  464. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPython.h"></File>
  465. <File RelativePath="..\dtool\src\interrogate\functionWriter.cxx"></File>
  466. <File RelativePath="..\dtool\src\interrogate\interfaceMakerC.h"></File>
  467. <File RelativePath="..\dtool\src\interrogate\interfaceMakerPythonSimple.h"></File>
  468. <File RelativePath="..\dtool\src\interrogate\parameterRemapThis.h"></File>
  469. <File RelativePath="..\dtool\src\interrogate\parameterRemapCharStarToString.cxx"></File>
  470. <File RelativePath="..\dtool\src\interrogate\interrogate_module.cxx"></File>
  471. <File RelativePath="..\dtool\src\interrogate\parameterRemapConcreteToPointer.h"></File>
  472. <File RelativePath="..\dtool\src\interrogate\interrogate.h"></File>
  473. <File RelativePath="..\dtool\src\interrogate\functionWriterPtrFromPython.cxx"></File>
  474. <File RelativePath="..\dtool\src\interrogate\parameterRemap.h"></File>
  475. <File RelativePath="..\dtool\src\interrogate\interfaceMaker.cxx"></File>
  476. </Filter>
  477. <Filter Name="cppparser">
  478. <File RelativePath="..\dtool\src\cppparser\cppManifest.cxx"></File>
  479. <File RelativePath="..\dtool\src\cppparser\cppFunctionGroup.h"></File>
  480. <File RelativePath="..\dtool\src\cppparser\cppIdentifier.h"></File>
  481. <File RelativePath="..\dtool\src\cppparser\cppTypedef.h"></File>
  482. <File RelativePath="..\dtool\src\cppparser\cppTBDType.cxx"></File>
  483. <File RelativePath="..\dtool\src\cppparser\cppParser_composite2.cxx"></File>
  484. <File RelativePath="..\dtool\src\cppparser\cppScope.cxx"></File>
  485. <File RelativePath="..\dtool\src\cppparser\cppDeclaration.h"></File>
  486. <File RelativePath="..\dtool\src\cppparser\cppTypeParser.cxx"></File>
  487. <File RelativePath="..\dtool\src\cppparser\cppFile.cxx"></File>
  488. <File RelativePath="..\dtool\src\cppparser\cppNameComponent.h"></File>
  489. <File RelativePath="..\dtool\src\cppparser\cppVisibility.h"></File>
  490. <File RelativePath="..\dtool\src\cppparser\cppParameterList.h"></File>
  491. <File RelativePath="..\dtool\src\cppparser\cppConstType.cxx"></File>
  492. <File RelativePath="..\dtool\src\cppparser\cppNamespace.cxx"></File>
  493. <File RelativePath="..\dtool\src\cppparser\cppType.h"></File>
  494. <File RelativePath="..\dtool\src\cppparser\cppExtensionType.h"></File>
  495. <File RelativePath="..\dtool\src\cppparser\cppGlobals.h"></File>
  496. <File RelativePath="..\dtool\src\cppparser\cppFunctionType.cxx"></File>
  497. <File RelativePath="..\dtool\src\cppparser\cppVisibility.cxx"></File>
  498. <File RelativePath="..\dtool\src\cppparser\cppInstance.cxx"></File>
  499. <File RelativePath="..\dtool\src\cppparser\cppSimpleType.cxx"></File>
  500. <File RelativePath="..\dtool\src\cppparser\cppBison.cxx"></File>
  501. <File RelativePath="..\dtool\src\cppparser\cppUsing.h"></File>
  502. <File RelativePath="..\dtool\src\cppparser\cppTemplateParameterList.cxx"></File>
  503. <File RelativePath="..\dtool\src\cppparser\cppExpressionParser.cxx"></File>
  504. <File RelativePath="..\dtool\src\cppparser\cppIdentifier.cxx"></File>
  505. <File RelativePath="..\dtool\src\cppparser\cppToken.h"></File>
  506. <File RelativePath="..\dtool\src\cppparser\cppPreprocessor.cxx"></File>
  507. <File RelativePath="..\dtool\src\cppparser\cppBison.h"></File>
  508. <File RelativePath="..\dtool\src\cppparser\cppInstanceIdentifier.cxx"></File>
  509. <File RelativePath="..\dtool\src\cppparser\cppStructType.cxx"></File>
  510. <File RelativePath="..\dtool\src\cppparser\cppManifest.h"></File>
  511. <File RelativePath="..\dtool\src\cppparser\cppExpressionParser.h"></File>
  512. <File RelativePath="..\dtool\src\cppparser\cppInstance.h"></File>
  513. <File RelativePath="..\dtool\src\cppparser\cppStructType.h"></File>
  514. <File RelativePath="..\dtool\src\cppparser\cppParameterList.cxx"></File>
  515. <File RelativePath="..\dtool\src\cppparser\cppToken.cxx"></File>
  516. <File RelativePath="..\dtool\src\cppparser\cppTemplateScope.h"></File>
  517. <File RelativePath="..\dtool\src\cppparser\cppMakeSeq.h"></File>
  518. <File RelativePath="..\dtool\src\cppparser\cppTypeProxy.cxx"></File>
  519. <File RelativePath="..\dtool\src\cppparser\cppExtensionType.cxx"></File>
  520. <File RelativePath="..\dtool\src\cppparser\cppTypedef.cxx"></File>
  521. <File RelativePath="..\dtool\src\cppparser\cppClassTemplateParameter.cxx"></File>
  522. <File RelativePath="..\dtool\src\cppparser\cppNamespace.h"></File>
  523. <File RelativePath="..\dtool\src\cppparser\cppFunctionType.h"></File>
  524. <File RelativePath="..\dtool\src\cppparser\cppParser_composite1.cxx"></File>
  525. <File RelativePath="..\dtool\src\cppparser\cppSimpleType.h"></File>
  526. <File RelativePath="..\dtool\src\cppparser\cppFunctionGroup.cxx"></File>
  527. <File RelativePath="..\dtool\src\cppparser\cppBisonDefs.h"></File>
  528. <File RelativePath="..\dtool\src\cppparser\cppInstanceIdentifier.h"></File>
  529. <File RelativePath="..\dtool\src\cppparser\cppArrayType.cxx"></File>
  530. <File RelativePath="..\dtool\src\cppparser\cppTemplateScope.cxx"></File>
  531. <File RelativePath="..\dtool\src\cppparser\cppParser.h"></File>
  532. <File RelativePath="..\dtool\src\cppparser\cppCommentBlock.cxx"></File>
  533. <File RelativePath="..\dtool\src\cppparser\cppClassTemplateParameter.h"></File>
  534. <File RelativePath="..\dtool\src\cppparser\cppDeclaration.cxx"></File>
  535. <File RelativePath="..\dtool\src\cppparser\cppTBDType.h"></File>
  536. <File RelativePath="..\dtool\src\cppparser\cppParser_composite.cxx"></File>
  537. <File RelativePath="..\dtool\src\cppparser\cppReferenceType.cxx"></File>
  538. <File RelativePath="..\dtool\src\cppparser\cppFile.h"></File>
  539. <File RelativePath="..\dtool\src\cppparser\cppCommentBlock.h"></File>
  540. <File RelativePath="..\dtool\src\cppparser\cppExpression.cxx"></File>
  541. <File RelativePath="..\dtool\src\cppparser\cppTypeParser.h"></File>
  542. <File RelativePath="..\dtool\src\cppparser\cppPointerType.cxx"></File>
  543. <File RelativePath="..\dtool\src\cppparser\cppEnumType.cxx"></File>
  544. <File RelativePath="..\dtool\src\cppparser\cppParser.cxx"></File>
  545. <File RelativePath="..\dtool\src\cppparser\cppReferenceType.h"></File>
  546. <File RelativePath="..\dtool\src\cppparser\cppPointerType.h"></File>
  547. <File RelativePath="..\dtool\src\cppparser\cppConstType.h"></File>
  548. <File RelativePath="..\dtool\src\cppparser\cppTypeDeclaration.h"></File>
  549. <File RelativePath="..\dtool\src\cppparser\cppPreprocessor.h"></File>
  550. <File RelativePath="..\dtool\src\cppparser\cppExpression.h"></File>
  551. <File RelativePath="..\dtool\src\cppparser\cppType.cxx"></File>
  552. <File RelativePath="..\dtool\src\cppparser\cppNameComponent.cxx"></File>
  553. <File RelativePath="..\dtool\src\cppparser\cppScope.h"></File>
  554. <File RelativePath="..\dtool\src\cppparser\cppMakeSeq.cxx"></File>
  555. <File RelativePath="..\dtool\src\cppparser\cppEnumType.h"></File>
  556. <File RelativePath="..\dtool\src\cppparser\cppTemplateParameterList.h"></File>
  557. <File RelativePath="..\dtool\src\cppparser\cppGlobals.cxx"></File>
  558. <File RelativePath="..\dtool\src\cppparser\cppArrayType.h"></File>
  559. <File RelativePath="..\dtool\src\cppparser\cppTypeDeclaration.cxx"></File>
  560. <File RelativePath="..\dtool\src\cppparser\cppUsing.cxx"></File>
  561. <File RelativePath="..\dtool\src\cppparser\cppTypeProxy.h"></File>
  562. </Filter>
  563. <Filter Name="interrogatedb">
  564. <File RelativePath="..\dtool\src\interrogatedb\interrogateComponent.I"></File>
  565. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunctionWrapper.h"></File>
  566. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunction.cxx"></File>
  567. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunction.I"></File>
  568. <File RelativePath="..\dtool\src\interrogatedb\config_interrogatedb.h"></File>
  569. <File RelativePath="..\dtool\src\interrogatedb\indexRemapper.cxx"></File>
  570. <File RelativePath="..\dtool\src\interrogatedb\interrogateType.cxx"></File>
  571. <File RelativePath="..\dtool\src\interrogatedb\interrogateManifest.I"></File>
  572. <File RelativePath="..\dtool\src\interrogatedb\interrogatedb_composite2.cxx"></File>
  573. <File RelativePath="..\dtool\src\interrogatedb\interrogateManifest.cxx"></File>
  574. <File RelativePath="..\dtool\src\interrogatedb\interrogateComponent.h"></File>
  575. <File RelativePath="..\dtool\src\interrogatedb\interrogateMakeSeq.h"></File>
  576. <File RelativePath="..\dtool\src\interrogatedb\config_interrogatedb.cxx"></File>
  577. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunctionWrapper.cxx"></File>
  578. <File RelativePath="..\dtool\src\interrogatedb\interrogate_interface.h"></File>
  579. <File RelativePath="..\dtool\src\interrogatedb\interrogateElement.I"></File>
  580. <File RelativePath="..\dtool\src\interrogatedb\interrogateMakeSeq.I"></File>
  581. <File RelativePath="..\dtool\src\interrogatedb\interrogateType.I"></File>
  582. <File RelativePath="..\dtool\src\interrogatedb\interrogate_datafile.cxx"></File>
  583. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunctionWrapper.I"></File>
  584. <File RelativePath="..\dtool\src\interrogatedb\interrogateDatabase.I"></File>
  585. <File RelativePath="..\dtool\src\interrogatedb\vector_int.cxx"></File>
  586. <File RelativePath="..\dtool\src\interrogatedb\interrogateManifest.h"></File>
  587. <File RelativePath="..\dtool\src\interrogatedb\interrogateElement.h"></File>
  588. <File RelativePath="..\dtool\src\interrogatedb\interrogateType.h"></File>
  589. <File RelativePath="..\dtool\src\interrogatedb\py_panda.h"></File>
  590. <File RelativePath="..\dtool\src\interrogatedb\indexRemapper.h"></File>
  591. <File RelativePath="..\dtool\src\interrogatedb\interrogate_request.h"></File>
  592. <File RelativePath="..\dtool\src\interrogatedb\interrogateDatabase.cxx"></File>
  593. <File RelativePath="..\dtool\src\interrogatedb\interrogate_request.cxx"></File>
  594. <File RelativePath="..\dtool\src\interrogatedb\vector_int.h"></File>
  595. <File RelativePath="..\dtool\src\interrogatedb\interrogateDatabase.h"></File>
  596. <File RelativePath="..\dtool\src\interrogatedb\interrogatedb_composite.cxx"></File>
  597. <File RelativePath="..\dtool\src\interrogatedb\interrogateComponent.cxx"></File>
  598. <File RelativePath="..\dtool\src\interrogatedb\interrogate_interface.cxx"></File>
  599. <File RelativePath="..\dtool\src\interrogatedb\interrogateElement.cxx"></File>
  600. <File RelativePath="..\dtool\src\interrogatedb\interrogate_datafile.I"></File>
  601. <File RelativePath="..\dtool\src\interrogatedb\dtool_super_base.cxx"></File>
  602. <File RelativePath="..\dtool\src\interrogatedb\py_panda.cxx"></File>
  603. <File RelativePath="..\dtool\src\interrogatedb\interrogateMakeSeq.cxx"></File>
  604. <File RelativePath="..\dtool\src\interrogatedb\interrogateFunction.h"></File>
  605. <File RelativePath="..\dtool\src\interrogatedb\interrogate_datafile.h"></File>
  606. <File RelativePath="..\dtool\src\interrogatedb\interrogatedb_composite1.cxx"></File>
  607. </Filter>
  608. <Filter Name="prckeys">
  609. <File RelativePath="..\dtool\src\prckeys\signPrcFile_src.cxx"></File>
  610. <File RelativePath="..\dtool\src\prckeys\makePrcKey.cxx"></File>
  611. </Filter>
  612. </Filter>
  613. <Filter Name="panda">
  614. <Filter Name="char">
  615. <File RelativePath="..\panda\src\char\characterVertexSlider.h"></File>
  616. <File RelativePath="..\panda\src\char\characterJointBundle.cxx"></File>
  617. <File RelativePath="..\panda\src\char\character.cxx"></File>
  618. <File RelativePath="..\panda\src\char\jointVertexTransform.h"></File>
  619. <File RelativePath="..\panda\src\char\characterVertexSlider.cxx"></File>
  620. <File RelativePath="..\panda\src\char\characterJoint.cxx"></File>
  621. <File RelativePath="..\panda\src\char\jointVertexTransform.I"></File>
  622. <File RelativePath="..\panda\src\char\config_char.cxx"></File>
  623. <File RelativePath="..\panda\src\char\char_composite1.cxx"></File>
  624. <File RelativePath="..\panda\src\char\characterJointBundle.h"></File>
  625. <File RelativePath="..\panda\src\char\characterSlider.cxx"></File>
  626. <File RelativePath="..\panda\src\char\character.I"></File>
  627. <File RelativePath="..\panda\src\char\jointVertexTransform.cxx"></File>
  628. <File RelativePath="..\panda\src\char\char_composite2.cxx"></File>
  629. <File RelativePath="..\panda\src\char\characterJointEffect.cxx"></File>
  630. <File RelativePath="..\panda\src\char\characterJoint.h"></File>
  631. <File RelativePath="..\panda\src\char\characterVertexSlider.I"></File>
  632. <File RelativePath="..\panda\src\char\config_char.h"></File>
  633. <File RelativePath="..\panda\src\char\character.h"></File>
  634. <File RelativePath="..\panda\src\char\characterJointEffect.h"></File>
  635. <File RelativePath="..\panda\src\char\char_composite.cxx"></File>
  636. <File RelativePath="..\panda\src\char\characterSlider.h"></File>
  637. <File RelativePath="..\panda\src\char\characterJointEffect.I"></File>
  638. <File RelativePath="..\panda\src\char\characterJoint.I"></File>
  639. <File RelativePath="..\panda\src\char\characterJointBundle.I"></File>
  640. </Filter>
  641. <Filter Name="vision">
  642. <File RelativePath="..\panda\src\vision\vision_composite1.cxx"></File>
  643. <File RelativePath="..\panda\src\vision\config_vision.h"></File>
  644. <File RelativePath="..\panda\src\vision\webcamVideo.I"></File>
  645. <File RelativePath="..\panda\src\vision\openCVTexture.cxx"></File>
  646. <File RelativePath="..\panda\src\vision\config_vision.cxx"></File>
  647. <File RelativePath="..\panda\src\vision\arToolKit.h"></File>
  648. <File RelativePath="..\panda\src\vision\webcamVideoDS.cxx"></File>
  649. <File RelativePath="..\panda\src\vision\arToolKit.I"></File>
  650. <File RelativePath="..\panda\src\vision\openCVTexture.I"></File>
  651. <File RelativePath="..\panda\src\vision\webcamVideo.h"></File>
  652. <File RelativePath="..\panda\src\vision\openCVTexture.h"></File>
  653. <File RelativePath="..\panda\src\vision\webcamVideo.cxx"></File>
  654. <File RelativePath="..\panda\src\vision\arToolKit.cxx"></File>
  655. </Filter>
  656. <Filter Name="gobj">
  657. <File RelativePath="..\panda\src\gobj\geomEnums.cxx"></File>
  658. <File RelativePath="..\panda\src\gobj\geomContext.h"></File>
  659. <File RelativePath="..\panda\src\gobj\geomVertexData.h"></File>
  660. <File RelativePath="..\panda\src\gobj\shaderContext.h"></File>
  661. <File RelativePath="..\panda\src\gobj\transformBlend.I"></File>
  662. <File RelativePath="..\panda\src\gobj\sliderTable.I"></File>
  663. <File RelativePath="..\panda\src\gobj\gobj_composite1.cxx"></File>
  664. <File RelativePath="..\panda\src\gobj\geomLinestrips.h"></File>
  665. <File RelativePath="..\panda\src\gobj\animateVerticesRequest.h"></File>
  666. <File RelativePath="..\panda\src\gobj\preparedGraphicsObjects.h"></File>
  667. <File RelativePath="..\panda\src\gobj\geomVertexReader.cxx"></File>
  668. <File RelativePath="..\panda\src\gobj\transformTable.cxx"></File>
  669. <File RelativePath="..\panda\src\gobj\transformBlendTable.h"></File>
  670. <File RelativePath="..\panda\src\gobj\geomVertexAnimationSpec.I"></File>
  671. <File RelativePath="..\panda\src\gobj\bufferContext.I"></File>
  672. <File RelativePath="..\panda\src\gobj\gobj_composite.cxx"></File>
  673. <File RelativePath="..\panda\src\gobj\materialPool.h"></File>
  674. <File RelativePath="..\panda\src\gobj\orthographicLens.h"></File>
  675. <File RelativePath="..\panda\src\gobj\geomPrimitive.I"></File>
  676. <File RelativePath="..\panda\src\gobj\geomPoints.h"></File>
  677. <File RelativePath="..\panda\src\gobj\geomVertexRewriter.I"></File>
  678. <File RelativePath="..\panda\src\gobj\geomCacheManager.h"></File>
  679. <File RelativePath="..\panda\src\gobj\lens.I"></File>
  680. <File RelativePath="..\panda\src\gobj\geomPoints.cxx"></File>
  681. <File RelativePath="..\panda\src\gobj\geomVertexFormat.I"></File>
  682. <File RelativePath="..\panda\src\gobj\shaderContext.I"></File>
  683. <File RelativePath="..\panda\src\gobj\lens.cxx"></File>
  684. <File RelativePath="..\panda\src\gobj\vertexDataBlock.h"></File>
  685. <File RelativePath="..\panda\src\gobj\geomCacheEntry.h"></File>
  686. <File RelativePath="..\panda\src\gobj\transformTable.I"></File>
  687. <File RelativePath="..\panda\src\gobj\preparedGraphicsObjects.cxx"></File>
  688. <File RelativePath="..\panda\src\gobj\adaptiveLru.cxx"></File>
  689. <File RelativePath="..\panda\src\gobj\geomTriangles.cxx"></File>
  690. <File RelativePath="..\panda\src\gobj\vertexDataBuffer.cxx"></File>
  691. <File RelativePath="..\panda\src\gobj\geom.I"></File>
  692. <File RelativePath="..\panda\src\gobj\vertexDataPage.h"></File>
  693. <File RelativePath="..\panda\src\gobj\materialPool.I"></File>
  694. <File RelativePath="..\panda\src\gobj\geomCacheEntry.cxx"></File>
  695. <File RelativePath="..\panda\src\gobj\vertexSlider.cxx"></File>
  696. <File RelativePath="..\panda\src\gobj\geomLinestrips.cxx"></File>
  697. <File RelativePath="..\panda\src\gobj\queryContext.I"></File>
  698. <File RelativePath="..\panda\src\gobj\geomVertexWriter.h"></File>
  699. <File RelativePath="..\panda\src\gobj\indexBufferContext.h"></File>
  700. <File RelativePath="..\panda\src\gobj\geomLines.cxx"></File>
  701. <File RelativePath="..\panda\src\gobj\savedContext.cxx"></File>
  702. <File RelativePath="..\panda\src\gobj\perspectiveLens.I"></File>
  703. <File RelativePath="..\panda\src\gobj\transformBlendTable.I"></File>
  704. <File RelativePath="..\panda\src\gobj\geomVertexArrayData.I"></File>
  705. <File RelativePath="..\panda\src\gobj\geomTriangles.h"></File>
  706. <File RelativePath="..\panda\src\gobj\geomVertexAnimationSpec.cxx"></File>
  707. <File RelativePath="..\panda\src\gobj\orthographicLens.I"></File>
  708. <File RelativePath="..\panda\src\gobj\bufferResidencyTracker.cxx"></File>
  709. <File RelativePath="..\panda\src\gobj\vertexDataBook.h"></File>
  710. <File RelativePath="..\panda\src\gobj\vertexDataSaveFile.cxx"></File>
  711. <File RelativePath="..\panda\src\gobj\texturePeeker.h"></File>
  712. <File RelativePath="..\panda\src\gobj\queryContext.cxx"></File>
  713. <File RelativePath="..\panda\src\gobj\geomVertexData.I"></File>
  714. <File RelativePath="..\panda\src\gobj\geomMunger.I"></File>
  715. <File RelativePath="..\panda\src\gobj\transformBlend.cxx"></File>
  716. <File RelativePath="..\panda\src\gobj\textureContext.cxx"></File>
  717. <File RelativePath="..\panda\src\gobj\internalName.I"></File>
  718. <File RelativePath="..\panda\src\gobj\sliderTable.h"></File>
  719. <File RelativePath="..\panda\src\gobj\vertexBufferContext.h"></File>
  720. <File RelativePath="..\panda\src\gobj\geomEnums.h"></File>
  721. <File RelativePath="..\panda\src\gobj\shader.I"></File>
  722. <File RelativePath="..\panda\src\gobj\geomContext.I"></File>
  723. <File RelativePath="..\panda\src\gobj\transformTable.h"></File>
  724. <File RelativePath="..\panda\src\gobj\geomTristrips.cxx"></File>
  725. <File RelativePath="..\panda\src\gobj\texture.I"></File>
  726. <File RelativePath="..\panda\src\gobj\config_gobj.h"></File>
  727. <File RelativePath="..\panda\src\gobj\texturePoolFilter.I"></File>
  728. <File RelativePath="..\panda\src\gobj\bufferContextChain.cxx"></File>
  729. <File RelativePath="..\panda\src\gobj\textureReloadRequest.h"></File>
  730. <File RelativePath="..\panda\src\gobj\geomVertexWriter.cxx"></File>
  731. <File RelativePath="..\panda\src\gobj\texturePoolFilter.h"></File>
  732. <File RelativePath="..\panda\src\gobj\lens.h"></File>
  733. <File RelativePath="..\panda\src\gobj\matrixLens.h"></File>
  734. <File RelativePath="..\panda\src\gobj\adaptiveLru.h"></File>
  735. <File RelativePath="..\panda\src\gobj\occlusionQueryContext.cxx"></File>
  736. <File RelativePath="..\panda\src\gobj\textureStage.cxx"></File>
  737. <File RelativePath="..\panda\src\gobj\vertexTransform.I"></File>
  738. <File RelativePath="..\panda\src\gobj\vertexTransform.h"></File>
  739. <File RelativePath="..\panda\src\gobj\occlusionQueryContext.h"></File>
  740. <File RelativePath="..\panda\src\gobj\geomCacheManager.cxx"></File>
  741. <File RelativePath="..\panda\src\gobj\vertexDataPage.I"></File>
  742. <File RelativePath="..\panda\src\gobj\geomVertexRewriter.h"></File>
  743. <File RelativePath="..\panda\src\gobj\geomTrifans.h"></File>
  744. <File RelativePath="..\panda\src\gobj\vertexDataBuffer.I"></File>
  745. <File RelativePath="..\panda\src\gobj\vertexDataPage.cxx"></File>
  746. <File RelativePath="..\panda\src\gobj\bufferResidencyTracker.h"></File>
  747. <File RelativePath="..\panda\src\gobj\geomVertexReader.I"></File>
  748. <File RelativePath="..\panda\src\gobj\vertexSlider.h"></File>
  749. <File RelativePath="..\panda\src\gobj\textureCollection.cxx"></File>
  750. <File RelativePath="..\panda\src\gobj\orthographicLens.cxx"></File>
  751. <File RelativePath="..\panda\src\gobj\queryContext.h"></File>
  752. <File RelativePath="..\panda\src\gobj\shader.h"></File>
  753. <File RelativePath="..\panda\src\gobj\textureCollection.h"></File>
  754. <File RelativePath="..\panda\src\gobj\geomVertexColumn.h"></File>
  755. <File RelativePath="..\panda\src\gobj\geomVertexAnimationSpec.h"></File>
  756. <File RelativePath="..\panda\src\gobj\textureStage.I"></File>
  757. <File RelativePath="..\panda\src\gobj\simpleLru.h"></File>
  758. <File RelativePath="..\panda\src\gobj\material.cxx"></File>
  759. <File RelativePath="..\panda\src\gobj\geomVertexWriter.I"></File>
  760. <File RelativePath="..\panda\src\gobj\bufferContext.cxx"></File>
  761. <File RelativePath="..\panda\src\gobj\textureContext.I"></File>
  762. <File RelativePath="..\panda\src\gobj\internalName.h"></File>
  763. <File RelativePath="..\panda\src\gobj\test_gobj.cxx"></File>
  764. <File RelativePath="..\panda\src\gobj\geomTristrips.h"></File>
  765. <File RelativePath="..\panda\src\gobj\textureContext.h"></File>
  766. <File RelativePath="..\panda\src\gobj\config_gobj.cxx"></File>
  767. <File RelativePath="..\panda\src\gobj\geomVertexArrayData.cxx"></File>
  768. <File RelativePath="..\panda\src\gobj\shaderContext.cxx"></File>
  769. <File RelativePath="..\panda\src\gobj\animateVerticesRequest.cxx"></File>
  770. <File RelativePath="..\panda\src\gobj\texturePeeker.cxx"></File>
  771. <File RelativePath="..\panda\src\gobj\geomMunger.h"></File>
  772. <File RelativePath="..\panda\src\gobj\vertexDataBook.cxx"></File>
  773. <File RelativePath="..\panda\src\gobj\simpleAllocator.h"></File>
  774. <File RelativePath="..\panda\src\gobj\simpleLru.I"></File>
  775. <File RelativePath="..\panda\src\gobj\texturePool.cxx"></File>
  776. <File RelativePath="..\panda\src\gobj\geomVertexArrayFormat.cxx"></File>
  777. <File RelativePath="..\panda\src\gobj\geomVertexColumn.cxx"></File>
  778. <File RelativePath="..\panda\src\gobj\userVertexSlider.I"></File>
  779. <File RelativePath="..\panda\src\gobj\geomPrimitive.cxx"></File>
  780. <File RelativePath="..\panda\src\gobj\indexBufferContext.cxx"></File>
  781. <File RelativePath="..\panda\src\gobj\material.I"></File>
  782. <File RelativePath="..\panda\src\gobj\bufferContextChain.I"></File>
  783. <File RelativePath="..\panda\src\gobj\perspectiveLens.h"></File>
  784. <File RelativePath="..\panda\src\gobj\materialPool.cxx"></File>
  785. <File RelativePath="..\panda\src\gobj\vertexSlider.I"></File>
  786. <File RelativePath="..\panda\src\gobj\videoTexture.h"></File>
  787. <File RelativePath="..\panda\src\gobj\vertexBufferContext.cxx"></File>
  788. <File RelativePath="..\panda\src\gobj\simpleLru.cxx"></File>
  789. <File RelativePath="..\panda\src\gobj\vertexDataSaveFile.I"></File>
  790. <File RelativePath="..\panda\src\gobj\geomVertexArrayFormat.h"></File>
  791. <File RelativePath="..\panda\src\gobj\geom.h"></File>
  792. <File RelativePath="..\panda\src\gobj\bufferContext.h"></File>
  793. <File RelativePath="..\panda\src\gobj\internalName.cxx"></File>
  794. <File RelativePath="..\panda\src\gobj\geomCacheManager.I"></File>
  795. <File RelativePath="..\panda\src\gobj\bufferResidencyTracker.I"></File>
  796. <File RelativePath="..\panda\src\gobj\vertexBufferContext.I"></File>
  797. <File RelativePath="..\panda\src\gobj\geomTrifans.cxx"></File>
  798. <File RelativePath="..\panda\src\gobj\geomVertexReader.h"></File>
  799. <File RelativePath="..\panda\src\gobj\geomContext.cxx"></File>
  800. <File RelativePath="..\panda\src\gobj\gobj_composite2.cxx"></File>
  801. <File RelativePath="..\panda\src\gobj\texturePool.I"></File>
  802. <File RelativePath="..\panda\src\gobj\vertexDataSaveFile.h"></File>
  803. <File RelativePath="..\panda\src\gobj\sliderTable.cxx"></File>
  804. <File RelativePath="..\panda\src\gobj\occlusionQueryContext.I"></File>
  805. <File RelativePath="..\panda\src\gobj\userVertexSlider.cxx"></File>
  806. <File RelativePath="..\panda\src\gobj\geomMunger.cxx"></File>
  807. <File RelativePath="..\panda\src\gobj\texture.cxx"></File>
  808. <File RelativePath="..\panda\src\gobj\savedContext.I"></File>
  809. <File RelativePath="..\panda\src\gobj\textureReloadRequest.cxx"></File>
  810. <File RelativePath="..\panda\src\gobj\geomVertexArrayFormat.I"></File>
  811. <File RelativePath="..\panda\src\gobj\texture.h"></File>
  812. <File RelativePath="..\panda\src\gobj\geomPrimitive.h"></File>
  813. <File RelativePath="..\panda\src\gobj\geomVertexFormat.cxx"></File>
  814. <File RelativePath="..\panda\src\gobj\simpleAllocator.cxx"></File>
  815. <File RelativePath="..\panda\src\gobj\bufferContextChain.h"></File>
  816. <File RelativePath="..\panda\src\gobj\texturePoolFilter.cxx"></File>
  817. <File RelativePath="..\panda\src\gobj\indexBufferContext.I"></File>
  818. <File RelativePath="..\panda\src\gobj\textureReloadRequest.I"></File>
  819. <File RelativePath="..\panda\src\gobj\geomVertexColumn.I"></File>
  820. <File RelativePath="..\panda\src\gobj\textureCollection.I"></File>
  821. <File RelativePath="..\panda\src\gobj\userVertexTransform.I"></File>
  822. <File RelativePath="..\panda\src\gobj\geomCacheEntry.I"></File>
  823. <File RelativePath="..\panda\src\gobj\texturePeeker.I"></File>
  824. <File RelativePath="..\panda\src\gobj\geomVertexArrayData.h"></File>
  825. <File RelativePath="..\panda\src\gobj\geomLines.h"></File>
  826. <File RelativePath="..\panda\src\gobj\animateVerticesRequest.I"></File>
  827. <File RelativePath="..\panda\src\gobj\savedContext.h"></File>
  828. <File RelativePath="..\panda\src\gobj\perspectiveLens.cxx"></File>
  829. <File RelativePath="..\panda\src\gobj\userVertexTransform.h"></File>
  830. <File RelativePath="..\panda\src\gobj\preparedGraphicsObjects.I"></File>
  831. <File RelativePath="..\panda\src\gobj\transformBlendTable.cxx"></File>
  832. <File RelativePath="..\panda\src\gobj\geom.cxx"></File>
  833. <File RelativePath="..\panda\src\gobj\vertexTransform.cxx"></File>
  834. <File RelativePath="..\panda\src\gobj\matrixLens.I"></File>
  835. <File RelativePath="..\panda\src\gobj\vertexDataBuffer.h"></File>
  836. <File RelativePath="..\panda\src\gobj\shader.cxx"></File>
  837. <File RelativePath="..\panda\src\gobj\textureStage.h"></File>
  838. <File RelativePath="..\panda\src\gobj\userVertexTransform.cxx"></File>
  839. <File RelativePath="..\panda\src\gobj\texturePool.h"></File>
  840. <File RelativePath="..\panda\src\gobj\vertexDataBlock.cxx"></File>
  841. <File RelativePath="..\panda\src\gobj\geomVertexRewriter.cxx"></File>
  842. <File RelativePath="..\panda\src\gobj\material.h"></File>
  843. <File RelativePath="..\panda\src\gobj\simpleAllocator.I"></File>
  844. <File RelativePath="..\panda\src\gobj\geomVertexData.cxx"></File>
  845. <File RelativePath="..\panda\src\gobj\geomVertexFormat.h"></File>
  846. <File RelativePath="..\panda\src\gobj\videoTexture.I"></File>
  847. <File RelativePath="..\panda\src\gobj\transformBlend.h"></File>
  848. <File RelativePath="..\panda\src\gobj\vertexDataBook.I"></File>
  849. <File RelativePath="..\panda\src\gobj\userVertexSlider.h"></File>
  850. <File RelativePath="..\panda\src\gobj\videoTexture.cxx"></File>
  851. <File RelativePath="..\panda\src\gobj\vertexDataBlock.I"></File>
  852. <File RelativePath="..\panda\src\gobj\adaptiveLru.I"></File>
  853. <File RelativePath="..\panda\src\gobj\matrixLens.cxx"></File>
  854. </Filter>
  855. <Filter Name="parametrics">
  856. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceResult.cxx"></File>
  857. <File RelativePath="..\panda\src\parametrics\nurbsCurveResult.h"></File>
  858. <File RelativePath="..\panda\src\parametrics\config_parametrics.h"></File>
  859. <File RelativePath="..\panda\src\parametrics\nurbsVertex.h"></File>
  860. <File RelativePath="..\panda\src\parametrics\sheetNode.h"></File>
  861. <File RelativePath="..\panda\src\parametrics\nurbsVertex.cxx"></File>
  862. <File RelativePath="..\panda\src\parametrics\cubicCurveseg.h"></File>
  863. <File RelativePath="..\panda\src\parametrics\nurbsCurveEvaluator.h"></File>
  864. <File RelativePath="..\panda\src\parametrics\parametrics_composite2.cxx"></File>
  865. <File RelativePath="..\panda\src\parametrics\parametrics_composite.cxx"></File>
  866. <File RelativePath="..\panda\src\parametrics\hermiteCurve.cxx"></File>
  867. <File RelativePath="..\panda\src\parametrics\cubicCurveseg.cxx"></File>
  868. <File RelativePath="..\panda\src\parametrics\sheetNode.I"></File>
  869. <File RelativePath="..\panda\src\parametrics\ropeNode.I"></File>
  870. <File RelativePath="..\panda\src\parametrics\nurbsCurve.h"></File>
  871. <File RelativePath="..\panda\src\parametrics\nurbsCurveInterface.cxx"></File>
  872. <File RelativePath="..\panda\src\parametrics\curveFitter.h"></File>
  873. <File RelativePath="..\panda\src\parametrics\nurbsCurveResult.I"></File>
  874. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceEvaluator.cxx"></File>
  875. <File RelativePath="..\panda\src\parametrics\nurbsCurveInterface.h"></File>
  876. <File RelativePath="..\panda\src\parametrics\test_parametrics.cxx"></File>
  877. <File RelativePath="..\panda\src\parametrics\ropeNode.cxx"></File>
  878. <File RelativePath="..\panda\src\parametrics\ropeNode.h"></File>
  879. <File RelativePath="..\panda\src\parametrics\parametricCurveCollection.cxx"></File>
  880. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceResult.I"></File>
  881. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceEvaluator.I"></File>
  882. <File RelativePath="..\panda\src\parametrics\nurbsCurveResult.cxx"></File>
  883. <File RelativePath="..\panda\src\parametrics\sheetNode.cxx"></File>
  884. <File RelativePath="..\panda\src\parametrics\parametricCurve.cxx"></File>
  885. <File RelativePath="..\panda\src\parametrics\nurbsCurveInterface.I"></File>
  886. <File RelativePath="..\panda\src\parametrics\nurbsCurve.I"></File>
  887. <File RelativePath="..\panda\src\parametrics\parametrics_composite1.cxx"></File>
  888. <File RelativePath="..\panda\src\parametrics\nurbsCurveEvaluator.I"></File>
  889. <File RelativePath="..\panda\src\parametrics\nurbsVertex.I"></File>
  890. <File RelativePath="..\panda\src\parametrics\nurbsCurveEvaluator.cxx"></File>
  891. <File RelativePath="..\panda\src\parametrics\parametricCurveCollection.h"></File>
  892. <File RelativePath="..\panda\src\parametrics\piecewiseCurve.h"></File>
  893. <File RelativePath="..\panda\src\parametrics\hermiteCurve.h"></File>
  894. <File RelativePath="..\panda\src\parametrics\parametricCurveCollection.I"></File>
  895. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceEvaluator.h"></File>
  896. <File RelativePath="..\panda\src\parametrics\nurbsCurve.cxx"></File>
  897. <File RelativePath="..\panda\src\parametrics\piecewiseCurve.cxx"></File>
  898. <File RelativePath="..\panda\src\parametrics\nurbsBasisVector.I"></File>
  899. <File RelativePath="..\panda\src\parametrics\nurbsBasisVector.cxx"></File>
  900. <File RelativePath="..\panda\src\parametrics\parametricCurve.h"></File>
  901. <File RelativePath="..\panda\src\parametrics\nurbsBasisVector.h"></File>
  902. <File RelativePath="..\panda\src\parametrics\config_parametrics.cxx"></File>
  903. <File RelativePath="..\panda\src\parametrics\curveFitter.I"></File>
  904. <File RelativePath="..\panda\src\parametrics\nurbsSurfaceResult.h"></File>
  905. <File RelativePath="..\panda\src\parametrics\curveFitter.cxx"></File>
  906. </Filter>
  907. <Filter Name="linmath">
  908. <File RelativePath="..\panda\src\linmath\vector_TexCoordf.h"></File>
  909. <File RelativePath="..\panda\src\linmath\lvec3_ops_src.I"></File>
  910. <File RelativePath="..\panda\src\linmath\lvector4_src.h"></File>
  911. <File RelativePath="..\panda\src\linmath\vector_LVecBase3f.h"></File>
  912. <File RelativePath="..\panda\src\linmath\lorientation.h"></File>
  913. <File RelativePath="..\panda\src\linmath\linmath_composite.cxx"></File>
  914. <File RelativePath="..\panda\src\linmath\compose_matrix.h"></File>
  915. <File RelativePath="..\panda\src\linmath\lpoint3.cxx"></File>
  916. <File RelativePath="..\panda\src\linmath\lvector2_src.cxx"></File>
  917. <File RelativePath="..\panda\src\linmath\lpoint2.h"></File>
  918. <File RelativePath="..\panda\src\linmath\lvecBase4_src.h"></File>
  919. <File RelativePath="..\panda\src\linmath\vector_LPoint2f.h"></File>
  920. <File RelativePath="..\panda\src\linmath\coordinateSystem.cxx"></File>
  921. <File RelativePath="..\panda\src\linmath\deg_2_rad.h"></File>
  922. <File RelativePath="..\panda\src\linmath\lorientation_src.cxx"></File>
  923. <File RelativePath="..\panda\src\linmath\lorientation_src.I"></File>
  924. <File RelativePath="..\panda\src\linmath\lvecBase2_src.h"></File>
  925. <File RelativePath="..\panda\src\linmath\mathNumbers.cxx"></File>
  926. <File RelativePath="..\panda\src\linmath\lquaternion_src.h"></File>
  927. <File RelativePath="..\panda\src\linmath\lvec2_ops_src.I"></File>
  928. <File RelativePath="..\panda\src\linmath\lrotation.h"></File>
  929. <File RelativePath="..\panda\src\linmath\lpoint2.cxx"></File>
  930. <File RelativePath="..\panda\src\linmath\cast_to_float.h"></File>
  931. <File RelativePath="..\panda\src\linmath\lquaternion_src.I"></File>
  932. <File RelativePath="..\panda\src\linmath\lvecBase3_src.h"></File>
  933. <File RelativePath="..\panda\src\linmath\lpoint2_src.I"></File>
  934. <File RelativePath="..\panda\src\linmath\lmatrix4_src.cxx"></File>
  935. <File RelativePath="..\panda\src\linmath\compose_matrix_src.I"></File>
  936. <File RelativePath="..\panda\src\linmath\lvec4_ops.h"></File>
  937. <File RelativePath="..\panda\src\linmath\lvector3_src.I"></File>
  938. <File RelativePath="..\panda\src\linmath\dblnames.h"></File>
  939. <File RelativePath="..\panda\src\linmath\lrotation_src.h"></File>
  940. <File RelativePath="..\panda\src\linmath\lvec2_ops.h"></File>
  941. <File RelativePath="..\panda\src\linmath\lrotation.cxx"></File>
  942. <File RelativePath="..\panda\src\linmath\lvector3.cxx"></File>
  943. <File RelativePath="..\panda\src\linmath\lvector3_src.h"></File>
  944. <File RelativePath="..\panda\src\linmath\cast_to_double.I"></File>
  945. <File RelativePath="..\panda\src\linmath\lvector4.cxx"></File>
  946. <File RelativePath="..\panda\src\linmath\lcast_to_src.h"></File>
  947. <File RelativePath="..\panda\src\linmath\lvecBase2_src.I"></File>
  948. <File RelativePath="..\panda\src\linmath\lvector4_src.I"></File>
  949. <File RelativePath="..\panda\src\linmath\cast_to_double.h"></File>
  950. <File RelativePath="..\panda\src\linmath\lvecBase4.h"></File>
  951. <File RelativePath="..\panda\src\linmath\luse.h"></File>
  952. <File RelativePath="..\panda\src\linmath\lvec2_ops_src.h"></File>
  953. <File RelativePath="..\panda\src\linmath\compose_matrix.cxx"></File>
  954. <File RelativePath="..\panda\src\linmath\lvecBase3_src.cxx"></File>
  955. <File RelativePath="..\panda\src\linmath\lvecBase2.cxx"></File>
  956. <File RelativePath="..\panda\src\linmath\lpoint3_src.cxx"></File>
  957. <File RelativePath="..\panda\src\linmath\lvector2_src.h"></File>
  958. <File RelativePath="..\panda\src\linmath\lrotation_src.cxx"></File>
  959. <File RelativePath="..\panda\src\linmath\lmatrix.h"></File>
  960. <File RelativePath="..\panda\src\linmath\lmatrix4_src.I"></File>
  961. <File RelativePath="..\panda\src\linmath\lmatrix3_src.I"></File>
  962. <File RelativePath="..\panda\src\linmath\compose_matrix_src.h"></File>
  963. <File RelativePath="..\panda\src\linmath\lmat_ops.h"></File>
  964. <File RelativePath="..\panda\src\linmath\config_linmath.h"></File>
  965. <File RelativePath="..\panda\src\linmath\luse.I"></File>
  966. <File RelativePath="..\panda\src\linmath\lvecBase3_src.I"></File>
  967. <File RelativePath="..\panda\src\linmath\lorientation_src.h"></File>
  968. <File RelativePath="..\panda\src\linmath\lquaternion_src.cxx"></File>
  969. <File RelativePath="..\panda\src\linmath\mathNumbers.h"></File>
  970. <File RelativePath="..\panda\src\linmath\lpoint3_src.I"></File>
  971. <File RelativePath="..\panda\src\linmath\vector_Normalf.h"></File>
  972. <File RelativePath="..\panda\src\linmath\lvecBase2.h"></File>
  973. <File RelativePath="..\panda\src\linmath\lvector3_src.cxx"></File>
  974. <File RelativePath="..\panda\src\linmath\lcast_to_src.I"></File>
  975. <File RelativePath="..\panda\src\linmath\lpoint4_src.h"></File>
  976. <File RelativePath="..\panda\src\linmath\cast_to_float.I"></File>
  977. <File RelativePath="..\panda\src\linmath\lpoint2_src.cxx"></File>
  978. <File RelativePath="..\panda\src\linmath\lcast_to.h"></File>
  979. <File RelativePath="..\panda\src\linmath\linmath_composite1.cxx"></File>
  980. <File RelativePath="..\panda\src\linmath\lmatrix3_src.cxx"></File>
  981. <File RelativePath="..\panda\src\linmath\flt2dblnames.h"></File>
  982. <File RelativePath="..\panda\src\linmath\lmatrix3_src.h"></File>
  983. <File RelativePath="..\panda\src\linmath\fltnames.h"></File>
  984. <File RelativePath="..\panda\src\linmath\vector_Colorf.h"></File>
  985. <File RelativePath="..\panda\src\linmath\lmatrix4_src.h"></File>
  986. <File RelativePath="..\panda\src\linmath\lpoint2_src.h"></File>
  987. <File RelativePath="..\panda\src\linmath\lquaternion.h"></File>
  988. <File RelativePath="..\panda\src\linmath\lrotation_src.I"></File>
  989. <File RelativePath="..\panda\src\linmath\lvec3_ops.h"></File>
  990. <File RelativePath="..\panda\src\linmath\lpoint4.cxx"></File>
  991. <File RelativePath="..\panda\src\linmath\lmat_ops_src.I"></File>
  992. <File RelativePath="..\panda\src\linmath\lpoint4.h"></File>
  993. <File RelativePath="..\panda\src\linmath\aa_luse.h"></File>
  994. <File RelativePath="..\panda\src\linmath\test_math.cxx"></File>
  995. <File RelativePath="..\panda\src\linmath\lvector2_src.I"></File>
  996. <File RelativePath="..\panda\src\linmath\lvec3_ops_src.h"></File>
  997. <File RelativePath="..\panda\src\linmath\lmatrix.cxx"></File>
  998. <File RelativePath="..\panda\src\linmath\lvecBase4_src.cxx"></File>
  999. <File RelativePath="..\panda\src\linmath\mathNumbers.I"></File>
  1000. <File RelativePath="..\panda\src\linmath\lvector4.h"></File>
  1001. <File RelativePath="..\panda\src\linmath\lvecBase3.h"></File>
  1002. <File RelativePath="..\panda\src\linmath\lquaternion.cxx"></File>
  1003. <File RelativePath="..\panda\src\linmath\dbl2fltnames.h"></File>
  1004. <File RelativePath="..\panda\src\linmath\compose_matrix_src.cxx"></File>
  1005. <File RelativePath="..\panda\src\linmath\vector_Vertexf.cxx"></File>
  1006. <File RelativePath="..\panda\src\linmath\config_linmath.cxx"></File>
  1007. <File RelativePath="..\panda\src\linmath\lvecBase2_src.cxx"></File>
  1008. <File RelativePath="..\panda\src\linmath\vector_Normalf.cxx"></File>
  1009. <File RelativePath="..\panda\src\linmath\lvec4_ops_src.I"></File>
  1010. <File RelativePath="..\panda\src\linmath\vector_Vertexf.h"></File>
  1011. <File RelativePath="..\panda\src\linmath\lvector4_src.cxx"></File>
  1012. <File RelativePath="..\panda\src\linmath\lmat_ops_src.h"></File>
  1013. <File RelativePath="..\panda\src\linmath\lvecBase3.cxx"></File>
  1014. <File RelativePath="..\panda\src\linmath\vector_LVecBase3f.cxx"></File>
  1015. <File RelativePath="..\panda\src\linmath\lpoint3_src.h"></File>
  1016. <File RelativePath="..\panda\src\linmath\lpoint4_src.I"></File>
  1017. <File RelativePath="..\panda\src\linmath\linmath_composite2.cxx"></File>
  1018. <File RelativePath="..\panda\src\linmath\lvector2.cxx"></File>
  1019. <File RelativePath="..\panda\src\linmath\coordinateSystem.h"></File>
  1020. <File RelativePath="..\panda\src\linmath\lpoint4_src.cxx"></File>
  1021. <File RelativePath="..\panda\src\linmath\lpoint3.h"></File>
  1022. <File RelativePath="..\panda\src\linmath\vector_Colorf.cxx"></File>
  1023. <File RelativePath="..\panda\src\linmath\lvecBase4_src.I"></File>
  1024. <File RelativePath="..\panda\src\linmath\lvecBase4.cxx"></File>
  1025. <File RelativePath="..\panda\src\linmath\lvector3.h"></File>
  1026. <File RelativePath="..\panda\src\linmath\lvec4_ops_src.h"></File>
  1027. <File RelativePath="..\panda\src\linmath\lorientation.cxx"></File>
  1028. <File RelativePath="..\panda\src\linmath\luse.cxx"></File>
  1029. <File RelativePath="..\panda\src\linmath\lvector2.h"></File>
  1030. <File RelativePath="..\panda\src\linmath\vector_LPoint2f.cxx"></File>
  1031. </Filter>
  1032. <Filter Name="collide">
  1033. <File RelativePath="..\panda\src\collide\collisionHandlerEvent.cxx"></File>
  1034. <File RelativePath="..\panda\src\collide\collisionHandlerFloor.I"></File>
  1035. <File RelativePath="..\panda\src\collide\collisionParabola.cxx"></File>
  1036. <File RelativePath="..\panda\src\collide\collisionHandlerFloor.cxx"></File>
  1037. <File RelativePath="..\panda\src\collide\collisionRay.h"></File>
  1038. <File RelativePath="..\panda\src\collide\collisionBox.I"></File>
  1039. <File RelativePath="..\panda\src\collide\collisionHandlerFluidPusher.cxx"></File>
  1040. <File RelativePath="..\panda\src\collide\collisionSphere.cxx"></File>
  1041. <File RelativePath="..\panda\src\collide\collisionHandler.cxx"></File>
  1042. <File RelativePath="..\panda\src\collide\collisionLevelState.cxx"></File>
  1043. <File RelativePath="..\panda\src\collide\collisionRecorder.h"></File>
  1044. <File RelativePath="..\panda\src\collide\collisionLine.I"></File>
  1045. <File RelativePath="..\panda\src\collide\collisionHandlerFluidPusher.h"></File>
  1046. <File RelativePath="..\panda\src\collide\config_collide.h"></File>
  1047. <File RelativePath="..\panda\src\collide\collisionTube.h"></File>
  1048. <File RelativePath="..\panda\src\collide\collisionSegment.cxx"></File>
  1049. <File RelativePath="..\panda\src\collide\collisionBox.h"></File>
  1050. <File RelativePath="..\panda\src\collide\collide_composite1.cxx"></File>
  1051. <File RelativePath="..\panda\src\collide\collisionSolid.I"></File>
  1052. <File RelativePath="..\panda\src\collide\collisionVisualizer.cxx"></File>
  1053. <File RelativePath="..\panda\src\collide\collisionInvSphere.h"></File>
  1054. <File RelativePath="..\panda\src\collide\collisionHandlerFluidPusher.I"></File>
  1055. <File RelativePath="..\panda\src\collide\collisionNode.h"></File>
  1056. <File RelativePath="..\panda\src\collide\collisionGeom.I"></File>
  1057. <File RelativePath="..\panda\src\collide\collisionSegment.I"></File>
  1058. <File RelativePath="..\panda\src\collide\collisionTube.cxx"></File>
  1059. <File RelativePath="..\panda\src\collide\collisionHandlerQueue.h"></File>
  1060. <File RelativePath="..\panda\src\collide\collisionParabola.I"></File>
  1061. <File RelativePath="..\panda\src\collide\collisionPlane.cxx"></File>
  1062. <File RelativePath="..\panda\src\collide\collisionHandlerEvent.h"></File>
  1063. <File RelativePath="..\panda\src\collide\collisionTraverser.cxx"></File>
  1064. <File RelativePath="..\panda\src\collide\collisionPlane.h"></File>
  1065. <File RelativePath="..\panda\src\collide\collisionDSSolid.I"></File>
  1066. <File RelativePath="..\panda\src\collide\collide_composite2.cxx"></File>
  1067. <File RelativePath="..\panda\src\collide\collisionHandlerGravity.h"></File>
  1068. <File RelativePath="..\panda\src\collide\collisionHandlerPusher.I"></File>
  1069. <File RelativePath="..\panda\src\collide\collisionInvSphere.I"></File>
  1070. <File RelativePath="..\panda\src\collide\collisionLevelState.I"></File>
  1071. <File RelativePath="..\panda\src\collide\collisionSolid.cxx"></File>
  1072. <File RelativePath="..\panda\src\collide\collisionLevelStateBase.cxx"></File>
  1073. <File RelativePath="..\panda\src\collide\collisionPolygon.cxx"></File>
  1074. <File RelativePath="..\panda\src\collide\collisionSphere.I"></File>
  1075. <File RelativePath="..\panda\src\collide\collisionVisualizer.h"></File>
  1076. <File RelativePath="..\panda\src\collide\collisionHandlerPhysical.cxx"></File>
  1077. <File RelativePath="..\panda\src\collide\collisionDSSolid.cxx"></File>
  1078. <File RelativePath="..\panda\src\collide\collisionDSSolid.h"></File>
  1079. <File RelativePath="..\panda\src\collide\collisionHandlerHighestEvent.h"></File>
  1080. <File RelativePath="..\panda\src\collide\collisionSphere.h"></File>
  1081. <File RelativePath="..\panda\src\collide\collisionSegment.h"></File>
  1082. <File RelativePath="..\panda\src\collide\collisionVisualizer.I"></File>
  1083. <File RelativePath="..\panda\src\collide\collisionParabola.h"></File>
  1084. <File RelativePath="..\panda\src\collide\collisionNode.I"></File>
  1085. <File RelativePath="..\panda\src\collide\collisionHandlerEvent.I"></File>
  1086. <File RelativePath="..\panda\src\collide\collisionHandler.I"></File>
  1087. <File RelativePath="..\panda\src\collide\collisionFloorMesh.h"></File>
  1088. <File RelativePath="..\panda\src\collide\collisionTraverser.h"></File>
  1089. <File RelativePath="..\panda\src\collide\collisionHandlerPusher.h"></File>
  1090. <File RelativePath="..\panda\src\collide\collisionInvSphere.cxx"></File>
  1091. <File RelativePath="..\panda\src\collide\collisionLine.cxx"></File>
  1092. <File RelativePath="..\panda\src\collide\collisionEntry.I"></File>
  1093. <File RelativePath="..\panda\src\collide\collisionTube.I"></File>
  1094. <File RelativePath="..\panda\src\collide\collisionSolid.h"></File>
  1095. <File RelativePath="..\panda\src\collide\collisionPlane.I"></File>
  1096. <File RelativePath="..\panda\src\collide\collisionHandlerGravity.cxx"></File>
  1097. <File RelativePath="..\panda\src\collide\collisionRecorder.cxx"></File>
  1098. <File RelativePath="..\panda\src\collide\collisionLevelStateBase.I"></File>
  1099. <File RelativePath="..\panda\src\collide\collisionGeom.h"></File>
  1100. <File RelativePath="..\panda\src\collide\collisionLevelStateBase.h"></File>
  1101. <File RelativePath="..\panda\src\collide\collide_composite.cxx"></File>
  1102. <File RelativePath="..\panda\src\collide\collisionLevelState.h"></File>
  1103. <File RelativePath="..\panda\src\collide\collisionEntry.h"></File>
  1104. <File RelativePath="..\panda\src\collide\collisionHandlerPusher.cxx"></File>
  1105. <File RelativePath="..\panda\src\collide\collisionFloorMesh.I"></File>
  1106. <File RelativePath="..\panda\src\collide\collisionHandlerFloor.h"></File>
  1107. <File RelativePath="..\panda\src\collide\collisionHandlerHighestEvent.cxx"></File>
  1108. <File RelativePath="..\panda\src\collide\collisionPolygon.I"></File>
  1109. <File RelativePath="..\panda\src\collide\collisionHandlerQueue.cxx"></File>
  1110. <File RelativePath="..\panda\src\collide\collisionEntry.cxx"></File>
  1111. <File RelativePath="..\panda\src\collide\collisionRay.I"></File>
  1112. <File RelativePath="..\panda\src\collide\collisionHandlerPhysical.h"></File>
  1113. <File RelativePath="..\panda\src\collide\config_collide.cxx"></File>
  1114. <File RelativePath="..\panda\src\collide\collisionHandlerGravity.I"></File>
  1115. <File RelativePath="..\panda\src\collide\collisionLine.h"></File>
  1116. <File RelativePath="..\panda\src\collide\collisionHandlerPhysical.I"></File>
  1117. <File RelativePath="..\panda\src\collide\test_collide.cxx"></File>
  1118. <File RelativePath="..\panda\src\collide\collisionFloorMesh.cxx"></File>
  1119. <File RelativePath="..\panda\src\collide\collisionPolygon.h"></File>
  1120. <File RelativePath="..\panda\src\collide\collisionGeom.cxx"></File>
  1121. <File RelativePath="..\panda\src\collide\collisionTraverser.I"></File>
  1122. <File RelativePath="..\panda\src\collide\collisionRecorder.I"></File>
  1123. <File RelativePath="..\panda\src\collide\collisionHandler.h"></File>
  1124. <File RelativePath="..\panda\src\collide\collisionNode.cxx"></File>
  1125. <File RelativePath="..\panda\src\collide\collisionRay.cxx"></File>
  1126. <File RelativePath="..\panda\src\collide\collisionBox.cxx"></File>
  1127. </Filter>
  1128. <Filter Name="putil">
  1129. <File RelativePath="..\panda\src\putil\bamWriter.h"></File>
  1130. <File RelativePath="..\panda\src\putil\compareTo.h"></File>
  1131. <File RelativePath="..\panda\src\putil\globalPointerRegistry.cxx"></File>
  1132. <File RelativePath="..\panda\src\putil\ioPtaDatagramShort.cxx"></File>
  1133. <File RelativePath="..\panda\src\putil\callbackData.cxx"></File>
  1134. <File RelativePath="..\panda\src\putil\factory.I"></File>
  1135. <File RelativePath="..\panda\src\putil\firstOfPairLess.h"></File>
  1136. <File RelativePath="..\panda\src\putil\animInterface.I"></File>
  1137. <File RelativePath="..\panda\src\putil\loaderOptions.I"></File>
  1138. <File RelativePath="..\panda\src\putil\writableParam.I"></File>
  1139. <File RelativePath="..\panda\src\putil\loaderOptions.h"></File>
  1140. <File RelativePath="..\panda\src\putil\factoryParams.h"></File>
  1141. <File RelativePath="..\panda\src\putil\copyOnWriteObject.I"></File>
  1142. <File RelativePath="..\panda\src\putil\buttonRegistry.cxx"></File>
  1143. <File RelativePath="..\panda\src\putil\test_bam.h"></File>
  1144. <File RelativePath="..\panda\src\putil\writableParam.h"></File>
  1145. <File RelativePath="..\panda\src\putil\datagramInputFile.h"></File>
  1146. <File RelativePath="..\panda\src\putil\timedCycle.h"></File>
  1147. <File RelativePath="..\panda\src\putil\firstOfPairCompare.h"></File>
  1148. <File RelativePath="..\panda\src\putil\cPointerCallbackObject.h"></File>
  1149. <File RelativePath="..\panda\src\putil\nodeCachedReferenceCount.I"></File>
  1150. <File RelativePath="..\panda\src\putil\buttonHandle.h"></File>
  1151. <File RelativePath="..\panda\src\putil\pta_ushort.cxx"></File>
  1152. <File RelativePath="..\panda\src\putil\lineStreamBuf.I"></File>
  1153. <File RelativePath="..\panda\src\putil\modifierButtons.cxx"></File>
  1154. <File RelativePath="..\panda\src\putil\datagramInputFile.I"></File>
  1155. <File RelativePath="..\panda\src\putil\pbitops.I"></File>
  1156. <File RelativePath="..\panda\src\putil\bamEnums.cxx"></File>
  1157. <File RelativePath="..\panda\src\putil\test_uniqueIdAllocator.cxx"></File>
  1158. <File RelativePath="..\panda\src\putil\uniqueIdAllocator.cxx"></File>
  1159. <File RelativePath="..\panda\src\putil\loaderOptions.cxx"></File>
  1160. <File RelativePath="..\panda\src\putil\bamEnums.h"></File>
  1161. <File RelativePath="..\panda\src\putil\collideMask.h"></File>
  1162. <File RelativePath="..\panda\src\putil\vector_typedWritable.cxx"></File>
  1163. <File RelativePath="..\panda\src\putil\timedCycle.I"></File>
  1164. <File RelativePath="..\panda\src\putil\nameUniquifier.cxx"></File>
  1165. <File RelativePath="..\panda\src\putil\pythonCallbackObject.I"></File>
  1166. <File RelativePath="..\panda\src\putil\doubleBitMask.I"></File>
  1167. <File RelativePath="..\panda\src\putil\buttonRegistry.I"></File>
  1168. <File RelativePath="..\panda\src\putil\simpleHashMap.I"></File>
  1169. <File RelativePath="..\panda\src\putil\mouseButton.h"></File>
  1170. <File RelativePath="..\panda\src\putil\bamCache.cxx"></File>
  1171. <File RelativePath="..\panda\src\putil\updateSeq.I"></File>
  1172. <File RelativePath="..\panda\src\putil\bitArray.h"></File>
  1173. <File RelativePath="..\panda\src\putil\globalPointerRegistry.h"></File>
  1174. <File RelativePath="..\panda\src\putil\keyboardButton.cxx"></File>
  1175. <File RelativePath="..\panda\src\putil\bamCacheIndex.cxx"></File>
  1176. <File RelativePath="..\panda\src\putil\factoryBase.h"></File>
  1177. <File RelativePath="..\panda\src\putil\linkedListNode.h"></File>
  1178. <File RelativePath="..\panda\src\putil\callbackObject.cxx"></File>
  1179. <File RelativePath="..\panda\src\putil\keyboardButton.h"></File>
  1180. <File RelativePath="..\panda\src\putil\vector_writable.h"></File>
  1181. <File RelativePath="..\panda\src\putil\callbackData.h"></File>
  1182. <File RelativePath="..\panda\src\putil\lineStream.I"></File>
  1183. <File RelativePath="..\panda\src\putil\factoryParam.I"></File>
  1184. <File RelativePath="..\panda\src\putil\sparseArray.cxx"></File>
  1185. <File RelativePath="..\panda\src\putil\vector_ushort.h"></File>
  1186. <File RelativePath="..\panda\src\putil\putil_composite2.cxx"></File>
  1187. <File RelativePath="..\panda\src\putil\string_utils.cxx"></File>
  1188. <File RelativePath="..\panda\src\putil\test_bam.cxx"></File>
  1189. <File RelativePath="..\panda\src\putil\buttonHandle.cxx"></File>
  1190. <File RelativePath="..\panda\src\putil\ioPtaDatagramInt.h"></File>
  1191. <File RelativePath="..\panda\src\putil\factory.h"></File>
  1192. <File RelativePath="..\panda\src\putil\factoryBase.cxx"></File>
  1193. <File RelativePath="..\panda\src\putil\linkedListNode.cxx"></File>
  1194. <File RelativePath="..\panda\src\putil\firstOfPairCompare.I"></File>
  1195. <File RelativePath="..\panda\src\putil\cPointerCallbackObject.cxx"></File>
  1196. <File RelativePath="..\panda\src\putil\bitMask.I"></File>
  1197. <File RelativePath="..\panda\src\putil\sparseArray.I"></File>
  1198. <File RelativePath="..\panda\src\putil\datagramOutputFile.cxx"></File>
  1199. <File RelativePath="..\panda\src\putil\typedWritableReferenceCount.cxx"></File>
  1200. <File RelativePath="..\panda\src\putil\typedWritable.cxx"></File>
  1201. <File RelativePath="..\panda\src\putil\timedCycle.cxx"></File>
  1202. <File RelativePath="..\panda\src\putil\writableConfigurable.cxx"></File>
  1203. <File RelativePath="..\panda\src\putil\bamReaderParam.h"></File>
  1204. <File RelativePath="..\panda\src\putil\mouseData.h"></File>
  1205. <File RelativePath="..\panda\src\putil\simpleHashMap.cxx"></File>
  1206. <File RelativePath="..\panda\src\putil\indirectCompareSort.h"></File>
  1207. <File RelativePath="..\panda\src\putil\copyOnWritePointer.h"></File>
  1208. <File RelativePath="..\panda\src\putil\clockObject.I"></File>
  1209. <File RelativePath="..\panda\src\putil\writableConfigurable.h"></File>
  1210. <File RelativePath="..\panda\src\putil\factoryParams.I"></File>
  1211. <File RelativePath="..\panda\src\putil\bamCacheIndex.h"></File>
  1212. <File RelativePath="..\panda\src\putil\vector_ushort.cxx"></File>
  1213. <File RelativePath="..\panda\src\putil\sparseArray.h"></File>
  1214. <File RelativePath="..\panda\src\putil\callbackObject.I"></File>
  1215. <File RelativePath="..\panda\src\putil\typedWritable.h"></File>
  1216. <File RelativePath="..\panda\src\putil\vector_double.h"></File>
  1217. <File RelativePath="..\panda\src\putil\pbitops.h"></File>
  1218. <File RelativePath="..\panda\src\putil\ioPtaDatagramFloat.h"></File>
  1219. <File RelativePath="..\panda\src\putil\test_filename.cxx"></File>
  1220. <File RelativePath="..\panda\src\putil\putil_composite1.cxx"></File>
  1221. <File RelativePath="..\panda\src\putil\mouseButton.cxx"></File>
  1222. <File RelativePath="..\panda\src\putil\indirectCompareNames.I"></File>
  1223. <File RelativePath="..\panda\src\putil\pbitops.cxx"></File>
  1224. <File RelativePath="..\panda\src\putil\clockObject.cxx"></File>
  1225. <File RelativePath="..\panda\src\putil\test_bamWrite.cxx"></File>
  1226. <File RelativePath="..\panda\src\putil\mouseData.cxx"></File>
  1227. <File RelativePath="..\panda\src\putil\vector_writable.cxx"></File>
  1228. <File RelativePath="..\panda\src\putil\pta_double.h"></File>
  1229. <File RelativePath="..\panda\src\putil\copyOnWritePointer.cxx"></File>
  1230. <File RelativePath="..\panda\src\putil\bitMask.cxx"></File>
  1231. <File RelativePath="..\panda\src\putil\config_util.h"></File>
  1232. <File RelativePath="..\panda\src\putil\clockObject.h"></File>
  1233. <File RelativePath="..\panda\src\putil\lineStream.h"></File>
  1234. <File RelativePath="..\panda\src\putil\datagramInputFile.cxx"></File>
  1235. <File RelativePath="..\panda\src\putil\ioPtaDatagramInt.cxx"></File>
  1236. <File RelativePath="..\panda\src\putil\load_prc_file.h"></File>
  1237. <File RelativePath="..\panda\src\putil\bamWriter.I"></File>
  1238. <File RelativePath="..\panda\src\putil\nameUniquifier.h"></File>
  1239. <File RelativePath="..\panda\src\putil\datagramOutputFile.h"></File>
  1240. <File RelativePath="..\panda\src\putil\load_prc_file.cxx"></File>
  1241. <File RelativePath="..\panda\src\putil\modifierButtons.I"></File>
  1242. <File RelativePath="..\panda\src\putil\cPointerCallbackObject.I"></File>
  1243. <File RelativePath="..\panda\src\putil\typedWritableReferenceCount.h"></File>
  1244. <File RelativePath="..\panda\src\putil\indirectCompareTo.h"></File>
  1245. <File RelativePath="..\panda\src\putil\buttonHandle.I"></File>
  1246. <File RelativePath="..\panda\src\putil\bitArray.cxx"></File>
  1247. <File RelativePath="..\panda\src\putil\nodeCachedReferenceCount.cxx"></File>
  1248. <File RelativePath="..\panda\src\putil\buttonRegistry.h"></File>
  1249. <File RelativePath="..\panda\src\putil\pta_ushort.h"></File>
  1250. <File RelativePath="..\panda\src\putil\vector_typedWritable.h"></File>
  1251. <File RelativePath="..\panda\src\putil\indirectCompareSort.I"></File>
  1252. <File RelativePath="..\panda\src\putil\factoryBase.I"></File>
  1253. <File RelativePath="..\panda\src\putil\updateSeq.h"></File>
  1254. <File RelativePath="..\panda\src\putil\writableParam.cxx"></File>
  1255. <File RelativePath="..\panda\src\putil\portalMask.h"></File>
  1256. <File RelativePath="..\panda\src\putil\bamCacheIndex.I"></File>
  1257. <File RelativePath="..\panda\src\putil\vector_ulong.h"></File>
  1258. <File RelativePath="..\panda\src\putil\typedWritable.I"></File>
  1259. <File RelativePath="..\panda\src\putil\pta_double.cxx"></File>
  1260. <File RelativePath="..\panda\src\putil\drawMask.h"></File>
  1261. <File RelativePath="..\panda\src\putil\doubleBitMask.cxx"></File>
  1262. <File RelativePath="..\panda\src\putil\bamCache.h"></File>
  1263. <File RelativePath="..\panda\src\putil\callbackData.I"></File>
  1264. <File RelativePath="..\panda\src\putil\indirectCompareTo.I"></File>
  1265. <File RelativePath="..\panda\src\putil\copyOnWritePointer.I"></File>
  1266. <File RelativePath="..\panda\src\putil\test_glob.cxx"></File>
  1267. <File RelativePath="..\panda\src\putil\updateSeq.cxx"></File>
  1268. <File RelativePath="..\panda\src\putil\vector_double.cxx"></File>
  1269. <File RelativePath="..\panda\src\putil\simpleHashMap.h"></File>
  1270. <File RelativePath="..\panda\src\putil\lineStream.cxx"></File>
  1271. <File RelativePath="..\panda\src\putil\uniqueIdAllocator.h"></File>
  1272. <File RelativePath="..\panda\src\putil\bamReader.I"></File>
  1273. <File RelativePath="..\panda\src\putil\cachedTypedWritableReferenceCount.h"></File>
  1274. <File RelativePath="..\panda\src\putil\bamCacheRecord.cxx"></File>
  1275. <File RelativePath="..\panda\src\putil\ioPtaDatagramFloat.cxx"></File>
  1276. <File RelativePath="..\panda\src\putil\bitMask.h"></File>
  1277. <File RelativePath="..\panda\src\putil\configurable.cxx"></File>
  1278. <File RelativePath="..\panda\src\putil\bamCache.I"></File>
  1279. <File RelativePath="..\panda\src\putil\pythonCallbackObject.h"></File>
  1280. <File RelativePath="..\panda\src\putil\copyOnWriteObject.h"></File>
  1281. <File RelativePath="..\panda\src\putil\vector_ulong.cxx"></File>
  1282. <File RelativePath="..\panda\src\putil\test_bamRead.cxx"></File>
  1283. <File RelativePath="..\panda\src\putil\copyOnWriteObject.cxx"></File>
  1284. <File RelativePath="..\panda\src\putil\bamReader.h"></File>
  1285. <File RelativePath="..\panda\src\putil\factoryParams.cxx"></File>
  1286. <File RelativePath="..\panda\src\putil\bamReaderParam.cxx"></File>
  1287. <File RelativePath="..\panda\src\putil\factoryParam.h"></File>
  1288. <File RelativePath="..\panda\src\putil\putil_composite.cxx"></File>
  1289. <File RelativePath="..\panda\src\putil\configurable.h"></File>
  1290. <File RelativePath="..\panda\src\putil\bitArray.I"></File>
  1291. <File RelativePath="..\panda\src\putil\cachedTypedWritableReferenceCount.I"></File>
  1292. <File RelativePath="..\panda\src\putil\string_utils.h"></File>
  1293. <File RelativePath="..\panda\src\putil\indirectCompareNames.h"></File>
  1294. <File RelativePath="..\panda\src\putil\iterator_types.h"></File>
  1295. <File RelativePath="..\panda\src\putil\typedWritableReferenceCount.I"></File>
  1296. <File RelativePath="..\panda\src\putil\string_utils.I"></File>
  1297. <File RelativePath="..\panda\src\putil\bamCacheRecord.h"></File>
  1298. <File RelativePath="..\panda\src\putil\bamWriter.cxx"></File>
  1299. <File RelativePath="..\panda\src\putil\compareTo.I"></File>
  1300. <File RelativePath="..\panda\src\putil\bamReaderParam.I"></File>
  1301. <File RelativePath="..\panda\src\putil\animInterface.h"></File>
  1302. <File RelativePath="..\panda\src\putil\modifierButtons.h"></File>
  1303. <File RelativePath="..\panda\src\putil\doubleBitMask.h"></File>
  1304. <File RelativePath="..\panda\src\putil\bamReader.cxx"></File>
  1305. <File RelativePath="..\panda\src\putil\lineStreamBuf.cxx"></File>
  1306. <File RelativePath="..\panda\src\putil\nameUniquifier.I"></File>
  1307. <File RelativePath="..\panda\src\putil\bamCacheRecord.I"></File>
  1308. <File RelativePath="..\panda\src\putil\animInterface.cxx"></File>
  1309. <File RelativePath="..\panda\src\putil\lineStreamBuf.h"></File>
  1310. <File RelativePath="..\panda\src\putil\config_util.cxx"></File>
  1311. <File RelativePath="..\panda\src\putil\cachedTypedWritableReferenceCount.cxx"></File>
  1312. <File RelativePath="..\panda\src\putil\pythonCallbackObject.cxx"></File>
  1313. <File RelativePath="..\panda\src\putil\test_linestream.cxx"></File>
  1314. <File RelativePath="..\panda\src\putil\ioPtaDatagramShort.h"></File>
  1315. <File RelativePath="..\panda\src\putil\callbackObject.h"></File>
  1316. <File RelativePath="..\panda\src\putil\nodeCachedReferenceCount.h"></File>
  1317. <File RelativePath="..\panda\src\putil\datagramOutputFile.I"></File>
  1318. <File RelativePath="..\panda\src\putil\firstOfPairLess.I"></File>
  1319. <File RelativePath="..\panda\src\putil\globalPointerRegistry.I"></File>
  1320. <File RelativePath="..\panda\src\putil\bam.h"></File>
  1321. <File RelativePath="..\panda\src\putil\factoryParam.cxx"></File>
  1322. <File RelativePath="..\panda\src\putil\linkedListNode.I"></File>
  1323. <File RelativePath="..\panda\src\putil\mouseData.I"></File>
  1324. </Filter>
  1325. <Filter Name="dxgsg9">
  1326. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsPipe9.I"></File>
  1327. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsWindow9.cxx"></File>
  1328. <File RelativePath="..\panda\src\dxgsg9\dxGeomMunger9.I"></File>
  1329. <File RelativePath="..\panda\src\dxgsg9\dxShaderContext9.I"></File>
  1330. <File RelativePath="..\panda\src\dxgsg9\dxGraphicsStateGuardian9.I"></File>
  1331. <File RelativePath="..\panda\src\dxgsg9\vertexElementArray.cxx"></File>
  1332. <File RelativePath="..\panda\src\dxgsg9\dxVertexBufferContext9.h"></File>
  1333. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsBuffer9.h"></File>
  1334. <File RelativePath="..\panda\src\dxgsg9\dxGeomMunger9.h"></File>
  1335. <File RelativePath="..\panda\src\dxgsg9\dxTextureContext9.h"></File>
  1336. <File RelativePath="..\panda\src\dxgsg9\dxOcclusionQueryContext9.h"></File>
  1337. <File RelativePath="..\panda\src\dxgsg9\dxgsg9_composite.cxx"></File>
  1338. <File RelativePath="..\panda\src\dxgsg9\dxShaderContext9.h"></File>
  1339. <File RelativePath="..\panda\src\dxgsg9\dxOcclusionQueryContext9.cxx"></File>
  1340. <File RelativePath="..\panda\src\dxgsg9\dxgsg9_composite1.cxx"></File>
  1341. <File RelativePath="..\panda\src\dxgsg9\dxTextureContext9.cxx"></File>
  1342. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsPipe9.cxx"></File>
  1343. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsWindow9.h"></File>
  1344. <File RelativePath="..\panda\src\dxgsg9\dxOcclusionQueryContext9.I"></File>
  1345. <File RelativePath="..\panda\src\dxgsg9\dxGraphicsDevice9.cxx"></File>
  1346. <File RelativePath="..\panda\src\dxgsg9\dxInput9.h"></File>
  1347. <File RelativePath="..\panda\src\dxgsg9\dxGraphicsStateGuardian9.cxx"></File>
  1348. <File RelativePath="..\panda\src\dxgsg9\dxGeomMunger9.cxx"></File>
  1349. <File RelativePath="..\panda\src\dxgsg9\dxGraphicsStateGuardian9.h"></File>
  1350. <File RelativePath="..\panda\src\dxgsg9\dxTextureContext9.I"></File>
  1351. <File RelativePath="..\panda\src\dxgsg9\dxIndexBufferContext9.cxx"></File>
  1352. <File RelativePath="..\panda\src\dxgsg9\dxIndexBufferContext9.h"></File>
  1353. <File RelativePath="..\panda\src\dxgsg9\dxShaderContext9.cxx"></File>
  1354. <File RelativePath="..\panda\src\dxgsg9\dxIndexBufferContext9.I"></File>
  1355. <File RelativePath="..\panda\src\dxgsg9\dxInput9.cxx"></File>
  1356. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsBuffer9.cxx"></File>
  1357. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsWindow9.I"></File>
  1358. <File RelativePath="..\panda\src\dxgsg9\config_dxgsg9.cxx"></File>
  1359. <File RelativePath="..\panda\src\dxgsg9\dxgsg9base.h"></File>
  1360. <File RelativePath="..\panda\src\dxgsg9\wdxGraphicsPipe9.h"></File>
  1361. <File RelativePath="..\panda\src\dxgsg9\dxVertexBufferContext9.cxx"></File>
  1362. <File RelativePath="..\panda\src\dxgsg9\vertexElementArray.h"></File>
  1363. <File RelativePath="..\panda\src\dxgsg9\dxVertexBufferContext9.I"></File>
  1364. <File RelativePath="..\panda\src\dxgsg9\dxGraphicsDevice9.h"></File>
  1365. <File RelativePath="..\panda\src\dxgsg9\config_dxgsg9.h"></File>
  1366. </Filter>
  1367. <Filter Name="display">
  1368. <File RelativePath="..\panda\src\display\displayRegionCullCallbackData.I"></File>
  1369. <File RelativePath="..\panda\src\display\graphicsEngine.cxx"></File>
  1370. <File RelativePath="..\panda\src\display\displayRegionCullCallbackData.h"></File>
  1371. <File RelativePath="..\panda\src\display\windowHandle.I"></File>
  1372. <File RelativePath="..\panda\src\display\renderBuffer.h"></File>
  1373. <File RelativePath="..\panda\src\display\graphicsEngine.h"></File>
  1374. <File RelativePath="..\panda\src\display\config_display.h"></File>
  1375. <File RelativePath="..\panda\src\display\display_composite2.cxx"></File>
  1376. <File RelativePath="..\panda\src\display\displayInformation.cxx"></File>
  1377. <File RelativePath="..\panda\src\display\windowProperties.I"></File>
  1378. <File RelativePath="..\panda\src\display\displayRegion.h"></File>
  1379. <File RelativePath="..\panda\src\display\windowHandle.h"></File>
  1380. <File RelativePath="..\panda\src\display\displayRegionCullCallbackData.cxx"></File>
  1381. <File RelativePath="..\panda\src\display\graphicsOutput.cxx"></File>
  1382. <File RelativePath="..\panda\src\display\test_display.cxx"></File>
  1383. <File RelativePath="..\panda\src\display\graphicsBuffer.I"></File>
  1384. <File RelativePath="..\panda\src\display\stencilRenderStates.cxx"></File>
  1385. <File RelativePath="..\panda\src\display\stereoDisplayRegion.I"></File>
  1386. <File RelativePath="..\panda\src\display\graphicsWindowInputDevice.h"></File>
  1387. <File RelativePath="..\panda\src\display\graphicsThreadingModel.I"></File>
  1388. <File RelativePath="..\panda\src\display\parasiteBuffer.cxx"></File>
  1389. <File RelativePath="..\panda\src\display\stencilRenderStates.h"></File>
  1390. <File RelativePath="..\panda\src\display\frameBufferProperties.h"></File>
  1391. <File RelativePath="..\panda\src\display\graphicsPipeSelection.h"></File>
  1392. <File RelativePath="..\panda\src\display\standardMunger.I"></File>
  1393. <File RelativePath="..\panda\src\display\lru.cxx"></File>
  1394. <File RelativePath="..\panda\src\display\graphicsPipeSelection.cxx"></File>
  1395. <File RelativePath="..\panda\src\display\displayInformation.h"></File>
  1396. <File RelativePath="..\panda\src\display\display_composite1.cxx"></File>
  1397. <File RelativePath="..\panda\src\display\lru.h"></File>
  1398. <File RelativePath="..\panda\src\display\windowProperties.cxx"></File>
  1399. <File RelativePath="..\panda\src\display\drawableRegion.h"></File>
  1400. <File RelativePath="..\panda\src\display\graphicsBuffer.cxx"></File>
  1401. <File RelativePath="..\panda\src\display\drawableRegion.I"></File>
  1402. <File RelativePath="..\panda\src\display\graphicsBuffer.h"></File>
  1403. <File RelativePath="..\panda\src\display\parasiteBuffer.h"></File>
  1404. <File RelativePath="..\panda\src\display\subprocessWindow.cxx"></File>
  1405. <File RelativePath="..\panda\src\display\graphicsPipeSelection.I"></File>
  1406. <File RelativePath="..\panda\src\display\windowHandle.cxx"></File>
  1407. <File RelativePath="..\panda\src\display\graphicsWindow.I"></File>
  1408. <File RelativePath="..\panda\src\display\nativeWindowHandle.I"></File>
  1409. <File RelativePath="..\panda\src\display\graphicsPipe.I"></File>
  1410. <File RelativePath="..\panda\src\display\displayRegion.I"></File>
  1411. <File RelativePath="..\panda\src\display\nativeWindowHandle.h"></File>
  1412. <File RelativePath="..\panda\src\display\subprocessWindowBuffer.cxx"></File>
  1413. <File RelativePath="..\panda\src\display\graphicsOutput.I"></File>
  1414. <File RelativePath="..\panda\src\display\graphicsEngine.I"></File>
  1415. <File RelativePath="..\panda\src\display\stereoDisplayRegion.cxx"></File>
  1416. <File RelativePath="..\panda\src\display\displayRegion.cxx"></File>
  1417. <File RelativePath="..\panda\src\display\graphicsWindow.cxx"></File>
  1418. <File RelativePath="..\panda\src\display\subprocessWindow.I"></File>
  1419. <File RelativePath="..\panda\src\display\displayRegionDrawCallbackData.h"></File>
  1420. <File RelativePath="..\panda\src\display\stereoDisplayRegion.h"></File>
  1421. <File RelativePath="..\panda\src\display\graphicsOutput.h"></File>
  1422. <File RelativePath="..\panda\src\display\graphicsDevice.I"></File>
  1423. <File RelativePath="..\panda\src\display\graphicsThreadingModel.h"></File>
  1424. <File RelativePath="..\panda\src\display\drawableRegion.cxx"></File>
  1425. <File RelativePath="..\panda\src\display\display_composite.cxx"></File>
  1426. <File RelativePath="..\panda\src\display\standardMunger.cxx"></File>
  1427. <File RelativePath="..\panda\src\display\nativeWindowHandle.cxx"></File>
  1428. <File RelativePath="..\panda\src\display\displaySearchParameters.h"></File>
  1429. <File RelativePath="..\panda\src\display\config_display.cxx"></File>
  1430. <File RelativePath="..\panda\src\display\graphicsThreadingModel.cxx"></File>
  1431. <File RelativePath="..\panda\src\display\standardMunger.h"></File>
  1432. <File RelativePath="..\panda\src\display\graphicsDevice.cxx"></File>
  1433. <File RelativePath="..\panda\src\display\graphicsStateGuardian.h"></File>
  1434. <File RelativePath="..\panda\src\display\subprocessWindowBuffer.I"></File>
  1435. <File RelativePath="..\panda\src\display\parasiteBuffer.I"></File>
  1436. <File RelativePath="..\panda\src\display\windowProperties.h"></File>
  1437. <File RelativePath="..\panda\src\display\graphicsStateGuardian.cxx"></File>
  1438. <File RelativePath="..\panda\src\display\graphicsWindowInputDevice.I"></File>
  1439. <File RelativePath="..\panda\src\display\frameBufferProperties.cxx"></File>
  1440. <File RelativePath="..\panda\src\display\subprocessWindow.h"></File>
  1441. <File RelativePath="..\panda\src\display\graphicsPipe.h"></File>
  1442. <File RelativePath="..\panda\src\display\frameBufferProperties.I"></File>
  1443. <File RelativePath="..\panda\src\display\displayRegionDrawCallbackData.cxx"></File>
  1444. <File RelativePath="..\panda\src\display\graphicsWindowInputDevice.cxx"></File>
  1445. <File RelativePath="..\panda\src\display\graphicsPipe.cxx"></File>
  1446. <File RelativePath="..\panda\src\display\graphicsStateGuardian.I"></File>
  1447. <File RelativePath="..\panda\src\display\graphicsWindow.h"></File>
  1448. <File RelativePath="..\panda\src\display\subprocessWindowBuffer.h"></File>
  1449. <File RelativePath="..\panda\src\display\graphicsDevice.h"></File>
  1450. <File RelativePath="..\panda\src\display\displaySearchParameters.cxx"></File>
  1451. <File RelativePath="..\panda\src\display\displayRegionDrawCallbackData.I"></File>
  1452. </Filter>
  1453. <Filter Name="audio">
  1454. <File RelativePath="..\panda\src\audio\audioSound.I"></File>
  1455. <File RelativePath="..\panda\src\audio\config_audio.h"></File>
  1456. <File RelativePath="..\panda\src\audio\nullAudioSound.cxx"></File>
  1457. <File RelativePath="..\panda\src\audio\audio_composite1.cxx"></File>
  1458. <File RelativePath="..\panda\src\audio\filterProperties.h"></File>
  1459. <File RelativePath="..\panda\src\audio\nullAudioManager.cxx"></File>
  1460. <File RelativePath="..\panda\src\audio\audio_composite.cxx"></File>
  1461. <File RelativePath="..\panda\src\audio\filterProperties.I"></File>
  1462. <File RelativePath="..\panda\src\audio\test_audio.cxx"></File>
  1463. <File RelativePath="..\panda\src\audio\nullAudioManager.h"></File>
  1464. <File RelativePath="..\panda\src\audio\audioSound.cxx"></File>
  1465. <File RelativePath="..\panda\src\audio\config_audio.cxx"></File>
  1466. <File RelativePath="..\panda\src\audio\nullAudioSound.h"></File>
  1467. <File RelativePath="..\panda\src\audio\filterProperties.cxx"></File>
  1468. <File RelativePath="..\panda\src\audio\audioManager.h"></File>
  1469. <File RelativePath="..\panda\src\audio\audioLoadRequest.I"></File>
  1470. <File RelativePath="..\panda\src\audio\audioManager.cxx"></File>
  1471. <File RelativePath="..\panda\src\audio\audioLoadRequest.cxx"></File>
  1472. <File RelativePath="..\panda\src\audio\audio.h"></File>
  1473. <File RelativePath="..\panda\src\audio\audioManager.I"></File>
  1474. <File RelativePath="..\panda\src\audio\audioSound.h"></File>
  1475. <File RelativePath="..\panda\src\audio\audioLoadRequest.h"></File>
  1476. </Filter>
  1477. <Filter Name="recorder">
  1478. <File RelativePath="..\panda\src\recorder\socketStreamRecorder.I"></File>
  1479. <File RelativePath="..\panda\src\recorder\mouseRecorder.cxx"></File>
  1480. <File RelativePath="..\panda\src\recorder\socketStreamRecorder.h"></File>
  1481. <File RelativePath="..\panda\src\recorder\recorderTable.I"></File>
  1482. <File RelativePath="..\panda\src\recorder\recorderBase.cxx"></File>
  1483. <File RelativePath="..\panda\src\recorder\socketStreamRecorder.cxx"></File>
  1484. <File RelativePath="..\panda\src\recorder\recorderFrame.I"></File>
  1485. <File RelativePath="..\panda\src\recorder\recorderFrame.h"></File>
  1486. <File RelativePath="..\panda\src\recorder\recorderBase.h"></File>
  1487. <File RelativePath="..\panda\src\recorder\config_recorder.h"></File>
  1488. <File RelativePath="..\panda\src\recorder\recorderHeader.cxx"></File>
  1489. <File RelativePath="..\panda\src\recorder\recorderController.I"></File>
  1490. <File RelativePath="..\panda\src\recorder\recorder_composite1.cxx"></File>
  1491. <File RelativePath="..\panda\src\recorder\recorderController.cxx"></File>
  1492. <File RelativePath="..\panda\src\recorder\recorder_composite2.cxx"></File>
  1493. <File RelativePath="..\panda\src\recorder\recorderHeader.I"></File>
  1494. <File RelativePath="..\panda\src\recorder\config_recorder.cxx"></File>
  1495. <File RelativePath="..\panda\src\recorder\recorder_composite.cxx"></File>
  1496. <File RelativePath="..\panda\src\recorder\recorderController.h"></File>
  1497. <File RelativePath="..\panda\src\recorder\recorderFrame.cxx"></File>
  1498. <File RelativePath="..\panda\src\recorder\recorderHeader.h"></File>
  1499. <File RelativePath="..\panda\src\recorder\mouseRecorder.h"></File>
  1500. <File RelativePath="..\panda\src\recorder\recorderTable.h"></File>
  1501. <File RelativePath="..\panda\src\recorder\recorderTable.cxx"></File>
  1502. <File RelativePath="..\panda\src\recorder\recorderBase.I"></File>
  1503. </Filter>
  1504. <Filter Name="x11display">
  1505. <File RelativePath="..\panda\src\x11display\x11GraphicsWindow.cxx"></File>
  1506. <File RelativePath="..\panda\src\x11display\x11display_composite1.cxx"></File>
  1507. <File RelativePath="..\panda\src\x11display\x11GraphicsPipe.h"></File>
  1508. <File RelativePath="..\panda\src\x11display\config_x11display.h"></File>
  1509. <File RelativePath="..\panda\src\x11display\x11GraphicsWindow.I"></File>
  1510. <File RelativePath="..\panda\src\x11display\x11GraphicsPipe.I"></File>
  1511. <File RelativePath="..\panda\src\x11display\x11GraphicsPipe.cxx"></File>
  1512. <File RelativePath="..\panda\src\x11display\config_x11display.cxx"></File>
  1513. <File RelativePath="..\panda\src\x11display\x11display_composite.cxx"></File>
  1514. <File RelativePath="..\panda\src\x11display\x11GraphicsWindow.h"></File>
  1515. </Filter>
  1516. <Filter Name="distort">
  1517. <File RelativePath="..\panda\src\distort\pSphereLens.I"></File>
  1518. <File RelativePath="..\panda\src\distort\cylindricalLens.cxx"></File>
  1519. <File RelativePath="..\panda\src\distort\fisheyeLens.h"></File>
  1520. <File RelativePath="..\panda\src\distort\fisheyeLens.cxx"></File>
  1521. <File RelativePath="..\panda\src\distort\distort_composite1.cxx"></File>
  1522. <File RelativePath="..\panda\src\distort\distort_composite.cxx"></File>
  1523. <File RelativePath="..\panda\src\distort\pSphereLens.h"></File>
  1524. <File RelativePath="..\panda\src\distort\projectionScreen.cxx"></File>
  1525. <File RelativePath="..\panda\src\distort\pSphereLens.cxx"></File>
  1526. <File RelativePath="..\panda\src\distort\projectionScreen.h"></File>
  1527. <File RelativePath="..\panda\src\distort\config_distort.cxx"></File>
  1528. <File RelativePath="..\panda\src\distort\nonlinearImager.cxx"></File>
  1529. <File RelativePath="..\panda\src\distort\cylindricalLens.h"></File>
  1530. <File RelativePath="..\panda\src\distort\cylindricalLens.I"></File>
  1531. <File RelativePath="..\panda\src\distort\config_distort.h"></File>
  1532. <File RelativePath="..\panda\src\distort\nonlinearImager.I"></File>
  1533. <File RelativePath="..\panda\src\distort\projectionScreen.I"></File>
  1534. <File RelativePath="..\panda\src\distort\fisheyeLens.I"></File>
  1535. <File RelativePath="..\panda\src\distort\nonlinearImager.h"></File>
  1536. </Filter>
  1537. <Filter Name="wgldisplay">
  1538. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsWindow.cxx"></File>
  1539. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsBuffer.I"></File>
  1540. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsWindow.h"></File>
  1541. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsBuffer.cxx"></File>
  1542. <File RelativePath="..\panda\src\wgldisplay\config_wgldisplay.cxx"></File>
  1543. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsPipe.h"></File>
  1544. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsPipe.cxx"></File>
  1545. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsPipe.I"></File>
  1546. <File RelativePath="..\panda\src\wgldisplay\wglext.h"></File>
  1547. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsBuffer.h"></File>
  1548. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsWindow.I"></File>
  1549. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsStateGuardian.I"></File>
  1550. <File RelativePath="..\panda\src\wgldisplay\wgldisplay_composite.cxx"></File>
  1551. <File RelativePath="..\panda\src\wgldisplay\config_wgldisplay.h"></File>
  1552. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsStateGuardian.cxx"></File>
  1553. <File RelativePath="..\panda\src\wgldisplay\wgldisplay_composite1.cxx"></File>
  1554. <File RelativePath="..\panda\src\wgldisplay\wglGraphicsStateGuardian.h"></File>
  1555. </Filter>
  1556. <Filter Name="glgsg">
  1557. <File RelativePath="..\panda\src\glgsg\glgsg.cxx"></File>
  1558. <File RelativePath="..\panda\src\glgsg\glgsg_composite1.cxx"></File>
  1559. <File RelativePath="..\panda\src\glgsg\config_glgsg.h"></File>
  1560. <File RelativePath="..\panda\src\glgsg\glgsg.h"></File>
  1561. <File RelativePath="..\panda\src\glgsg\glgsg_composite.cxx"></File>
  1562. <File RelativePath="..\panda\src\glgsg\config_glgsg.cxx"></File>
  1563. </Filter>
  1564. <Filter Name="egldisplay">
  1565. <File RelativePath="..\panda\src\egldisplay\config_egldisplay.h"></File>
  1566. <File RelativePath="..\panda\src\egldisplay\eglGraphicsWindow.I"></File>
  1567. <File RelativePath="..\panda\src\egldisplay\eglGraphicsStateGuardian.cxx"></File>
  1568. <File RelativePath="..\panda\src\egldisplay\eglGraphicsStateGuardian.h"></File>
  1569. <File RelativePath="..\panda\src\egldisplay\eglGraphicsWindow.h"></File>
  1570. <File RelativePath="..\panda\src\egldisplay\eglGraphicsPixmap.cxx"></File>
  1571. <File RelativePath="..\panda\src\egldisplay\eglGraphicsPixmap.h"></File>
  1572. <File RelativePath="..\panda\src\egldisplay\eglGraphicsPipe.I"></File>
  1573. <File RelativePath="..\panda\src\egldisplay\eglGraphicsPipe.cxx"></File>
  1574. <File RelativePath="..\panda\src\egldisplay\eglGraphicsBuffer.cxx"></File>
  1575. <File RelativePath="..\panda\src\egldisplay\eglGraphicsStateGuardian.I"></File>
  1576. <File RelativePath="..\panda\src\egldisplay\eglGraphicsWindow.cxx"></File>
  1577. <File RelativePath="..\panda\src\egldisplay\config_egldisplay.cxx"></File>
  1578. <File RelativePath="..\panda\src\egldisplay\eglGraphicsBuffer.h"></File>
  1579. <File RelativePath="..\panda\src\egldisplay\eglGraphicsPipe.h"></File>
  1580. </Filter>
  1581. <Filter Name="dgraph">
  1582. <File RelativePath="..\panda\src\dgraph\dataNode.cxx"></File>
  1583. <File RelativePath="..\panda\src\dgraph\dataNodeTransmit.I"></File>
  1584. <File RelativePath="..\panda\src\dgraph\dataNodeTransmit.cxx"></File>
  1585. <File RelativePath="..\panda\src\dgraph\dataGraphTraverser.cxx"></File>
  1586. <File RelativePath="..\panda\src\dgraph\dataNode.h"></File>
  1587. <File RelativePath="..\panda\src\dgraph\dgraph_composite2.cxx"></File>
  1588. <File RelativePath="..\panda\src\dgraph\dgraph_composite1.cxx"></File>
  1589. <File RelativePath="..\panda\src\dgraph\config_dgraph.cxx"></File>
  1590. <File RelativePath="..\panda\src\dgraph\dataNodeTransmit.h"></File>
  1591. <File RelativePath="..\panda\src\dgraph\dataGraphTraverser.h"></File>
  1592. <File RelativePath="..\panda\src\dgraph\dgraph_composite.cxx"></File>
  1593. <File RelativePath="..\panda\src\dgraph\dataGraphTraverser.I"></File>
  1594. <File RelativePath="..\panda\src\dgraph\config_dgraph.h"></File>
  1595. <File RelativePath="..\panda\src\dgraph\dataNode.I"></File>
  1596. </Filter>
  1597. <Filter Name="glxdisplay">
  1598. <File RelativePath="..\panda\src\glxdisplay\panda_glxext.h"></File>
  1599. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPixmap.I"></File>
  1600. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsBuffer.h"></File>
  1601. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPixmap.h"></File>
  1602. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsStateGuardian.h"></File>
  1603. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPixmap.cxx"></File>
  1604. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPipe.I"></File>
  1605. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsWindow.cxx"></File>
  1606. <File RelativePath="..\panda\src\glxdisplay\glxdisplay_composite.cxx"></File>
  1607. <File RelativePath="..\panda\src\glxdisplay\glxdisplay_composite1.cxx"></File>
  1608. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPipe.h"></File>
  1609. <File RelativePath="..\panda\src\glxdisplay\config_glxdisplay.cxx"></File>
  1610. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsStateGuardian.cxx"></File>
  1611. <File RelativePath="..\panda\src\glxdisplay\config_glxdisplay.h"></File>
  1612. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsPipe.cxx"></File>
  1613. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsBuffer.I"></File>
  1614. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsStateGuardian.I"></File>
  1615. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsWindow.I"></File>
  1616. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsWindow.h"></File>
  1617. <File RelativePath="..\panda\src\glxdisplay\glxGraphicsBuffer.cxx"></File>
  1618. </Filter>
  1619. <Filter Name="tinydisplay">
  1620. <File RelativePath="..\panda\src\tinydisplay\ztriangle_1.cxx"></File>
  1621. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsBuffer.I"></File>
  1622. <File RelativePath="..\panda\src\tinydisplay\zmath.cxx"></File>
  1623. <File RelativePath="..\panda\src\tinydisplay\zdither.cxx"></File>
  1624. <File RelativePath="..\panda\src\tinydisplay\zbuffer.cxx"></File>
  1625. <File RelativePath="..\panda\src\tinydisplay\tinyOsxGraphicsPipe.cxx"></File>
  1626. <File RelativePath="..\panda\src\tinydisplay\tinydisplay_composite2.cxx"></File>
  1627. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsWindow.I"></File>
  1628. <File RelativePath="..\panda\src\tinydisplay\tinyOffscreenGraphicsPipe.cxx"></File>
  1629. <File RelativePath="..\panda\src\tinydisplay\error.cxx"></File>
  1630. <File RelativePath="..\panda\src\tinydisplay\tinyOffscreenGraphicsPipe.I"></File>
  1631. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsWindow.h"></File>
  1632. <File RelativePath="..\panda\src\tinydisplay\image_util.cxx"></File>
  1633. <File RelativePath="..\panda\src\tinydisplay\tinyOsxGraphicsPipe.I"></File>
  1634. <File RelativePath="..\panda\src\tinydisplay\tinyGeomMunger.h"></File>
  1635. <File RelativePath="..\panda\src\tinydisplay\tinyGeomMunger.cxx"></File>
  1636. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsPipe.cxx"></File>
  1637. <File RelativePath="..\panda\src\tinydisplay\td_texture.cxx"></File>
  1638. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsWindow.cxx"></File>
  1639. <File RelativePath="..\panda\src\tinydisplay\tinyOsxGraphicsWindow.h"></File>
  1640. <File RelativePath="..\panda\src\tinydisplay\config_tinydisplay.cxx"></File>
  1641. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsPipe.h"></File>
  1642. <File RelativePath="..\panda\src\tinydisplay\ztriangle_code_3.h"></File>
  1643. <File RelativePath="..\panda\src\tinydisplay\ztriangle_code_2.h"></File>
  1644. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsPipe.h"></File>
  1645. <File RelativePath="..\panda\src\tinydisplay\ztriangle_code_4.h"></File>
  1646. <File RelativePath="..\panda\src\tinydisplay\specbuf.cxx"></File>
  1647. <File RelativePath="..\panda\src\tinydisplay\ztriangle_table.h"></File>
  1648. <File RelativePath="..\panda\src\tinydisplay\tinydisplay_composite1.cxx"></File>
  1649. <File RelativePath="..\panda\src\tinydisplay\td_light.cxx"></File>
  1650. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsWindow.cxx"></File>
  1651. <File RelativePath="..\panda\src\tinydisplay\config_tinydisplay.h"></File>
  1652. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsWindow.h"></File>
  1653. <File RelativePath="..\panda\src\tinydisplay\store_pixel.h"></File>
  1654. <File RelativePath="..\panda\src\tinydisplay\ztriangle.h"></File>
  1655. <File RelativePath="..\panda\src\tinydisplay\clip.cxx"></File>
  1656. <File RelativePath="..\panda\src\tinydisplay\tinyTextureContext.cxx"></File>
  1657. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsBuffer.h"></File>
  1658. <File RelativePath="..\panda\src\tinydisplay\zfeatures.h"></File>
  1659. <File RelativePath="..\panda\src\tinydisplay\store_pixel.cxx"></File>
  1660. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsPipe.I"></File>
  1661. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsPipe.I"></File>
  1662. <File RelativePath="..\panda\src\tinydisplay\zgl.h"></File>
  1663. <File RelativePath="..\panda\src\tinydisplay\ztriangle_table.cxx"></File>
  1664. <File RelativePath="..\panda\src\tinydisplay\ztriangle_two.h"></File>
  1665. <File RelativePath="..\panda\src\tinydisplay\tinyTextureContext.I"></File>
  1666. <File RelativePath="..\panda\src\tinydisplay\store_pixel_code.h"></File>
  1667. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsWindow.cxx"></File>
  1668. <File RelativePath="..\panda\src\tinydisplay\tinyGeomMunger.I"></File>
  1669. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsPipe.cxx"></File>
  1670. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsBuffer.cxx"></File>
  1671. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsPipe.I"></File>
  1672. <File RelativePath="..\panda\src\tinydisplay\store_pixel_table.h"></File>
  1673. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsStateGuardian.h"></File>
  1674. <File RelativePath="..\panda\src\tinydisplay\tinyTextureContext.h"></File>
  1675. <File RelativePath="..\panda\src\tinydisplay\zline.cxx"></File>
  1676. <File RelativePath="..\panda\src\tinydisplay\tinyOffscreenGraphicsPipe.h"></File>
  1677. <File RelativePath="..\panda\src\tinydisplay\ztriangle_4.cxx"></File>
  1678. <File RelativePath="..\panda\src\tinydisplay\ztriangle_code_1.h"></File>
  1679. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsWindow.h"></File>
  1680. <File RelativePath="..\panda\src\tinydisplay\ztriangle_2.cxx"></File>
  1681. <File RelativePath="..\panda\src\tinydisplay\tinyOsxGraphicsWindow.I"></File>
  1682. <File RelativePath="..\panda\src\tinydisplay\ztriangle_3.cxx"></File>
  1683. <File RelativePath="..\panda\src\tinydisplay\init.cxx"></File>
  1684. <File RelativePath="..\panda\src\tinydisplay\zbuffer.h"></File>
  1685. <File RelativePath="..\panda\src\tinydisplay\vertex.cxx"></File>
  1686. <File RelativePath="..\panda\src\tinydisplay\tinyOsxGraphicsPipe.h"></File>
  1687. <File RelativePath="..\panda\src\tinydisplay\tinyWinGraphicsWindow.I"></File>
  1688. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsStateGuardian.cxx"></File>
  1689. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsPipe.h"></File>
  1690. <File RelativePath="..\panda\src\tinydisplay\zmath.h"></File>
  1691. <File RelativePath="..\panda\src\tinydisplay\tinyGraphicsStateGuardian.I"></File>
  1692. <File RelativePath="..\panda\src\tinydisplay\tinySDLGraphicsPipe.cxx"></File>
  1693. <File RelativePath="..\panda\src\tinydisplay\tinyXGraphicsWindow.I"></File>
  1694. <File RelativePath="..\panda\src\tinydisplay\memory.cxx"></File>
  1695. <File RelativePath="..\panda\src\tinydisplay\zline.h"></File>
  1696. </Filter>
  1697. <Filter Name="event">
  1698. <File RelativePath="..\panda\src\event\asyncTaskChain.h"></File>
  1699. <File RelativePath="..\panda\src\event\asyncTaskCollection.h"></File>
  1700. <File RelativePath="..\panda\src\event\test_task.cxx"></File>
  1701. <File RelativePath="..\panda\src\event\buttonEvent.cxx"></File>
  1702. <File RelativePath="..\panda\src\event\event.I"></File>
  1703. <File RelativePath="..\panda\src\event\event_composite.cxx"></File>
  1704. <File RelativePath="..\panda\src\event\eventParameter.cxx"></File>
  1705. <File RelativePath="..\panda\src\event\eventHandler.I"></File>
  1706. <File RelativePath="..\panda\src\event\buttonEventList.cxx"></File>
  1707. <File RelativePath="..\panda\src\event\pointerEventList.cxx"></File>
  1708. <File RelativePath="..\panda\src\event\event_composite1.cxx"></File>
  1709. <File RelativePath="..\panda\src\event\asyncTask.cxx"></File>
  1710. <File RelativePath="..\panda\src\event\event_composite2.cxx"></File>
  1711. <File RelativePath="..\panda\src\event\config_event.h"></File>
  1712. <File RelativePath="..\panda\src\event\asyncTaskSequence.cxx"></File>
  1713. <File RelativePath="..\panda\src\event\asyncTaskPause.h"></File>
  1714. <File RelativePath="..\panda\src\event\pointerEventList.I"></File>
  1715. <File RelativePath="..\panda\src\event\genericAsyncTask.I"></File>
  1716. <File RelativePath="..\panda\src\event\asyncTaskPause.cxx"></File>
  1717. <File RelativePath="..\panda\src\event\asyncTask.h"></File>
  1718. <File RelativePath="..\panda\src\event\asyncTaskManager.cxx"></File>
  1719. <File RelativePath="..\panda\src\event\buttonEventList.I"></File>
  1720. <File RelativePath="..\panda\src\event\eventQueue.I"></File>
  1721. <File RelativePath="..\panda\src\event\buttonEvent.I"></File>
  1722. <File RelativePath="..\panda\src\event\genericAsyncTask.h"></File>
  1723. <File RelativePath="..\panda\src\event\pt_Event.h"></File>
  1724. <File RelativePath="..\panda\src\event\pythonTask.cxx"></File>
  1725. <File RelativePath="..\panda\src\event\eventHandler.h"></File>
  1726. <File RelativePath="..\panda\src\event\pythonTask.I"></File>
  1727. <File RelativePath="..\panda\src\event\buttonEvent.h"></File>
  1728. <File RelativePath="..\panda\src\event\asyncTaskChain.I"></File>
  1729. <File RelativePath="..\panda\src\event\genericAsyncTask.cxx"></File>
  1730. <File RelativePath="..\panda\src\event\eventQueue.h"></File>
  1731. <File RelativePath="..\panda\src\event\eventParameter.I"></File>
  1732. <File RelativePath="..\panda\src\event\asyncTaskSequence.h"></File>
  1733. <File RelativePath="..\panda\src\event\asyncTaskManager.I"></File>
  1734. <File RelativePath="..\panda\src\event\eventReceiver.cxx"></File>
  1735. <File RelativePath="..\panda\src\event\event.h"></File>
  1736. <File RelativePath="..\panda\src\event\config_event.cxx"></File>
  1737. <File RelativePath="..\panda\src\event\asyncTaskManager.h"></File>
  1738. <File RelativePath="..\panda\src\event\asyncTaskChain.cxx"></File>
  1739. <File RelativePath="..\panda\src\event\event.cxx"></File>
  1740. <File RelativePath="..\panda\src\event\eventHandler.cxx"></File>
  1741. <File RelativePath="..\panda\src\event\throw_event.I"></File>
  1742. <File RelativePath="..\panda\src\event\buttonEventList.h"></File>
  1743. <File RelativePath="..\panda\src\event\pythonTask.h"></File>
  1744. <File RelativePath="..\panda\src\event\pointerEvent.cxx"></File>
  1745. <File RelativePath="..\panda\src\event\pt_Event.cxx"></File>
  1746. <File RelativePath="..\panda\src\event\asyncTaskCollection.cxx"></File>
  1747. <File RelativePath="..\panda\src\event\eventParameter.h"></File>
  1748. <File RelativePath="..\panda\src\event\pointerEvent.I"></File>
  1749. <File RelativePath="..\panda\src\event\pointerEventList.h"></File>
  1750. <File RelativePath="..\panda\src\event\asyncTaskSequence.I"></File>
  1751. <File RelativePath="..\panda\src\event\eventReceiver.h"></File>
  1752. <File RelativePath="..\panda\src\event\asyncTask.I"></File>
  1753. <File RelativePath="..\panda\src\event\pointerEvent.h"></File>
  1754. <File RelativePath="..\panda\src\event\throw_event.h"></File>
  1755. <File RelativePath="..\panda\src\event\asyncTaskPause.I"></File>
  1756. <File RelativePath="..\panda\src\event\asyncTaskCollection.I"></File>
  1757. <File RelativePath="..\panda\src\event\eventQueue.cxx"></File>
  1758. </Filter>
  1759. <Filter Name="downloader">
  1760. <File RelativePath="..\panda\src\downloader\httpDigestAuthorization.I"></File>
  1761. <File RelativePath="..\panda\src\downloader\httpBasicAuthorization.h"></File>
  1762. <File RelativePath="..\panda\src\downloader\multiplexStreamBuf.I"></File>
  1763. <File RelativePath="..\panda\src\downloader\httpDate.h"></File>
  1764. <File RelativePath="..\panda\src\downloader\bioPtr.cxx"></File>
  1765. <File RelativePath="..\panda\src\downloader\virtualFileMountHTTP.h"></File>
  1766. <File RelativePath="..\panda\src\downloader\decompressor.h"></File>
  1767. <File RelativePath="..\panda\src\downloader\extractor.I"></File>
  1768. <File RelativePath="..\panda\src\downloader\socketStream.cxx"></File>
  1769. <File RelativePath="..\panda\src\downloader\urlSpec.cxx"></File>
  1770. <File RelativePath="..\panda\src\downloader\socketStream.h"></File>
  1771. <File RelativePath="..\panda\src\downloader\httpCookie.h"></File>
  1772. <File RelativePath="..\panda\src\downloader\download_utils.cxx"></File>
  1773. <File RelativePath="..\panda\src\downloader\identityStream.h"></File>
  1774. <File RelativePath="..\panda\src\downloader\decompressor.I"></File>
  1775. <File RelativePath="..\panda\src\downloader\httpCookie.cxx"></File>
  1776. <File RelativePath="..\panda\src\downloader\identityStreamBuf.h"></File>
  1777. <File RelativePath="..\panda\src\downloader\downloadDb.h"></File>
  1778. <File RelativePath="..\panda\src\downloader\httpChannel.h"></File>
  1779. <File RelativePath="..\panda\src\downloader\chunkedStreamBuf.I"></File>
  1780. <File RelativePath="..\panda\src\downloader\httpAuthorization.cxx"></File>
  1781. <File RelativePath="..\panda\src\downloader\virtualFileMountHTTP.cxx"></File>
  1782. <File RelativePath="..\panda\src\downloader\virtualFileHTTP.h"></File>
  1783. <File RelativePath="..\panda\src\downloader\virtualFileMountHTTP.I"></File>
  1784. <File RelativePath="..\panda\src\downloader\extractor.cxx"></File>
  1785. <File RelativePath="..\panda\src\downloader\documentSpec.cxx"></File>
  1786. <File RelativePath="..\panda\src\downloader\decompressor.cxx"></File>
  1787. <File RelativePath="..\panda\src\downloader\bioStreamBuf.cxx"></File>
  1788. <File RelativePath="..\panda\src\downloader\patcher.cxx"></File>
  1789. <File RelativePath="..\panda\src\downloader\extractor.h"></File>
  1790. <File RelativePath="..\panda\src\downloader\patcher.h"></File>
  1791. <File RelativePath="..\panda\src\downloader\bioPtr.I"></File>
  1792. <File RelativePath="..\panda\src\downloader\config_downloader.h"></File>
  1793. <File RelativePath="..\panda\src\downloader\config_downloader.cxx"></File>
  1794. <File RelativePath="..\panda\src\downloader\httpClient.I"></File>
  1795. <File RelativePath="..\panda\src\downloader\chunkedStreamBuf.h"></File>
  1796. <File RelativePath="..\panda\src\downloader\httpEnum.cxx"></File>
  1797. <File RelativePath="..\panda\src\downloader\virtualFileHTTP.cxx"></File>
  1798. <File RelativePath="..\panda\src\downloader\stringStream.h"></File>
  1799. <File RelativePath="..\panda\src\downloader\identityStreamBuf.I"></File>
  1800. <File RelativePath="..\panda\src\downloader\socketStream.I"></File>
  1801. <File RelativePath="..\panda\src\downloader\patcher.I"></File>
  1802. <File RelativePath="..\panda\src\downloader\multiplexStream.I"></File>
  1803. <File RelativePath="..\panda\src\downloader\identityStreamBuf.cxx"></File>
  1804. <File RelativePath="..\panda\src\downloader\bioStreamPtr.I"></File>
  1805. <File RelativePath="..\panda\src\downloader\httpAuthorization.I"></File>
  1806. <File RelativePath="..\panda\src\downloader\downloader_composite.cxx"></File>
  1807. <File RelativePath="..\panda\src\downloader\httpClient.h"></File>
  1808. <File RelativePath="..\panda\src\downloader\downloadDb.cxx"></File>
  1809. <File RelativePath="..\panda\src\downloader\stringStreamBuf.cxx"></File>
  1810. <File RelativePath="..\panda\src\downloader\urlSpec.I"></File>
  1811. <File RelativePath="..\panda\src\downloader\virtualFileHTTP.I"></File>
  1812. <File RelativePath="..\panda\src\downloader\chunkedStream.h"></File>
  1813. <File RelativePath="..\panda\src\downloader\bioStreamBuf.h"></File>
  1814. <File RelativePath="..\panda\src\downloader\chunkedStream.I"></File>
  1815. <File RelativePath="..\panda\src\downloader\download_utils.h"></File>
  1816. <File RelativePath="..\panda\src\downloader\multiplexStream.h"></File>
  1817. <File RelativePath="..\panda\src\downloader\httpEntityTag.cxx"></File>
  1818. <File RelativePath="..\panda\src\downloader\identityStream.I"></File>
  1819. <File RelativePath="..\panda\src\downloader\bioStream.I"></File>
  1820. <File RelativePath="..\panda\src\downloader\bioPtr.h"></File>
  1821. <File RelativePath="..\panda\src\downloader\multiplexStreamBuf.cxx"></File>
  1822. <File RelativePath="..\panda\src\downloader\identityStream.cxx"></File>
  1823. <File RelativePath="..\panda\src\downloader\httpEnum.h"></File>
  1824. <File RelativePath="..\panda\src\downloader\stringStream.I"></File>
  1825. <File RelativePath="..\panda\src\downloader\bioStream.h"></File>
  1826. <File RelativePath="..\panda\src\downloader\chunkedStream.cxx"></File>
  1827. <File RelativePath="..\panda\src\downloader\bioStreamPtr.h"></File>
  1828. <File RelativePath="..\panda\src\downloader\httpChannel.cxx"></File>
  1829. <File RelativePath="..\panda\src\downloader\downloader_composite2.cxx"></File>
  1830. <File RelativePath="..\panda\src\downloader\stringStreamBuf.I"></File>
  1831. <File RelativePath="..\panda\src\downloader\httpClient.cxx"></File>
  1832. <File RelativePath="..\panda\src\downloader\bioStream.cxx"></File>
  1833. <File RelativePath="..\panda\src\downloader\httpCookie.I"></File>
  1834. <File RelativePath="..\panda\src\downloader\httpAuthorization.h"></File>
  1835. <File RelativePath="..\panda\src\downloader\httpDate.cxx"></File>
  1836. <File RelativePath="..\panda\src\downloader\downloader_composite1.cxx"></File>
  1837. <File RelativePath="..\panda\src\downloader\httpDigestAuthorization.h"></File>
  1838. <File RelativePath="..\panda\src\downloader\httpDate.I"></File>
  1839. <File RelativePath="..\panda\src\downloader\multiplexStreamBuf.h"></File>
  1840. <File RelativePath="..\panda\src\downloader\stringStream.cxx"></File>
  1841. <File RelativePath="..\panda\src\downloader\bioStreamPtr.cxx"></File>
  1842. <File RelativePath="..\panda\src\downloader\httpEntityTag.h"></File>
  1843. <File RelativePath="..\panda\src\downloader\httpBasicAuthorization.I"></File>
  1844. <File RelativePath="..\panda\src\downloader\stringStreamBuf.h"></File>
  1845. <File RelativePath="..\panda\src\downloader\urlSpec.h"></File>
  1846. <File RelativePath="..\panda\src\downloader\httpDigestAuthorization.cxx"></File>
  1847. <File RelativePath="..\panda\src\downloader\multiplexStream.cxx"></File>
  1848. <File RelativePath="..\panda\src\downloader\documentSpec.I"></File>
  1849. <File RelativePath="..\panda\src\downloader\httpEntityTag.I"></File>
  1850. <File RelativePath="..\panda\src\downloader\chunkedStreamBuf.cxx"></File>
  1851. <File RelativePath="..\panda\src\downloader\downloadDb.I"></File>
  1852. <File RelativePath="..\panda\src\downloader\httpBasicAuthorization.cxx"></File>
  1853. <File RelativePath="..\panda\src\downloader\documentSpec.h"></File>
  1854. <File RelativePath="..\panda\src\downloader\httpChannel.I"></File>
  1855. </Filter>
  1856. <Filter Name="chan">
  1857. <File RelativePath="..\panda\src\chan\partSubset.I"></File>
  1858. <File RelativePath="..\panda\src\chan\animChannelFixed.I"></File>
  1859. <File RelativePath="..\panda\src\chan\animChannelScalarTable.cxx"></File>
  1860. <File RelativePath="..\panda\src\chan\config_chan.cxx"></File>
  1861. <File RelativePath="..\panda\src\chan\partBundleNode.h"></File>
  1862. <File RelativePath="..\panda\src\chan\animControl.I"></File>
  1863. <File RelativePath="..\panda\src\chan\movingPartScalar.I"></File>
  1864. <File RelativePath="..\panda\src\chan\movingPartBase.cxx"></File>
  1865. <File RelativePath="..\panda\src\chan\movingPartMatrix.I"></File>
  1866. <File RelativePath="..\panda\src\chan\config_chan.h"></File>
  1867. <File RelativePath="..\panda\src\chan\animChannelMatrixXfmTable.cxx"></File>
  1868. <File RelativePath="..\panda\src\chan\animChannelScalarDynamic.cxx"></File>
  1869. <File RelativePath="..\panda\src\chan\partGroup.I"></File>
  1870. <File RelativePath="..\panda\src\chan\animBundleNode.I"></File>
  1871. <File RelativePath="..\panda\src\chan\partBundleHandle.h"></File>
  1872. <File RelativePath="..\panda\src\chan\animGroup.cxx"></File>
  1873. <File RelativePath="..\panda\src\chan\partSubset.h"></File>
  1874. <File RelativePath="..\panda\src\chan\chan_composite.cxx"></File>
  1875. <File RelativePath="..\panda\src\chan\animBundleNode.cxx"></File>
  1876. <File RelativePath="..\panda\src\chan\partBundleNode.cxx"></File>
  1877. <File RelativePath="..\panda\src\chan\auto_bind.h"></File>
  1878. <File RelativePath="..\panda\src\chan\movingPartBase.I"></File>
  1879. <File RelativePath="..\panda\src\chan\partBundleNode.I"></File>
  1880. <File RelativePath="..\panda\src\chan\animChannelScalarTable.h"></File>
  1881. <File RelativePath="..\panda\src\chan\auto_bind.cxx"></File>
  1882. <File RelativePath="..\panda\src\chan\movingPart.I"></File>
  1883. <File RelativePath="..\panda\src\chan\partBundle.h"></File>
  1884. <File RelativePath="..\panda\src\chan\animBundleNode.h"></File>
  1885. <File RelativePath="..\panda\src\chan\vector_PartGroupStar.cxx"></File>
  1886. <File RelativePath="..\panda\src\chan\animChannelMatrixDynamic.cxx"></File>
  1887. <File RelativePath="..\panda\src\chan\animControlCollection.I"></File>
  1888. <File RelativePath="..\panda\src\chan\vector_PartGroupStar.h"></File>
  1889. <File RelativePath="..\panda\src\chan\animGroup.I"></File>
  1890. <File RelativePath="..\panda\src\chan\bindAnimRequest.h"></File>
  1891. <File RelativePath="..\panda\src\chan\animChannelBase.cxx"></File>
  1892. <File RelativePath="..\panda\src\chan\partBundle.I"></File>
  1893. <File RelativePath="..\panda\src\chan\animControl.h"></File>
  1894. <File RelativePath="..\panda\src\chan\animBundle.cxx"></File>
  1895. <File RelativePath="..\panda\src\chan\movingPartScalar.h"></File>
  1896. <File RelativePath="..\panda\src\chan\animChannelScalarDynamic.I"></File>
  1897. <File RelativePath="..\panda\src\chan\bindAnimRequest.cxx"></File>
  1898. <File RelativePath="..\panda\src\chan\animChannelMatrixXfmTable.I"></File>
  1899. <File RelativePath="..\panda\src\chan\animGroup.h"></File>
  1900. <File RelativePath="..\panda\src\chan\animControl.cxx"></File>
  1901. <File RelativePath="..\panda\src\chan\animChannel.I"></File>
  1902. <File RelativePath="..\panda\src\chan\animControlCollection.cxx"></File>
  1903. <File RelativePath="..\panda\src\chan\animPreloadTable.h"></File>
  1904. <File RelativePath="..\panda\src\chan\movingPartBase.h"></File>
  1905. <File RelativePath="..\panda\src\chan\partBundle.cxx"></File>
  1906. <File RelativePath="..\panda\src\chan\movingPartScalar.cxx"></File>
  1907. <File RelativePath="..\panda\src\chan\animPreloadTable.cxx"></File>
  1908. <File RelativePath="..\panda\src\chan\animChannelBase.h"></File>
  1909. <File RelativePath="..\panda\src\chan\partBundleHandle.cxx"></File>
  1910. <File RelativePath="..\panda\src\chan\animChannelMatrixFixed.h"></File>
  1911. <File RelativePath="..\panda\src\chan\partGroup.h"></File>
  1912. <File RelativePath="..\panda\src\chan\animBundle.I"></File>
  1913. <File RelativePath="..\panda\src\chan\partGroup.cxx"></File>
  1914. <File RelativePath="..\panda\src\chan\bindAnimRequest.I"></File>
  1915. <File RelativePath="..\panda\src\chan\animControlCollection.h"></File>
  1916. <File RelativePath="..\panda\src\chan\animChannel.h"></File>
  1917. <File RelativePath="..\panda\src\chan\partSubset.cxx"></File>
  1918. <File RelativePath="..\panda\src\chan\movingPartMatrix.cxx"></File>
  1919. <File RelativePath="..\panda\src\chan\animChannelMatrixDynamic.I"></File>
  1920. <File RelativePath="..\panda\src\chan\animChannelMatrixXfmTable.h"></File>
  1921. <File RelativePath="..\panda\src\chan\animChannelScalarDynamic.h"></File>
  1922. <File RelativePath="..\panda\src\chan\animBundle.h"></File>
  1923. <File RelativePath="..\panda\src\chan\chan_composite1.cxx"></File>
  1924. <File RelativePath="..\panda\src\chan\movingPart.h"></File>
  1925. <File RelativePath="..\panda\src\chan\animChannelMatrixDynamic.h"></File>
  1926. <File RelativePath="..\panda\src\chan\partBundleHandle.I"></File>
  1927. <File RelativePath="..\panda\src\chan\animChannelMatrixFixed.I"></File>
  1928. <File RelativePath="..\panda\src\chan\chan_composite2.cxx"></File>
  1929. <File RelativePath="..\panda\src\chan\animPreloadTable.I"></File>
  1930. <File RelativePath="..\panda\src\chan\animChannelBase.I"></File>
  1931. <File RelativePath="..\panda\src\chan\animChannelMatrixFixed.cxx"></File>
  1932. <File RelativePath="..\panda\src\chan\animChannel.cxx"></File>
  1933. <File RelativePath="..\panda\src\chan\animChannelFixed.h"></File>
  1934. <File RelativePath="..\panda\src\chan\animChannelScalarTable.I"></File>
  1935. <File RelativePath="..\panda\src\chan\movingPartMatrix.h"></File>
  1936. </Filter>
  1937. <Filter Name="doc">
  1938. <File RelativePath="..\panda\src\doc\sampleClass.I"></File>
  1939. <File RelativePath="..\panda\src\doc\sampleClass.h"></File>
  1940. <File RelativePath="..\panda\src\doc\sampleClass.cxx"></File>
  1941. </Filter>
  1942. <Filter Name="ode">
  1943. <File RelativePath="..\panda\src\ode\odeSurfaceParameters.cxx"></File>
  1944. <File RelativePath="..\panda\src\ode\odeSpace.h"></File>
  1945. <File RelativePath="..\panda\src\ode\odeCollisionEntry.I"></File>
  1946. <File RelativePath="..\panda\src\ode\odeJointCollection.cxx"></File>
  1947. <File RelativePath="..\panda\src\ode\odeJointGroup.cxx"></File>
  1948. <File RelativePath="..\panda\src\ode\odeAMotorJoint.cxx"></File>
  1949. <File RelativePath="..\panda\src\ode\odeHinge2Joint.h"></File>
  1950. <File RelativePath="..\panda\src\ode\odeJointGroup.h"></File>
  1951. <File RelativePath="..\panda\src\ode\odeGeom.h"></File>
  1952. <File RelativePath="..\panda\src\ode\odeFixedJoint.I"></File>
  1953. <File RelativePath="..\panda\src\ode\odeTriMeshData.h"></File>
  1954. <File RelativePath="..\panda\src\ode\odeSurfaceParameters.h"></File>
  1955. <File RelativePath="..\panda\src\ode\odeJoint.I"></File>
  1956. <File RelativePath="..\panda\src\ode\odeSphereGeom.h"></File>
  1957. <File RelativePath="..\panda\src\ode\odeCylinderGeom.h"></File>
  1958. <File RelativePath="..\panda\src\ode\odeHingeJoint.cxx"></File>
  1959. <File RelativePath="..\panda\src\ode\odeSurfaceParameters.I"></File>
  1960. <File RelativePath="..\panda\src\ode\odeCylinderGeom.cxx"></File>
  1961. <File RelativePath="..\panda\src\ode\odeContactJoint.h"></File>
  1962. <File RelativePath="..\panda\src\ode\odeSphereGeom.cxx"></File>
  1963. <File RelativePath="..\panda\src\ode\odeContactGeom.I"></File>
  1964. <File RelativePath="..\panda\src\ode\pode_composite3.cxx"></File>
  1965. <File RelativePath="..\panda\src\ode\odeCappedCylinderGeom.I"></File>
  1966. <File RelativePath="..\panda\src\ode\odeUniversalJoint.I"></File>
  1967. <File RelativePath="..\panda\src\ode\odeLMotorJoint.cxx"></File>
  1968. <File RelativePath="..\panda\src\ode\odeBallJoint.cxx"></File>
  1969. <File RelativePath="..\panda\src\ode\config_ode.cxx"></File>
  1970. <File RelativePath="..\panda\src\ode\odeJointGroup.I"></File>
  1971. <File RelativePath="..\panda\src\ode\odeConvexGeom.h"></File>
  1972. <File RelativePath="..\panda\src\ode\odeUtil.h"></File>
  1973. <File RelativePath="..\panda\src\ode\odeAMotorJoint.I"></File>
  1974. <File RelativePath="..\panda\src\ode\odeConvexGeom.I"></File>
  1975. <File RelativePath="..\panda\src\ode\odeTriMeshGeom.cxx"></File>
  1976. <File RelativePath="..\panda\src\ode\odeHashSpace.h"></File>
  1977. <File RelativePath="..\panda\src\ode\odeBody.h"></File>
  1978. <File RelativePath="..\panda\src\ode\odeRayGeom.cxx"></File>
  1979. <File RelativePath="..\panda\src\ode\odeSliderJoint.I"></File>
  1980. <File RelativePath="..\panda\src\ode\odeJointCollection.I"></File>
  1981. <File RelativePath="..\panda\src\ode\odeQuadTreeSpace.I"></File>
  1982. <File RelativePath="..\panda\src\ode\odeTriMeshData.I"></File>
  1983. <File RelativePath="..\panda\src\ode\odePlaneGeom.I"></File>
  1984. <File RelativePath="..\panda\src\ode\odeCappedCylinderGeom.cxx"></File>
  1985. <File RelativePath="..\panda\src\ode\odeBallJoint.h"></File>
  1986. <File RelativePath="..\panda\src\ode\odeQuadTreeSpace.h"></File>
  1987. <File RelativePath="..\panda\src\ode\odeSphereGeom.I"></File>
  1988. <File RelativePath="..\panda\src\ode\odeCollisionEntry.cxx"></File>
  1989. <File RelativePath="..\panda\src\ode\odeSpace.I"></File>
  1990. <File RelativePath="..\panda\src\ode\odeSimpleSpace.I"></File>
  1991. <File RelativePath="..\panda\src\ode\odeQuadTreeSpace.cxx"></File>
  1992. <File RelativePath="..\panda\src\ode\pode_composite1.cxx"></File>
  1993. <File RelativePath="..\panda\src\ode\odeGeom.cxx"></File>
  1994. <File RelativePath="..\panda\src\ode\odeHeightFieldGeom.h"></File>
  1995. <File RelativePath="..\panda\src\ode\odePlane2dJoint.h"></File>
  1996. <File RelativePath="..\panda\src\ode\odeSliderJoint.cxx"></File>
  1997. <File RelativePath="..\panda\src\ode\odeCappedCylinderGeom.h"></File>
  1998. <File RelativePath="..\panda\src\ode\odeTriMeshGeom.h"></File>
  1999. <File RelativePath="..\panda\src\ode\odeCollisionEntry.h"></File>
  2000. <File RelativePath="..\panda\src\ode\config_ode.h"></File>
  2001. <File RelativePath="..\panda\src\ode\odeHingeJoint.I"></File>
  2002. <File RelativePath="..\panda\src\ode\odeConvexGeom.cxx"></File>
  2003. <File RelativePath="..\panda\src\ode\odeBody.cxx"></File>
  2004. <File RelativePath="..\panda\src\ode\odeSliderJoint.h"></File>
  2005. <File RelativePath="..\panda\src\ode\odeUniversalJoint.h"></File>
  2006. <File RelativePath="..\panda\src\ode\odeNullJoint.cxx"></File>
  2007. <File RelativePath="..\panda\src\ode\odePlane2dJoint.I"></File>
  2008. <File RelativePath="..\panda\src\ode\odeContactGeom.cxx"></File>
  2009. <File RelativePath="..\panda\src\ode\odeWorld.I"></File>
  2010. <File RelativePath="..\panda\src\ode\odeJoint.cxx"></File>
  2011. <File RelativePath="..\panda\src\ode\odeSpace.cxx"></File>
  2012. <File RelativePath="..\panda\src\ode\odeLMotorJoint.h"></File>
  2013. <File RelativePath="..\panda\src\ode\odeGeom.I"></File>
  2014. <File RelativePath="..\panda\src\ode\odeRayGeom.I"></File>
  2015. <File RelativePath="..\panda\src\ode\odeTriMeshGeom.I"></File>
  2016. <File RelativePath="..\panda\src\ode\odeMass.h"></File>
  2017. <File RelativePath="..\panda\src\ode\odeMass.I"></File>
  2018. <File RelativePath="..\panda\src\ode\odeWorld.h"></File>
  2019. <File RelativePath="..\panda\src\ode\odeContact.I"></File>
  2020. <File RelativePath="..\panda\src\ode\odePlaneGeom.h"></File>
  2021. <File RelativePath="..\panda\src\ode\odeBody.I"></File>
  2022. <File RelativePath="..\panda\src\ode\odeBallJoint.I"></File>
  2023. <File RelativePath="..\panda\src\ode\odeAMotorJoint.h"></File>
  2024. <File RelativePath="..\panda\src\ode\odeJointCollection.h"></File>
  2025. <File RelativePath="..\panda\src\ode\odeSimpleSpace.h"></File>
  2026. <File RelativePath="..\panda\src\ode\odeHashSpace.I"></File>
  2027. <File RelativePath="..\panda\src\ode\odeBoxGeom.I"></File>
  2028. <File RelativePath="..\panda\src\ode\odeUniversalJoint.cxx"></File>
  2029. <File RelativePath="..\panda\src\ode\odeContactJoint.I"></File>
  2030. <File RelativePath="..\panda\src\ode\odeWorld.cxx"></File>
  2031. <File RelativePath="..\panda\src\ode\odeContactJoint.cxx"></File>
  2032. <File RelativePath="..\panda\src\ode\odeContact.cxx"></File>
  2033. <File RelativePath="..\panda\src\ode\odePlaneGeom.cxx"></File>
  2034. <File RelativePath="..\panda\src\ode\odeHingeJoint.h"></File>
  2035. <File RelativePath="..\panda\src\ode\odeNullJoint.I"></File>
  2036. <File RelativePath="..\panda\src\ode\odeHelperStructs.h"></File>
  2037. <File RelativePath="..\panda\src\ode\odeRayGeom.h"></File>
  2038. <File RelativePath="..\panda\src\ode\odePlane2dJoint.cxx"></File>
  2039. <File RelativePath="..\panda\src\ode\odeHinge2Joint.I"></File>
  2040. <File RelativePath="..\panda\src\ode\pode_composite2.cxx"></File>
  2041. <File RelativePath="..\panda\src\ode\odeCylinderGeom.I"></File>
  2042. <File RelativePath="..\panda\src\ode\odeTriMeshData.cxx"></File>
  2043. <File RelativePath="..\panda\src\ode\odeMass.cxx"></File>
  2044. <File RelativePath="..\panda\src\ode\odeLMotorJoint.I"></File>
  2045. <File RelativePath="..\panda\src\ode\odeJoint.h"></File>
  2046. <File RelativePath="..\panda\src\ode\odeFixedJoint.cxx"></File>
  2047. <File RelativePath="..\panda\src\ode\odeContactGeom.h"></File>
  2048. <File RelativePath="..\panda\src\ode\odeSimpleSpace.cxx"></File>
  2049. <File RelativePath="..\panda\src\ode\odeContact.h"></File>
  2050. <File RelativePath="..\panda\src\ode\odeHinge2Joint.cxx"></File>
  2051. <File RelativePath="..\panda\src\ode\odeNullJoint.h"></File>
  2052. <File RelativePath="..\panda\src\ode\ode_includes.h"></File>
  2053. <File RelativePath="..\panda\src\ode\odeHashSpace.cxx"></File>
  2054. <File RelativePath="..\panda\src\ode\odeFixedJoint.h"></File>
  2055. <File RelativePath="..\panda\src\ode\odeBoxGeom.cxx"></File>
  2056. <File RelativePath="..\panda\src\ode\odeBoxGeom.h"></File>
  2057. <File RelativePath="..\panda\src\ode\odeUtil.cxx"></File>
  2058. </Filter>
  2059. <Filter Name="pnmimagetypes">
  2060. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeTGA.cxx"></File>
  2061. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSGI.h"></File>
  2062. <File RelativePath="..\panda\src\pnmimagetypes\pnmimagetypes_composite1.cxx"></File>
  2063. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSoftImage.h"></File>
  2064. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypePNG.h"></File>
  2065. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeTGA.h"></File>
  2066. <File RelativePath="..\panda\src\pnmimagetypes\sgi.h"></File>
  2067. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeIMG.h"></File>
  2068. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeJPG.cxx"></File>
  2069. <File RelativePath="..\panda\src\pnmimagetypes\config_pnmimagetypes.h"></File>
  2070. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeBMP.cxx"></File>
  2071. <File RelativePath="..\panda\src\pnmimagetypes\pnmimagetypes_composite2.cxx"></File>
  2072. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeTIFF.cxx"></File>
  2073. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeJPGReader.cxx"></File>
  2074. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSGIReader.cxx"></File>
  2075. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeJPGWriter.cxx"></File>
  2076. <File RelativePath="..\panda\src\pnmimagetypes\bmp.h"></File>
  2077. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSGI.cxx"></File>
  2078. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeJPG.h"></File>
  2079. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSGIWriter.cxx"></File>
  2080. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypePNM.cxx"></File>
  2081. <File RelativePath="..\panda\src\pnmimagetypes\config_pnmimagetypes.cxx"></File>
  2082. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeTIFF.h"></File>
  2083. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeBMPReader.cxx"></File>
  2084. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeSoftImage.cxx"></File>
  2085. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeBMP.h"></File>
  2086. <File RelativePath="..\panda\src\pnmimagetypes\pnmimagetypes_composite.cxx"></File>
  2087. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypePNM.h"></File>
  2088. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeIMG.cxx"></File>
  2089. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypeBMPWriter.cxx"></File>
  2090. <File RelativePath="..\panda\src\pnmimagetypes\pnmFileTypePNG.cxx"></File>
  2091. <File RelativePath="..\panda\src\pnmimagetypes\colrops.c"></File>
  2092. </Filter>
  2093. <Filter Name="downloadertools">
  2094. <File RelativePath="..\panda\src\downloadertools\show_ddb.cxx"></File>
  2095. <File RelativePath="..\panda\src\downloadertools\pencrypt.cxx"></File>
  2096. <File RelativePath="..\panda\src\downloadertools\check_adler.cxx"></File>
  2097. <File RelativePath="..\panda\src\downloadertools\pdecrypt.cxx"></File>
  2098. <File RelativePath="..\panda\src\downloadertools\pzip.cxx"></File>
  2099. <File RelativePath="..\panda\src\downloadertools\multify.cxx"></File>
  2100. <File RelativePath="..\panda\src\downloadertools\check_md5.cxx"></File>
  2101. <File RelativePath="..\panda\src\downloadertools\check_crc.cxx"></File>
  2102. <File RelativePath="..\panda\src\downloadertools\apply_patch.cxx"></File>
  2103. <File RelativePath="..\panda\src\downloadertools\build_patch.cxx"></File>
  2104. <File RelativePath="..\panda\src\downloadertools\punzip.cxx"></File>
  2105. </Filter>
  2106. <Filter Name="gles2gsg">
  2107. <File RelativePath="..\panda\src\gles2gsg\gles2gsg_composite1.cxx"></File>
  2108. <File RelativePath="..\panda\src\gles2gsg\gles2gsg.cxx"></File>
  2109. <File RelativePath="..\panda\src\gles2gsg\config_gles2gsg.h"></File>
  2110. <File RelativePath="..\panda\src\gles2gsg\gles2gsg.h"></File>
  2111. <File RelativePath="..\panda\src\gles2gsg\gles2gsg_composite.cxx"></File>
  2112. <File RelativePath="..\panda\src\gles2gsg\config_gles2gsg.cxx"></File>
  2113. </Filter>
  2114. <Filter Name="express">
  2115. <File RelativePath="..\panda\src\express\openSSLWrapper.I"></File>
  2116. <File RelativePath="..\panda\src\express\nodePointerTo.h"></File>
  2117. <File RelativePath="..\panda\src\express\encrypt_string.cxx"></File>
  2118. <File RelativePath="..\panda\src\express\nodeReferenceCount.h"></File>
  2119. <File RelativePath="..\panda\src\express\virtualFileSimple.I"></File>
  2120. <File RelativePath="..\panda\src\express\zStream.cxx"></File>
  2121. <File RelativePath="..\panda\src\express\memoryUsagePointerCounts.h"></File>
  2122. <File RelativePath="..\panda\src\express\weakReferenceList.I"></File>
  2123. <File RelativePath="..\panda\src\express\pointerToBase.h"></File>
  2124. <File RelativePath="..\panda\src\express\openSSLWrapper.cxx"></File>
  2125. <File RelativePath="..\panda\src\express\zStreamBuf.cxx"></File>
  2126. <File RelativePath="..\panda\src\express\pointerToArrayBase.h"></File>
  2127. <File RelativePath="..\panda\src\express\buffer.cxx"></File>
  2128. <File RelativePath="..\panda\src\express\pta_uchar.h"></File>
  2129. <File RelativePath="..\panda\src\express\virtualFileMountMultifile.h"></File>
  2130. <File RelativePath="..\panda\src\express\config_express.h"></File>
  2131. <File RelativePath="..\panda\src\express\hashVal.h"></File>
  2132. <File RelativePath="..\panda\src\express\export_dtool.h"></File>
  2133. <File RelativePath="..\panda\src\express\nodeReferenceCount.cxx"></File>
  2134. <File RelativePath="..\panda\src\express\weakPointerTo.cxx"></File>
  2135. <File RelativePath="..\panda\src\express\encrypt_string.h"></File>
  2136. <File RelativePath="..\panda\src\express\weakPointerToVoid.I"></File>
  2137. <File RelativePath="..\panda\src\express\pta_uchar.cxx"></File>
  2138. <File RelativePath="..\panda\src\express\make_ca_bundle.cxx"></File>
  2139. <File RelativePath="..\panda\src\express\express_composite2.cxx"></File>
  2140. <File RelativePath="..\panda\src\express\indirectLess.h"></File>
  2141. <File RelativePath="..\panda\src\express\memoryInfo.I"></File>
  2142. <File RelativePath="..\panda\src\express\circBuffer.h"></File>
  2143. <File RelativePath="..\panda\src\express\memoryUsage.cxx"></File>
  2144. <File RelativePath="..\panda\src\express\ordered_vector.h"></File>
  2145. <File RelativePath="..\panda\src\express\multifile.h"></File>
  2146. <File RelativePath="..\panda\src\express\virtualFileMountSystem.cxx"></File>
  2147. <File RelativePath="..\panda\src\express\error_utils.cxx"></File>
  2148. <File RelativePath="..\panda\src\express\pta_float.h"></File>
  2149. <File RelativePath="..\panda\src\express\zStream.h"></File>
  2150. <File RelativePath="..\panda\src\express\checksumHashGenerator.h"></File>
  2151. <File RelativePath="..\panda\src\express\memoryInfo.h"></File>
  2152. <File RelativePath="..\panda\src\express\textEncoder.I"></File>
  2153. <File RelativePath="..\panda\src\express\virtualFileMount.h"></File>
  2154. <File RelativePath="..\panda\src\express\typedReferenceCount.cxx"></File>
  2155. <File RelativePath="..\panda\src\express\test_types.cxx"></File>
  2156. <File RelativePath="..\panda\src\express\weakPointerTo.I"></File>
  2157. <File RelativePath="..\panda\src\express\pta_int.cxx"></File>
  2158. <File RelativePath="..\panda\src\express\threadSafePointerToBase.I"></File>
  2159. <File RelativePath="..\panda\src\express\namable.I"></File>
  2160. <File RelativePath="..\panda\src\express\vector_float.cxx"></File>
  2161. <File RelativePath="..\panda\src\express\pointerTo.h"></File>
  2162. <File RelativePath="..\panda\src\express\datagramSink.h"></File>
  2163. <File RelativePath="..\panda\src\express\copy_stream.cxx"></File>
  2164. <File RelativePath="..\panda\src\express\datagramSink.I"></File>
  2165. <File RelativePath="..\panda\src\express\nodePointerTo.cxx"></File>
  2166. <File RelativePath="..\panda\src\express\subStream.cxx"></File>
  2167. <File RelativePath="..\panda\src\express\virtualFileList.cxx"></File>
  2168. <File RelativePath="..\panda\src\express\zStreamBuf.h"></File>
  2169. <File RelativePath="..\panda\src\express\memoryUsage.h"></File>
  2170. <File RelativePath="..\panda\src\express\virtualFileMount.I"></File>
  2171. <File RelativePath="..\panda\src\express\virtualFileSystem.h"></File>
  2172. <File RelativePath="..\panda\src\express\ca_bundle_data_src.c"></File>
  2173. <File RelativePath="..\panda\src\express\pointerTo.cxx"></File>
  2174. <File RelativePath="..\panda\src\express\pStatCollectorForwardBase.h"></File>
  2175. <File RelativePath="..\panda\src\express\weakPointerToBase.h"></File>
  2176. <File RelativePath="..\panda\src\express\hashGeneratorBase.I"></File>
  2177. <File RelativePath="..\panda\src\express\hashGeneratorBase.cxx"></File>
  2178. <File RelativePath="..\panda\src\express\stringDecoder.cxx"></File>
  2179. <File RelativePath="..\panda\src\express\pointerToBase.I"></File>
  2180. <File RelativePath="..\panda\src\express\trueClock.cxx"></File>
  2181. <File RelativePath="..\panda\src\express\dcast.cxx"></File>
  2182. <File RelativePath="..\panda\src\express\datagramGenerator.h"></File>
  2183. <File RelativePath="..\panda\src\express\weakPointerToVoid.h"></File>
  2184. <File RelativePath="..\panda\src\express\datagram.I"></File>
  2185. <File RelativePath="..\panda\src\express\threadSafePointerTo.h"></File>
  2186. <File RelativePath="..\panda\src\express\weakPointerCallback.h"></File>
  2187. <File RelativePath="..\panda\src\express\datagram.h"></File>
  2188. <File RelativePath="..\panda\src\express\textEncoder.h"></File>
  2189. <File RelativePath="..\panda\src\express\multifile.cxx"></File>
  2190. <File RelativePath="..\panda\src\express\memoryUsagePointerCounts.I"></File>
  2191. <File RelativePath="..\panda\src\express\stringDecoder.I"></File>
  2192. <File RelativePath="..\panda\src\express\unicodeLatinMap.cxx"></File>
  2193. <File RelativePath="..\panda\src\express\pointerToBase.cxx"></File>
  2194. <File RelativePath="..\panda\src\express\pointerToVoid.cxx"></File>
  2195. <File RelativePath="..\panda\src\express\virtualFileSimple.h"></File>
  2196. <File RelativePath="..\panda\src\express\virtualFileMountMultifile.cxx"></File>
  2197. <File RelativePath="..\panda\src\express\windowsRegistry.cxx"></File>
  2198. <File RelativePath="..\panda\src\express\ramfile.cxx"></File>
  2199. <File RelativePath="..\panda\src\express\checksumHashGenerator.I"></File>
  2200. <File RelativePath="..\panda\src\express\checksumHashGenerator.cxx"></File>
  2201. <File RelativePath="..\panda\src\express\windowsRegistry.h"></File>
  2202. <File RelativePath="..\panda\src\express\typedReferenceCount.I"></File>
  2203. <File RelativePath="..\panda\src\express\weakPointerCallback.cxx"></File>
  2204. <File RelativePath="..\panda\src\express\stringDecoder.h"></File>
  2205. <File RelativePath="..\panda\src\express\copy_stream.h"></File>
  2206. <File RelativePath="..\panda\src\express\memoryUsagePointers.cxx"></File>
  2207. <File RelativePath="..\panda\src\express\nodeReferenceCount.I"></File>
  2208. <File RelativePath="..\panda\src\express\buffer.I"></File>
  2209. <File RelativePath="..\panda\src\express\datagram.cxx"></File>
  2210. <File RelativePath="..\panda\src\express\dcast.h"></File>
  2211. <File RelativePath="..\panda\src\express\pointerToArray.cxx"></File>
  2212. <File RelativePath="..\panda\src\express\typedef.h"></File>
  2213. <File RelativePath="..\panda\src\express\virtualFileMountSystem.h"></File>
  2214. <File RelativePath="..\panda\src\express\typedReferenceCount.h"></File>
  2215. <File RelativePath="..\panda\src\express\virtualFileMountSystem.I"></File>
  2216. <File RelativePath="..\panda\src\express\nodePointerTo.I"></File>
  2217. <File RelativePath="..\panda\src\express\profileTimer.I"></File>
  2218. <File RelativePath="..\panda\src\express\hashVal.I"></File>
  2219. <File RelativePath="..\panda\src\express\pta_float.cxx"></File>
  2220. <File RelativePath="..\panda\src\express\weakPointerTo.h"></File>
  2221. <File RelativePath="..\panda\src\express\ramfile.h"></File>
  2222. <File RelativePath="..\panda\src\express\hashVal.cxx"></File>
  2223. <File RelativePath="..\panda\src\express\pointerToArrayBase.I"></File>
  2224. <File RelativePath="..\panda\src\express\datagramIterator.I"></File>
  2225. <File RelativePath="..\panda\src\express\vector_uchar.h"></File>
  2226. <File RelativePath="..\panda\src\express\profileTimer.h"></File>
  2227. <File RelativePath="..\panda\src\express\datagramIterator.h"></File>
  2228. <File RelativePath="..\panda\src\express\threadSafePointerTo.cxx"></File>
  2229. <File RelativePath="..\panda\src\express\profileTimer.cxx"></File>
  2230. <File RelativePath="..\panda\src\express\datagramGenerator.cxx"></File>
  2231. <File RelativePath="..\panda\src\express\hashGeneratorBase.h"></File>
  2232. <File RelativePath="..\panda\src\express\patchfile.cxx"></File>
  2233. <File RelativePath="..\panda\src\express\test_ordered_vector.cxx"></File>
  2234. <File RelativePath="..\panda\src\express\nodePointerToBase.h"></File>
  2235. <File RelativePath="..\panda\src\express\virtualFile.h"></File>
  2236. <File RelativePath="..\panda\src\express\zStream.I"></File>
  2237. <File RelativePath="..\panda\src\express\subStreamBuf.h"></File>
  2238. <File RelativePath="..\panda\src\express\virtualFile.cxx"></File>
  2239. <File RelativePath="..\panda\src\express\password_hash.cxx"></File>
  2240. <File RelativePath="..\panda\src\express\datagramSink.cxx"></File>
  2241. <File RelativePath="..\panda\src\express\pointerTo.I"></File>
  2242. <File RelativePath="..\panda\src\express\virtualFileSystem.I"></File>
  2243. <File RelativePath="..\panda\src\express\referenceCount.I"></File>
  2244. <File RelativePath="..\panda\src\express\patchfile.h"></File>
  2245. <File RelativePath="..\panda\src\express\ordered_vector.I"></File>
  2246. <File RelativePath="..\panda\src\express\pointerToVoid.h"></File>
  2247. <File RelativePath="..\panda\src\express\weakPointerToBase.cxx"></File>
  2248. <File RelativePath="..\panda\src\express\virtualFileMountMultifile.I"></File>
  2249. <File RelativePath="..\panda\src\express\compress_string.h"></File>
  2250. <File RelativePath="..\panda\src\express\memoryUsagePointers.h"></File>
  2251. <File RelativePath="..\panda\src\express\memoryUsage.I"></File>
  2252. <File RelativePath="..\panda\src\express\referenceCount.h"></File>
  2253. <File RelativePath="..\panda\src\express\ordered_vector.cxx"></File>
  2254. <File RelativePath="..\panda\src\express\virtualFileList.I"></File>
  2255. <File RelativePath="..\panda\src\express\circBuffer.I"></File>
  2256. <File RelativePath="..\panda\src\express\weakReferenceList.cxx"></File>
  2257. <File RelativePath="..\panda\src\express\weakPointerToBase.I"></File>
  2258. <File RelativePath="..\panda\src\express\textEncoder.cxx"></File>
  2259. <File RelativePath="..\panda\src\express\referenceCount.cxx"></File>
  2260. <File RelativePath="..\panda\src\express\buffer.h"></File>
  2261. <File RelativePath="..\panda\src\express\weakReferenceList.h"></File>
  2262. <File RelativePath="..\panda\src\express\unicodeLatinMap.h"></File>
  2263. <File RelativePath="..\panda\src\express\namable.h"></File>
  2264. <File RelativePath="..\panda\src\express\indirectLess.I"></File>
  2265. <File RelativePath="..\panda\src\express\pta_int.h"></File>
  2266. <File RelativePath="..\panda\src\express\memoryUsagePointers.I"></File>
  2267. <File RelativePath="..\panda\src\express\trueClock.h"></File>
  2268. <File RelativePath="..\panda\src\express\memoryInfo.cxx"></File>
  2269. <File RelativePath="..\panda\src\express\virtualFileSystem.cxx"></File>
  2270. <File RelativePath="..\panda\src\express\namable.cxx"></File>
  2271. <File RelativePath="..\panda\src\express\trueClock.I"></File>
  2272. <File RelativePath="..\panda\src\express\config_express.cxx"></File>
  2273. <File RelativePath="..\panda\src\express\threadSafePointerToBase.cxx"></File>
  2274. <File RelativePath="..\panda\src\express\pointerToVoid.I"></File>
  2275. <File RelativePath="..\panda\src\express\vector_uchar.cxx"></File>
  2276. <File RelativePath="..\panda\src\express\vector_float.h"></File>
  2277. <File RelativePath="..\panda\src\express\express_composite1.cxx"></File>
  2278. <File RelativePath="..\panda\src\express\virtualFileSimple.cxx"></File>
  2279. <File RelativePath="..\panda\src\express\pointerToArray.h"></File>
  2280. <File RelativePath="..\panda\src\express\memoryUsagePointerCounts.cxx"></File>
  2281. <File RelativePath="..\panda\src\express\datagramIterator.cxx"></File>
  2282. <File RelativePath="..\panda\src\express\nodePointerToBase.cxx"></File>
  2283. <File RelativePath="..\panda\src\express\openSSLWrapper.h"></File>
  2284. <File RelativePath="..\panda\src\express\subStream.h"></File>
  2285. <File RelativePath="..\panda\src\express\subStream.I"></File>
  2286. <File RelativePath="..\panda\src\express\password_hash.h"></File>
  2287. <File RelativePath="..\panda\src\express\pStatCollectorForwardBase.cxx"></File>
  2288. <File RelativePath="..\panda\src\express\pointerToArray.I"></File>
  2289. <File RelativePath="..\panda\src\express\error_utils.h"></File>
  2290. <File RelativePath="..\panda\src\express\ramfile.I"></File>
  2291. <File RelativePath="..\panda\src\express\virtualFileComposite.cxx"></File>
  2292. <File RelativePath="..\panda\src\express\weakPointerToVoid.cxx"></File>
  2293. <File RelativePath="..\panda\src\express\test_zstream.cxx"></File>
  2294. <File RelativePath="..\panda\src\express\virtualFileMount.cxx"></File>
  2295. <File RelativePath="..\panda\src\express\nodePointerToBase.I"></File>
  2296. <File RelativePath="..\panda\src\express\virtualFileComposite.h"></File>
  2297. <File RelativePath="..\panda\src\express\datagramGenerator.I"></File>
  2298. <File RelativePath="..\panda\src\express\compress_string.cxx"></File>
  2299. <File RelativePath="..\panda\src\express\subStreamBuf.cxx"></File>
  2300. <File RelativePath="..\panda\src\express\threadSafePointerToBase.h"></File>
  2301. <File RelativePath="..\panda\src\express\pointerToArrayBase.cxx"></File>
  2302. <File RelativePath="..\panda\src\express\express_composite.cxx"></File>
  2303. <File RelativePath="..\panda\src\express\virtualFileComposite.I"></File>
  2304. <File RelativePath="..\panda\src\express\weakPointerCallback.I"></File>
  2305. <File RelativePath="..\panda\src\express\multifile.I"></File>
  2306. <File RelativePath="..\panda\src\express\virtualFile.I"></File>
  2307. <File RelativePath="..\panda\src\express\patchfile.I"></File>
  2308. <File RelativePath="..\panda\src\express\threadSafePointerTo.I"></File>
  2309. <File RelativePath="..\panda\src\express\virtualFileList.h"></File>
  2310. </Filter>
  2311. <Filter Name="iphonedisplay">
  2312. <File RelativePath="..\panda\src\iphonedisplay\iPhoneGraphicsStateGuardian.h"></File>
  2313. <File RelativePath="..\panda\src\iphonedisplay\iPhoneGraphicsPipe.h"></File>
  2314. <File RelativePath="..\panda\src\iphonedisplay\config_iphonedisplay.h"></File>
  2315. <File RelativePath="..\panda\src\iphonedisplay\eaglView.h"></File>
  2316. <File RelativePath="..\panda\src\iphonedisplay\iPhoneGraphicsWindow.h"></File>
  2317. <File RelativePath="..\panda\src\iphonedisplay\viewController.h"></File>
  2318. <File RelativePath="..\panda\src\iphonedisplay\iPhoneGraphicsWindow.I"></File>
  2319. </Filter>
  2320. <Filter Name="pstatclient">
  2321. <File RelativePath="..\panda\src\pstatclient\pStatServerControlMessage.cxx"></File>
  2322. <File RelativePath="..\panda\src\pstatclient\pStatCollectorForward.h"></File>
  2323. <File RelativePath="..\panda\src\pstatclient\pStatClientControlMessage.h"></File>
  2324. <File RelativePath="..\panda\src\pstatclient\pStatServerControlMessage.h"></File>
  2325. <File RelativePath="..\panda\src\pstatclient\config_pstats.h"></File>
  2326. <File RelativePath="..\panda\src\pstatclient\config_pstats.cxx"></File>
  2327. <File RelativePath="..\panda\src\pstatclient\pStatClient.cxx"></File>
  2328. <File RelativePath="..\panda\src\pstatclient\pStatFrameData.I"></File>
  2329. <File RelativePath="..\panda\src\pstatclient\test_client.cxx"></File>
  2330. <File RelativePath="..\panda\src\pstatclient\pStatThread.cxx"></File>
  2331. <File RelativePath="..\panda\src\pstatclient\pStatClient.I"></File>
  2332. <File RelativePath="..\panda\src\pstatclient\pstatclient_composite1.cxx"></File>
  2333. <File RelativePath="..\panda\src\pstatclient\pStatClientImpl.cxx"></File>
  2334. <File RelativePath="..\panda\src\pstatclient\pstatclient_composite.cxx"></File>
  2335. <File RelativePath="..\panda\src\pstatclient\pStatTimer.I"></File>
  2336. <File RelativePath="..\panda\src\pstatclient\pStatClient.h"></File>
  2337. <File RelativePath="..\panda\src\pstatclient\pStatProperties.h"></File>
  2338. <File RelativePath="..\panda\src\pstatclient\pStatClientImpl.I"></File>
  2339. <File RelativePath="..\panda\src\pstatclient\pStatClientVersion.h"></File>
  2340. <File RelativePath="..\panda\src\pstatclient\pStatCollectorForward.cxx"></File>
  2341. <File RelativePath="..\panda\src\pstatclient\pStatFrameData.cxx"></File>
  2342. <File RelativePath="..\panda\src\pstatclient\pStatThread.I"></File>
  2343. <File RelativePath="..\panda\src\pstatclient\pStatCollectorDef.cxx"></File>
  2344. <File RelativePath="..\panda\src\pstatclient\pStatClientImpl.h"></File>
  2345. <File RelativePath="..\panda\src\pstatclient\pstatclient_composite2.cxx"></File>
  2346. <File RelativePath="..\panda\src\pstatclient\pStatClientVersion.I"></File>
  2347. <File RelativePath="..\panda\src\pstatclient\pStatClientControlMessage.cxx"></File>
  2348. <File RelativePath="..\panda\src\pstatclient\pStatCollectorDef.h"></File>
  2349. <File RelativePath="..\panda\src\pstatclient\pStatTimer.h"></File>
  2350. <File RelativePath="..\panda\src\pstatclient\pStatClientVersion.cxx"></File>
  2351. <File RelativePath="..\panda\src\pstatclient\pStatCollector.I"></File>
  2352. <File RelativePath="..\panda\src\pstatclient\pStatProperties.cxx"></File>
  2353. <File RelativePath="..\panda\src\pstatclient\pStatCollectorForward.I"></File>
  2354. <File RelativePath="..\panda\src\pstatclient\pStatCollector.h"></File>
  2355. <File RelativePath="..\panda\src\pstatclient\pStatThread.h"></File>
  2356. <File RelativePath="..\panda\src\pstatclient\pStatFrameData.h"></File>
  2357. </Filter>
  2358. <Filter Name="framework">
  2359. <File RelativePath="..\panda\src\framework\rock_floor.rgb.c"></File>
  2360. <File RelativePath="..\panda\src\framework\framework_composite1.cxx"></File>
  2361. <File RelativePath="..\panda\src\framework\windowFramework.I"></File>
  2362. <File RelativePath="..\panda\src\framework\pandaFramework.I"></File>
  2363. <File RelativePath="..\panda\src\framework\shuttle_controls.bam.c"></File>
  2364. <File RelativePath="..\panda\src\framework\config_framework.h"></File>
  2365. <File RelativePath="..\panda\src\framework\windowFramework.h"></File>
  2366. <File RelativePath="..\panda\src\framework\windowFramework.cxx"></File>
  2367. <File RelativePath="..\panda\src\framework\config_framework.cxx"></File>
  2368. <File RelativePath="..\panda\src\framework\pandaFramework.h"></File>
  2369. <File RelativePath="..\panda\src\framework\pandaFramework.cxx"></File>
  2370. <File RelativePath="..\panda\src\framework\framework_composite.cxx"></File>
  2371. </Filter>
  2372. <Filter Name="gsgbase">
  2373. <File RelativePath="..\panda\src\gsgbase\graphicsOutputBase.cxx"></File>
  2374. <File RelativePath="..\panda\src\gsgbase\displayRegionBase.h"></File>
  2375. <File RelativePath="..\panda\src\gsgbase\displayRegionBase.I"></File>
  2376. <File RelativePath="..\panda\src\gsgbase\gsgbase_composite.cxx"></File>
  2377. <File RelativePath="..\panda\src\gsgbase\config_gsgbase.cxx"></File>
  2378. <File RelativePath="..\panda\src\gsgbase\graphicsOutputBase.I"></File>
  2379. <File RelativePath="..\panda\src\gsgbase\displayRegionBase.cxx"></File>
  2380. <File RelativePath="..\panda\src\gsgbase\gsgbase_composite1.cxx"></File>
  2381. <File RelativePath="..\panda\src\gsgbase\config_gsgbase.h"></File>
  2382. <File RelativePath="..\panda\src\gsgbase\test_gsgbase.cxx"></File>
  2383. <File RelativePath="..\panda\src\gsgbase\graphicsStateGuardianBase.h"></File>
  2384. <File RelativePath="..\panda\src\gsgbase\graphicsOutputBase.h"></File>
  2385. <File RelativePath="..\panda\src\gsgbase\graphicsStateGuardianBase.cxx"></File>
  2386. </Filter>
  2387. <Filter Name="lerp">
  2388. <File RelativePath="..\panda\src\lerp\lerpchans.h"></File>
  2389. <File RelativePath="..\panda\src\lerp\lerpblend.cxx"></File>
  2390. <File RelativePath="..\panda\src\lerp\lerp_composite1.cxx"></File>
  2391. <File RelativePath="..\panda\src\lerp\lerpfunctor.h"></File>
  2392. <File RelativePath="..\panda\src\lerp\lerpfunctor.cxx"></File>
  2393. <File RelativePath="..\panda\src\lerp\config_lerp.h"></File>
  2394. <File RelativePath="..\panda\src\lerp\config_lerp.cxx"></File>
  2395. <File RelativePath="..\panda\src\lerp\lerpblend.h"></File>
  2396. <File RelativePath="..\panda\src\lerp\lerp.h"></File>
  2397. <File RelativePath="..\panda\src\lerp\lerp.cxx"></File>
  2398. <File RelativePath="..\panda\src\lerp\lerp_composite.cxx"></File>
  2399. </Filter>
  2400. <Filter Name="effects">
  2401. <File RelativePath="..\panda\src\effects\config_effects.cxx"></File>
  2402. <File RelativePath="..\panda\src\effects\lensFlareNode.I"></File>
  2403. <File RelativePath="..\panda\src\effects\effects_composite1.cxx"></File>
  2404. <File RelativePath="..\panda\src\effects\effects_composite.cxx"></File>
  2405. <File RelativePath="..\panda\src\effects\lensFlareNode.cxx"></File>
  2406. <File RelativePath="..\panda\src\effects\lensFlareNode.h"></File>
  2407. <File RelativePath="..\panda\src\effects\config_effects.h"></File>
  2408. </Filter>
  2409. <Filter Name="mesadisplay">
  2410. <File RelativePath="..\panda\src\mesadisplay\mesadisplay_composite.cxx"></File>
  2411. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsPipe.cxx"></File>
  2412. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsBuffer.h"></File>
  2413. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsStateGuardian.I"></File>
  2414. <File RelativePath="..\panda\src\mesadisplay\mesagsg.cxx"></File>
  2415. <File RelativePath="..\panda\src\mesadisplay\mesagsg.h"></File>
  2416. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsPipe.I"></File>
  2417. <File RelativePath="..\panda\src\mesadisplay\mesadisplay_composite1.cxx"></File>
  2418. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsStateGuardian.h"></File>
  2419. <File RelativePath="..\panda\src\mesadisplay\config_mesadisplay.cxx"></File>
  2420. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsBuffer.I"></File>
  2421. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsBuffer.cxx"></File>
  2422. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsPipe.h"></File>
  2423. <File RelativePath="..\panda\src\mesadisplay\config_mesadisplay.h"></File>
  2424. <File RelativePath="..\panda\src\mesadisplay\osMesaGraphicsStateGuardian.cxx"></File>
  2425. </Filter>
  2426. <Filter Name="egg2pg">
  2427. <File RelativePath="..\panda\src\egg2pg\eggLoader.h"></File>
  2428. <File RelativePath="..\panda\src\egg2pg\load_egg_file.cxx"></File>
  2429. <File RelativePath="..\panda\src\egg2pg\egg2pg_composite1.cxx"></File>
  2430. <File RelativePath="..\panda\src\egg2pg\eggLoader.cxx"></File>
  2431. <File RelativePath="..\panda\src\egg2pg\eggRenderState.h"></File>
  2432. <File RelativePath="..\panda\src\egg2pg\deferredNodeProperty.cxx"></File>
  2433. <File RelativePath="..\panda\src\egg2pg\eggBinner.h"></File>
  2434. <File RelativePath="..\panda\src\egg2pg\characterMaker.cxx"></File>
  2435. <File RelativePath="..\panda\src\egg2pg\eggRenderState.I"></File>
  2436. <File RelativePath="..\panda\src\egg2pg\egg_parametrics.h"></File>
  2437. <File RelativePath="..\panda\src\egg2pg\config_egg2pg.cxx"></File>
  2438. <File RelativePath="..\panda\src\egg2pg\loaderFileTypeEgg.h"></File>
  2439. <File RelativePath="..\panda\src\egg2pg\eggBinner.cxx"></File>
  2440. <File RelativePath="..\panda\src\egg2pg\animBundleMaker.h"></File>
  2441. <File RelativePath="..\panda\src\egg2pg\load_egg_file.h"></File>
  2442. <File RelativePath="..\panda\src\egg2pg\characterMaker.h"></File>
  2443. <File RelativePath="..\panda\src\egg2pg\egg2pg_composite2.cxx"></File>
  2444. <File RelativePath="..\panda\src\egg2pg\loaderFileTypeEgg.cxx"></File>
  2445. <File RelativePath="..\panda\src\egg2pg\config_egg2pg.h"></File>
  2446. <File RelativePath="..\panda\src\egg2pg\deferredNodeProperty.h"></File>
  2447. <File RelativePath="..\panda\src\egg2pg\eggRenderState.cxx"></File>
  2448. <File RelativePath="..\panda\src\egg2pg\egg_parametrics.cxx"></File>
  2449. <File RelativePath="..\panda\src\egg2pg\egg2pg_composite.cxx"></File>
  2450. <File RelativePath="..\panda\src\egg2pg\eggLoader.I"></File>
  2451. <File RelativePath="..\panda\src\egg2pg\animBundleMaker.cxx"></File>
  2452. </Filter>
  2453. <Filter Name="windisplay">
  2454. <File RelativePath="..\panda\src\windisplay\winGraphicsPipe.cxx"></File>
  2455. <File RelativePath="..\panda\src\windisplay\config_windisplay.h"></File>
  2456. <File RelativePath="..\panda\src\windisplay\winGraphicsWindow.h"></File>
  2457. <File RelativePath="..\panda\src\windisplay\windisplay_composite1.cxx"></File>
  2458. <File RelativePath="..\panda\src\windisplay\winGraphicsWindow.cxx"></File>
  2459. <File RelativePath="..\panda\src\windisplay\winGraphicsWindow.I"></File>
  2460. <File RelativePath="..\panda\src\windisplay\winGraphicsPipe.I"></File>
  2461. <File RelativePath="..\panda\src\windisplay\windisplay_composite.cxx"></File>
  2462. <File RelativePath="..\panda\src\windisplay\winDetectDx9.cxx"></File>
  2463. <File RelativePath="..\panda\src\windisplay\config_windisplay.cxx"></File>
  2464. <File RelativePath="..\panda\src\windisplay\winGraphicsPipe.h"></File>
  2465. <File RelativePath="..\panda\src\windisplay\winDetectDx.h"></File>
  2466. </Filter>
  2467. <Filter Name="pgraph">
  2468. <File RelativePath="..\panda\src\pgraph\lensNode.I"></File>
  2469. <File RelativePath="..\panda\src\pgraph\portalNode.h"></File>
  2470. <File RelativePath="..\panda\src\pgraph\pandaNodeChain.I"></File>
  2471. <File RelativePath="..\panda\src\pgraph\shaderAttrib.cxx"></File>
  2472. <File RelativePath="..\panda\src\pgraph\auxBitplaneAttrib.cxx"></File>
  2473. <File RelativePath="..\panda\src\pgraph\workingNodePath.I"></File>
  2474. <File RelativePath="..\panda\src\pgraph\renderEffect.I"></File>
  2475. <File RelativePath="..\panda\src\pgraph\polylightNode.h"></File>
  2476. <File RelativePath="..\panda\src\pgraph\shaderPool.cxx"></File>
  2477. <File RelativePath="..\panda\src\pgraph\cullBinManager.I"></File>
  2478. <File RelativePath="..\panda\src\pgraph\nodePathLerps.h"></File>
  2479. <File RelativePath="..\panda\src\pgraph\attribNodeRegistry.h"></File>
  2480. <File RelativePath="..\panda\src\pgraph\fog.cxx"></File>
  2481. <File RelativePath="..\panda\src\pgraph\scissorEffect.cxx"></File>
  2482. <File RelativePath="..\panda\src\pgraph\clipPlaneAttrib.I"></File>
  2483. <File RelativePath="..\panda\src\pgraph\modelPool.cxx"></File>
  2484. <File RelativePath="..\panda\src\pgraph\stencilAttrib.I"></File>
  2485. <File RelativePath="..\panda\src\pgraph\colorWriteAttrib.cxx"></File>
  2486. <File RelativePath="..\panda\src\pgraph\depthTestAttrib.I"></File>
  2487. <File RelativePath="..\panda\src\pgraph\nodePathLerps.cxx"></File>
  2488. <File RelativePath="..\panda\src\pgraph\renderEffect.cxx"></File>
  2489. <File RelativePath="..\panda\src\pgraph\modelNode.h"></File>
  2490. <File RelativePath="..\panda\src\pgraph\loader.cxx"></File>
  2491. <File RelativePath="..\panda\src\pgraph\shaderPool.I"></File>
  2492. <File RelativePath="..\panda\src\pgraph\light.cxx"></File>
  2493. <File RelativePath="..\panda\src\pgraph\decalEffect.cxx"></File>
  2494. <File RelativePath="..\panda\src\pgraph\polylightEffect.h"></File>
  2495. <File RelativePath="..\panda\src\pgraph\modelRoot.cxx"></File>
  2496. <File RelativePath="..\panda\src\pgraph\shadeModelAttrib.I"></File>
  2497. <File RelativePath="..\panda\src\pgraph\cullHandler.h"></File>
  2498. <File RelativePath="..\panda\src\pgraph\colorBlendAttrib.cxx"></File>
  2499. <File RelativePath="..\panda\src\pgraph\texMatrixAttrib.h"></File>
  2500. <File RelativePath="..\panda\src\pgraph\cullBinManager.cxx"></File>
  2501. <File RelativePath="..\panda\src\pgraph\test_pgraph.cxx"></File>
  2502. <File RelativePath="..\panda\src\pgraph\billboardEffect.I"></File>
  2503. <File RelativePath="..\panda\src\pgraph\transparencyAttrib.h"></File>
  2504. <File RelativePath="..\panda\src\pgraph\materialAttrib.I"></File>
  2505. <File RelativePath="..\panda\src\pgraph\geomTransformer.h"></File>
  2506. <File RelativePath="..\panda\src\pgraph\geomDrawCallbackData.h"></File>
  2507. <File RelativePath="..\panda\src\pgraph\loader.I"></File>
  2508. <File RelativePath="..\panda\src\pgraph\transformState.h"></File>
  2509. <File RelativePath="..\panda\src\pgraph\texMatrixAttrib.cxx"></File>
  2510. <File RelativePath="..\panda\src\pgraph\portalNode.I"></File>
  2511. <File RelativePath="..\panda\src\pgraph\colorScaleAttrib.cxx"></File>
  2512. <File RelativePath="..\panda\src\pgraph\clipPlaneAttrib.h"></File>
  2513. <File RelativePath="..\panda\src\pgraph\billboardEffect.h"></File>
  2514. <File RelativePath="..\panda\src\pgraph\compassEffect.cxx"></File>
  2515. <File RelativePath="..\panda\src\pgraph\shaderAttrib.h"></File>
  2516. <File RelativePath="..\panda\src\pgraph\renderEffects.h"></File>
  2517. <File RelativePath="..\panda\src\pgraph\nodePathComponent.h"></File>
  2518. <File RelativePath="..\panda\src\pgraph\light.I"></File>
  2519. <File RelativePath="..\panda\src\pgraph\colorWriteAttrib.h"></File>
  2520. <File RelativePath="..\panda\src\pgraph\materialCollection.h"></File>
  2521. <File RelativePath="..\panda\src\pgraph\loaderFileType.h"></File>
  2522. <File RelativePath="..\panda\src\pgraph\transformState.cxx"></File>
  2523. <File RelativePath="..\panda\src\pgraph\depthOffsetAttrib.cxx"></File>
  2524. <File RelativePath="..\panda\src\pgraph\rescaleNormalAttrib.I"></File>
  2525. <File RelativePath="..\panda\src\pgraph\depthTestAttrib.h"></File>
  2526. <File RelativePath="..\panda\src\pgraph\texGenAttrib.h"></File>
  2527. <File RelativePath="..\panda\src\pgraph\showBoundsEffect.I"></File>
  2528. <File RelativePath="..\panda\src\pgraph\fogAttrib.h"></File>
  2529. <File RelativePath="..\panda\src\pgraph\loaderFileTypeRegistry.cxx"></File>
  2530. <File RelativePath="..\panda\src\pgraph\colorScaleAttrib.I"></File>
  2531. <File RelativePath="..\panda\src\pgraph\light.h"></File>
  2532. <File RelativePath="..\panda\src\pgraph\modelFlattenRequest.cxx"></File>
  2533. <File RelativePath="..\panda\src\pgraph\nodePathComponent.cxx"></File>
  2534. <File RelativePath="..\panda\src\pgraph\cullTraverser.h"></File>
  2535. <File RelativePath="..\panda\src\pgraph\camera.cxx"></File>
  2536. <File RelativePath="..\panda\src\pgraph\bamFile.I"></File>
  2537. <File RelativePath="..\panda\src\pgraph\decalEffect.I"></File>
  2538. <File RelativePath="..\panda\src\pgraph\cullableObject.cxx"></File>
  2539. <File RelativePath="..\panda\src\pgraph\cullHandler.cxx"></File>
  2540. <File RelativePath="..\panda\src\pgraph\renderAttrib.h"></File>
  2541. <File RelativePath="..\panda\src\pgraph\antialiasAttrib.cxx"></File>
  2542. <File RelativePath="..\panda\src\pgraph\cullTraverserData.h"></File>
  2543. <File RelativePath="..\panda\src\pgraph\cacheStats.cxx"></File>
  2544. <File RelativePath="..\panda\src\pgraph\cullBinAttrib.I"></File>
  2545. <File RelativePath="..\panda\src\pgraph\weakNodePath.h"></File>
  2546. <File RelativePath="..\panda\src\pgraph\attribNodeRegistry.I"></File>
  2547. <File RelativePath="..\panda\src\pgraph\scissorAttrib.cxx"></File>
  2548. <File RelativePath="..\panda\src\pgraph\geomNode.I"></File>
  2549. <File RelativePath="..\panda\src\pgraph\workingNodePath.cxx"></File>
  2550. <File RelativePath="..\panda\src\pgraph\pgraph_composite4.cxx"></File>
  2551. <File RelativePath="..\panda\src\pgraph\pgraph_composite3.cxx"></File>
  2552. <File RelativePath="..\panda\src\pgraph\lightAttrib.cxx"></File>
  2553. <File RelativePath="..\panda\src\pgraph\pandaNodeChain.cxx"></File>
  2554. <File RelativePath="..\panda\src\pgraph\renderState.cxx"></File>
  2555. <File RelativePath="..\panda\src\pgraph\depthOffsetAttrib.h"></File>
  2556. <File RelativePath="..\panda\src\pgraph\stateMunger.I"></File>
  2557. <File RelativePath="..\panda\src\pgraph\findApproxPath.cxx"></File>
  2558. <File RelativePath="..\panda\src\pgraph\stencilAttrib.h"></File>
  2559. <File RelativePath="..\panda\src\pgraph\lightAttrib.h"></File>
  2560. <File RelativePath="..\panda\src\pgraph\renderModeAttrib.I"></File>
  2561. <File RelativePath="..\panda\src\pgraph\pandaNodeChain.h"></File>
  2562. <File RelativePath="..\panda\src\pgraph\shaderPool.h"></File>
  2563. <File RelativePath="..\panda\src\pgraph\cullBinAttrib.h"></File>
  2564. <File RelativePath="..\panda\src\pgraph\textureStageCollection.I"></File>
  2565. <File RelativePath="..\panda\src\pgraph\camera.h"></File>
  2566. <File RelativePath="..\panda\src\pgraph\sceneGraphReducer.h"></File>
  2567. <File RelativePath="..\panda\src\pgraph\texMatrixAttrib.I"></File>
  2568. <File RelativePath="..\panda\src\pgraph\findApproxPath.h"></File>
  2569. <File RelativePath="..\panda\src\pgraph\textureStageCollection.cxx"></File>
  2570. <File RelativePath="..\panda\src\pgraph\audioVolumeAttrib.I"></File>
  2571. <File RelativePath="..\panda\src\pgraph\portalClipper.I"></File>
  2572. <File RelativePath="..\panda\src\pgraph\billboardEffect.cxx"></File>
  2573. <File RelativePath="..\panda\src\pgraph\cullResult.cxx"></File>
  2574. <File RelativePath="..\panda\src\pgraph\fogAttrib.I"></File>
  2575. <File RelativePath="..\panda\src\pgraph\eventStorePandaNode.h"></File>
  2576. <File RelativePath="..\panda\src\pgraph\colorBlendAttrib.h"></File>
  2577. <File RelativePath="..\panda\src\pgraph\sceneGraphReducer.I"></File>
  2578. <File RelativePath="..\panda\src\pgraph\pandaNode.cxx"></File>
  2579. <File RelativePath="..\panda\src\pgraph\scissorAttrib.I"></File>
  2580. <File RelativePath="..\panda\src\pgraph\sceneGraphReducer.cxx"></File>
  2581. <File RelativePath="..\panda\src\pgraph\cullPlanes.I"></File>
  2582. <File RelativePath="..\panda\src\pgraph\accumulatedAttribs.cxx"></File>
  2583. <File RelativePath="..\panda\src\pgraph\modelPool.h"></File>
  2584. <File RelativePath="..\panda\src\pgraph\antialiasAttrib.h"></File>
  2585. <File RelativePath="..\panda\src\pgraph\geomDrawCallbackData.I"></File>
  2586. <File RelativePath="..\panda\src\pgraph\loaderFileTypeBam.cxx"></File>
  2587. <File RelativePath="..\panda\src\pgraph\depthTestAttrib.cxx"></File>
  2588. <File RelativePath="..\panda\src\pgraph\polylightEffect.I"></File>
  2589. <File RelativePath="..\panda\src\pgraph\modelFlattenRequest.I"></File>
  2590. <File RelativePath="..\panda\src\pgraph\transparencyAttrib.I"></File>
  2591. <File RelativePath="..\panda\src\pgraph\depthWriteAttrib.cxx"></File>
  2592. <File RelativePath="..\panda\src\pgraph\alphaTestAttrib.I"></File>
  2593. <File RelativePath="..\panda\src\pgraph\auxBitplaneAttrib.I"></File>
  2594. <File RelativePath="..\panda\src\pgraph\internalNameCollection.cxx"></File>
  2595. <File RelativePath="..\panda\src\pgraph\modelNode.cxx"></File>
  2596. <File RelativePath="..\panda\src\pgraph\nodePathCollection.I"></File>
  2597. <File RelativePath="..\panda\src\pgraph\transparencyAttrib.cxx"></File>
  2598. <File RelativePath="..\panda\src\pgraph\config_pgraph.h"></File>
  2599. <File RelativePath="..\panda\src\pgraph\renderState.I"></File>
  2600. <File RelativePath="..\panda\src\pgraph\modelLoadRequest.h"></File>
  2601. <File RelativePath="..\panda\src\pgraph\cacheStats.h"></File>
  2602. <File RelativePath="..\panda\src\pgraph\stateMunger.h"></File>
  2603. <File RelativePath="..\panda\src\pgraph\cullFaceAttrib.I"></File>
  2604. <File RelativePath="..\panda\src\pgraph\texGenAttrib.cxx"></File>
  2605. <File RelativePath="..\panda\src\pgraph\sceneSetup.cxx"></File>
  2606. <File RelativePath="..\panda\src\pgraph\planeNode.cxx"></File>
  2607. <File RelativePath="..\panda\src\pgraph\weakNodePath.cxx"></File>
  2608. <File RelativePath="..\panda\src\pgraph\nodePath.h"></File>
  2609. <File RelativePath="..\panda\src\pgraph\geomNode.h"></File>
  2610. <File RelativePath="..\panda\src\pgraph\findApproxLevelEntry.I"></File>
  2611. <File RelativePath="..\panda\src\pgraph\pgraph_composite.cxx"></File>
  2612. <File RelativePath="..\panda\src\pgraph\fog.I"></File>
  2613. <File RelativePath="..\panda\src\pgraph\nodePath.cxx"></File>
  2614. <File RelativePath="..\panda\src\pgraph\planeNode.I"></File>
  2615. <File RelativePath="..\panda\src\pgraph\cullTraverserData.I"></File>
  2616. <File RelativePath="..\panda\src\pgraph\renderEffects.cxx"></File>
  2617. <File RelativePath="..\panda\src\pgraph\geomDrawCallbackData.cxx"></File>
  2618. <File RelativePath="..\panda\src\pgraph\renderEffects.I"></File>
  2619. <File RelativePath="..\panda\src\pgraph\cullFaceAttrib.cxx"></File>
  2620. <File RelativePath="..\panda\src\pgraph\sceneSetup.h"></File>
  2621. <File RelativePath="..\panda\src\pgraph\auxSceneData.h"></File>
  2622. <File RelativePath="..\panda\src\pgraph\textureStageCollection.h"></File>
  2623. <File RelativePath="..\panda\src\pgraph\eventStorePandaNode.I"></File>
  2624. <File RelativePath="..\panda\src\pgraph\cullBinManager.h"></File>
  2625. <File RelativePath="..\panda\src\pgraph\cullHandler.I"></File>
  2626. <File RelativePath="..\panda\src\pgraph\scissorEffect.h"></File>
  2627. <File RelativePath="..\panda\src\pgraph\nodePathComponent.I"></File>
  2628. <File RelativePath="..\panda\src\pgraph\auxSceneData.cxx"></File>
  2629. <File RelativePath="..\panda\src\pgraph\clipPlaneAttrib.cxx"></File>
  2630. <File RelativePath="..\panda\src\pgraph\lightRampAttrib.cxx"></File>
  2631. <File RelativePath="..\panda\src\pgraph\accumulatedAttribs.h"></File>
  2632. <File RelativePath="..\panda\src\pgraph\stencilAttrib.cxx"></File>
  2633. <File RelativePath="..\panda\src\pgraph\depthOffsetAttrib.I"></File>
  2634. <File RelativePath="..\panda\src\pgraph\rescaleNormalAttrib.h"></File>
  2635. <File RelativePath="..\panda\src\pgraph\cullBinAttrib.cxx"></File>
  2636. <File RelativePath="..\panda\src\pgraph\colorAttrib.I"></File>
  2637. <File RelativePath="..\panda\src\pgraph\auxBitplaneAttrib.h"></File>
  2638. <File RelativePath="..\panda\src\pgraph\loaderFileTypeRegistry.h"></File>
  2639. <File RelativePath="..\panda\src\pgraph\portalClipper.h"></File>
  2640. <File RelativePath="..\panda\src\pgraph\modelRoot.I"></File>
  2641. <File RelativePath="..\panda\src\pgraph\compassEffect.I"></File>
  2642. <File RelativePath="..\panda\src\pgraph\bamFile.h"></File>
  2643. <File RelativePath="..\panda\src\pgraph\cullBin.I"></File>
  2644. <File RelativePath="..\panda\src\pgraph\config_pgraph.cxx"></File>
  2645. <File RelativePath="..\panda\src\pgraph\internalNameCollection.h"></File>
  2646. <File RelativePath="..\panda\src\pgraph\shadeModelAttrib.h"></File>
  2647. <File RelativePath="..\panda\src\pgraph\texProjectorEffect.h"></File>
  2648. <File RelativePath="..\panda\src\pgraph\modelLoadRequest.cxx"></File>
  2649. <File RelativePath="..\panda\src\pgraph\renderModeAttrib.cxx"></File>
  2650. <File RelativePath="..\panda\src\pgraph\nodePathCollection.cxx"></File>
  2651. <File RelativePath="..\panda\src\pgraph\compassEffect.h"></File>
  2652. <File RelativePath="..\panda\src\pgraph\camera.I"></File>
  2653. <File RelativePath="..\panda\src\pgraph\polylightNode.I"></File>
  2654. <File RelativePath="..\panda\src\pgraph\alphaTestAttrib.cxx"></File>
  2655. <File RelativePath="..\panda\src\pgraph\nodePathCollection.h"></File>
  2656. <File RelativePath="..\panda\src\pgraph\cullableObject.h"></File>
  2657. <File RelativePath="..\panda\src\pgraph\loader.h"></File>
  2658. <File RelativePath="..\panda\src\pgraph\bamFile.cxx"></File>
  2659. <File RelativePath="..\panda\src\pgraph\materialCollection.I"></File>
  2660. <File RelativePath="..\panda\src\pgraph\showBoundsEffect.h"></File>
  2661. <File RelativePath="..\panda\src\pgraph\materialAttrib.h"></File>
  2662. <File RelativePath="..\panda\src\pgraph\textureAttrib.h"></File>
  2663. <File RelativePath="..\panda\src\pgraph\cullPlanes.cxx"></File>
  2664. <File RelativePath="..\panda\src\pgraph\colorBlendAttrib.I"></File>
  2665. <File RelativePath="..\panda\src\pgraph\lightRampAttrib.I"></File>
  2666. <File RelativePath="..\panda\src\pgraph\fog.h"></File>
  2667. <File RelativePath="..\panda\src\pgraph\colorAttrib.h"></File>
  2668. <File RelativePath="..\panda\src\pgraph\renderModeAttrib.h"></File>
  2669. <File RelativePath="..\panda\src\pgraph\shaderAttrib.I"></File>
  2670. <File RelativePath="..\panda\src\pgraph\geomNode.cxx"></File>
  2671. <File RelativePath="..\panda\src\pgraph\shadeModelAttrib.cxx"></File>
  2672. <File RelativePath="..\panda\src\pgraph\cullFaceAttrib.h"></File>
  2673. <File RelativePath="..\panda\src\pgraph\depthWriteAttrib.I"></File>
  2674. <File RelativePath="..\panda\src\pgraph\findApproxPath.I"></File>
  2675. <File RelativePath="..\panda\src\pgraph\modelLoadRequest.I"></File>
  2676. <File RelativePath="..\panda\src\pgraph\renderAttribRegistry.I"></File>
  2677. <File RelativePath="..\panda\src\pgraph\rescaleNormalAttrib.cxx"></File>
  2678. <File RelativePath="..\panda\src\pgraph\cullPlanes.h"></File>
  2679. <File RelativePath="..\panda\src\pgraph\stateMunger.cxx"></File>
  2680. <File RelativePath="..\panda\src\pgraph\planeNode.h"></File>
  2681. <File RelativePath="..\panda\src\pgraph\loaderFileType.cxx"></File>
  2682. <File RelativePath="..\panda\src\pgraph\cullBinEnums.h"></File>
  2683. <File RelativePath="..\panda\src\pgraph\shaderInput.h"></File>
  2684. <File RelativePath="..\panda\src\pgraph\lightAttrib.I"></File>
  2685. <File RelativePath="..\panda\src\pgraph\lensNode.h"></File>
  2686. <File RelativePath="..\panda\src\pgraph\cullTraverserData.cxx"></File>
  2687. <File RelativePath="..\panda\src\pgraph\polylightEffect.cxx"></File>
  2688. <File RelativePath="..\panda\src\pgraph\modelNode.I"></File>
  2689. <File RelativePath="..\panda\src\pgraph\auxSceneData.I"></File>
  2690. <File RelativePath="..\panda\src\pgraph\loaderFileTypeBam.h"></File>
  2691. <File RelativePath="..\panda\src\pgraph\sceneSetup.I"></File>
  2692. <File RelativePath="..\panda\src\pgraph\textureAttrib.cxx"></File>
  2693. <File RelativePath="..\panda\src\pgraph\modelRoot.h"></File>
  2694. <File RelativePath="..\panda\src\pgraph\cullTraverser.cxx"></File>
  2695. <File RelativePath="..\panda\src\pgraph\cullBin.cxx"></File>
  2696. <File RelativePath="..\panda\src\pgraph\lensNode.cxx"></File>
  2697. <File RelativePath="..\panda\src\pgraph\renderAttribRegistry.cxx"></File>
  2698. <File RelativePath="..\panda\src\pgraph\renderEffect.h"></File>
  2699. <File RelativePath="..\panda\src\pgraph\nodePath.I"></File>
  2700. <File RelativePath="..\panda\src\pgraph\showBoundsEffect.cxx"></File>
  2701. <File RelativePath="..\panda\src\pgraph\findApproxLevelEntry.cxx"></File>
  2702. <File RelativePath="..\panda\src\pgraph\decalEffect.h"></File>
  2703. <File RelativePath="..\panda\src\pgraph\colorAttrib.cxx"></File>
  2704. <File RelativePath="..\panda\src\pgraph\pgraph_composite1.cxx"></File>
  2705. <File RelativePath="..\panda\src\pgraph\modelFlattenRequest.h"></File>
  2706. <File RelativePath="..\panda\src\pgraph\weakNodePath.I"></File>
  2707. <File RelativePath="..\panda\src\pgraph\materialAttrib.cxx"></File>
  2708. <File RelativePath="..\panda\src\pgraph\shaderInput.cxx"></File>
  2709. <File RelativePath="..\panda\src\pgraph\renderAttrib.I"></File>
  2710. <File RelativePath="..\panda\src\pgraph\accumulatedAttribs.I"></File>
  2711. <File RelativePath="..\panda\src\pgraph\portalClipper.cxx"></File>
  2712. <File RelativePath="..\panda\src\pgraph\audioVolumeAttrib.h"></File>
  2713. <File RelativePath="..\panda\src\pgraph\eventStorePandaNode.cxx"></File>
  2714. <File RelativePath="..\panda\src\pgraph\colorWriteAttrib.I"></File>
  2715. <File RelativePath="..\panda\src\pgraph\fogAttrib.cxx"></File>
  2716. <File RelativePath="..\panda\src\pgraph\materialCollection.cxx"></File>
  2717. <File RelativePath="..\panda\src\pgraph\attribNodeRegistry.cxx"></File>
  2718. <File RelativePath="..\panda\src\pgraph\polylightNode.cxx"></File>
  2719. <File RelativePath="..\panda\src\pgraph\textureAttrib.I"></File>
  2720. <File RelativePath="..\panda\src\pgraph\cullBin.h"></File>
  2721. <File RelativePath="..\panda\src\pgraph\scissorEffect.I"></File>
  2722. <File RelativePath="..\panda\src\pgraph\renderState.h"></File>
  2723. <File RelativePath="..\panda\src\pgraph\antialiasAttrib.I"></File>
  2724. <File RelativePath="..\panda\src\pgraph\pandaNode.I"></File>
  2725. <File RelativePath="..\panda\src\pgraph\pgraph_composite2.cxx"></File>
  2726. <File RelativePath="..\panda\src\pgraph\texProjectorEffect.cxx"></File>
  2727. <File RelativePath="..\panda\src\pgraph\depthWriteAttrib.h"></File>
  2728. <File RelativePath="..\panda\src\pgraph\cullableObject.I"></File>
  2729. <File RelativePath="..\panda\src\pgraph\pandaNode.h"></File>
  2730. <File RelativePath="..\panda\src\pgraph\renderAttrib.cxx"></File>
  2731. <File RelativePath="..\panda\src\pgraph\portalNode.cxx"></File>
  2732. <File RelativePath="..\panda\src\pgraph\texProjectorEffect.I"></File>
  2733. <File RelativePath="..\panda\src\pgraph\cullResult.I"></File>
  2734. <File RelativePath="..\panda\src\pgraph\findApproxLevelEntry.h"></File>
  2735. <File RelativePath="..\panda\src\pgraph\renderAttribRegistry.h"></File>
  2736. <File RelativePath="..\panda\src\pgraph\modelPool.I"></File>
  2737. <File RelativePath="..\panda\src\pgraph\shaderInput.I"></File>
  2738. <File RelativePath="..\panda\src\pgraph\texGenAttrib.I"></File>
  2739. <File RelativePath="..\panda\src\pgraph\alphaTestAttrib.h"></File>
  2740. <File RelativePath="..\panda\src\pgraph\cullResult.h"></File>
  2741. <File RelativePath="..\panda\src\pgraph\cullTraverser.I"></File>
  2742. <File RelativePath="..\panda\src\pgraph\workingNodePath.h"></File>
  2743. <File RelativePath="..\panda\src\pgraph\geomTransformer.cxx"></File>
  2744. <File RelativePath="..\panda\src\pgraph\internalNameCollection.I"></File>
  2745. <File RelativePath="..\panda\src\pgraph\geomTransformer.I"></File>
  2746. <File RelativePath="..\panda\src\pgraph\transformState.I"></File>
  2747. <File RelativePath="..\panda\src\pgraph\cacheStats.I"></File>
  2748. <File RelativePath="..\panda\src\pgraph\scissorAttrib.h"></File>
  2749. <File RelativePath="..\panda\src\pgraph\lightRampAttrib.h"></File>
  2750. <File RelativePath="..\panda\src\pgraph\colorScaleAttrib.h"></File>
  2751. <File RelativePath="..\panda\src\pgraph\audioVolumeAttrib.cxx"></File>
  2752. </Filter>
  2753. <Filter Name="dxgsg8">
  2754. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsPipe8.cxx"></File>
  2755. <File RelativePath="..\panda\src\dxgsg8\dxGraphicsStateGuardian8.cxx"></File>
  2756. <File RelativePath="..\panda\src\dxgsg8\dxIndexBufferContext8.cxx"></File>
  2757. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsBuffer8.cxx"></File>
  2758. <File RelativePath="..\panda\src\dxgsg8\dxgsg8base.h"></File>
  2759. <File RelativePath="..\panda\src\dxgsg8\dxIndexBufferContext8.I"></File>
  2760. <File RelativePath="..\panda\src\dxgsg8\dxVertexBufferContext8.cxx"></File>
  2761. <File RelativePath="..\panda\src\dxgsg8\dxTextureContext8.I"></File>
  2762. <File RelativePath="..\panda\src\dxgsg8\dxGeomMunger8.cxx"></File>
  2763. <File RelativePath="..\panda\src\dxgsg8\dxIndexBufferContext8.h"></File>
  2764. <File RelativePath="..\panda\src\dxgsg8\config_dxgsg8.h"></File>
  2765. <File RelativePath="..\panda\src\dxgsg8\dxgsg8_composite1.cxx"></File>
  2766. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsWindow8.h"></File>
  2767. <File RelativePath="..\panda\src\dxgsg8\dxGeomMunger8.h"></File>
  2768. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsPipe8.h"></File>
  2769. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsWindow8.I"></File>
  2770. <File RelativePath="..\panda\src\dxgsg8\dxGeomMunger8.I"></File>
  2771. <File RelativePath="..\panda\src\dxgsg8\dxGraphicsDevice8.cxx"></File>
  2772. <File RelativePath="..\panda\src\dxgsg8\dxGraphicsStateGuardian8.I"></File>
  2773. <File RelativePath="..\panda\src\dxgsg8\dxInput8.h"></File>
  2774. <File RelativePath="..\panda\src\dxgsg8\dxTextureContext8.h"></File>
  2775. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsPipe8.I"></File>
  2776. <File RelativePath="..\panda\src\dxgsg8\config_dxgsg8.cxx"></File>
  2777. <File RelativePath="..\panda\src\dxgsg8\dxInput8.cxx"></File>
  2778. <File RelativePath="..\panda\src\dxgsg8\dxTextureContext8.cxx"></File>
  2779. <File RelativePath="..\panda\src\dxgsg8\dxgsg8_composite.cxx"></File>
  2780. <File RelativePath="..\panda\src\dxgsg8\dxGraphicsStateGuardian8.h"></File>
  2781. <File RelativePath="..\panda\src\dxgsg8\dxVertexBufferContext8.I"></File>
  2782. <File RelativePath="..\panda\src\dxgsg8\dxGraphicsDevice8.h"></File>
  2783. <File RelativePath="..\panda\src\dxgsg8\dxVertexBufferContext8.h"></File>
  2784. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsWindow8.cxx"></File>
  2785. <File RelativePath="..\panda\src\dxgsg8\wdxGraphicsBuffer8.h"></File>
  2786. </Filter>
  2787. <Filter Name="pnmtext">
  2788. <File RelativePath="..\panda\src\pnmtext\pnmTextMaker.h"></File>
  2789. <File RelativePath="..\panda\src\pnmtext\freetypeFont.cxx"></File>
  2790. <File RelativePath="..\panda\src\pnmtext\pnmTextGlyph.h"></File>
  2791. <File RelativePath="..\panda\src\pnmtext\freetypeFace.cxx"></File>
  2792. <File RelativePath="..\panda\src\pnmtext\pnmTextGlyph.I"></File>
  2793. <File RelativePath="..\panda\src\pnmtext\pnmTextMaker.I"></File>
  2794. <File RelativePath="..\panda\src\pnmtext\config_pnmtext.cxx"></File>
  2795. <File RelativePath="..\panda\src\pnmtext\pnmTextMaker.cxx"></File>
  2796. <File RelativePath="..\panda\src\pnmtext\freetypeFace.h"></File>
  2797. <File RelativePath="..\panda\src\pnmtext\pnmTextGlyph.cxx"></File>
  2798. <File RelativePath="..\panda\src\pnmtext\pnmtext_composite1.cxx"></File>
  2799. <File RelativePath="..\panda\src\pnmtext\freetypeFace.I"></File>
  2800. <File RelativePath="..\panda\src\pnmtext\config_pnmtext.h"></File>
  2801. <File RelativePath="..\panda\src\pnmtext\pnmtext_composite.cxx"></File>
  2802. <File RelativePath="..\panda\src\pnmtext\freetypeFont.I"></File>
  2803. <File RelativePath="..\panda\src\pnmtext\freetypeFont.h"></File>
  2804. </Filter>
  2805. <Filter Name="skel">
  2806. <File RelativePath="..\panda\src\skel\typedSkel.h"></File>
  2807. <File RelativePath="..\panda\src\skel\basicSkel.cxx"></File>
  2808. <File RelativePath="..\panda\src\skel\config_skel.cxx"></File>
  2809. <File RelativePath="..\panda\src\skel\config_skel.h"></File>
  2810. <File RelativePath="..\panda\src\skel\basicSkel.I"></File>
  2811. <File RelativePath="..\panda\src\skel\typedSkel.I"></File>
  2812. <File RelativePath="..\panda\src\skel\skel_composite1.cxx"></File>
  2813. <File RelativePath="..\panda\src\skel\basicSkel.h"></File>
  2814. <File RelativePath="..\panda\src\skel\skel_composite.cxx"></File>
  2815. <File RelativePath="..\panda\src\skel\typedSkel.cxx"></File>
  2816. </Filter>
  2817. <Filter Name="tform">
  2818. <File RelativePath="..\panda\src\tform\mouseWatcherRegion.I"></File>
  2819. <File RelativePath="..\panda\src\tform\tform_composite1.cxx"></File>
  2820. <File RelativePath="..\panda\src\tform\transform2sg.cxx"></File>
  2821. <File RelativePath="..\panda\src\tform\trackball.h"></File>
  2822. <File RelativePath="..\panda\src\tform\mouseWatcherRegion.cxx"></File>
  2823. <File RelativePath="..\panda\src\tform\mouseWatcherGroup.h"></File>
  2824. <File RelativePath="..\panda\src\tform\mouseWatcherParameter.h"></File>
  2825. <File RelativePath="..\panda\src\tform\driveInterface.I"></File>
  2826. <File RelativePath="..\panda\src\tform\mouseWatcher.h"></File>
  2827. <File RelativePath="..\panda\src\tform\mouseWatcherRegion.h"></File>
  2828. <File RelativePath="..\panda\src\tform\tform_composite.cxx"></File>
  2829. <File RelativePath="..\panda\src\tform\mouseInterfaceNode.cxx"></File>
  2830. <File RelativePath="..\panda\src\tform\config_tform.cxx"></File>
  2831. <File RelativePath="..\panda\src\tform\mouseInterfaceNode.h"></File>
  2832. <File RelativePath="..\panda\src\tform\driveInterface.h"></File>
  2833. <File RelativePath="..\panda\src\tform\buttonThrower.cxx"></File>
  2834. <File RelativePath="..\panda\src\tform\mouseWatcher.cxx"></File>
  2835. <File RelativePath="..\panda\src\tform\mouseWatcher.I"></File>
  2836. <File RelativePath="..\panda\src\tform\transform2sg.h"></File>
  2837. <File RelativePath="..\panda\src\tform\tform_composite2.cxx"></File>
  2838. <File RelativePath="..\panda\src\tform\mouseWatcherParameter.cxx"></File>
  2839. <File RelativePath="..\panda\src\tform\config_tform.h"></File>
  2840. <File RelativePath="..\panda\src\tform\mouseWatcherGroup.cxx"></File>
  2841. <File RelativePath="..\panda\src\tform\buttonThrower.I"></File>
  2842. <File RelativePath="..\panda\src\tform\buttonThrower.h"></File>
  2843. <File RelativePath="..\panda\src\tform\trackball.cxx"></File>
  2844. <File RelativePath="..\panda\src\tform\mouseInterfaceNode.I"></File>
  2845. <File RelativePath="..\panda\src\tform\mouseSubregion.cxx"></File>
  2846. <File RelativePath="..\panda\src\tform\mouseSubregion.I"></File>
  2847. <File RelativePath="..\panda\src\tform\mouseSubregion.h"></File>
  2848. <File RelativePath="..\panda\src\tform\mouseWatcherParameter.I"></File>
  2849. <File RelativePath="..\panda\src\tform\driveInterface.cxx"></File>
  2850. </Filter>
  2851. <Filter Name="egg">
  2852. <File RelativePath="..\panda\src\egg\eggGroup.h"></File>
  2853. <File RelativePath="..\panda\src\egg\eggNameUniquifier.h"></File>
  2854. <File RelativePath="..\panda\src\egg\eggGroup.I"></File>
  2855. <File RelativePath="..\panda\src\egg\eggCoordinateSystem.cxx"></File>
  2856. <File RelativePath="..\panda\src\egg\eggNurbsCurve.h"></File>
  2857. <File RelativePath="..\panda\src\egg\eggMaterialCollection.h"></File>
  2858. <File RelativePath="..\panda\src\egg\eggLine.h"></File>
  2859. <File RelativePath="..\panda\src\egg\eggPoint.h"></File>
  2860. <File RelativePath="..\panda\src\egg\eggBinMaker.h"></File>
  2861. <File RelativePath="..\panda\src\egg\eggPoint.I"></File>
  2862. <File RelativePath="..\panda\src\egg\eggFilenameNode.h"></File>
  2863. <File RelativePath="..\panda\src\egg\eggUtilities.h"></File>
  2864. <File RelativePath="..\panda\src\egg\eggVertexPool.h"></File>
  2865. <File RelativePath="..\panda\src\egg\eggBin.h"></File>
  2866. <File RelativePath="..\panda\src\egg\eggSAnimData.I"></File>
  2867. <File RelativePath="..\panda\src\egg\eggVertexPool.cxx"></File>
  2868. <File RelativePath="..\panda\src\egg\eggMorphList.cxx"></File>
  2869. <File RelativePath="..\panda\src\egg\eggTable.cxx"></File>
  2870. <File RelativePath="..\panda\src\egg\eggMesherFanMaker.cxx"></File>
  2871. <File RelativePath="..\panda\src\egg\eggNurbsCurve.cxx"></File>
  2872. <File RelativePath="..\panda\src\egg\eggSurface.I"></File>
  2873. <File RelativePath="..\panda\src\egg\eggMesherEdge.I"></File>
  2874. <File RelativePath="..\panda\src\egg\eggMesher.h"></File>
  2875. <File RelativePath="..\panda\src\egg\eggPoint.cxx"></File>
  2876. <File RelativePath="..\panda\src\egg\eggMaterial.I"></File>
  2877. <File RelativePath="..\panda\src\egg\eggMiscFuncs.cxx"></File>
  2878. <File RelativePath="..\panda\src\egg\eggVertexUV.I"></File>
  2879. <File RelativePath="..\panda\src\egg\eggXfmAnimData.cxx"></File>
  2880. <File RelativePath="..\panda\src\egg\eggTable.I"></File>
  2881. <File RelativePath="..\panda\src\egg\eggMaterial.cxx"></File>
  2882. <File RelativePath="..\panda\src\egg\eggExternalReference.h"></File>
  2883. <File RelativePath="..\panda\src\egg\eggTransform.h"></File>
  2884. <File RelativePath="..\panda\src\egg\vector_PT_EggVertex.h"></File>
  2885. <File RelativePath="..\panda\src\egg\vector_PT_EggMaterial.cxx"></File>
  2886. <File RelativePath="..\panda\src\egg\eggAnimData.h"></File>
  2887. <File RelativePath="..\panda\src\egg\eggNurbsCurve.I"></File>
  2888. <File RelativePath="..\panda\src\egg\eggExternalReference.I"></File>
  2889. <File RelativePath="..\panda\src\egg\eggPoolUniquifier.cxx"></File>
  2890. <File RelativePath="..\panda\src\egg\eggSurface.h"></File>
  2891. <File RelativePath="..\panda\src\egg\eggMesherStrip.h"></File>
  2892. <File RelativePath="..\panda\src\egg\eggPolygon.cxx"></File>
  2893. <File RelativePath="..\panda\src\egg\eggXfmSAnim.I"></File>
  2894. <File RelativePath="..\panda\src\egg\vector_PT_EggMaterial.h"></File>
  2895. <File RelativePath="..\panda\src\egg\eggObject.h"></File>
  2896. <File RelativePath="..\panda\src\egg\eggRenderMode.I"></File>
  2897. <File RelativePath="..\panda\src\egg\eggCurve.I"></File>
  2898. <File RelativePath="..\panda\src\egg\eggSAnimData.cxx"></File>
  2899. <File RelativePath="..\panda\src\egg\eggMiscFuncs.h"></File>
  2900. <File RelativePath="..\panda\src\egg\eggMesher.cxx"></File>
  2901. <File RelativePath="..\panda\src\egg\eggPolysetMaker.h"></File>
  2902. <File RelativePath="..\panda\src\egg\lexerDefs.h"></File>
  2903. <File RelativePath="..\panda\src\egg\eggNamedObject.cxx"></File>
  2904. <File RelativePath="..\panda\src\egg\eggAttributes.cxx"></File>
  2905. <File RelativePath="..\panda\src\egg\test_egg.cxx"></File>
  2906. <File RelativePath="..\panda\src\egg\eggComment.I"></File>
  2907. <File RelativePath="..\panda\src\egg\eggVertex.h"></File>
  2908. <File RelativePath="..\panda\src\egg\eggSwitchCondition.cxx"></File>
  2909. <File RelativePath="..\panda\src\egg\eggCoordinateSystem.I"></File>
  2910. <File RelativePath="..\panda\src\egg\eggNurbsSurface.I"></File>
  2911. <File RelativePath="..\panda\src\egg\config_egg.h"></File>
  2912. <File RelativePath="..\panda\src\egg\eggVertex.I"></File>
  2913. <File RelativePath="..\panda\src\egg\eggMesherEdge.h"></File>
  2914. <File RelativePath="..\panda\src\egg\eggFilenameNode.I"></File>
  2915. <File RelativePath="..\panda\src\egg\eggTransform.cxx"></File>
  2916. <File RelativePath="..\panda\src\egg\eggMorph.I"></File>
  2917. <File RelativePath="..\panda\src\egg\pt_EggMaterial.h"></File>
  2918. <File RelativePath="..\panda\src\egg\eggVertexUV.h"></File>
  2919. <File RelativePath="..\panda\src\egg\egg_composite2.cxx"></File>
  2920. <File RelativePath="..\panda\src\egg\eggParameters.h"></File>
  2921. <File RelativePath="..\panda\src\egg\eggUtilities.I"></File>
  2922. <File RelativePath="..\panda\src\egg\eggMaterial.h"></File>
  2923. <File RelativePath="..\panda\src\egg\eggSwitchCondition.h"></File>
  2924. <File RelativePath="..\panda\src\egg\eggTriangleFan.h"></File>
  2925. <File RelativePath="..\panda\src\egg\eggObject.cxx"></File>
  2926. <File RelativePath="..\panda\src\egg\eggMesherEdge.cxx"></File>
  2927. <File RelativePath="..\panda\src\egg\eggMesherFanMaker.I"></File>
  2928. <File RelativePath="..\panda\src\egg\eggGroupNode.I"></File>
  2929. <File RelativePath="..\panda\src\egg\eggAttributes.I"></File>
  2930. <File RelativePath="..\panda\src\egg\eggUtilities.cxx"></File>
  2931. <File RelativePath="..\panda\src\egg\eggExternalReference.cxx"></File>
  2932. <File RelativePath="..\panda\src\egg\eggTexture.cxx"></File>
  2933. <File RelativePath="..\panda\src\egg\eggPrimitive.I"></File>
  2934. <File RelativePath="..\panda\src\egg\eggNode.I"></File>
  2935. <File RelativePath="..\panda\src\egg\egg_composite.cxx"></File>
  2936. <File RelativePath="..\panda\src\egg\eggNode.cxx"></File>
  2937. <File RelativePath="..\panda\src\egg\eggTriangleFan.cxx"></File>
  2938. <File RelativePath="..\panda\src\egg\eggTextureCollection.h"></File>
  2939. <File RelativePath="..\panda\src\egg\eggNameUniquifier.cxx"></File>
  2940. <File RelativePath="..\panda\src\egg\eggAnimPreload.I"></File>
  2941. <File RelativePath="..\panda\src\egg\eggTriangleStrip.cxx"></File>
  2942. <File RelativePath="..\panda\src\egg\eggVertexUV.cxx"></File>
  2943. <File RelativePath="..\panda\src\egg\eggComment.cxx"></File>
  2944. <File RelativePath="..\panda\src\egg\eggMorphList.h"></File>
  2945. <File RelativePath="..\panda\src\egg\eggMaterialCollection.cxx"></File>
  2946. <File RelativePath="..\panda\src\egg\eggCurve.h"></File>
  2947. <File RelativePath="..\panda\src\egg\eggMesherStrip.I"></File>
  2948. <File RelativePath="..\panda\src\egg\eggComment.h"></File>
  2949. <File RelativePath="..\panda\src\egg\eggCompositePrimitive.h"></File>
  2950. <File RelativePath="..\panda\src\egg\eggGroupNode.h"></File>
  2951. <File RelativePath="..\panda\src\egg\eggVertexPool.I"></File>
  2952. <File RelativePath="..\panda\src\egg\egg_composite1.cxx"></File>
  2953. <File RelativePath="..\panda\src\egg\eggSAnimData.h"></File>
  2954. <File RelativePath="..\panda\src\egg\eggUserData.cxx"></File>
  2955. <File RelativePath="..\panda\src\egg\eggAnimData.I"></File>
  2956. <File RelativePath="..\panda\src\egg\pt_EggMaterial.cxx"></File>
  2957. <File RelativePath="..\panda\src\egg\eggTriangleStrip.I"></File>
  2958. <File RelativePath="..\panda\src\egg\eggPolygon.I"></File>
  2959. <File RelativePath="..\panda\src\egg\vector_PT_EggVertex.cxx"></File>
  2960. <File RelativePath="..\panda\src\egg\eggTriangleStrip.h"></File>
  2961. <File RelativePath="..\panda\src\egg\eggRenderMode.h"></File>
  2962. <File RelativePath="..\panda\src\egg\pt_EggTexture.h"></File>
  2963. <File RelativePath="..\panda\src\egg\eggGroupNode.cxx"></File>
  2964. <File RelativePath="..\panda\src\egg\eggUserData.h"></File>
  2965. <File RelativePath="..\panda\src\egg\eggNurbsSurface.cxx"></File>
  2966. <File RelativePath="..\panda\src\egg\parserDefs.h"></File>
  2967. <File RelativePath="..\panda\src\egg\eggAnimPreload.h"></File>
  2968. <File RelativePath="..\panda\src\egg\eggRenderMode.cxx"></File>
  2969. <File RelativePath="..\panda\src\egg\eggCurve.cxx"></File>
  2970. <File RelativePath="..\panda\src\egg\eggPoolUniquifier.h"></File>
  2971. <File RelativePath="..\panda\src\egg\eggTextureCollection.cxx"></File>
  2972. <File RelativePath="..\panda\src\egg\eggMiscFuncs.I"></File>
  2973. <File RelativePath="..\panda\src\egg\eggBin.cxx"></File>
  2974. <File RelativePath="..\panda\src\egg\eggMorphList.I"></File>
  2975. <File RelativePath="..\panda\src\egg\eggMaterialCollection.I"></File>
  2976. <File RelativePath="..\panda\src\egg\eggCoordinateSystem.h"></File>
  2977. <File RelativePath="..\panda\src\egg\eggLine.cxx"></File>
  2978. <File RelativePath="..\panda\src\egg\eggNamedObject.I"></File>
  2979. <File RelativePath="..\panda\src\egg\eggUserData.I"></File>
  2980. <File RelativePath="..\panda\src\egg\eggBinMaker.cxx"></File>
  2981. <File RelativePath="..\panda\src\egg\config_egg.cxx"></File>
  2982. <File RelativePath="..\panda\src\egg\eggPolysetMaker.cxx"></File>
  2983. <File RelativePath="..\panda\src\egg\pt_EggVertex.h"></File>
  2984. <File RelativePath="..\panda\src\egg\eggParameters.cxx"></File>
  2985. <File RelativePath="..\panda\src\egg\pt_EggTexture.cxx"></File>
  2986. <File RelativePath="..\panda\src\egg\eggCompositePrimitive.I"></File>
  2987. <File RelativePath="..\panda\src\egg\eggTexture.I"></File>
  2988. <File RelativePath="..\panda\src\egg\eggTransform.I"></File>
  2989. <File RelativePath="..\panda\src\egg\eggNode.h"></File>
  2990. <File RelativePath="..\panda\src\egg\eggAnimPreload.cxx"></File>
  2991. <File RelativePath="..\panda\src\egg\eggNamedObject.h"></File>
  2992. <File RelativePath="..\panda\src\egg\eggXfmSAnim.h"></File>
  2993. <File RelativePath="..\panda\src\egg\pt_EggVertex.cxx"></File>
  2994. <File RelativePath="..\panda\src\egg\eggTexture.h"></File>
  2995. <File RelativePath="..\panda\src\egg\eggXfmAnimData.I"></File>
  2996. <File RelativePath="..\panda\src\egg\eggData.h"></File>
  2997. <File RelativePath="..\panda\src\egg\eggPrimitive.cxx"></File>
  2998. <File RelativePath="..\panda\src\egg\eggVertex.cxx"></File>
  2999. <File RelativePath="..\panda\src\egg\eggMorph.h"></File>
  3000. <File RelativePath="..\panda\src\egg\eggMesherFanMaker.h"></File>
  3001. <File RelativePath="..\panda\src\egg\eggTextureCollection.I"></File>
  3002. <File RelativePath="..\panda\src\egg\eggFilenameNode.cxx"></File>
  3003. <File RelativePath="..\panda\src\egg\parser.h"></File>
  3004. <File RelativePath="..\panda\src\egg\eggCompositePrimitive.cxx"></File>
  3005. <File RelativePath="..\panda\src\egg\eggPrimitive.h"></File>
  3006. <File RelativePath="..\panda\src\egg\lexer.cxx"></File>
  3007. <File RelativePath="..\panda\src\egg\parser.cxx"></File>
  3008. <File RelativePath="..\panda\src\egg\eggNurbsSurface.h"></File>
  3009. <File RelativePath="..\panda\src\egg\eggData.cxx"></File>
  3010. <File RelativePath="..\panda\src\egg\eggData.I"></File>
  3011. <File RelativePath="..\panda\src\egg\eggTriangleFan.I"></File>
  3012. <File RelativePath="..\panda\src\egg\eggGroupUniquifier.cxx"></File>
  3013. <File RelativePath="..\panda\src\egg\eggSurface.cxx"></File>
  3014. <File RelativePath="..\panda\src\egg\vector_PT_EggTexture.cxx"></File>
  3015. <File RelativePath="..\panda\src\egg\eggGroup.cxx"></File>
  3016. <File RelativePath="..\panda\src\egg\eggXfmAnimData.h"></File>
  3017. <File RelativePath="..\panda\src\egg\eggLine.I"></File>
  3018. <File RelativePath="..\panda\src\egg\eggMesherStrip.cxx"></File>
  3019. <File RelativePath="..\panda\src\egg\eggTable.h"></File>
  3020. <File RelativePath="..\panda\src\egg\eggAnimData.cxx"></File>
  3021. <File RelativePath="..\panda\src\egg\eggMesher.I"></File>
  3022. <File RelativePath="..\panda\src\egg\eggAttributes.h"></File>
  3023. <File RelativePath="..\panda\src\egg\eggXfmSAnim.cxx"></File>
  3024. <File RelativePath="..\panda\src\egg\eggObject.I"></File>
  3025. <File RelativePath="..\panda\src\egg\vector_PT_EggTexture.h"></File>
  3026. <File RelativePath="..\panda\src\egg\eggGroupUniquifier.h"></File>
  3027. <File RelativePath="..\panda\src\egg\eggPolygon.h"></File>
  3028. </Filter>
  3029. <Filter Name="grutil">
  3030. <File RelativePath="..\panda\src\grutil\geoMipTerrain.cxx"></File>
  3031. <File RelativePath="..\panda\src\grutil\rigidBodyCombiner.h"></File>
  3032. <File RelativePath="..\panda\src\grutil\meshDrawer2D.cxx"></File>
  3033. <File RelativePath="..\panda\src\grutil\pipeOcclusionCullTraverser.cxx"></File>
  3034. <File RelativePath="..\panda\src\grutil\lineSegs.cxx"></File>
  3035. <File RelativePath="..\panda\src\grutil\rigidBodyCombiner.cxx"></File>
  3036. <File RelativePath="..\panda\src\grutil\movieTexture.cxx"></File>
  3037. <File RelativePath="..\panda\src\grutil\grutil_composite1.cxx"></File>
  3038. <File RelativePath="..\panda\src\grutil\nodeVertexTransform.cxx"></File>
  3039. <File RelativePath="..\panda\src\grutil\pipeOcclusionCullTraverser.h"></File>
  3040. <File RelativePath="..\panda\src\grutil\frameRateMeter.I"></File>
  3041. <File RelativePath="..\panda\src\grutil\multitexReducer.h"></File>
  3042. <File RelativePath="..\panda\src\grutil\grutil_composite.cxx"></File>
  3043. <File RelativePath="..\panda\src\grutil\nodeVertexTransform.I"></File>
  3044. <File RelativePath="..\panda\src\grutil\movieTexture.h"></File>
  3045. <File RelativePath="..\panda\src\grutil\sceneGraphAnalyzerMeter.I"></File>
  3046. <File RelativePath="..\panda\src\grutil\ffmpegTexture.I"></File>
  3047. <File RelativePath="..\panda\src\grutil\multitexReducer.cxx"></File>
  3048. <File RelativePath="..\panda\src\grutil\fisheyeMaker.h"></File>
  3049. <File RelativePath="..\panda\src\grutil\pipeOcclusionCullTraverser.I"></File>
  3050. <File RelativePath="..\panda\src\grutil\geoMipTerrain.h"></File>
  3051. <File RelativePath="..\panda\src\grutil\geoMipTerrain.I"></File>
  3052. <File RelativePath="..\panda\src\grutil\movieTexture.I"></File>
  3053. <File RelativePath="..\panda\src\grutil\cardMaker.h"></File>
  3054. <File RelativePath="..\panda\src\grutil\meshDrawer.cxx"></File>
  3055. <File RelativePath="..\panda\src\grutil\grutil_composite2.cxx"></File>
  3056. <File RelativePath="..\panda\src\grutil\fisheyeMaker.cxx"></File>
  3057. <File RelativePath="..\panda\src\grutil\lineSegs.h"></File>
  3058. <File RelativePath="..\panda\src\grutil\config_grutil.cxx"></File>
  3059. <File RelativePath="..\panda\src\grutil\fisheyeMaker.I"></File>
  3060. <File RelativePath="..\panda\src\grutil\meshDrawer.I"></File>
  3061. <File RelativePath="..\panda\src\grutil\lineSegs.I"></File>
  3062. <File RelativePath="..\panda\src\grutil\rigidBodyCombiner.I"></File>
  3063. <File RelativePath="..\panda\src\grutil\cardMaker.cxx"></File>
  3064. <File RelativePath="..\panda\src\grutil\heightfieldTesselator.h"></File>
  3065. <File RelativePath="..\panda\src\grutil\frameRateMeter.h"></File>
  3066. <File RelativePath="..\panda\src\grutil\heightfieldTesselator.cxx"></File>
  3067. <File RelativePath="..\panda\src\grutil\meshDrawer.h"></File>
  3068. <File RelativePath="..\panda\src\grutil\multitexReducer.I"></File>
  3069. <File RelativePath="..\panda\src\grutil\ffmpegTexture.h"></File>
  3070. <File RelativePath="..\panda\src\grutil\sceneGraphAnalyzerMeter.h"></File>
  3071. <File RelativePath="..\panda\src\grutil\nodeVertexTransform.h"></File>
  3072. <File RelativePath="..\panda\src\grutil\config_grutil.h"></File>
  3073. <File RelativePath="..\panda\src\grutil\sceneGraphAnalyzerMeter.cxx"></File>
  3074. <File RelativePath="..\panda\src\grutil\heightfieldTesselator.I"></File>
  3075. <File RelativePath="..\panda\src\grutil\meshDrawer2D.h"></File>
  3076. <File RelativePath="..\panda\src\grutil\ffmpegTexture.cxx"></File>
  3077. <File RelativePath="..\panda\src\grutil\frameRateMeter.cxx"></File>
  3078. <File RelativePath="..\panda\src\grutil\cardMaker.I"></File>
  3079. <File RelativePath="..\panda\src\grutil\meshDrawer2D.I"></File>
  3080. </Filter>
  3081. <Filter Name="glstuff">
  3082. <File RelativePath="..\panda\src\glstuff\glGraphicsBuffer_src.cxx"></File>
  3083. <File RelativePath="..\panda\src\glstuff\glmisc_src.h"></File>
  3084. <File RelativePath="..\panda\src\glstuff\glIndexBufferContext_src.cxx"></File>
  3085. <File RelativePath="..\panda\src\glstuff\glShaderContext_src.I"></File>
  3086. <File RelativePath="..\panda\src\glstuff\panda_glext.h"></File>
  3087. <File RelativePath="..\panda\src\glstuff\glImmediateModeSender_src.cxx"></File>
  3088. <File RelativePath="..\panda\src\glstuff\glstuff_undef_src.h"></File>
  3089. <File RelativePath="..\panda\src\glstuff\glTextureContext_src.I"></File>
  3090. <File RelativePath="..\panda\src\glstuff\glGeomContext_src.cxx"></File>
  3091. <File RelativePath="..\panda\src\glstuff\glOcclusionQueryContext_src.h"></File>
  3092. <File RelativePath="..\panda\src\glstuff\glGraphicsBuffer_src.I"></File>
  3093. <File RelativePath="..\panda\src\glstuff\glGeomMunger_src.h"></File>
  3094. <File RelativePath="..\panda\src\glstuff\glGeomMunger_src.cxx"></File>
  3095. <File RelativePath="..\panda\src\glstuff\glGeomContext_src.h"></File>
  3096. <File RelativePath="..\panda\src\glstuff\glOcclusionQueryContext_src.I"></File>
  3097. <File RelativePath="..\panda\src\glstuff\glVertexBufferContext_src.cxx"></File>
  3098. <File RelativePath="..\panda\src\glstuff\glShaderContext_src.cxx"></File>
  3099. <File RelativePath="..\panda\src\glstuff\glGeomContext_src.I"></File>
  3100. <File RelativePath="..\panda\src\glstuff\glShaderContext_src.h"></File>
  3101. <File RelativePath="..\panda\src\glstuff\glIndexBufferContext_src.h"></File>
  3102. <File RelativePath="..\panda\src\glstuff\glIndexBufferContext_src.I"></File>
  3103. <File RelativePath="..\panda\src\glstuff\glGraphicsStateGuardian_src.cxx"></File>
  3104. <File RelativePath="..\panda\src\glstuff\glVertexBufferContext_src.h"></File>
  3105. <File RelativePath="..\panda\src\glstuff\glOcclusionQueryContext_src.cxx"></File>
  3106. <File RelativePath="..\panda\src\glstuff\glstuff_src.cxx"></File>
  3107. <File RelativePath="..\panda\src\glstuff\glTextureContext_src.h"></File>
  3108. <File RelativePath="..\panda\src\glstuff\glTextureContext_src.cxx"></File>
  3109. <File RelativePath="..\panda\src\glstuff\glImmediateModeSender_src.I"></File>
  3110. <File RelativePath="..\panda\src\glstuff\glVertexBufferContext_src.I"></File>
  3111. <File RelativePath="..\panda\src\glstuff\glGraphicsBuffer_src.h"></File>
  3112. <File RelativePath="..\panda\src\glstuff\glGraphicsStateGuardian_src.h"></File>
  3113. <File RelativePath="..\panda\src\glstuff\glGeomMunger_src.I"></File>
  3114. <File RelativePath="..\panda\src\glstuff\glmisc_src.cxx"></File>
  3115. <File RelativePath="..\panda\src\glstuff\glstuff_src.h"></File>
  3116. <File RelativePath="..\panda\src\glstuff\glpure.cxx"></File>
  3117. <File RelativePath="..\panda\src\glstuff\glImmediateModeSender_src.h"></File>
  3118. <File RelativePath="..\panda\src\glstuff\glGraphicsStateGuardian_src.I"></File>
  3119. </Filter>
  3120. <Filter Name="pandabase">
  3121. <File RelativePath="..\panda\src\pandabase\pandabase.h"></File>
  3122. <File RelativePath="..\panda\src\pandabase\pandabase.cxx"></File>
  3123. <File RelativePath="..\panda\src\pandabase\pandasymbols.h"></File>
  3124. </Filter>
  3125. <Filter Name="vrpn">
  3126. <File RelativePath="..\panda\src\vrpn\vrpnButtonDevice.I"></File>
  3127. <File RelativePath="..\panda\src\vrpn\config_vrpn.cxx"></File>
  3128. <File RelativePath="..\panda\src\vrpn\vrpnDial.I"></File>
  3129. <File RelativePath="..\panda\src\vrpn\vrpnButton.I"></File>
  3130. <File RelativePath="..\panda\src\vrpn\vrpnButton.cxx"></File>
  3131. <File RelativePath="..\panda\src\vrpn\vrpnAnalog.cxx"></File>
  3132. <File RelativePath="..\panda\src\vrpn\vrpnTracker.cxx"></File>
  3133. <File RelativePath="..\panda\src\vrpn\vrpnTrackerDevice.h"></File>
  3134. <File RelativePath="..\panda\src\vrpn\vrpnDialDevice.cxx"></File>
  3135. <File RelativePath="..\panda\src\vrpn\vrpn_interface.h"></File>
  3136. <File RelativePath="..\panda\src\vrpn\vrpnDial.cxx"></File>
  3137. <File RelativePath="..\panda\src\vrpn\vrpnTrackerDevice.I"></File>
  3138. <File RelativePath="..\panda\src\vrpn\vrpnDialDevice.h"></File>
  3139. <File RelativePath="..\panda\src\vrpn\vrpnAnalogDevice.h"></File>
  3140. <File RelativePath="..\panda\src\vrpn\vrpnTracker.h"></File>
  3141. <File RelativePath="..\panda\src\vrpn\vrpn_composite1.cxx"></File>
  3142. <File RelativePath="..\panda\src\vrpn\vrpn_composite.cxx"></File>
  3143. <File RelativePath="..\panda\src\vrpn\vrpnButton.h"></File>
  3144. <File RelativePath="..\panda\src\vrpn\vrpnButtonDevice.h"></File>
  3145. <File RelativePath="..\panda\src\vrpn\config_vrpn.h"></File>
  3146. <File RelativePath="..\panda\src\vrpn\vrpnTracker.I"></File>
  3147. <File RelativePath="..\panda\src\vrpn\vrpnClient.h"></File>
  3148. <File RelativePath="..\panda\src\vrpn\vrpnButtonDevice.cxx"></File>
  3149. <File RelativePath="..\panda\src\vrpn\vrpnTrackerDevice.cxx"></File>
  3150. <File RelativePath="..\panda\src\vrpn\vrpnAnalog.h"></File>
  3151. <File RelativePath="..\panda\src\vrpn\vrpnAnalog.I"></File>
  3152. <File RelativePath="..\panda\src\vrpn\vrpnDialDevice.I"></File>
  3153. <File RelativePath="..\panda\src\vrpn\vrpnAnalogDevice.I"></File>
  3154. <File RelativePath="..\panda\src\vrpn\vrpnAnalogDevice.cxx"></File>
  3155. <File RelativePath="..\panda\src\vrpn\vrpnDial.h"></File>
  3156. <File RelativePath="..\panda\src\vrpn\vrpnClient.cxx"></File>
  3157. <File RelativePath="..\panda\src\vrpn\vrpnClient.I"></File>
  3158. </Filter>
  3159. <Filter Name="physx">
  3160. <File RelativePath="..\panda\src\physx\physxMask.cxx"></File>
  3161. <File RelativePath="..\panda\src\physx\physxDistanceJointDesc.h"></File>
  3162. <File RelativePath="..\panda\src\physx\physxConvexShapeDesc.cxx"></File>
  3163. <File RelativePath="..\panda\src\physx\physxHeightFieldShapeDesc.h"></File>
  3164. <File RelativePath="..\panda\src\physx\physxSphereShapeDesc.I"></File>
  3165. <File RelativePath="..\panda\src\physx\physxPlaneShape.h"></File>
  3166. <File RelativePath="..\panda\src\physx\physxConstraintDominance.h"></File>
  3167. <File RelativePath="..\panda\src\physx\physxConvexMeshDesc.h"></File>
  3168. <File RelativePath="..\panda\src\physx\physxFileStream.cxx"></File>
  3169. <File RelativePath="..\panda\src\physx\physxContactPoint.cxx"></File>
  3170. <File RelativePath="..\panda\src\physx\physxSphericalJoint.cxx"></File>
  3171. <File RelativePath="..\panda\src\physx\physxJointLimitSoftDesc.cxx"></File>
  3172. <File RelativePath="..\panda\src\physx\physxSphericalJoint.h"></File>
  3173. <File RelativePath="..\panda\src\physx\physxPointOnLineJointDesc.h"></File>
  3174. <File RelativePath="..\panda\src\physx\physxHeightFieldShapeDesc.cxx"></File>
  3175. <File RelativePath="..\panda\src\physx\physxBox.I"></File>
  3176. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShape.cxx"></File>
  3177. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShapeDesc.cxx"></File>
  3178. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShapeDesc.I"></File>
  3179. <File RelativePath="..\panda\src\physx\physxPlaneShapeDesc.I"></File>
  3180. <File RelativePath="..\panda\src\physx\physxD6JointDesc.cxx"></File>
  3181. <File RelativePath="..\panda\src\physx\physxWheelDesc.h"></File>
  3182. <File RelativePath="..\panda\src\physx\physxHeightFieldShape.cxx"></File>
  3183. <File RelativePath="..\panda\src\physx\physxForceField.cxx"></File>
  3184. <File RelativePath="..\panda\src\physx\physxVehicleDesc.I"></File>
  3185. <File RelativePath="..\panda\src\physx\physxObject.h"></File>
  3186. <File RelativePath="..\panda\src\physx\physxClothNode.I"></File>
  3187. <File RelativePath="..\panda\src\physx\physxPrismaticJointDesc.I"></File>
  3188. <File RelativePath="..\panda\src\physx\physxShape.h"></File>
  3189. <File RelativePath="..\panda\src\physx\physxControllerReport.h"></File>
  3190. <File RelativePath="..\panda\src\physx\physxClothMesh.I"></File>
  3191. <File RelativePath="..\panda\src\physx\physxBoxController.cxx"></File>
  3192. <File RelativePath="..\panda\src\physx\physxVehicleDesc.h"></File>
  3193. <File RelativePath="..\panda\src\physx\physxTriangleMesh.I"></File>
  3194. <File RelativePath="..\panda\src\physx\physxCapsuleShape.h"></File>
  3195. <File RelativePath="..\panda\src\physx\physxHeightField.I"></File>
  3196. <File RelativePath="..\panda\src\physx\physxOverlapReport.I"></File>
  3197. <File RelativePath="..\panda\src\physx\physxContactReport.cxx"></File>
  3198. <File RelativePath="..\panda\src\physx\physxJointDriveDesc.h"></File>
  3199. <File RelativePath="..\panda\src\physx\physxPointInPlaneJointDesc.h"></File>
  3200. <File RelativePath="..\panda\src\physx\physxKitchen.cxx"></File>
  3201. <File RelativePath="..\panda\src\physx\physxUtilLib.cxx"></File>
  3202. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShape.h"></File>
  3203. <File RelativePath="..\panda\src\physx\physxPrismaticJoint.cxx"></File>
  3204. <File RelativePath="..\panda\src\physx\physxMeshPool.cxx"></File>
  3205. <File RelativePath="..\panda\src\physx\physxSphere.h"></File>
  3206. <File RelativePath="..\panda\src\physx\physxObject.I"></File>
  3207. <File RelativePath="..\panda\src\physx\physxPointOnLineJoint.h"></File>
  3208. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShape.I"></File>
  3209. <File RelativePath="..\panda\src\physx\physxCapsuleShape.cxx"></File>
  3210. <File RelativePath="..\panda\src\physx\physxRevoluteJoint.cxx"></File>
  3211. <File RelativePath="..\panda\src\physx\physxRaycastReport.cxx"></File>
  3212. <File RelativePath="..\panda\src\physx\physxFixedJoint.I"></File>
  3213. <File RelativePath="..\panda\src\physx\physxSphericalJointDesc.h"></File>
  3214. <File RelativePath="..\panda\src\physx\physxD6JointDesc.h"></File>
  3215. <File RelativePath="..\panda\src\physx\physxConstraintDominance.I"></File>
  3216. <File RelativePath="..\panda\src\physx\physxJointDriveDesc.cxx"></File>
  3217. <File RelativePath="..\panda\src\physx\physxShapeDesc.cxx"></File>
  3218. <File RelativePath="..\panda\src\physx\physxConvexShape.h"></File>
  3219. <File RelativePath="..\panda\src\physx\physxHeightField.cxx"></File>
  3220. <File RelativePath="..\panda\src\physx\physxDistanceJoint.cxx"></File>
  3221. <File RelativePath="..\panda\src\physx\physxClothDesc.h"></File>
  3222. <File RelativePath="..\panda\src\physx\physxController.h"></File>
  3223. <File RelativePath="..\panda\src\physx\physxPointOnLineJointDesc.cxx"></File>
  3224. <File RelativePath="..\panda\src\physx\physxJointLimitSoftDesc.I"></File>
  3225. <File RelativePath="..\panda\src\physx\physxTriangleMeshShapeDesc.I"></File>
  3226. <File RelativePath="..\panda\src\physx\physxSceneDesc.I"></File>
  3227. <File RelativePath="..\panda\src\physx\physxRaycastHit.cxx"></File>
  3228. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroup.I"></File>
  3229. <File RelativePath="..\panda\src\physx\physxSegment.cxx"></File>
  3230. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShapeDesc.h"></File>
  3231. <File RelativePath="..\panda\src\physx\physxDistanceJoint.h"></File>
  3232. <File RelativePath="..\panda\src\physx\physxRay.I"></File>
  3233. <File RelativePath="..\panda\src\physx\physxActor.h"></File>
  3234. <File RelativePath="..\panda\src\physx\physxTriangleMeshShape.I"></File>
  3235. <File RelativePath="..\panda\src\physx\physxRevoluteJointDesc.cxx"></File>
  3236. <File RelativePath="..\panda\src\physx\physxDistanceJointDesc.cxx"></File>
  3237. <File RelativePath="..\panda\src\physx\physxPointInPlaneJoint.h"></File>
  3238. <File RelativePath="..\panda\src\physx\physxShape.cxx"></File>
  3239. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShape.cxx"></File>
  3240. <File RelativePath="..\panda\src\physx\physxOverlapReport.h"></File>
  3241. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroup.h"></File>
  3242. <File RelativePath="..\panda\src\physx\physxForceFieldDesc.cxx"></File>
  3243. <File RelativePath="..\panda\src\physx\physxForceFieldShape.h"></File>
  3244. <File RelativePath="..\panda\src\physx\physxSceneDesc.cxx"></File>
  3245. <File RelativePath="..\panda\src\physx\physxJoint.h"></File>
  3246. <File RelativePath="..\panda\src\physx\physxActor.I"></File>
  3247. <File RelativePath="..\panda\src\physx\physxForceFieldShape.cxx"></File>
  3248. <File RelativePath="..\panda\src\physx\physxCylindricalJoint.cxx"></File>
  3249. <File RelativePath="..\panda\src\physx\physxWheelShape.I"></File>
  3250. <File RelativePath="..\panda\src\physx\physxPlane.I"></File>
  3251. <File RelativePath="..\panda\src\physx\physxContactPair.I"></File>
  3252. <File RelativePath="..\panda\src\physx\physxUtilLib.h"></File>
  3253. <File RelativePath="..\panda\src\physx\physxBodyDesc.cxx"></File>
  3254. <File RelativePath="..\panda\src\physx\physxControllerReport.I"></File>
  3255. <File RelativePath="..\panda\src\physx\physxMeshPool.h"></File>
  3256. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShapeDesc.cxx"></File>
  3257. <File RelativePath="..\panda\src\physx\physxCylindricalJointDesc.h"></File>
  3258. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroupDesc.h"></File>
  3259. <File RelativePath="..\panda\src\physx\physxSpringDesc.h"></File>
  3260. <File RelativePath="..\panda\src\physx\physxContactReport.I"></File>
  3261. <File RelativePath="..\panda\src\physx\physxPulleyJointDesc.h"></File>
  3262. <File RelativePath="..\panda\src\physx\physxHeightFieldDesc.h"></File>
  3263. <File RelativePath="..\panda\src\physx\physxBoxController.I"></File>
  3264. <File RelativePath="..\panda\src\physx\physxKitchen.h"></File>
  3265. <File RelativePath="..\panda\src\physx\physxMemoryReadBuffer.h"></File>
  3266. <File RelativePath="..\panda\src\physx\physxManager.cxx"></File>
  3267. <File RelativePath="..\panda\src\physx\physxSceneStats2.I"></File>
  3268. <File RelativePath="..\panda\src\physx\physxFileStream.h"></File>
  3269. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShapeDesc.cxx"></File>
  3270. <File RelativePath="..\panda\src\physx\physxControllerDesc.I"></File>
  3271. <File RelativePath="..\panda\src\physx\physxLinearInterpolationValues.I"></File>
  3272. <File RelativePath="..\panda\src\physx\physxRaycastReport.h"></File>
  3273. <File RelativePath="..\panda\src\physx\physxD6Joint.I"></File>
  3274. <File RelativePath="..\panda\src\physx\physxCapsuleShape.I"></File>
  3275. <File RelativePath="..\panda\src\physx\physxClothMesh.h"></File>
  3276. <File RelativePath="..\panda\src\physx\physxObjectCollection.I"></File>
  3277. <File RelativePath="..\panda\src\physx\physxControllerDesc.cxx"></File>
  3278. <File RelativePath="..\panda\src\physx\physxPlaneShape.I"></File>
  3279. <File RelativePath="..\panda\src\physx\physxMaterialDesc.I"></File>
  3280. <File RelativePath="..\panda\src\physx\physxControllerReport.cxx"></File>
  3281. <File RelativePath="..\panda\src\physx\physxClothNode.cxx"></File>
  3282. <File RelativePath="..\panda\src\physx\physxConvexMesh.cxx"></File>
  3283. <File RelativePath="..\panda\src\physx\physxForceFieldShapeDesc.h"></File>
  3284. <File RelativePath="..\panda\src\physx\physxPulleyJoint.h"></File>
  3285. <File RelativePath="..\panda\src\physx\physxShapeDesc.h"></File>
  3286. <File RelativePath="..\panda\src\physx\physxMaterial.h"></File>
  3287. <File RelativePath="..\panda\src\physx\config_physx.h"></File>
  3288. <File RelativePath="..\panda\src\physx\physxHeightFieldShapeDesc.I"></File>
  3289. <File RelativePath="..\panda\src\physx\physxVehicle.cxx"></File>
  3290. <File RelativePath="..\panda\src\physx\physxRaycastHit.h"></File>
  3291. <File RelativePath="..\panda\src\physx\physxTriangleMesh.h"></File>
  3292. <File RelativePath="..\panda\src\physx\physxForceFieldDesc.I"></File>
  3293. <File RelativePath="..\panda\src\physx\physxClothMeshDesc.cxx"></File>
  3294. <File RelativePath="..\panda\src\physx\physxPointInPlaneJointDesc.cxx"></File>
  3295. <File RelativePath="..\panda\src\physx\physxTriangleMeshDesc.h"></File>
  3296. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShapeDesc.I"></File>
  3297. <File RelativePath="..\panda\src\physx\physxJointLimitDesc.cxx"></File>
  3298. <File RelativePath="..\panda\src\physx\physxScene.h"></File>
  3299. <File RelativePath="..\panda\src\physx\physxSphericalJoint.I"></File>
  3300. <File RelativePath="..\panda\src\physx\physxSegment.I"></File>
  3301. <File RelativePath="..\panda\src\physx\physxRaycastReport.I"></File>
  3302. <File RelativePath="..\panda\src\physx\physxRay.h"></File>
  3303. <File RelativePath="..\panda\src\physx\physxSphereShape.h"></File>
  3304. <File RelativePath="..\panda\src\physx\physxSphericalJointDesc.I"></File>
  3305. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShape.I"></File>
  3306. <File RelativePath="..\panda\src\physx\physxPrismaticJoint.h"></File>
  3307. <File RelativePath="..\panda\src\physx\physxBoxControllerDesc.h"></File>
  3308. <File RelativePath="..\panda\src\physx\physxBoxController.h"></File>
  3309. <File RelativePath="..\panda\src\physx\physxBox.cxx"></File>
  3310. <File RelativePath="..\panda\src\physx\physxPulleyJointDesc.cxx"></File>
  3311. <File RelativePath="..\panda\src\physx\physxActor.cxx"></File>
  3312. <File RelativePath="..\panda\src\physx\physxConvexShape.cxx"></File>
  3313. <File RelativePath="..\panda\src\physx\physxClothMeshDesc.h"></File>
  3314. <File RelativePath="..\panda\src\physx\physxPointOnLineJointDesc.I"></File>
  3315. <File RelativePath="..\panda\src\physx\physxClothMeshDesc.I"></File>
  3316. <File RelativePath="..\panda\src\physx\physxObject.cxx"></File>
  3317. <File RelativePath="..\panda\src\physx\physxSpringDesc.I"></File>
  3318. <File RelativePath="..\panda\src\physx\physxBoxControllerDesc.I"></File>
  3319. <File RelativePath="..\panda\src\physx\physxContactReport.h"></File>
  3320. <File RelativePath="..\panda\src\physx\physxPrismaticJointDesc.h"></File>
  3321. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroupDesc.I"></File>
  3322. <File RelativePath="..\panda\src\physx\physxTriggerReport.h"></File>
  3323. <File RelativePath="..\panda\src\physx\physxForceField.I"></File>
  3324. <File RelativePath="..\panda\src\physx\physxCapsuleShapeDesc.I"></File>
  3325. <File RelativePath="..\panda\src\physx\physxBounds3.h"></File>
  3326. <File RelativePath="..\panda\src\physx\physxWheel.I"></File>
  3327. <File RelativePath="..\panda\src\physx\physxSphereShapeDesc.h"></File>
  3328. <File RelativePath="..\panda\src\physx\physxConvexMesh.h"></File>
  3329. <File RelativePath="..\panda\src\physx\physxCapsule.cxx"></File>
  3330. <File RelativePath="..\panda\src\physx\physxGroupsMask.cxx"></File>
  3331. <File RelativePath="..\panda\src\physx\physxCylindricalJoint.h"></File>
  3332. <File RelativePath="..\panda\src\physx\physxCloth.I"></File>
  3333. <File RelativePath="..\panda\src\physx\physxConvexMeshDesc.cxx"></File>
  3334. <File RelativePath="..\panda\src\physx\physxFixedJointDesc.I"></File>
  3335. <File RelativePath="..\panda\src\physx\physxCapsuleControllerDesc.cxx"></File>
  3336. <File RelativePath="..\panda\src\physx\physxBoxControllerDesc.cxx"></File>
  3337. <File RelativePath="..\panda\src\physx\physxBodyDesc.h"></File>
  3338. <File RelativePath="..\panda\src\physx\physxGroupsMask.I"></File>
  3339. <File RelativePath="..\panda\src\physx\physxRaycastHit.I"></File>
  3340. <File RelativePath="..\panda\src\physx\physxHeightFieldShape.h"></File>
  3341. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShape.I"></File>
  3342. <File RelativePath="..\panda\src\physx\physxDebugGeomNode.h"></File>
  3343. <File RelativePath="..\panda\src\physx\physxBoxShapeDesc.h"></File>
  3344. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShapeDesc.h"></File>
  3345. <File RelativePath="..\panda\src\physx\physxControllerDesc.h"></File>
  3346. <File RelativePath="..\panda\src\physx\physxConvexMeshDesc.I"></File>
  3347. <File RelativePath="..\panda\src\physx\physxCloth.h"></File>
  3348. <File RelativePath="..\panda\src\physx\physxCapsuleController.h"></File>
  3349. <File RelativePath="..\panda\src\physx\physxCapsuleControllerDesc.I"></File>
  3350. <File RelativePath="..\panda\src\physx\physxHeightField.h"></File>
  3351. <File RelativePath="..\panda\src\physx\physxContactPoint.h"></File>
  3352. <File RelativePath="..\panda\src\physx\physxObjectCollection.h"></File>
  3353. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShape.h"></File>
  3354. <File RelativePath="..\panda\src\physx\physxWheelDesc.cxx"></File>
  3355. <File RelativePath="..\panda\src\physx\physxCylindricalJoint.I"></File>
  3356. <File RelativePath="..\panda\src\physx\physxCapsuleForceFieldShape.h"></File>
  3357. <File RelativePath="..\panda\src\physx\physxConvexMesh.I"></File>
  3358. <File RelativePath="..\panda\src\physx\physxPointInPlaneJoint.I"></File>
  3359. <File RelativePath="..\panda\src\physx\physxBoxShape.h"></File>
  3360. <File RelativePath="..\panda\src\physx\physxContactPair.cxx"></File>
  3361. <File RelativePath="..\panda\src\physx\physxClothDesc.I"></File>
  3362. <File RelativePath="..\panda\src\physx\physxActorDesc.I"></File>
  3363. <File RelativePath="..\panda\src\physx\physxMotorDesc.h"></File>
  3364. <File RelativePath="..\panda\src\physx\physxDebugGeomNode.cxx"></File>
  3365. <File RelativePath="..\panda\src\physx\physxDistanceJointDesc.I"></File>
  3366. <File RelativePath="..\panda\src\physx\physxBounds3.I"></File>
  3367. <File RelativePath="..\panda\src\physx\physxActorDesc.cxx"></File>
  3368. <File RelativePath="..\panda\src\physx\physxJointDesc.I"></File>
  3369. <File RelativePath="..\panda\src\physx\physxSphere.I"></File>
  3370. <File RelativePath="..\panda\src\physx\physxShapeDesc.I"></File>
  3371. <File RelativePath="..\panda\src\physx\physxMeshPool.I"></File>
  3372. <File RelativePath="..\panda\src\physx\physxMemoryReadBuffer.cxx"></File>
  3373. <File RelativePath="..\panda\src\physx\physxPlaneShapeDesc.h"></File>
  3374. <File RelativePath="..\panda\src\physx\physxFixedJoint.cxx"></File>
  3375. <File RelativePath="..\panda\src\physx\physxSphereShapeDesc.cxx"></File>
  3376. <File RelativePath="..\panda\src\physx\physxSphericalJointDesc.cxx"></File>
  3377. <File RelativePath="..\panda\src\physx\physxRevoluteJointDesc.h"></File>
  3378. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroupDesc.cxx"></File>
  3379. <File RelativePath="..\panda\src\physx\physxVehicle.h"></File>
  3380. <File RelativePath="..\panda\src\physx\physxWheel.cxx"></File>
  3381. <File RelativePath="..\panda\src\physx\physxHeightFieldShape.I"></File>
  3382. <File RelativePath="..\panda\src\physx\physxJoint.I"></File>
  3383. <File RelativePath="..\panda\src\physx\physxForceFieldShapeDesc.I"></File>
  3384. <File RelativePath="..\panda\src\physx\physxForceFieldShape.I"></File>
  3385. <File RelativePath="..\panda\src\physx\physxGroupsMask.h"></File>
  3386. <File RelativePath="..\panda\src\physx\physxJointLimitSoftDesc.h"></File>
  3387. <File RelativePath="..\panda\src\physx\physxTriangleMeshShapeDesc.cxx"></File>
  3388. <File RelativePath="..\panda\src\physx\physxVehicle.I"></File>
  3389. <File RelativePath="..\panda\src\physx\physxJointLimitDesc.I"></File>
  3390. <File RelativePath="..\panda\src\physx\physxTriangleMeshShape.h"></File>
  3391. <File RelativePath="..\panda\src\physx\physx_composite.cxx"></File>
  3392. <File RelativePath="..\panda\src\physx\physxCapsule.I"></File>
  3393. <File RelativePath="..\panda\src\physx\physxTriangleMeshShapeDesc.h"></File>
  3394. <File RelativePath="..\panda\src\physx\physxPlaneShapeDesc.cxx"></File>
  3395. <File RelativePath="..\panda\src\physx\physxLinearInterpolationValues.h"></File>
  3396. <File RelativePath="..\panda\src\physx\physxActorDesc.h"></File>
  3397. <File RelativePath="..\panda\src\physx\physxTriangleMeshDesc.I"></File>
  3398. <File RelativePath="..\panda\src\physx\physxPulleyJoint.cxx"></File>
  3399. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShape.I"></File>
  3400. <File RelativePath="..\panda\src\physx\physxMaterial.I"></File>
  3401. <File RelativePath="..\panda\src\physx\physxKitchen.I"></File>
  3402. <File RelativePath="..\panda\src\physx\physxSphereShape.cxx"></File>
  3403. <File RelativePath="..\panda\src\physx\physxFixedJointDesc.cxx"></File>
  3404. <File RelativePath="..\panda\src\physx\physxSpringDesc.cxx"></File>
  3405. <File RelativePath="..\panda\src\physx\physxBox.h"></File>
  3406. <File RelativePath="..\panda\src\physx\physxSceneStats2.h"></File>
  3407. <File RelativePath="..\panda\src\physx\physxShape.I"></File>
  3408. <File RelativePath="..\panda\src\physx\physxForceFieldDesc.h"></File>
  3409. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShapeDesc.h"></File>
  3410. <File RelativePath="..\panda\src\physx\physxRevoluteJointDesc.I"></File>
  3411. <File RelativePath="..\panda\src\physx\physxVehicleDesc.cxx"></File>
  3412. <File RelativePath="..\panda\src\physx\config_physx.cxx"></File>
  3413. <File RelativePath="..\panda\src\physx\physxTriggerReport.I"></File>
  3414. <File RelativePath="..\panda\src\physx\physxD6Joint.cxx"></File>
  3415. <File RelativePath="..\panda\src\physx\physxLinearInterpolationValues.cxx"></File>
  3416. <File RelativePath="..\panda\src\physx\physxRay.cxx"></File>
  3417. <File RelativePath="..\panda\src\physx\physxCylindricalJointDesc.I"></File>
  3418. <File RelativePath="..\panda\src\physx\physxJointLimitDesc.h"></File>
  3419. <File RelativePath="..\panda\src\physx\physxTriggerReport.cxx"></File>
  3420. <File RelativePath="..\panda\src\physx\physxHeightFieldDesc.I"></File>
  3421. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShapeDesc.I"></File>
  3422. <File RelativePath="..\panda\src\physx\physxDebugGeomNode.I"></File>
  3423. <File RelativePath="..\panda\src\physx\physxHeightFieldDesc.cxx"></File>
  3424. <File RelativePath="..\panda\src\physx\physxMotorDesc.cxx"></File>
  3425. <File RelativePath="..\panda\src\physx\physxWheelShapeDesc.I"></File>
  3426. <File RelativePath="..\panda\src\physx\physxMemoryWriteBuffer.cxx"></File>
  3427. <File RelativePath="..\panda\src\physx\physxScene.I"></File>
  3428. <File RelativePath="..\panda\src\physx\physxClothNode.h"></File>
  3429. <File RelativePath="..\panda\src\physx\physxJointDriveDesc.I"></File>
  3430. <File RelativePath="..\panda\src\physx\physxSceneStats2.cxx"></File>
  3431. <File RelativePath="..\panda\src\physx\physxBoxShapeDesc.cxx"></File>
  3432. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShape.cxx"></File>
  3433. <File RelativePath="..\panda\src\physx\physxSphere.cxx"></File>
  3434. <File RelativePath="..\panda\src\physx\physxMask.I"></File>
  3435. <File RelativePath="..\panda\src\physx\physxCapsuleControllerDesc.h"></File>
  3436. <File RelativePath="..\panda\src\physx\physxManager.h"></File>
  3437. <File RelativePath="..\panda\src\physx\physxTriangleMeshDesc.cxx"></File>
  3438. <File RelativePath="..\panda\src\physx\physxPointOnLineJoint.I"></File>
  3439. <File RelativePath="..\panda\src\physx\physxConvexShapeDesc.h"></File>
  3440. <File RelativePath="..\panda\src\physx\physxOverlapReport.cxx"></File>
  3441. <File RelativePath="..\panda\src\physx\physxClothMesh.cxx"></File>
  3442. <File RelativePath="..\panda\src\physx\physxEnums.cxx"></File>
  3443. <File RelativePath="..\panda\src\physx\physxJointDesc.h"></File>
  3444. <File RelativePath="..\panda\src\physx\physxSphereShape.I"></File>
  3445. <File RelativePath="..\panda\src\physx\physxClothDesc.cxx"></File>
  3446. <File RelativePath="..\panda\src\physx\physxPlane.cxx"></File>
  3447. <File RelativePath="..\panda\src\physx\physxPrismaticJointDesc.cxx"></File>
  3448. <File RelativePath="..\panda\src\physx\physxPointOnLineJoint.cxx"></File>
  3449. <File RelativePath="..\panda\src\physx\physxFixedJointDesc.h"></File>
  3450. <File RelativePath="..\panda\src\physx\physxScene.cxx"></File>
  3451. <File RelativePath="..\panda\src\physx\physxCloth.cxx"></File>
  3452. <File RelativePath="..\panda\src\physx\physxBoxForceFieldShapeDesc.I"></File>
  3453. <File RelativePath="..\panda\src\physx\physxCapsuleController.cxx"></File>
  3454. <File RelativePath="..\panda\src\physx\physxForceField.h"></File>
  3455. <File RelativePath="..\panda\src\physx\physxWheelShapeDesc.h"></File>
  3456. <File RelativePath="..\panda\src\physx\physxController.cxx"></File>
  3457. <File RelativePath="..\panda\src\physx\physxTriangleMesh.cxx"></File>
  3458. <File RelativePath="..\panda\src\physx\physxConvexShape.I"></File>
  3459. <File RelativePath="..\panda\src\physx\physxContactPoint.I"></File>
  3460. <File RelativePath="..\panda\src\physx\physxObjectCollection.cxx"></File>
  3461. <File RelativePath="..\panda\src\physx\physxWheelShapeDesc.cxx"></File>
  3462. <File RelativePath="..\panda\src\physx\physxPlane.h"></File>
  3463. <File RelativePath="..\panda\src\physx\physxPulleyJoint.I"></File>
  3464. <File RelativePath="..\panda\src\physx\physxCylindricalJointDesc.cxx"></File>
  3465. <File RelativePath="..\panda\src\physx\physxBodyDesc.I"></File>
  3466. <File RelativePath="..\panda\src\physx\physxTriangleMeshShape.cxx"></File>
  3467. <File RelativePath="..\panda\src\physx\physxMask.h"></File>
  3468. <File RelativePath="..\panda\src\physx\physxBoxShape.I"></File>
  3469. <File RelativePath="..\panda\src\physx\physxPrismaticJoint.I"></File>
  3470. <File RelativePath="..\panda\src\physx\physxBoxShapeDesc.I"></File>
  3471. <File RelativePath="..\panda\src\physx\physxManager.I"></File>
  3472. <File RelativePath="..\panda\src\physx\physxCapsuleController.I"></File>
  3473. <File RelativePath="..\panda\src\physx\physxWheelShape.h"></File>
  3474. <File RelativePath="..\panda\src\physx\physxCapsuleShapeDesc.cxx"></File>
  3475. <File RelativePath="..\panda\src\physx\physxMotorDesc.I"></File>
  3476. <File RelativePath="..\panda\src\physx\physxSceneDesc.h"></File>
  3477. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShape.h"></File>
  3478. <File RelativePath="..\panda\src\physx\physxDistanceJoint.I"></File>
  3479. <File RelativePath="..\panda\src\physx\physxBoxShape.cxx"></File>
  3480. <File RelativePath="..\panda\src\physx\physxConstraintDominance.cxx"></File>
  3481. <File RelativePath="..\panda\src\physx\physxCapsuleShapeDesc.h"></File>
  3482. <File RelativePath="..\panda\src\physx\physxController.I"></File>
  3483. <File RelativePath="..\panda\src\physx\physxFixedJoint.h"></File>
  3484. <File RelativePath="..\panda\src\physx\physxJoint.cxx"></File>
  3485. <File RelativePath="..\panda\src\physx\physxPointInPlaneJointDesc.I"></File>
  3486. <File RelativePath="..\panda\src\physx\physxWheelShape.cxx"></File>
  3487. <File RelativePath="..\panda\src\physx\physxForceFieldShapeGroup.cxx"></File>
  3488. <File RelativePath="..\panda\src\physx\physxMaterialDesc.cxx"></File>
  3489. <File RelativePath="..\panda\src\physx\physxContactPair.h"></File>
  3490. <File RelativePath="..\panda\src\physx\physxForceFieldShapeDesc.cxx"></File>
  3491. <File RelativePath="..\panda\src\physx\physxCapsule.h"></File>
  3492. <File RelativePath="..\panda\src\physx\physxPulleyJointDesc.I"></File>
  3493. <File RelativePath="..\panda\src\physx\physxConvexForceFieldShapeDesc.h"></File>
  3494. <File RelativePath="..\panda\src\physx\physxMemoryWriteBuffer.h"></File>
  3495. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShapeDesc.cxx"></File>
  3496. <File RelativePath="..\panda\src\physx\physxWheel.h"></File>
  3497. <File RelativePath="..\panda\src\physx\physxPointInPlaneJoint.cxx"></File>
  3498. <File RelativePath="..\panda\src\physx\physxRevoluteJoint.h"></File>
  3499. <File RelativePath="..\panda\src\physx\physxUtilLib.I"></File>
  3500. <File RelativePath="..\panda\src\physx\physxSphereForceFieldShape.cxx"></File>
  3501. <File RelativePath="..\panda\src\physx\physxMaterial.cxx"></File>
  3502. <File RelativePath="..\panda\src\physx\physxWheelDesc.I"></File>
  3503. <File RelativePath="..\panda\src\physx\physxD6Joint.h"></File>
  3504. <File RelativePath="..\panda\src\physx\physxSegment.h"></File>
  3505. <File RelativePath="..\panda\src\physx\physxRevoluteJoint.I"></File>
  3506. <File RelativePath="..\panda\src\physx\physxJointDesc.cxx"></File>
  3507. <File RelativePath="..\panda\src\physx\physxD6JointDesc.I"></File>
  3508. <File RelativePath="..\panda\src\physx\physxEnums.h"></File>
  3509. <File RelativePath="..\panda\src\physx\physx_includes.h"></File>
  3510. <File RelativePath="..\panda\src\physx\physxBounds3.cxx"></File>
  3511. <File RelativePath="..\panda\src\physx\physxPlaneShape.cxx"></File>
  3512. <File RelativePath="..\panda\src\physx\physxConvexShapeDesc.I"></File>
  3513. <File RelativePath="..\panda\src\physx\physxMaterialDesc.h"></File>
  3514. </Filter>
  3515. <Filter Name="osxdisplay">
  3516. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsBuffer.h"></File>
  3517. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsWindow.I"></File>
  3518. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsPipe.cxx"></File>
  3519. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsBuffer.cxx"></File>
  3520. <File RelativePath="..\panda\src\osxdisplay\config_osxdisplay.h"></File>
  3521. <File RelativePath="..\panda\src\osxdisplay\resize_box.rgb.c"></File>
  3522. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsStateGuardian.h"></File>
  3523. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsWindow.h"></File>
  3524. <File RelativePath="..\panda\src\osxdisplay\config_osxdisplay.cxx"></File>
  3525. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsPipe.h"></File>
  3526. <File RelativePath="..\panda\src\osxdisplay\osxdisplay_composite1.cxx"></File>
  3527. <File RelativePath="..\panda\src\osxdisplay\osxGraphicsStateGuardian.cxx"></File>
  3528. </Filter>
  3529. <Filter Name="net">
  3530. <File RelativePath="..\panda\src\net\queuedConnectionReader.cxx"></File>
  3531. <File RelativePath="..\panda\src\net\datagramGeneratorNet.I"></File>
  3532. <File RelativePath="..\panda\src\net\datagramSinkNet.cxx"></File>
  3533. <File RelativePath="..\panda\src\net\connectionReader.h"></File>
  3534. <File RelativePath="..\panda\src\net\config_net.cxx"></File>
  3535. <File RelativePath="..\panda\src\net\net_composite1.cxx"></File>
  3536. <File RelativePath="..\panda\src\net\test_udp.cxx"></File>
  3537. <File RelativePath="..\panda\src\net\datagramGeneratorNet.cxx"></File>
  3538. <File RelativePath="..\panda\src\net\queuedReturn.I"></File>
  3539. <File RelativePath="..\panda\src\net\netAddress.h"></File>
  3540. <File RelativePath="..\panda\src\net\queuedReturn.h"></File>
  3541. <File RelativePath="..\panda\src\net\datagramSinkNet.I"></File>
  3542. <File RelativePath="..\panda\src\net\connection.h"></File>
  3543. <File RelativePath="..\panda\src\net\test_spam_client.cxx"></File>
  3544. <File RelativePath="..\panda\src\net\datagramQueue.h"></File>
  3545. <File RelativePath="..\panda\src\net\datagramUDPHeader.I"></File>
  3546. <File RelativePath="..\panda\src\net\datagramUDPHeader.cxx"></File>
  3547. <File RelativePath="..\panda\src\net\net_composite2.cxx"></File>
  3548. <File RelativePath="..\panda\src\net\config_net.h"></File>
  3549. <File RelativePath="..\panda\src\net\connectionListener.h"></File>
  3550. <File RelativePath="..\panda\src\net\test_datagram.cxx"></File>
  3551. <File RelativePath="..\panda\src\net\datagramTCPHeader.cxx"></File>
  3552. <File RelativePath="..\panda\src\net\test_tcp_client.cxx"></File>
  3553. <File RelativePath="..\panda\src\net\datagramSinkNet.h"></File>
  3554. <File RelativePath="..\panda\src\net\datagramTCPHeader.h"></File>
  3555. <File RelativePath="..\panda\src\net\connectionWriter.cxx"></File>
  3556. <File RelativePath="..\panda\src\net\netDatagram.cxx"></File>
  3557. <File RelativePath="..\panda\src\net\queuedConnectionListener.cxx"></File>
  3558. <File RelativePath="..\panda\src\net\test_tcp_server.cxx"></File>
  3559. <File RelativePath="..\panda\src\net\test_spam_server.cxx"></File>
  3560. <File RelativePath="..\panda\src\net\connectionManager.h"></File>
  3561. <File RelativePath="..\panda\src\net\connectionManager.cxx"></File>
  3562. <File RelativePath="..\panda\src\net\netDatagram.I"></File>
  3563. <File RelativePath="..\panda\src\net\connectionReader.cxx"></File>
  3564. <File RelativePath="..\panda\src\net\recentConnectionReader.cxx"></File>
  3565. <File RelativePath="..\panda\src\net\datagramGeneratorNet.h"></File>
  3566. <File RelativePath="..\panda\src\net\connectionWriter.h"></File>
  3567. <File RelativePath="..\panda\src\net\connectionListener.cxx"></File>
  3568. <File RelativePath="..\panda\src\net\netDatagram.h"></File>
  3569. <File RelativePath="..\panda\src\net\connectionReader.I"></File>
  3570. <File RelativePath="..\panda\src\net\net_composite.cxx"></File>
  3571. <File RelativePath="..\panda\src\net\queuedConnectionListener.h"></File>
  3572. <File RelativePath="..\panda\src\net\test_raw_server.cxx"></File>
  3573. <File RelativePath="..\panda\src\net\queuedConnectionManager.h"></File>
  3574. <File RelativePath="..\panda\src\net\fake_http_server.cxx"></File>
  3575. <File RelativePath="..\panda\src\net\queuedConnectionListener.I"></File>
  3576. <File RelativePath="..\panda\src\net\datagramUDPHeader.h"></File>
  3577. <File RelativePath="..\panda\src\net\connection.cxx"></File>
  3578. <File RelativePath="..\panda\src\net\datagramQueue.cxx"></File>
  3579. <File RelativePath="..\panda\src\net\queuedConnectionManager.cxx"></File>
  3580. <File RelativePath="..\panda\src\net\datagramTCPHeader.I"></File>
  3581. <File RelativePath="..\panda\src\net\queuedConnectionReader.h"></File>
  3582. <File RelativePath="..\panda\src\net\datagram_ui.h"></File>
  3583. <File RelativePath="..\panda\src\net\recentConnectionReader.h"></File>
  3584. <File RelativePath="..\panda\src\net\datagram_ui.cxx"></File>
  3585. <File RelativePath="..\panda\src\net\netAddress.cxx"></File>
  3586. </Filter>
  3587. <Filter Name="awesomium">
  3588. <File RelativePath="..\panda\src\awesomium\WebBrowserTexture.cxx"></File>
  3589. <File RelativePath="..\panda\src\awesomium\awesomium_includes.h"></File>
  3590. <File RelativePath="..\panda\src\awesomium\pandaawesomium_composite1.cxx"></File>
  3591. <File RelativePath="..\panda\src\awesomium\awWebViewListener.cxx"></File>
  3592. <File RelativePath="..\panda\src\awesomium\awWebViewListener.h"></File>
  3593. <File RelativePath="..\panda\src\awesomium\awWebCore.h"></File>
  3594. <File RelativePath="..\panda\src\awesomium\WebBrowserTexture.h"></File>
  3595. <File RelativePath="..\panda\src\awesomium\awWebCore.cxx"></File>
  3596. <File RelativePath="..\panda\src\awesomium\AwMouseAndKeyboard.h"></File>
  3597. <File RelativePath="..\panda\src\awesomium\awWebViewListener.I"></File>
  3598. <File RelativePath="..\panda\src\awesomium\awWebView.h"></File>
  3599. <File RelativePath="..\panda\src\awesomium\config_awesomium.h"></File>
  3600. <File RelativePath="..\panda\src\awesomium\awWebCore.I"></File>
  3601. <File RelativePath="..\panda\src\awesomium\awWebView.I"></File>
  3602. <File RelativePath="..\panda\src\awesomium\awWebView.cxx"></File>
  3603. <File RelativePath="..\panda\src\awesomium\AwMouseAndKeyboard.cxx"></File>
  3604. <File RelativePath="..\panda\src\awesomium\config_awesomium.cxx"></File>
  3605. </Filter>
  3606. <Filter Name="movies">
  3607. <File RelativePath="..\panda\src\movies\ffmpegVideoCursor.h"></File>
  3608. <File RelativePath="..\panda\src\movies\movies_composite.cxx"></File>
  3609. <File RelativePath="..\panda\src\movies\ffmpegVirtualFile.I"></File>
  3610. <File RelativePath="..\panda\src\movies\ffmpegVirtualFile.cxx"></File>
  3611. <File RelativePath="..\panda\src\movies\userDataAudio.cxx"></File>
  3612. <File RelativePath="..\panda\src\movies\ffmpegVideo.I"></File>
  3613. <File RelativePath="..\panda\src\movies\movieAudio.cxx"></File>
  3614. <File RelativePath="..\panda\src\movies\movies_composite1.cxx"></File>
  3615. <File RelativePath="..\panda\src\movies\ffmpegAudioCursor.cxx"></File>
  3616. <File RelativePath="..\panda\src\movies\movieVideoCursor.h"></File>
  3617. <File RelativePath="..\panda\src\movies\userDataAudioCursor.cxx"></File>
  3618. <File RelativePath="..\panda\src\movies\userDataAudio.h"></File>
  3619. <File RelativePath="..\panda\src\movies\userDataAudio.I"></File>
  3620. <File RelativePath="..\panda\src\movies\inkblotVideo.cxx"></File>
  3621. <File RelativePath="..\panda\src\movies\inkblotVideoCursor.cxx"></File>
  3622. <File RelativePath="..\panda\src\movies\movieAudio.I"></File>
  3623. <File RelativePath="..\panda\src\movies\inkblotVideoCursor.I"></File>
  3624. <File RelativePath="..\panda\src\movies\ffmpegVideo.h"></File>
  3625. <File RelativePath="..\panda\src\movies\config_movies.cxx"></File>
  3626. <File RelativePath="..\panda\src\movies\inkblotVideo.h"></File>
  3627. <File RelativePath="..\panda\src\movies\config_movies.h"></File>
  3628. <File RelativePath="..\panda\src\movies\movieAudioCursor.cxx"></File>
  3629. <File RelativePath="..\panda\src\movies\microphoneAudio.I"></File>
  3630. <File RelativePath="..\panda\src\movies\ffmpegAudioCursor.h"></File>
  3631. <File RelativePath="..\panda\src\movies\ffmpegVirtualFile.h"></File>
  3632. <File RelativePath="..\panda\src\movies\movieAudioCursor.h"></File>
  3633. <File RelativePath="..\panda\src\movies\movieAudio.h"></File>
  3634. <File RelativePath="..\panda\src\movies\movieVideoCursor.I"></File>
  3635. <File RelativePath="..\panda\src\movies\ffmpegVideoCursor.cxx"></File>
  3636. <File RelativePath="..\panda\src\movies\ffmpegAudio.I"></File>
  3637. <File RelativePath="..\panda\src\movies\movieVideo.I"></File>
  3638. <File RelativePath="..\panda\src\movies\inkblotVideoCursor.h"></File>
  3639. <File RelativePath="..\panda\src\movies\ffmpegAudioCursor.I"></File>
  3640. <File RelativePath="..\panda\src\movies\movieVideo.h"></File>
  3641. <File RelativePath="..\panda\src\movies\microphoneAudioDS.cxx"></File>
  3642. <File RelativePath="..\panda\src\movies\ffmpegVideoCursor.I"></File>
  3643. <File RelativePath="..\panda\src\movies\ffmpegVideo.cxx"></File>
  3644. <File RelativePath="..\panda\src\movies\microphoneAudio.h"></File>
  3645. <File RelativePath="..\panda\src\movies\ffmpegAudio.h"></File>
  3646. <File RelativePath="..\panda\src\movies\ffmpegAudio.cxx"></File>
  3647. <File RelativePath="..\panda\src\movies\inkblotVideo.I"></File>
  3648. <File RelativePath="..\panda\src\movies\userDataAudioCursor.I"></File>
  3649. <File RelativePath="..\panda\src\movies\movieVideo.cxx"></File>
  3650. <File RelativePath="..\panda\src\movies\microphoneAudio.cxx"></File>
  3651. <File RelativePath="..\panda\src\movies\movieAudioCursor.I"></File>
  3652. <File RelativePath="..\panda\src\movies\userDataAudioCursor.h"></File>
  3653. <File RelativePath="..\panda\src\movies\movieVideoCursor.cxx"></File>
  3654. </Filter>
  3655. <Filter Name="text">
  3656. <File RelativePath="..\panda\src\text\textAssembler.I"></File>
  3657. <File RelativePath="..\panda\src\text\text_composite1.cxx"></File>
  3658. <File RelativePath="..\panda\src\text\textNode.h"></File>
  3659. <File RelativePath="..\panda\src\text\textProperties.I"></File>
  3660. <File RelativePath="..\panda\src\text\default_font.h"></File>
  3661. <File RelativePath="..\panda\src\text\textGraphic.cxx"></File>
  3662. <File RelativePath="..\panda\src\text\dynamicTextGlyph.I"></File>
  3663. <File RelativePath="..\panda\src\text\dynamicTextPage.h"></File>
  3664. <File RelativePath="..\panda\src\text\textProperties.h"></File>
  3665. <File RelativePath="..\panda\src\text\config_text.cxx"></File>
  3666. <File RelativePath="..\panda\src\text\textFont.h"></File>
  3667. <File RelativePath="..\panda\src\text\geomTextGlyph.I"></File>
  3668. <File RelativePath="..\panda\src\text\staticTextFont.h"></File>
  3669. <File RelativePath="..\panda\src\text\fontPool.I"></File>
  3670. <File RelativePath="..\panda\src\text\textGlyph.I"></File>
  3671. <File RelativePath="..\panda\src\text\staticTextFont.cxx"></File>
  3672. <File RelativePath="..\panda\src\text\textGraphic.h"></File>
  3673. <File RelativePath="..\panda\src\text\fontPool.cxx"></File>
  3674. <File RelativePath="..\panda\src\text\textGraphic.I"></File>
  3675. <File RelativePath="..\panda\src\text\dynamicTextPage.I"></File>
  3676. <File RelativePath="..\panda\src\text\config_text.h"></File>
  3677. <File RelativePath="..\panda\src\text\textGlyph.h"></File>
  3678. <File RelativePath="..\panda\src\text\textFont.cxx"></File>
  3679. <File RelativePath="..\panda\src\text\dynamicTextFont.I"></File>
  3680. <File RelativePath="..\panda\src\text\textProperties.cxx"></File>
  3681. <File RelativePath="..\panda\src\text\dynamicTextGlyph.cxx"></File>
  3682. <File RelativePath="..\panda\src\text\geomTextGlyph.h"></File>
  3683. <File RelativePath="..\panda\src\text\default_font.cxx"></File>
  3684. <File RelativePath="..\panda\src\text\text_composite.cxx"></File>
  3685. <File RelativePath="..\panda\src\text\dynamicTextFont.cxx"></File>
  3686. <File RelativePath="..\panda\src\text\textGlyph.cxx"></File>
  3687. <File RelativePath="..\panda\src\text\textAssembler.h"></File>
  3688. <File RelativePath="..\panda\src\text\staticTextFont.I"></File>
  3689. <File RelativePath="..\panda\src\text\text_composite2.cxx"></File>
  3690. <File RelativePath="..\panda\src\text\dynamicTextGlyph.h"></File>
  3691. <File RelativePath="..\panda\src\text\fontPool.h"></File>
  3692. <File RelativePath="..\panda\src\text\textFont.I"></File>
  3693. <File RelativePath="..\panda\src\text\cmss12.bam.c"></File>
  3694. <File RelativePath="..\panda\src\text\dynamicTextFont.h"></File>
  3695. <File RelativePath="..\panda\src\text\geomTextGlyph.cxx"></File>
  3696. <File RelativePath="..\panda\src\text\textAssembler.cxx"></File>
  3697. <File RelativePath="..\panda\src\text\dynamicTextPage.cxx"></File>
  3698. <File RelativePath="..\panda\src\text\cmss12.bam.pz.c"></File>
  3699. <File RelativePath="..\panda\src\text\textNode.cxx"></File>
  3700. <File RelativePath="..\panda\src\text\textPropertiesManager.cxx"></File>
  3701. <File RelativePath="..\panda\src\text\textPropertiesManager.I"></File>
  3702. <File RelativePath="..\panda\src\text\textPropertiesManager.h"></File>
  3703. <File RelativePath="..\panda\src\text\textNode.I"></File>
  3704. <File RelativePath="..\panda\src\text\persans.ttf.c"></File>
  3705. </Filter>
  3706. <Filter Name="testbed">
  3707. <File RelativePath="..\panda\src\testbed\test_texmem.cxx"></File>
  3708. <File RelativePath="..\panda\src\testbed\test_lod.cxx"></File>
  3709. <File RelativePath="..\panda\src\testbed\test_map.cxx"></File>
  3710. <File RelativePath="..\panda\src\testbed\pgrid.cxx"></File>
  3711. <File RelativePath="..\panda\src\testbed\pview.cxx"></File>
  3712. <File RelativePath="..\panda\src\testbed\text_test.cxx"></File>
  3713. </Filter>
  3714. <Filter Name="cull">
  3715. <File RelativePath="..\panda\src\cull\config_cull.cxx"></File>
  3716. <File RelativePath="..\panda\src\cull\drawCullHandler.cxx"></File>
  3717. <File RelativePath="..\panda\src\cull\drawCullHandler.h"></File>
  3718. <File RelativePath="..\panda\src\cull\cullBinUnsorted.cxx"></File>
  3719. <File RelativePath="..\panda\src\cull\cullBinFrontToBack.I"></File>
  3720. <File RelativePath="..\panda\src\cull\binCullHandler.cxx"></File>
  3721. <File RelativePath="..\panda\src\cull\cullBinBackToFront.h"></File>
  3722. <File RelativePath="..\panda\src\cull\binCullHandler.I"></File>
  3723. <File RelativePath="..\panda\src\cull\cullBinFixed.I"></File>
  3724. <File RelativePath="..\panda\src\cull\binCullHandler.h"></File>
  3725. <File RelativePath="..\panda\src\cull\cullBinBackToFront.I"></File>
  3726. <File RelativePath="..\panda\src\cull\cullBinFixed.h"></File>
  3727. <File RelativePath="..\panda\src\cull\cull_composite1.cxx"></File>
  3728. <File RelativePath="..\panda\src\cull\cullBinStateSorted.I"></File>
  3729. <File RelativePath="..\panda\src\cull\cullBinStateSorted.cxx"></File>
  3730. <File RelativePath="..\panda\src\cull\cullBinUnsorted.h"></File>
  3731. <File RelativePath="..\panda\src\cull\drawCullHandler.I"></File>
  3732. <File RelativePath="..\panda\src\cull\cullBinUnsorted.I"></File>
  3733. <File RelativePath="..\panda\src\cull\cullBinFixed.cxx"></File>
  3734. <File RelativePath="..\panda\src\cull\cull_composite.cxx"></File>
  3735. <File RelativePath="..\panda\src\cull\cullBinBackToFront.cxx"></File>
  3736. <File RelativePath="..\panda\src\cull\cullBinFrontToBack.h"></File>
  3737. <File RelativePath="..\panda\src\cull\cullBinStateSorted.h"></File>
  3738. <File RelativePath="..\panda\src\cull\cull_composite2.cxx"></File>
  3739. <File RelativePath="..\panda\src\cull\cullBinFrontToBack.cxx"></File>
  3740. <File RelativePath="..\panda\src\cull\config_cull.h"></File>
  3741. </Filter>
  3742. <Filter Name="cftalk">
  3743. <File RelativePath="..\panda\src\cftalk\cfChannel.I"></File>
  3744. <File RelativePath="..\panda\src\cftalk\cfCommand.h"></File>
  3745. <File RelativePath="..\panda\src\cftalk\config_cftalk.h"></File>
  3746. <File RelativePath="..\panda\src\cftalk\cfCommand.cxx"></File>
  3747. <File RelativePath="..\panda\src\cftalk\config_cftalk.cxx"></File>
  3748. <File RelativePath="..\panda\src\cftalk\cfChannel.h"></File>
  3749. <File RelativePath="..\panda\src\cftalk\cfCommand.I"></File>
  3750. <File RelativePath="..\panda\src\cftalk\cfChannel.cxx"></File>
  3751. <File RelativePath="..\panda\src\cftalk\cftalk_composite2.cxx"></File>
  3752. <File RelativePath="..\panda\src\cftalk\cftalk_composite1.cxx"></File>
  3753. </Filter>
  3754. <Filter Name="audiotraits">
  3755. <File RelativePath="..\panda\src\audiotraits\milesAudioSequence.cxx"></File>
  3756. <File RelativePath="..\panda\src\audiotraits\milesAudioStream.I"></File>
  3757. <File RelativePath="..\panda\src\audiotraits\config_milesAudio.cxx"></File>
  3758. <File RelativePath="..\panda\src\audiotraits\fmod_audio_composite.cxx"></File>
  3759. <File RelativePath="..\panda\src\audiotraits\config_openalAudio.h"></File>
  3760. <File RelativePath="..\panda\src\audiotraits\openalAudioSound.cxx"></File>
  3761. <File RelativePath="..\panda\src\audiotraits\fmodAudioSound.h"></File>
  3762. <File RelativePath="..\panda\src\audiotraits\openalAudioManager.cxx"></File>
  3763. <File RelativePath="..\panda\src\audiotraits\milesAudioStream.cxx"></File>
  3764. <File RelativePath="..\panda\src\audiotraits\milesAudioSample.cxx"></File>
  3765. <File RelativePath="..\panda\src\audiotraits\milesAudioSequence.I"></File>
  3766. <File RelativePath="..\panda\src\audiotraits\milesAudioSound.h"></File>
  3767. <File RelativePath="..\panda\src\audiotraits\config_fmodAudio.h"></File>
  3768. <File RelativePath="..\panda\src\audiotraits\openal_audio_composite.cxx"></File>
  3769. <File RelativePath="..\panda\src\audiotraits\milesAudioSound.cxx"></File>
  3770. <File RelativePath="..\panda\src\audiotraits\config_openalAudio.cxx"></File>
  3771. <File RelativePath="..\panda\src\audiotraits\fmodAudioManager.cxx"></File>
  3772. <File RelativePath="..\panda\src\audiotraits\fmodAudioManager.h"></File>
  3773. <File RelativePath="..\panda\src\audiotraits\fmodAudioSound.cxx"></File>
  3774. <File RelativePath="..\panda\src\audiotraits\config_fmodAudio.cxx"></File>
  3775. <File RelativePath="..\panda\src\audiotraits\milesAudioManager.h"></File>
  3776. <File RelativePath="..\panda\src\audiotraits\miles_audio_composite.cxx"></File>
  3777. <File RelativePath="..\panda\src\audiotraits\openal_audio_composite1.cxx"></File>
  3778. <File RelativePath="..\panda\src\audiotraits\milesAudioStream.h"></File>
  3779. <File RelativePath="..\panda\src\audiotraits\fmodAudioSound.I"></File>
  3780. <File RelativePath="..\panda\src\audiotraits\milesAudioSequence.h"></File>
  3781. <File RelativePath="..\panda\src\audiotraits\globalMilesManager.I"></File>
  3782. <File RelativePath="..\panda\src\audiotraits\config_milesAudio.h"></File>
  3783. <File RelativePath="..\panda\src\audiotraits\milesAudioManager.cxx"></File>
  3784. <File RelativePath="..\panda\src\audiotraits\globalMilesManager.cxx"></File>
  3785. <File RelativePath="..\panda\src\audiotraits\openalAudioSound.I"></File>
  3786. <File RelativePath="..\panda\src\audiotraits\milesAudioSample.h"></File>
  3787. <File RelativePath="..\panda\src\audiotraits\openalAudioSound.h"></File>
  3788. <File RelativePath="..\panda\src\audiotraits\miles_audio_composite1.cxx"></File>
  3789. <File RelativePath="..\panda\src\audiotraits\globalMilesManager.h"></File>
  3790. <File RelativePath="..\panda\src\audiotraits\milesAudioSound.I"></File>
  3791. <File RelativePath="..\panda\src\audiotraits\fmod_audio_composite1.cxx"></File>
  3792. <File RelativePath="..\panda\src\audiotraits\openalAudioManager.h"></File>
  3793. <File RelativePath="..\panda\src\audiotraits\milesAudioSample.I"></File>
  3794. </Filter>
  3795. <Filter Name="glesgsg">
  3796. <File RelativePath="..\panda\src\glesgsg\glesgsg.h"></File>
  3797. <File RelativePath="..\panda\src\glesgsg\config_glesgsg.cxx"></File>
  3798. <File RelativePath="..\panda\src\glesgsg\panda_esglext.h"></File>
  3799. <File RelativePath="..\panda\src\glesgsg\glesgsg_composite.cxx"></File>
  3800. <File RelativePath="..\panda\src\glesgsg\glesgsg.cxx"></File>
  3801. <File RelativePath="..\panda\src\glesgsg\config_glesgsg.h"></File>
  3802. <File RelativePath="..\panda\src\glesgsg\glesgsg_composite1.cxx"></File>
  3803. </Filter>
  3804. <Filter Name="mathutil">
  3805. <File RelativePath="..\panda\src\mathutil\config_mathutil.cxx"></File>
  3806. <File RelativePath="..\panda\src\mathutil\geometricBoundingVolume.I"></File>
  3807. <File RelativePath="..\panda\src\mathutil\parabola_src.cxx"></File>
  3808. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise2.cxx"></File>
  3809. <File RelativePath="..\panda\src\mathutil\perlinNoise3.h"></File>
  3810. <File RelativePath="..\panda\src\mathutil\mersenne.cxx"></File>
  3811. <File RelativePath="..\panda\src\mathutil\perlinNoise2.I"></File>
  3812. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise2.I"></File>
  3813. <File RelativePath="..\panda\src\mathutil\parabola_src.h"></File>
  3814. <File RelativePath="..\panda\src\mathutil\triangulator.I"></File>
  3815. <File RelativePath="..\panda\src\mathutil\perlinNoise2.cxx"></File>
  3816. <File RelativePath="..\panda\src\mathutil\pta_LVecBase2f.h"></File>
  3817. <File RelativePath="..\panda\src\mathutil\omniBoundingVolume.cxx"></File>
  3818. <File RelativePath="..\panda\src\mathutil\boundingBox.cxx"></File>
  3819. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise3.I"></File>
  3820. <File RelativePath="..\panda\src\mathutil\plane_src.cxx"></File>
  3821. <File RelativePath="..\panda\src\mathutil\triangulator.cxx"></File>
  3822. <File RelativePath="..\panda\src\mathutil\boundingLine.h"></File>
  3823. <File RelativePath="..\panda\src\mathutil\perlinNoise2.h"></File>
  3824. <File RelativePath="..\panda\src\mathutil\omniBoundingVolume.h"></File>
  3825. <File RelativePath="..\panda\src\mathutil\config_mathutil.h"></File>
  3826. <File RelativePath="..\panda\src\mathutil\rotate_to.h"></File>
  3827. <File RelativePath="..\panda\src\mathutil\look_at_src.cxx"></File>
  3828. <File RelativePath="..\panda\src\mathutil\pta_LVecBase4f.h"></File>
  3829. <File RelativePath="..\panda\src\mathutil\boundingVolume.cxx"></File>
  3830. <File RelativePath="..\panda\src\mathutil\parabola_src.I"></File>
  3831. <File RelativePath="..\panda\src\mathutil\boundingSphere.I"></File>
  3832. <File RelativePath="..\panda\src\mathutil\rotate_to.cxx"></File>
  3833. <File RelativePath="..\panda\src\mathutil\plane_src.h"></File>
  3834. <File RelativePath="..\panda\src\mathutil\geometricBoundingVolume.h"></File>
  3835. <File RelativePath="..\panda\src\mathutil\boundingHexahedron.cxx"></File>
  3836. <File RelativePath="..\panda\src\mathutil\pta_LVecBase3f.h"></File>
  3837. <File RelativePath="..\panda\src\mathutil\finiteBoundingVolume.cxx"></File>
  3838. <File RelativePath="..\panda\src\mathutil\randomizer.h"></File>
  3839. <File RelativePath="..\panda\src\mathutil\look_at.h"></File>
  3840. <File RelativePath="..\panda\src\mathutil\pta_LMatrix4f.h"></File>
  3841. <File RelativePath="..\panda\src\mathutil\mathutil_composite1.cxx"></File>
  3842. <File RelativePath="..\panda\src\mathutil\perlinNoise.I"></File>
  3843. <File RelativePath="..\panda\src\mathutil\plane.h"></File>
  3844. <File RelativePath="..\panda\src\mathutil\parabola.h"></File>
  3845. <File RelativePath="..\panda\src\mathutil\triangulator.h"></File>
  3846. <File RelativePath="..\panda\src\mathutil\boundingVolume.I"></File>
  3847. <File RelativePath="..\panda\src\mathutil\boundingPlane.I"></File>
  3848. <File RelativePath="..\panda\src\mathutil\boundingBox.h"></File>
  3849. <File RelativePath="..\panda\src\mathutil\boundingBox.I"></File>
  3850. <File RelativePath="..\panda\src\mathutil\omniBoundingVolume.I"></File>
  3851. <File RelativePath="..\panda\src\mathutil\boundingSphere.h"></File>
  3852. <File RelativePath="..\panda\src\mathutil\linmath_events.cxx"></File>
  3853. <File RelativePath="..\panda\src\mathutil\finiteBoundingVolume.h"></File>
  3854. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise3.cxx"></File>
  3855. <File RelativePath="..\panda\src\mathutil\test_mathutil.cxx"></File>
  3856. <File RelativePath="..\panda\src\mathutil\frustum.h"></File>
  3857. <File RelativePath="..\panda\src\mathutil\boundingLine.I"></File>
  3858. <File RelativePath="..\panda\src\mathutil\randomizer.cxx"></File>
  3859. <File RelativePath="..\panda\src\mathutil\pta_LMatrix4f.cxx"></File>
  3860. <File RelativePath="..\panda\src\mathutil\linmath_events.h"></File>
  3861. <File RelativePath="..\panda\src\mathutil\boundingPlane.h"></File>
  3862. <File RelativePath="..\panda\src\mathutil\frustum_src.h"></File>
  3863. <File RelativePath="..\panda\src\mathutil\pta_LVecBase2f.cxx"></File>
  3864. <File RelativePath="..\panda\src\mathutil\boundingHexahedron.I"></File>
  3865. <File RelativePath="..\panda\src\mathutil\look_at.cxx"></File>
  3866. <File RelativePath="..\panda\src\mathutil\mersenne.h"></File>
  3867. <File RelativePath="..\panda\src\mathutil\perlinNoise3.cxx"></File>
  3868. <File RelativePath="..\panda\src\mathutil\mathutil_composite2.cxx"></File>
  3869. <File RelativePath="..\panda\src\mathutil\pta_LMatrix3f.cxx"></File>
  3870. <File RelativePath="..\panda\src\mathutil\randomizer.I"></File>
  3871. <File RelativePath="..\panda\src\mathutil\fftCompressor.cxx"></File>
  3872. <File RelativePath="..\panda\src\mathutil\boundingSphere.cxx"></File>
  3873. <File RelativePath="..\panda\src\mathutil\plane_src.I"></File>
  3874. <File RelativePath="..\panda\src\mathutil\boundingVolume.h"></File>
  3875. <File RelativePath="..\panda\src\mathutil\perlinNoise3.I"></File>
  3876. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise2.h"></File>
  3877. <File RelativePath="..\panda\src\mathutil\boundingPlane.cxx"></File>
  3878. <File RelativePath="..\panda\src\mathutil\look_at_src.h"></File>
  3879. <File RelativePath="..\panda\src\mathutil\mathutil_composite.cxx"></File>
  3880. <File RelativePath="..\panda\src\mathutil\plane.cxx"></File>
  3881. <File RelativePath="..\panda\src\mathutil\look_at_src.I"></File>
  3882. <File RelativePath="..\panda\src\mathutil\rotate_to_src.cxx"></File>
  3883. <File RelativePath="..\panda\src\mathutil\test_tri.cxx"></File>
  3884. <File RelativePath="..\panda\src\mathutil\perlinNoise.h"></File>
  3885. <File RelativePath="..\panda\src\mathutil\pta_LVecBase4f.cxx"></File>
  3886. <File RelativePath="..\panda\src\mathutil\stackedPerlinNoise3.h"></File>
  3887. <File RelativePath="..\panda\src\mathutil\geometricBoundingVolume.cxx"></File>
  3888. <File RelativePath="..\panda\src\mathutil\parabola.cxx"></File>
  3889. <File RelativePath="..\panda\src\mathutil\frustum_src.I"></File>
  3890. <File RelativePath="..\panda\src\mathutil\pta_LVecBase3f.cxx"></File>
  3891. <File RelativePath="..\panda\src\mathutil\boundingHexahedron.h"></File>
  3892. <File RelativePath="..\panda\src\mathutil\fftCompressor.h"></File>
  3893. <File RelativePath="..\panda\src\mathutil\boundingLine.cxx"></File>
  3894. <File RelativePath="..\panda\src\mathutil\perlinNoise.cxx"></File>
  3895. <File RelativePath="..\panda\src\mathutil\pta_LMatrix3f.h"></File>
  3896. </Filter>
  3897. <Filter Name="pipeline">
  3898. <File RelativePath="..\panda\src\pipeline\conditionVarDebug.I"></File>
  3899. <File RelativePath="..\panda\src\pipeline\mutexDebug.h"></File>
  3900. <File RelativePath="..\panda\src\pipeline\conditionVarDirect.I"></File>
  3901. <File RelativePath="..\panda\src\pipeline\cycleDataStageReader.I"></File>
  3902. <File RelativePath="..\panda\src\pipeline\pipeline.h"></File>
  3903. <File RelativePath="..\panda\src\pipeline\test_diners.cxx"></File>
  3904. <File RelativePath="..\panda\src\pipeline\mutexSimpleImpl.cxx"></File>
  3905. <File RelativePath="..\panda\src\pipeline\threadPriority.h"></File>
  3906. <File RelativePath="..\panda\src\pipeline\cycleDataLockedReader.h"></File>
  3907. <File RelativePath="..\panda\src\pipeline\externalThread.h"></File>
  3908. <File RelativePath="..\panda\src\pipeline\test_mutex.cxx"></File>
  3909. <File RelativePath="..\panda\src\pipeline\psemaphore.h"></File>
  3910. <File RelativePath="..\panda\src\pipeline\pipeline_composite2.cxx"></File>
  3911. <File RelativePath="..\panda\src\pipeline\thread.h"></File>
  3912. <File RelativePath="..\panda\src\pipeline\conditionVarDebug.h"></File>
  3913. <File RelativePath="..\panda\src\pipeline\reMutexDirect.I"></File>
  3914. <File RelativePath="..\panda\src\pipeline\reMutexHolder.I"></File>
  3915. <File RelativePath="..\panda\src\pipeline\pipelineCycler.cxx"></File>
  3916. <File RelativePath="..\panda\src\pipeline\cycleDataStageWriter.h"></File>
  3917. <File RelativePath="..\panda\src\pipeline\reMutexHolder.cxx"></File>
  3918. <File RelativePath="..\panda\src\pipeline\lightMutexDirect.cxx"></File>
  3919. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrueImpl.cxx"></File>
  3920. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrivialImpl.h"></File>
  3921. <File RelativePath="..\panda\src\pipeline\conditionVarDirect.h"></File>
  3922. <File RelativePath="..\panda\src\pipeline\conditionVarWin32Impl.I"></File>
  3923. <File RelativePath="..\panda\src\pipeline\pythonThread.cxx"></File>
  3924. <File RelativePath="..\panda\src\pipeline\pipeline.I"></File>
  3925. <File RelativePath="..\panda\src\pipeline\threadSimpleManager.cxx"></File>
  3926. <File RelativePath="..\panda\src\pipeline\cycleDataReader.I"></File>
  3927. <File RelativePath="..\panda\src\pipeline\mutexDirect.I"></File>
  3928. <File RelativePath="..\panda\src\pipeline\cycleDataReader.cxx"></File>
  3929. <File RelativePath="..\panda\src\pipeline\conditionVarFull.h"></File>
  3930. <File RelativePath="..\panda\src\pipeline\conditionVarFullDirect.h"></File>
  3931. <File RelativePath="..\panda\src\pipeline\threadWin32Impl.h"></File>
  3932. <File RelativePath="..\panda\src\pipeline\lightReMutex.I"></File>
  3933. <File RelativePath="..\panda\src\pipeline\conditionVarFullDirect.I"></File>
  3934. <File RelativePath="..\panda\src\pipeline\lightMutex.h"></File>
  3935. <File RelativePath="..\panda\src\pipeline\conditionVarSpinlockImpl.I"></File>
  3936. <File RelativePath="..\panda\src\pipeline\pmutex.h"></File>
  3937. <File RelativePath="..\panda\src\pipeline\threadWin32Impl.I"></File>
  3938. <File RelativePath="..\panda\src\pipeline\cycleDataReader.h"></File>
  3939. <File RelativePath="..\panda\src\pipeline\pipelineCycler.I"></File>
  3940. <File RelativePath="..\panda\src\pipeline\lightReMutexHolder.I"></File>
  3941. <File RelativePath="..\panda\src\pipeline\cycleData.cxx"></File>
  3942. <File RelativePath="..\panda\src\pipeline\conditionVarPosixImpl.h"></File>
  3943. <File RelativePath="..\panda\src\pipeline\threadSimpleImpl.cxx"></File>
  3944. <File RelativePath="..\panda\src\pipeline\cycleData.I"></File>
  3945. <File RelativePath="..\panda\src\pipeline\reMutex.I"></File>
  3946. <File RelativePath="..\panda\src\pipeline\test_concurrency.cxx"></File>
  3947. <File RelativePath="..\panda\src\pipeline\conditionVarWin32Impl.h"></File>
  3948. <File RelativePath="..\panda\src\pipeline\mutexHolder.cxx"></File>
  3949. <File RelativePath="..\panda\src\pipeline\threadSimpleManager.h"></File>
  3950. <File RelativePath="..\panda\src\pipeline\lightReMutexHolder.h"></File>
  3951. <File RelativePath="..\panda\src\pipeline\threadDummyImpl.I"></File>
  3952. <File RelativePath="..\panda\src\pipeline\cycleDataLockedStageReader.h"></File>
  3953. <File RelativePath="..\panda\src\pipeline\lightMutex.cxx"></File>
  3954. <File RelativePath="..\panda\src\pipeline\contextSwitch.c"></File>
  3955. <File RelativePath="..\panda\src\pipeline\test_threaddata.cxx"></File>
  3956. <File RelativePath="..\panda\src\pipeline\cycleDataLockedStageReader.cxx"></File>
  3957. <File RelativePath="..\panda\src\pipeline\lightReMutex.cxx"></File>
  3958. <File RelativePath="..\panda\src\pipeline\lightMutex.I"></File>
  3959. <File RelativePath="..\panda\src\pipeline\conditionVarFullWin32Impl.I"></File>
  3960. <File RelativePath="..\panda\src\pipeline\conditionVar.h"></File>
  3961. <File RelativePath="..\panda\src\pipeline\lightMutexDirect.I"></File>
  3962. <File RelativePath="..\panda\src\pipeline\threadImpl.h"></File>
  3963. <File RelativePath="..\panda\src\pipeline\mutexDebug.cxx"></File>
  3964. <File RelativePath="..\panda\src\pipeline\conditionVarFullDebug.cxx"></File>
  3965. <File RelativePath="..\panda\src\pipeline\threadPosixImpl.I"></File>
  3966. <File RelativePath="..\panda\src\pipeline\conditionVarSimpleImpl.h"></File>
  3967. <File RelativePath="..\panda\src\pipeline\pipelineCyclerDummyImpl.h"></File>
  3968. <File RelativePath="..\panda\src\pipeline\thread.I"></File>
  3969. <File RelativePath="..\panda\src\pipeline\reMutex.cxx"></File>
  3970. <File RelativePath="..\panda\src\pipeline\conditionVarSimpleImpl.I"></File>
  3971. <File RelativePath="..\panda\src\pipeline\cycleDataStageReader.cxx"></File>
  3972. <File RelativePath="..\panda\src\pipeline\cyclerHolder.h"></File>
  3973. <File RelativePath="..\panda\src\pipeline\pipeline_composite1.cxx"></File>
  3974. <File RelativePath="..\panda\src\pipeline\cycleData.h"></File>
  3975. <File RelativePath="..\panda\src\pipeline\test_setjmp.cxx"></File>
  3976. <File RelativePath="..\panda\src\pipeline\lightReMutexDirect.cxx"></File>
  3977. <File RelativePath="..\panda\src\pipeline\conditionVarSpinlockImpl.cxx"></File>
  3978. <File RelativePath="..\panda\src\pipeline\threadPosixImpl.cxx"></File>
  3979. <File RelativePath="..\panda\src\pipeline\lightReMutexDirect.h"></File>
  3980. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrueImpl.h"></File>
  3981. <File RelativePath="..\panda\src\pipeline\conditionVarDummyImpl.h"></File>
  3982. <File RelativePath="..\panda\src\pipeline\reMutex.h"></File>
  3983. <File RelativePath="..\panda\src\pipeline\cycleDataStageWriter.cxx"></File>
  3984. <File RelativePath="..\panda\src\pipeline\mutexDirect.h"></File>
  3985. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrueImpl.I"></File>
  3986. <File RelativePath="..\panda\src\pipeline\externalThread.cxx"></File>
  3987. <File RelativePath="..\panda\src\pipeline\conditionVar.I"></File>
  3988. <File RelativePath="..\panda\src\pipeline\lightReMutexDirect.I"></File>
  3989. <File RelativePath="..\panda\src\pipeline\pipelineCyclerLinks.I"></File>
  3990. <File RelativePath="..\panda\src\pipeline\mutexDirect.cxx"></File>
  3991. <File RelativePath="..\panda\src\pipeline\threadDummyImpl.h"></File>
  3992. <File RelativePath="..\panda\src\pipeline\cyclerHolder.I"></File>
  3993. <File RelativePath="..\panda\src\pipeline\conditionVarDirect.cxx"></File>
  3994. <File RelativePath="..\panda\src\pipeline\conditionVarDummyImpl.I"></File>
  3995. <File RelativePath="..\panda\src\pipeline\conditionVarFullDebug.I"></File>
  3996. <File RelativePath="..\panda\src\pipeline\cycleDataStageWriter.I"></File>
  3997. <File RelativePath="..\panda\src\pipeline\mutexSimpleImpl.I"></File>
  3998. <File RelativePath="..\panda\src\pipeline\lightMutexHolder.I"></File>
  3999. <File RelativePath="..\panda\src\pipeline\conditionVarSpinlockImpl.h"></File>
  4000. <File RelativePath="..\panda\src\pipeline\lightMutexHolder.h"></File>
  4001. <File RelativePath="..\panda\src\pipeline\blockerSimple.h"></File>
  4002. <File RelativePath="..\panda\src\pipeline\mutexSimpleImpl.h"></File>
  4003. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrivialImpl.cxx"></File>
  4004. <File RelativePath="..\panda\src\pipeline\mainThread.h"></File>
  4005. <File RelativePath="..\panda\src\pipeline\conditionVar.cxx"></File>
  4006. <File RelativePath="..\panda\src\pipeline\pmutex.cxx"></File>
  4007. <File RelativePath="..\panda\src\pipeline\threadDummyImpl.cxx"></File>
  4008. <File RelativePath="..\panda\src\pipeline\conditionVarDebug.cxx"></File>
  4009. <File RelativePath="..\panda\src\pipeline\pipelineCycler.h"></File>
  4010. <File RelativePath="..\panda\src\pipeline\pipelineCyclerLinks.h"></File>
  4011. <File RelativePath="..\panda\src\pipeline\cycleDataLockedStageReader.I"></File>
  4012. <File RelativePath="..\panda\src\pipeline\threadPriority.cxx"></File>
  4013. <File RelativePath="..\panda\src\pipeline\psemaphore.I"></File>
  4014. <File RelativePath="..\panda\src\pipeline\pipeline.cxx"></File>
  4015. <File RelativePath="..\panda\src\pipeline\asyncTaskBase.cxx"></File>
  4016. <File RelativePath="..\panda\src\pipeline\conditionVarSimpleImpl.cxx"></File>
  4017. <File RelativePath="..\panda\src\pipeline\conditionVarFullDirect.cxx"></File>
  4018. <File RelativePath="..\panda\src\pipeline\reMutexDirect.cxx"></File>
  4019. <File RelativePath="..\panda\src\pipeline\conditionVarFullWin32Impl.cxx"></File>
  4020. <File RelativePath="..\panda\src\pipeline\conditionVarWin32Impl.cxx"></File>
  4021. <File RelativePath="..\panda\src\pipeline\conditionVarFull.I"></File>
  4022. <File RelativePath="..\panda\src\pipeline\reMutexHolder.h"></File>
  4023. <File RelativePath="..\panda\src\pipeline\pythonThread.h"></File>
  4024. <File RelativePath="..\panda\src\pipeline\pipelineCyclerBase.h"></File>
  4025. <File RelativePath="..\panda\src\pipeline\test_atomic.cxx"></File>
  4026. <File RelativePath="..\panda\src\pipeline\pipelineCyclerTrivialImpl.I"></File>
  4027. <File RelativePath="..\panda\src\pipeline\thread.cxx"></File>
  4028. <File RelativePath="..\panda\src\pipeline\psemaphore.cxx"></File>
  4029. <File RelativePath="..\panda\src\pipeline\lightReMutexHolder.cxx"></File>
  4030. <File RelativePath="..\panda\src\pipeline\cyclerHolder.cxx"></File>
  4031. <File RelativePath="..\panda\src\pipeline\cycleDataWriter.cxx"></File>
  4032. <File RelativePath="..\panda\src\pipeline\pipeline_composite.cxx"></File>
  4033. <File RelativePath="..\panda\src\pipeline\conditionVarPosixImpl.cxx"></File>
  4034. <File RelativePath="..\panda\src\pipeline\reMutexDirect.h"></File>
  4035. <File RelativePath="..\panda\src\pipeline\test_delete.cxx"></File>
  4036. <File RelativePath="..\panda\src\pipeline\threadPosixImpl.h"></File>
  4037. <File RelativePath="..\panda\src\pipeline\contextSwitch.h"></File>
  4038. <File RelativePath="..\panda\src\pipeline\cycleDataStageReader.h"></File>
  4039. <File RelativePath="..\panda\src\pipeline\mutexHolder.I"></File>
  4040. <File RelativePath="..\panda\src\pipeline\threadSimpleManager.I"></File>
  4041. <File RelativePath="..\panda\src\pipeline\pipelineCyclerDummyImpl.I"></File>
  4042. <File RelativePath="..\panda\src\pipeline\asyncTaskBase.I"></File>
  4043. <File RelativePath="..\panda\src\pipeline\config_pipeline.h"></File>
  4044. <File RelativePath="..\panda\src\pipeline\threadWin32Impl.cxx"></File>
  4045. <File RelativePath="..\panda\src\pipeline\pmutex.I"></File>
  4046. <File RelativePath="..\panda\src\pipeline\conditionVarFullDebug.h"></File>
  4047. <File RelativePath="..\panda\src\pipeline\blockerSimple.I"></File>
  4048. <File RelativePath="..\panda\src\pipeline\threadSimpleImpl.h"></File>
  4049. <File RelativePath="..\panda\src\pipeline\asyncTaskBase.h"></File>
  4050. <File RelativePath="..\panda\src\pipeline\cycleDataLockedReader.cxx"></File>
  4051. <File RelativePath="..\panda\src\pipeline\conditionVarFull.cxx"></File>
  4052. <File RelativePath="..\panda\src\pipeline\config_pipeline.cxx"></File>
  4053. <File RelativePath="..\panda\src\pipeline\cycleDataWriter.I"></File>
  4054. <File RelativePath="..\panda\src\pipeline\lightReMutex.h"></File>
  4055. <File RelativePath="..\panda\src\pipeline\pipelineCyclerDummyImpl.cxx"></File>
  4056. <File RelativePath="..\panda\src\pipeline\mutexHolder.h"></File>
  4057. <File RelativePath="..\panda\src\pipeline\mutexTrueImpl.h"></File>
  4058. <File RelativePath="..\panda\src\pipeline\conditionVarPosixImpl.I"></File>
  4059. <File RelativePath="..\panda\src\pipeline\mutexDebug.I"></File>
  4060. <File RelativePath="..\panda\src\pipeline\mainThread.cxx"></File>
  4061. <File RelativePath="..\panda\src\pipeline\conditionVarDummyImpl.cxx"></File>
  4062. <File RelativePath="..\panda\src\pipeline\lightMutexHolder.cxx"></File>
  4063. <File RelativePath="..\panda\src\pipeline\cycleDataWriter.h"></File>
  4064. <File RelativePath="..\panda\src\pipeline\threadSimpleImpl.I"></File>
  4065. <File RelativePath="..\panda\src\pipeline\conditionVarFullWin32Impl.h"></File>
  4066. <File RelativePath="..\panda\src\pipeline\lightMutexDirect.h"></File>
  4067. <File RelativePath="..\panda\src\pipeline\cycleDataLockedReader.I"></File>
  4068. <File RelativePath="..\panda\src\pipeline\conditionVarImpl.h"></File>
  4069. </Filter>
  4070. <Filter Name="pnmimage">
  4071. <File RelativePath="..\panda\src\pnmimage\pnmWriter.cxx"></File>
  4072. <File RelativePath="..\panda\src\pnmimage\config_pnmimage.cxx"></File>
  4073. <File RelativePath="..\panda\src\pnmimage\pnmimage_composite2.cxx"></File>
  4074. <File RelativePath="..\panda\src\pnmimage\pnmFileType.cxx"></File>
  4075. <File RelativePath="..\panda\src\pnmimage\pnmimage_composite1.cxx"></File>
  4076. <File RelativePath="..\panda\src\pnmimage\pnmBrush.h"></File>
  4077. <File RelativePath="..\panda\src\pnmimage\pnmimage_composite.cxx"></File>
  4078. <File RelativePath="..\panda\src\pnmimage\pnmBrush.I"></File>
  4079. <File RelativePath="..\panda\src\pnmimage\pnmWriter.h"></File>
  4080. <File RelativePath="..\panda\src\pnmimage\pnmImageHeader.h"></File>
  4081. <File RelativePath="..\panda\src\pnmimage\pnmFileType.h"></File>
  4082. <File RelativePath="..\panda\src\pnmimage\pnmPainter.I"></File>
  4083. <File RelativePath="..\panda\src\pnmimage\pnmPainter.cxx"></File>
  4084. <File RelativePath="..\panda\src\pnmimage\pnm-image-filter.cxx"></File>
  4085. <File RelativePath="..\panda\src\pnmimage\pnmimage_base.cxx"></File>
  4086. <File RelativePath="..\panda\src\pnmimage\pnm-image-filter-core.cxx"></File>
  4087. <File RelativePath="..\panda\src\pnmimage\pnmReader.h"></File>
  4088. <File RelativePath="..\panda\src\pnmimage\pnmPainter.h"></File>
  4089. <File RelativePath="..\panda\src\pnmimage\ppmcmap.h"></File>
  4090. <File RelativePath="..\panda\src\pnmimage\pnmImage.cxx"></File>
  4091. <File RelativePath="..\panda\src\pnmimage\pnmImageHeader.cxx"></File>
  4092. <File RelativePath="..\panda\src\pnmimage\pnmImage.h"></File>
  4093. <File RelativePath="..\panda\src\pnmimage\config_pnmimage.h"></File>
  4094. <File RelativePath="..\panda\src\pnmimage\ppmcmap.cxx"></File>
  4095. <File RelativePath="..\panda\src\pnmimage\pnmImage.I"></File>
  4096. <File RelativePath="..\panda\src\pnmimage\pnmimage_base.h"></File>
  4097. <File RelativePath="..\panda\src\pnmimage\pnmReader.I"></File>
  4098. <File RelativePath="..\panda\src\pnmimage\pnmFileTypeRegistry.cxx"></File>
  4099. <File RelativePath="..\panda\src\pnmimage\pnmImageHeader.I"></File>
  4100. <File RelativePath="..\panda\src\pnmimage\pnmWriter.I"></File>
  4101. <File RelativePath="..\panda\src\pnmimage\pnmbitio.h"></File>
  4102. <File RelativePath="..\panda\src\pnmimage\pnmBrush.cxx"></File>
  4103. <File RelativePath="..\panda\src\pnmimage\pnmFileTypeRegistry.h"></File>
  4104. <File RelativePath="..\panda\src\pnmimage\pnmReader.cxx"></File>
  4105. <File RelativePath="..\panda\src\pnmimage\pnmbitio.cxx"></File>
  4106. </Filter>
  4107. <Filter Name="particlesystem">
  4108. <File RelativePath="..\panda\src\particlesystem\geomParticleRenderer.h"></File>
  4109. <File RelativePath="..\panda\src\particlesystem\tangentRingEmitter.cxx"></File>
  4110. <File RelativePath="..\panda\src\particlesystem\baseParticleFactory.I"></File>
  4111. <File RelativePath="..\panda\src\particlesystem\ringEmitter.I"></File>
  4112. <File RelativePath="..\panda\src\particlesystem\tangentRingEmitter.h"></File>
  4113. <File RelativePath="..\panda\src\particlesystem\baseParticle.cxx"></File>
  4114. <File RelativePath="..\panda\src\particlesystem\particleCommonFuncs.h"></File>
  4115. <File RelativePath="..\panda\src\particlesystem\baseParticleRenderer.I"></File>
  4116. <File RelativePath="..\panda\src\particlesystem\orientedParticle.cxx"></File>
  4117. <File RelativePath="..\panda\src\particlesystem\spriteParticleRenderer.cxx"></File>
  4118. <File RelativePath="..\panda\src\particlesystem\discEmitter.I"></File>
  4119. <File RelativePath="..\panda\src\particlesystem\particleSystemManager.h"></File>
  4120. <File RelativePath="..\panda\src\particlesystem\boxEmitter.h"></File>
  4121. <File RelativePath="..\panda\src\particlesystem\zSpinParticleFactory.h"></File>
  4122. <File RelativePath="..\panda\src\particlesystem\orientedParticleFactory.h"></File>
  4123. <File RelativePath="..\panda\src\particlesystem\particleSystemManager.I"></File>
  4124. <File RelativePath="..\panda\src\particlesystem\zSpinParticle.cxx"></File>
  4125. <File RelativePath="..\panda\src\particlesystem\rectangleEmitter.h"></File>
  4126. <File RelativePath="..\panda\src\particlesystem\lineEmitter.I"></File>
  4127. <File RelativePath="..\panda\src\particlesystem\spriteParticleRenderer.I"></File>
  4128. <File RelativePath="..\panda\src\particlesystem\lineEmitter.cxx"></File>
  4129. <File RelativePath="..\panda\src\particlesystem\ringEmitter.cxx"></File>
  4130. <File RelativePath="..\panda\src\particlesystem\orientedParticleFactory.I"></File>
  4131. <File RelativePath="..\panda\src\particlesystem\geomParticleRenderer.cxx"></File>
  4132. <File RelativePath="..\panda\src\particlesystem\colorInterpolationManager.I"></File>
  4133. <File RelativePath="..\panda\src\particlesystem\particleSystem.cxx"></File>
  4134. <File RelativePath="..\panda\src\particlesystem\boxEmitter.I"></File>
  4135. <File RelativePath="..\panda\src\particlesystem\orientedParticleFactory.cxx"></File>
  4136. <File RelativePath="..\panda\src\particlesystem\discEmitter.h"></File>
  4137. <File RelativePath="..\panda\src\particlesystem\sphereVolumeEmitter.h"></File>
  4138. <File RelativePath="..\panda\src\particlesystem\sphereSurfaceEmitter.h"></File>
  4139. <File RelativePath="..\panda\src\particlesystem\pointParticle.cxx"></File>
  4140. <File RelativePath="..\panda\src\particlesystem\orientedParticle.h"></File>
  4141. <File RelativePath="..\panda\src\particlesystem\baseParticle.h"></File>
  4142. <File RelativePath="..\panda\src\particlesystem\baseParticleFactory.cxx"></File>
  4143. <File RelativePath="..\panda\src\particlesystem\lineEmitter.h"></File>
  4144. <File RelativePath="..\panda\src\particlesystem\pointEmitter.h"></File>
  4145. <File RelativePath="..\panda\src\particlesystem\arcEmitter.I"></File>
  4146. <File RelativePath="..\panda\src\particlesystem\particleSystemManager.cxx"></File>
  4147. <File RelativePath="..\panda\src\particlesystem\baseParticle.I"></File>
  4148. <File RelativePath="..\panda\src\particlesystem\pointParticle.h"></File>
  4149. <File RelativePath="..\panda\src\particlesystem\baseParticleEmitter.I"></File>
  4150. <File RelativePath="..\panda\src\particlesystem\sparkleParticleRenderer.I"></File>
  4151. <File RelativePath="..\panda\src\particlesystem\baseParticleEmitter.h"></File>
  4152. <File RelativePath="..\panda\src\particlesystem\pointParticleFactory.h"></File>
  4153. <File RelativePath="..\panda\src\particlesystem\baseParticleFactory.h"></File>
  4154. <File RelativePath="..\panda\src\particlesystem\zSpinParticleFactory.cxx"></File>
  4155. <File RelativePath="..\panda\src\particlesystem\arcEmitter.h"></File>
  4156. <File RelativePath="..\panda\src\particlesystem\pointParticleFactory.cxx"></File>
  4157. <File RelativePath="..\panda\src\particlesystem\colorInterpolationManager.h"></File>
  4158. <File RelativePath="..\panda\src\particlesystem\particlefactories.h"></File>
  4159. <File RelativePath="..\panda\src\particlesystem\particleSystem.h"></File>
  4160. <File RelativePath="..\panda\src\particlesystem\tangentRingEmitter.I"></File>
  4161. <File RelativePath="..\panda\src\particlesystem\pointParticleRenderer.cxx"></File>
  4162. <File RelativePath="..\panda\src\particlesystem\config_particlesystem.cxx"></File>
  4163. <File RelativePath="..\panda\src\particlesystem\rectangleEmitter.I"></File>
  4164. <File RelativePath="..\panda\src\particlesystem\ringEmitter.h"></File>
  4165. <File RelativePath="..\panda\src\particlesystem\baseParticleRenderer.cxx"></File>
  4166. <File RelativePath="..\panda\src\particlesystem\zSpinParticle.I"></File>
  4167. <File RelativePath="..\panda\src\particlesystem\spriteParticleRenderer.h"></File>
  4168. <File RelativePath="..\panda\src\particlesystem\particlesystem_composite1.cxx"></File>
  4169. <File RelativePath="..\panda\src\particlesystem\particlesystem_composite2.cxx"></File>
  4170. <File RelativePath="..\panda\src\particlesystem\orientedParticle.I"></File>
  4171. <File RelativePath="..\panda\src\particlesystem\config_particlesystem.h"></File>
  4172. <File RelativePath="..\panda\src\particlesystem\baseParticleEmitter.cxx"></File>
  4173. <File RelativePath="..\panda\src\particlesystem\colorInterpolationManager.cxx"></File>
  4174. <File RelativePath="..\panda\src\particlesystem\zSpinParticleFactory.I"></File>
  4175. <File RelativePath="..\panda\src\particlesystem\sphereSurfaceEmitter.I"></File>
  4176. <File RelativePath="..\panda\src\particlesystem\sparkleParticleRenderer.cxx"></File>
  4177. <File RelativePath="..\panda\src\particlesystem\particleSystem.I"></File>
  4178. <File RelativePath="..\panda\src\particlesystem\particlesystem_composite.cxx"></File>
  4179. <File RelativePath="..\panda\src\particlesystem\sphereVolumeEmitter.I"></File>
  4180. <File RelativePath="..\panda\src\particlesystem\arcEmitter.cxx"></File>
  4181. <File RelativePath="..\panda\src\particlesystem\lineParticleRenderer.I"></File>
  4182. <File RelativePath="..\panda\src\particlesystem\zSpinParticle.h"></File>
  4183. <File RelativePath="..\panda\src\particlesystem\lineParticleRenderer.h"></File>
  4184. <File RelativePath="..\panda\src\particlesystem\particles.h"></File>
  4185. <File RelativePath="..\panda\src\particlesystem\emitters.h"></File>
  4186. <File RelativePath="..\panda\src\particlesystem\sphereVolumeEmitter.cxx"></File>
  4187. <File RelativePath="..\panda\src\particlesystem\pointEmitter.cxx"></File>
  4188. <File RelativePath="..\panda\src\particlesystem\pointParticleRenderer.h"></File>
  4189. <File RelativePath="..\panda\src\particlesystem\sphereSurfaceEmitter.cxx"></File>
  4190. <File RelativePath="..\panda\src\particlesystem\pointEmitter.I"></File>
  4191. <File RelativePath="..\panda\src\particlesystem\rectangleEmitter.cxx"></File>
  4192. <File RelativePath="..\panda\src\particlesystem\pointParticleRenderer.I"></File>
  4193. <File RelativePath="..\panda\src\particlesystem\boxEmitter.cxx"></File>
  4194. <File RelativePath="..\panda\src\particlesystem\baseParticleRenderer.h"></File>
  4195. <File RelativePath="..\panda\src\particlesystem\geomParticleRenderer.I"></File>
  4196. <File RelativePath="..\panda\src\particlesystem\sparkleParticleRenderer.h"></File>
  4197. <File RelativePath="..\panda\src\particlesystem\discEmitter.cxx"></File>
  4198. <File RelativePath="..\panda\src\particlesystem\lineParticleRenderer.cxx"></File>
  4199. </Filter>
  4200. <Filter Name="pgraphnodes">
  4201. <File RelativePath="..\panda\src\pgraphnodes\lightNode.cxx"></File>
  4202. <File RelativePath="..\panda\src\pgraphnodes\fadeLodNode.I"></File>
  4203. <File RelativePath="..\panda\src\pgraphnodes\selectiveChildNode.cxx"></File>
  4204. <File RelativePath="..\panda\src\pgraphnodes\sceneGraphAnalyzer.I"></File>
  4205. <File RelativePath="..\panda\src\pgraphnodes\pgraphnodes_composite1.cxx"></File>
  4206. <File RelativePath="..\panda\src\pgraphnodes\fadeLodNode.cxx"></File>
  4207. <File RelativePath="..\panda\src\pgraphnodes\selectiveChildNode.I"></File>
  4208. <File RelativePath="..\panda\src\pgraphnodes\uvScrollNode.cxx"></File>
  4209. <File RelativePath="..\panda\src\pgraphnodes\lightNode.h"></File>
  4210. <File RelativePath="..\panda\src\pgraphnodes\config_pgraphnodes.cxx"></File>
  4211. <File RelativePath="..\panda\src\pgraphnodes\ambientLight.h"></File>
  4212. <File RelativePath="..\panda\src\pgraphnodes\sequenceNode.I"></File>
  4213. <File RelativePath="..\panda\src\pgraphnodes\lodNode.I"></File>
  4214. <File RelativePath="..\panda\src\pgraphnodes\uvScrollNode.h"></File>
  4215. <File RelativePath="..\panda\src\pgraphnodes\pointLight.cxx"></File>
  4216. <File RelativePath="..\panda\src\pgraphnodes\callbackNode.cxx"></File>
  4217. <File RelativePath="..\panda\src\pgraphnodes\sequenceNode.h"></File>
  4218. <File RelativePath="..\panda\src\pgraphnodes\directionalLight.I"></File>
  4219. <File RelativePath="..\panda\src\pgraphnodes\shaderGenerator.h"></File>
  4220. <File RelativePath="..\panda\src\pgraphnodes\callbackNode.h"></File>
  4221. <File RelativePath="..\panda\src\pgraphnodes\nodeCullCallbackData.h"></File>
  4222. <File RelativePath="..\panda\src\pgraphnodes\sequenceNode.cxx"></File>
  4223. <File RelativePath="..\panda\src\pgraphnodes\pgraphnodes_composite.cxx"></File>
  4224. <File RelativePath="..\panda\src\pgraphnodes\selectiveChildNode.h"></File>
  4225. <File RelativePath="..\panda\src\pgraphnodes\fadeLodNodeData.cxx"></File>
  4226. <File RelativePath="..\panda\src\pgraphnodes\config_pgraphnodes.h"></File>
  4227. <File RelativePath="..\panda\src\pgraphnodes\ambientLight.I"></File>
  4228. <File RelativePath="..\panda\src\pgraphnodes\switchNode.cxx"></File>
  4229. <File RelativePath="..\panda\src\pgraphnodes\ambientLight.cxx"></File>
  4230. <File RelativePath="..\panda\src\pgraphnodes\directionalLight.cxx"></File>
  4231. <File RelativePath="..\panda\src\pgraphnodes\switchNode.h"></File>
  4232. <File RelativePath="..\panda\src\pgraphnodes\pointLight.h"></File>
  4233. <File RelativePath="..\panda\src\pgraphnodes\shaderGenerator.I"></File>
  4234. <File RelativePath="..\panda\src\pgraphnodes\lightLensNode.cxx"></File>
  4235. <File RelativePath="..\panda\src\pgraphnodes\fadeLodNode.h"></File>
  4236. <File RelativePath="..\panda\src\pgraphnodes\lodNodeType.h"></File>
  4237. <File RelativePath="..\panda\src\pgraphnodes\lightLensNode.h"></File>
  4238. <File RelativePath="..\panda\src\pgraphnodes\nodeCullCallbackData.I"></File>
  4239. <File RelativePath="..\panda\src\pgraphnodes\fadeLodNodeData.h"></File>
  4240. <File RelativePath="..\panda\src\pgraphnodes\pointLight.I"></File>
  4241. <File RelativePath="..\panda\src\pgraphnodes\lodNodeType.cxx"></File>
  4242. <File RelativePath="..\panda\src\pgraphnodes\spotlight.I"></File>
  4243. <File RelativePath="..\panda\src\pgraphnodes\sceneGraphAnalyzer.h"></File>
  4244. <File RelativePath="..\panda\src\pgraphnodes\sceneGraphAnalyzer.cxx"></File>
  4245. <File RelativePath="..\panda\src\pgraphnodes\shaderGenerator.cxx"></File>
  4246. <File RelativePath="..\panda\src\pgraphnodes\switchNode.I"></File>
  4247. <File RelativePath="..\panda\src\pgraphnodes\lodNode.h"></File>
  4248. <File RelativePath="..\panda\src\pgraphnodes\directionalLight.h"></File>
  4249. <File RelativePath="..\panda\src\pgraphnodes\nodeCullCallbackData.cxx"></File>
  4250. <File RelativePath="..\panda\src\pgraphnodes\lightLensNode.I"></File>
  4251. <File RelativePath="..\panda\src\pgraphnodes\lodNode.cxx"></File>
  4252. <File RelativePath="..\panda\src\pgraphnodes\uvScrollNode.I"></File>
  4253. <File RelativePath="..\panda\src\pgraphnodes\spotlight.cxx"></File>
  4254. <File RelativePath="..\panda\src\pgraphnodes\lightNode.I"></File>
  4255. <File RelativePath="..\panda\src\pgraphnodes\pgraphnodes_composite2.cxx"></File>
  4256. <File RelativePath="..\panda\src\pgraphnodes\callbackNode.I"></File>
  4257. <File RelativePath="..\panda\src\pgraphnodes\spotlight.h"></File>
  4258. </Filter>
  4259. <Filter Name="nativenet">
  4260. <File RelativePath="..\panda\src\nativenet\socket_fdset.h"></File>
  4261. <File RelativePath="..\panda\src\nativenet\socket_base.h"></File>
  4262. <File RelativePath="..\panda\src\nativenet\socket_udp.h"></File>
  4263. <File RelativePath="..\panda\src\nativenet\time_general.h"></File>
  4264. <File RelativePath="..\panda\src\nativenet\buffered_datagramconnection.cxx"></File>
  4265. <File RelativePath="..\panda\src\nativenet\socket_udp_incoming.cxx"></File>
  4266. <File RelativePath="..\panda\src\nativenet\socket_tcp.cxx"></File>
  4267. <File RelativePath="..\panda\src\nativenet\time_base.h"></File>
  4268. <File RelativePath="..\panda\src\nativenet\buffered_datagramwriter.h"></File>
  4269. <File RelativePath="..\panda\src\nativenet\socket_udp_outgoing.h"></File>
  4270. <File RelativePath="..\panda\src\nativenet\nativenet_composite1.cxx"></File>
  4271. <File RelativePath="..\panda\src\nativenet\buffered_datagramreader.h"></File>
  4272. <File RelativePath="..\panda\src\nativenet\socket_ip.cxx"></File>
  4273. <File RelativePath="..\panda\src\nativenet\time_span.h"></File>
  4274. <File RelativePath="..\panda\src\nativenet\socket_portable.h"></File>
  4275. <File RelativePath="..\panda\src\nativenet\socket_tcp_listen.h"></File>
  4276. <File RelativePath="..\panda\src\nativenet\socket_udp_outgoing.cxx"></File>
  4277. <File RelativePath="..\panda\src\nativenet\config_nativenet.cxx"></File>
  4278. <File RelativePath="..\panda\src\nativenet\socket_address.h"></File>
  4279. <File RelativePath="..\panda\src\nativenet\socket_udp_incoming.h"></File>
  4280. <File RelativePath="..\panda\src\nativenet\socket_tcp.h"></File>
  4281. <File RelativePath="..\panda\src\nativenet\buffered_datagramconnection.h"></File>
  4282. <File RelativePath="..\panda\src\nativenet\socket_tcp_listen.cxx"></File>
  4283. <File RelativePath="..\panda\src\nativenet\buffered_datagramreader.i"></File>
  4284. <File RelativePath="..\panda\src\nativenet\socket_tcp_ssl.h"></File>
  4285. <File RelativePath="..\panda\src\nativenet\ringbuffer.i"></File>
  4286. <File RelativePath="..\panda\src\nativenet\membuffer.h"></File>
  4287. <File RelativePath="..\panda\src\nativenet\time_accumulator.h"></File>
  4288. <File RelativePath="..\panda\src\nativenet\socket_selector.h"></File>
  4289. <File RelativePath="..\panda\src\nativenet\socket_ip.h"></File>
  4290. <File RelativePath="..\panda\src\nativenet\membuffer.i"></File>
  4291. <File RelativePath="..\panda\src\nativenet\time_clock.h"></File>
  4292. <File RelativePath="..\panda\src\nativenet\config_nativenet.h"></File>
  4293. <File RelativePath="..\panda\src\nativenet\socket_udp.cxx"></File>
  4294. <File RelativePath="..\panda\src\nativenet\ringbuffer.h"></File>
  4295. <File RelativePath="..\panda\src\nativenet\socket_tcp_ssl.cxx"></File>
  4296. <File RelativePath="..\panda\src\nativenet\time_out.h"></File>
  4297. </Filter>
  4298. <Filter Name="physics">
  4299. <File RelativePath="..\panda\src\physics\baseForce.I"></File>
  4300. <File RelativePath="..\panda\src\physics\linearUserDefinedForce.I"></File>
  4301. <File RelativePath="..\panda\src\physics\angularVectorForce.h"></File>
  4302. <File RelativePath="..\panda\src\physics\angularEulerIntegrator.h"></File>
  4303. <File RelativePath="..\panda\src\physics\linearCylinderVortexForce.cxx"></File>
  4304. <File RelativePath="..\panda\src\physics\physical.cxx"></File>
  4305. <File RelativePath="..\panda\src\physics\angularVectorForce.cxx"></File>
  4306. <File RelativePath="..\panda\src\physics\linearVectorForce.h"></File>
  4307. <File RelativePath="..\panda\src\physics\physics_composite2.cxx"></File>
  4308. <File RelativePath="..\panda\src\physics\linearVectorForce.cxx"></File>
  4309. <File RelativePath="..\panda\src\physics\linearIntegrator.h"></File>
  4310. <File RelativePath="..\panda\src\physics\angularForce.cxx"></File>
  4311. <File RelativePath="..\panda\src\physics\physicsObjectCollection.I"></File>
  4312. <File RelativePath="..\panda\src\physics\linearFrictionForce.cxx"></File>
  4313. <File RelativePath="..\panda\src\physics\linearNoiseForce.h"></File>
  4314. <File RelativePath="..\panda\src\physics\linearDistanceForce.I"></File>
  4315. <File RelativePath="..\panda\src\physics\linearCylinderVortexForce.I"></File>
  4316. <File RelativePath="..\panda\src\physics\angularIntegrator.cxx"></File>
  4317. <File RelativePath="..\panda\src\physics\linearRandomForce.I"></File>
  4318. <File RelativePath="..\panda\src\physics\physicsCollisionHandler.I"></File>
  4319. <File RelativePath="..\panda\src\physics\config_physics.cxx"></File>
  4320. <File RelativePath="..\panda\src\physics\baseForce.h"></File>
  4321. <File RelativePath="..\panda\src\physics\linearSourceForce.h"></File>
  4322. <File RelativePath="..\panda\src\physics\linearForce.I"></File>
  4323. <File RelativePath="..\panda\src\physics\linearControlForce.cxx"></File>
  4324. <File RelativePath="..\panda\src\physics\linearFrictionForce.h"></File>
  4325. <File RelativePath="..\panda\src\physics\linearDistanceForce.h"></File>
  4326. <File RelativePath="..\panda\src\physics\linearSinkForce.h"></File>
  4327. <File RelativePath="..\panda\src\physics\physicsManager.I"></File>
  4328. <File RelativePath="..\panda\src\physics\forceNode.I"></File>
  4329. <File RelativePath="..\panda\src\physics\physicsCollisionHandler.cxx"></File>
  4330. <File RelativePath="..\panda\src\physics\physicsManager.h"></File>
  4331. <File RelativePath="..\panda\src\physics\physicsCollisionHandler.h"></File>
  4332. <File RelativePath="..\panda\src\physics\actorNode.cxx"></File>
  4333. <File RelativePath="..\panda\src\physics\physics_composite.cxx"></File>
  4334. <File RelativePath="..\panda\src\physics\forces.h"></File>
  4335. <File RelativePath="..\panda\src\physics\linearRandomForce.h"></File>
  4336. <File RelativePath="..\panda\src\physics\linearCylinderVortexForce.h"></File>
  4337. <File RelativePath="..\panda\src\physics\forceNode.cxx"></File>
  4338. <File RelativePath="..\panda\src\physics\baseIntegrator.h"></File>
  4339. <File RelativePath="..\panda\src\physics\linearSinkForce.cxx"></File>
  4340. <File RelativePath="..\panda\src\physics\baseIntegrator.cxx"></File>
  4341. <File RelativePath="..\panda\src\physics\forceNode.h"></File>
  4342. <File RelativePath="..\panda\src\physics\physical.h"></File>
  4343. <File RelativePath="..\panda\src\physics\physicsObjectCollection.h"></File>
  4344. <File RelativePath="..\panda\src\physics\baseIntegrator.I"></File>
  4345. <File RelativePath="..\panda\src\physics\physicsObject.I"></File>
  4346. <File RelativePath="..\panda\src\physics\linearUserDefinedForce.cxx"></File>
  4347. <File RelativePath="..\panda\src\physics\linearSourceForce.cxx"></File>
  4348. <File RelativePath="..\panda\src\physics\linearIntegrator.cxx"></File>
  4349. <File RelativePath="..\panda\src\physics\baseForce.cxx"></File>
  4350. <File RelativePath="..\panda\src\physics\linearVectorForce.I"></File>
  4351. <File RelativePath="..\panda\src\physics\linearNoiseForce.I"></File>
  4352. <File RelativePath="..\panda\src\physics\linearDistanceForce.cxx"></File>
  4353. <File RelativePath="..\panda\src\physics\physical.I"></File>
  4354. <File RelativePath="..\panda\src\physics\physicsObjectCollection.cxx"></File>
  4355. <File RelativePath="..\panda\src\physics\physicalNode.I"></File>
  4356. <File RelativePath="..\panda\src\physics\physicsManager.cxx"></File>
  4357. <File RelativePath="..\panda\src\physics\angularForce.h"></File>
  4358. <File RelativePath="..\panda\src\physics\physicsObject.cxx"></File>
  4359. <File RelativePath="..\panda\src\physics\linearFrictionForce.I"></File>
  4360. <File RelativePath="..\panda\src\physics\linearControlForce.h"></File>
  4361. <File RelativePath="..\panda\src\physics\linearUserDefinedForce.h"></File>
  4362. <File RelativePath="..\panda\src\physics\linearJitterForce.cxx"></File>
  4363. <File RelativePath="..\panda\src\physics\linearForce.cxx"></File>
  4364. <File RelativePath="..\panda\src\physics\linearJitterForce.h"></File>
  4365. <File RelativePath="..\panda\src\physics\physics_composite1.cxx"></File>
  4366. <File RelativePath="..\panda\src\physics\linearNoiseForce.cxx"></File>
  4367. <File RelativePath="..\panda\src\physics\linearForce.h"></File>
  4368. <File RelativePath="..\panda\src\physics\physicsObject.h"></File>
  4369. <File RelativePath="..\panda\src\physics\linearRandomForce.cxx"></File>
  4370. <File RelativePath="..\panda\src\physics\actorNode.I"></File>
  4371. <File RelativePath="..\panda\src\physics\actorNode.h"></File>
  4372. <File RelativePath="..\panda\src\physics\physicalNode.cxx"></File>
  4373. <File RelativePath="..\panda\src\physics\angularEulerIntegrator.cxx"></File>
  4374. <File RelativePath="..\panda\src\physics\linearEulerIntegrator.cxx"></File>
  4375. <File RelativePath="..\panda\src\physics\test_physics.cxx"></File>
  4376. <File RelativePath="..\panda\src\physics\config_physics.h"></File>
  4377. <File RelativePath="..\panda\src\physics\angularVectorForce.I"></File>
  4378. <File RelativePath="..\panda\src\physics\angularIntegrator.h"></File>
  4379. <File RelativePath="..\panda\src\physics\linearEulerIntegrator.h"></File>
  4380. <File RelativePath="..\panda\src\physics\linearControlForce.I"></File>
  4381. <File RelativePath="..\panda\src\physics\physicalNode.h"></File>
  4382. </Filter>
  4383. <Filter Name="pgui">
  4384. <File RelativePath="..\panda\src\pgui\pgSliderBarNotify.h"></File>
  4385. <File RelativePath="..\panda\src\pgui\pgTop.I"></File>
  4386. <File RelativePath="..\panda\src\pgui\pgFrameStyle.I"></File>
  4387. <File RelativePath="..\panda\src\pgui\pgMouseWatcherGroup.cxx"></File>
  4388. <File RelativePath="..\panda\src\pgui\pgMouseWatcherBackground.h"></File>
  4389. <File RelativePath="..\panda\src\pgui\pgScrollFrame.h"></File>
  4390. <File RelativePath="..\panda\src\pgui\pgSliderBar.cxx"></File>
  4391. <File RelativePath="..\panda\src\pgui\test_pgentry.cxx"></File>
  4392. <File RelativePath="..\panda\src\pgui\pgEntry.cxx"></File>
  4393. <File RelativePath="..\panda\src\pgui\pgMouseWatcherRegion.cxx"></File>
  4394. <File RelativePath="..\panda\src\pgui\pgMouseWatcherBackground.cxx"></File>
  4395. <File RelativePath="..\panda\src\pgui\pgEntry.I"></File>
  4396. <File RelativePath="..\panda\src\pgui\pgItemNotify.cxx"></File>
  4397. <File RelativePath="..\panda\src\pgui\pgButton.cxx"></File>
  4398. <File RelativePath="..\panda\src\pgui\pgui_composite.cxx"></File>
  4399. <File RelativePath="..\panda\src\pgui\pgItem.h"></File>
  4400. <File RelativePath="..\panda\src\pgui\pgMouseWatcherGroup.h"></File>
  4401. <File RelativePath="..\panda\src\pgui\pgMouseWatcherRegion.h"></File>
  4402. <File RelativePath="..\panda\src\pgui\pgSliderBarNotify.I"></File>
  4403. <File RelativePath="..\panda\src\pgui\pgSliderBar.I"></File>
  4404. <File RelativePath="..\panda\src\pgui\pgFrameStyle.h"></File>
  4405. <File RelativePath="..\panda\src\pgui\pgItem.I"></File>
  4406. <File RelativePath="..\panda\src\pgui\pgTop.cxx"></File>
  4407. <File RelativePath="..\panda\src\pgui\config_pgui.cxx"></File>
  4408. <File RelativePath="..\panda\src\pgui\pgCullTraverser.h"></File>
  4409. <File RelativePath="..\panda\src\pgui\pgItem.cxx"></File>
  4410. <File RelativePath="..\panda\src\pgui\pgScrollFrame.I"></File>
  4411. <File RelativePath="..\panda\src\pgui\pgSliderBarNotify.cxx"></File>
  4412. <File RelativePath="..\panda\src\pgui\pgSliderBar.h"></File>
  4413. <File RelativePath="..\panda\src\pgui\pgItemNotify.h"></File>
  4414. <File RelativePath="..\panda\src\pgui\pgMouseWatcherParameter.cxx"></File>
  4415. <File RelativePath="..\panda\src\pgui\pgWaitBar.h"></File>
  4416. <File RelativePath="..\panda\src\pgui\pgMouseWatcherParameter.I"></File>
  4417. <File RelativePath="..\panda\src\pgui\pgVirtualFrame.h"></File>
  4418. <File RelativePath="..\panda\src\pgui\pgFrameStyle.cxx"></File>
  4419. <File RelativePath="..\panda\src\pgui\pgMouseWatcherParameter.h"></File>
  4420. <File RelativePath="..\panda\src\pgui\pgButton.h"></File>
  4421. <File RelativePath="..\panda\src\pgui\pgWaitBar.cxx"></File>
  4422. <File RelativePath="..\panda\src\pgui\pgMouseWatcherGroup.I"></File>
  4423. <File RelativePath="..\panda\src\pgui\pgWaitBar.I"></File>
  4424. <File RelativePath="..\panda\src\pgui\pgCullTraverser.cxx"></File>
  4425. <File RelativePath="..\panda\src\pgui\pgTop.h"></File>
  4426. <File RelativePath="..\panda\src\pgui\pgItemNotify.I"></File>
  4427. <File RelativePath="..\panda\src\pgui\pgVirtualFrame.I"></File>
  4428. <File RelativePath="..\panda\src\pgui\pgCullTraverser.I"></File>
  4429. <File RelativePath="..\panda\src\pgui\pgButtonNotify.I"></File>
  4430. <File RelativePath="..\panda\src\pgui\pgEntry.h"></File>
  4431. <File RelativePath="..\panda\src\pgui\pgVirtualFrame.cxx"></File>
  4432. <File RelativePath="..\panda\src\pgui\pgui_composite1.cxx"></File>
  4433. <File RelativePath="..\panda\src\pgui\pgButton.I"></File>
  4434. <File RelativePath="..\panda\src\pgui\pgButtonNotify.cxx"></File>
  4435. <File RelativePath="..\panda\src\pgui\pgui_composite2.cxx"></File>
  4436. <File RelativePath="..\panda\src\pgui\config_pgui.h"></File>
  4437. <File RelativePath="..\panda\src\pgui\pgMouseWatcherRegion.I"></File>
  4438. <File RelativePath="..\panda\src\pgui\pgScrollFrame.cxx"></File>
  4439. <File RelativePath="..\panda\src\pgui\pgButtonNotify.h"></File>
  4440. </Filter>
  4441. <Filter Name="iphone">
  4442. <File RelativePath="..\panda\src\iphone\pview_delegate.h"></File>
  4443. <File RelativePath="..\panda\src\iphone\config_iphone.h"></File>
  4444. </Filter>
  4445. <Filter Name="device">
  4446. <File RelativePath="..\panda\src\device\virtualMouse.h"></File>
  4447. <File RelativePath="..\panda\src\device\clientBase.h"></File>
  4448. <File RelativePath="..\panda\src\device\device_composite2.cxx"></File>
  4449. <File RelativePath="..\panda\src\device\clientTrackerDevice.I"></File>
  4450. <File RelativePath="..\panda\src\device\buttonNode.I"></File>
  4451. <File RelativePath="..\panda\src\device\mouseAndKeyboard.cxx"></File>
  4452. <File RelativePath="..\panda\src\device\trackerData.h"></File>
  4453. <File RelativePath="..\panda\src\device\clientBase.I"></File>
  4454. <File RelativePath="..\panda\src\device\clientDevice.cxx"></File>
  4455. <File RelativePath="..\panda\src\device\clientDevice.I"></File>
  4456. <File RelativePath="..\panda\src\device\trackerNode.h"></File>
  4457. <File RelativePath="..\panda\src\device\config_device.cxx"></File>
  4458. <File RelativePath="..\panda\src\device\config_device.h"></File>
  4459. <File RelativePath="..\panda\src\device\clientBase.cxx"></File>
  4460. <File RelativePath="..\panda\src\device\virtualMouse.cxx"></File>
  4461. <File RelativePath="..\panda\src\device\clientAnalogDevice.h"></File>
  4462. <File RelativePath="..\panda\src\device\trackerData.I"></File>
  4463. <File RelativePath="..\panda\src\device\clientDialDevice.cxx"></File>
  4464. <File RelativePath="..\panda\src\device\clientAnalogDevice.I"></File>
  4465. <File RelativePath="..\panda\src\device\clientButtonDevice.I"></File>
  4466. <File RelativePath="..\panda\src\device\device_composite1.cxx"></File>
  4467. <File RelativePath="..\panda\src\device\clientButtonDevice.h"></File>
  4468. <File RelativePath="..\panda\src\device\dialNode.h"></File>
  4469. <File RelativePath="..\panda\src\device\clientButtonDevice.cxx"></File>
  4470. <File RelativePath="..\panda\src\device\buttonNode.h"></File>
  4471. <File RelativePath="..\panda\src\device\clientDialDevice.I"></File>
  4472. <File RelativePath="..\panda\src\device\analogNode.I"></File>
  4473. <File RelativePath="..\panda\src\device\clientTrackerDevice.cxx"></File>
  4474. <File RelativePath="..\panda\src\device\clientDevice.h"></File>
  4475. <File RelativePath="..\panda\src\device\mouseAndKeyboard.h"></File>
  4476. <File RelativePath="..\panda\src\device\device_composite.cxx"></File>
  4477. <File RelativePath="..\panda\src\device\trackerData.cxx"></File>
  4478. <File RelativePath="..\panda\src\device\trackerNode.cxx"></File>
  4479. <File RelativePath="..\panda\src\device\clientTrackerDevice.h"></File>
  4480. <File RelativePath="..\panda\src\device\clientDialDevice.h"></File>
  4481. <File RelativePath="..\panda\src\device\dialNode.I"></File>
  4482. <File RelativePath="..\panda\src\device\trackerNode.I"></File>
  4483. <File RelativePath="..\panda\src\device\analogNode.h"></File>
  4484. <File RelativePath="..\panda\src\device\buttonNode.cxx"></File>
  4485. <File RelativePath="..\panda\src\device\dialNode.cxx"></File>
  4486. <File RelativePath="..\panda\src\device\clientAnalogDevice.cxx"></File>
  4487. <File RelativePath="..\panda\src\device\analogNode.cxx"></File>
  4488. </Filter>
  4489. </Filter>
  4490. <Filter Name="pandatool">
  4491. <Filter Name="mayaegg">
  4492. <File RelativePath="..\pandatool\src\mayaegg\mayaToEggConverter.cxx"></File>
  4493. <File RelativePath="..\pandatool\src\mayaegg\mayaEggGroupUserData.cxx"></File>
  4494. <File RelativePath="..\pandatool\src\mayaegg\config_mayaegg.h"></File>
  4495. <File RelativePath="..\pandatool\src\mayaegg\mayaegg_composite1.cxx"></File>
  4496. <File RelativePath="..\pandatool\src\mayaegg\mayaEggLoader.cxx"></File>
  4497. <File RelativePath="..\pandatool\src\mayaegg\mayaNodeTree.h"></File>
  4498. <File RelativePath="..\pandatool\src\mayaegg\mayaEggGroupUserData.h"></File>
  4499. <File RelativePath="..\pandatool\src\mayaegg\mayaNodeTree.cxx"></File>
  4500. <File RelativePath="..\pandatool\src\mayaegg\mayaEggGroupUserData.I"></File>
  4501. <File RelativePath="..\pandatool\src\mayaegg\mayaEggLoader.h"></File>
  4502. <File RelativePath="..\pandatool\src\mayaegg\mayaNodeDesc.h"></File>
  4503. <File RelativePath="..\pandatool\src\mayaegg\mayaNodeDesc.cxx"></File>
  4504. <File RelativePath="..\pandatool\src\mayaegg\mayaToEggConverter.h"></File>
  4505. <File RelativePath="..\pandatool\src\mayaegg\config_mayaegg.cxx"></File>
  4506. <File RelativePath="..\pandatool\src\mayaegg\mayaBlendDesc.cxx"></File>
  4507. <File RelativePath="..\pandatool\src\mayaegg\mayaBlendDesc.h"></File>
  4508. </Filter>
  4509. <Filter Name="xfileegg">
  4510. <File RelativePath="..\pandatool\src\xfileegg\xFileNormal.h"></File>
  4511. <File RelativePath="..\pandatool\src\xfileegg\xFileMaker.cxx"></File>
  4512. <File RelativePath="..\pandatool\src\xfileegg\xFileMaterial.h"></File>
  4513. <File RelativePath="..\pandatool\src\xfileegg\xFileMesh.cxx"></File>
  4514. <File RelativePath="..\pandatool\src\xfileegg\xFileMesh.h"></File>
  4515. <File RelativePath="..\pandatool\src\xfileegg\xFileAnimationSet.I"></File>
  4516. <File RelativePath="..\pandatool\src\xfileegg\xFileToEggConverter.cxx"></File>
  4517. <File RelativePath="..\pandatool\src\xfileegg\xFileMaterial.cxx"></File>
  4518. <File RelativePath="..\pandatool\src\xfileegg\xFileVertexPool.h"></File>
  4519. <File RelativePath="..\pandatool\src\xfileegg\xFileAnimationSet.h"></File>
  4520. <File RelativePath="..\pandatool\src\xfileegg\xFileVertex.h"></File>
  4521. <File RelativePath="..\pandatool\src\xfileegg\xFileAnimationSet.cxx"></File>
  4522. <File RelativePath="..\pandatool\src\xfileegg\xFileNormal.cxx"></File>
  4523. <File RelativePath="..\pandatool\src\xfileegg\xFileVertex.cxx"></File>
  4524. <File RelativePath="..\pandatool\src\xfileegg\xFileToEggConverter.h"></File>
  4525. <File RelativePath="..\pandatool\src\xfileegg\xFileMaker.h"></File>
  4526. <File RelativePath="..\pandatool\src\xfileegg\xFileFace.cxx"></File>
  4527. <File RelativePath="..\pandatool\src\xfileegg\xFileFace.h"></File>
  4528. <File RelativePath="..\pandatool\src\xfileegg\xfileegg_composite1.cxx"></File>
  4529. </Filter>
  4530. <Filter Name="egg-mkfont">
  4531. <File RelativePath="..\pandatool\src\egg-mkfont\rangeIterator.I"></File>
  4532. <File RelativePath="..\pandatool\src\egg-mkfont\rangeDescription.I"></File>
  4533. <File RelativePath="..\pandatool\src\egg-mkfont\rangeDescription.h"></File>
  4534. <File RelativePath="..\pandatool\src\egg-mkfont\egg-mkfont_composite1.cxx"></File>
  4535. <File RelativePath="..\pandatool\src\egg-mkfont\eggMakeFont.h"></File>
  4536. <File RelativePath="..\pandatool\src\egg-mkfont\rangeIterator.cxx"></File>
  4537. <File RelativePath="..\pandatool\src\egg-mkfont\rangeDescription.cxx"></File>
  4538. <File RelativePath="..\pandatool\src\egg-mkfont\eggMakeFont.cxx"></File>
  4539. <File RelativePath="..\pandatool\src\egg-mkfont\rangeIterator.h"></File>
  4540. </Filter>
  4541. <Filter Name="progbase">
  4542. <File RelativePath="..\pandatool\src\progbase\programBase.h"></File>
  4543. <File RelativePath="..\pandatool\src\progbase\programBase.I"></File>
  4544. <File RelativePath="..\pandatool\src\progbase\withOutputFile.h"></File>
  4545. <File RelativePath="..\pandatool\src\progbase\progbase_composite1.cxx"></File>
  4546. <File RelativePath="..\pandatool\src\progbase\programBase.cxx"></File>
  4547. <File RelativePath="..\pandatool\src\progbase\wordWrapStreamBuf.h"></File>
  4548. <File RelativePath="..\pandatool\src\progbase\wordWrapStream.cxx"></File>
  4549. <File RelativePath="..\pandatool\src\progbase\wordWrapStreamBuf.I"></File>
  4550. <File RelativePath="..\pandatool\src\progbase\wordWrapStream.h"></File>
  4551. <File RelativePath="..\pandatool\src\progbase\withOutputFile.I"></File>
  4552. <File RelativePath="..\pandatool\src\progbase\withOutputFile.cxx"></File>
  4553. <File RelativePath="..\pandatool\src\progbase\wordWrapStreamBuf.cxx"></File>
  4554. <File RelativePath="..\pandatool\src\progbase\test_prog.cxx"></File>
  4555. </Filter>
  4556. <Filter Name="eggcharbase">
  4557. <File RelativePath="..\pandatool\src\eggcharbase\eggMatrixTablePointer.cxx"></File>
  4558. <File RelativePath="..\pandatool\src\eggcharbase\eggSliderData.cxx"></File>
  4559. <File RelativePath="..\pandatool\src\eggcharbase\eggJointPointer.cxx"></File>
  4560. <File RelativePath="..\pandatool\src\eggcharbase\eggcharbase_composite1.cxx"></File>
  4561. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterCollection.cxx"></File>
  4562. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterData.I"></File>
  4563. <File RelativePath="..\pandatool\src\eggcharbase\eggMatrixTablePointer.h"></File>
  4564. <File RelativePath="..\pandatool\src\eggcharbase\eggJointPointer.I"></File>
  4565. <File RelativePath="..\pandatool\src\eggcharbase\eggJointNodePointer.cxx"></File>
  4566. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterData.cxx"></File>
  4567. <File RelativePath="..\pandatool\src\eggcharbase\eggJointPointer.h"></File>
  4568. <File RelativePath="..\pandatool\src\eggcharbase\config_eggcharbase.h"></File>
  4569. <File RelativePath="..\pandatool\src\eggcharbase\eggBackPointer.cxx"></File>
  4570. <File RelativePath="..\pandatool\src\eggcharbase\eggVertexPointer.cxx"></File>
  4571. <File RelativePath="..\pandatool\src\eggcharbase\eggVertexPointer.h"></File>
  4572. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterDb.h"></File>
  4573. <File RelativePath="..\pandatool\src\eggcharbase\eggBackPointer.h"></File>
  4574. <File RelativePath="..\pandatool\src\eggcharbase\eggComponentData.h"></File>
  4575. <File RelativePath="..\pandatool\src\eggcharbase\eggSliderData.I"></File>
  4576. <File RelativePath="..\pandatool\src\eggcharbase\eggJointData.h"></File>
  4577. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterFilter.cxx"></File>
  4578. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterCollection.h"></File>
  4579. <File RelativePath="..\pandatool\src\eggcharbase\eggSliderData.h"></File>
  4580. <File RelativePath="..\pandatool\src\eggcharbase\eggJointNodePointer.h"></File>
  4581. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterDb.I"></File>
  4582. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterData.h"></File>
  4583. <File RelativePath="..\pandatool\src\eggcharbase\eggSliderPointer.h"></File>
  4584. <File RelativePath="..\pandatool\src\eggcharbase\eggComponentData.I"></File>
  4585. <File RelativePath="..\pandatool\src\eggcharbase\eggSliderPointer.cxx"></File>
  4586. <File RelativePath="..\pandatool\src\eggcharbase\eggJointData.I"></File>
  4587. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterFilter.h"></File>
  4588. <File RelativePath="..\pandatool\src\eggcharbase\eggJointData.cxx"></File>
  4589. <File RelativePath="..\pandatool\src\eggcharbase\eggScalarTablePointer.cxx"></File>
  4590. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterDb.cxx"></File>
  4591. <File RelativePath="..\pandatool\src\eggcharbase\eggScalarTablePointer.h"></File>
  4592. <File RelativePath="..\pandatool\src\eggcharbase\eggCharacterCollection.I"></File>
  4593. <File RelativePath="..\pandatool\src\eggcharbase\config_eggcharbase.cxx"></File>
  4594. <File RelativePath="..\pandatool\src\eggcharbase\eggComponentData.cxx"></File>
  4595. </Filter>
  4596. <Filter Name="eggbase">
  4597. <File RelativePath="..\pandatool\src\eggbase\somethingToEgg.cxx"></File>
  4598. <File RelativePath="..\pandatool\src\eggbase\eggBase.cxx"></File>
  4599. <File RelativePath="..\pandatool\src\eggbase\eggConverter.cxx"></File>
  4600. <File RelativePath="..\pandatool\src\eggbase\eggFilter.cxx"></File>
  4601. <File RelativePath="..\pandatool\src\eggbase\eggConverter.h"></File>
  4602. <File RelativePath="..\pandatool\src\eggbase\eggMakeSomething.cxx"></File>
  4603. <File RelativePath="..\pandatool\src\eggbase\eggbase_composite1.cxx"></File>
  4604. <File RelativePath="..\pandatool\src\eggbase\eggWriter.cxx"></File>
  4605. <File RelativePath="..\pandatool\src\eggbase\eggMultiBase.cxx"></File>
  4606. <File RelativePath="..\pandatool\src\eggbase\eggReader.h"></File>
  4607. <File RelativePath="..\pandatool\src\eggbase\eggMultiFilter.h"></File>
  4608. <File RelativePath="..\pandatool\src\eggbase\eggMultiFilter.cxx"></File>
  4609. <File RelativePath="..\pandatool\src\eggbase\eggMakeSomething.h"></File>
  4610. <File RelativePath="..\pandatool\src\eggbase\eggWriter.h"></File>
  4611. <File RelativePath="..\pandatool\src\eggbase\eggReader.cxx"></File>
  4612. <File RelativePath="..\pandatool\src\eggbase\eggFilter.h"></File>
  4613. <File RelativePath="..\pandatool\src\eggbase\eggSingleBase.cxx"></File>
  4614. <File RelativePath="..\pandatool\src\eggbase\eggToSomething.h"></File>
  4615. <File RelativePath="..\pandatool\src\eggbase\eggMultiBase.h"></File>
  4616. <File RelativePath="..\pandatool\src\eggbase\eggSingleBase.h"></File>
  4617. <File RelativePath="..\pandatool\src\eggbase\somethingToEgg.h"></File>
  4618. <File RelativePath="..\pandatool\src\eggbase\eggBase.h"></File>
  4619. <File RelativePath="..\pandatool\src\eggbase\eggToSomething.cxx"></File>
  4620. </Filter>
  4621. <Filter Name="converter">
  4622. <File RelativePath="..\pandatool\src\converter\somethingToEggConverter.I"></File>
  4623. <File RelativePath="..\pandatool\src\converter\somethingToEggConverter.h"></File>
  4624. <File RelativePath="..\pandatool\src\converter\somethingToEggConverter.cxx"></File>
  4625. </Filter>
  4626. <Filter Name="lwoprogs">
  4627. <File RelativePath="..\pandatool\src\lwoprogs\lwoToEgg.h"></File>
  4628. <File RelativePath="..\pandatool\src\lwoprogs\lwoToEgg.cxx"></File>
  4629. <File RelativePath="..\pandatool\src\lwoprogs\lwoScan.h"></File>
  4630. <File RelativePath="..\pandatool\src\lwoprogs\lwoScan.cxx"></File>
  4631. </Filter>
  4632. <Filter Name="cvscopy">
  4633. <File RelativePath="..\pandatool\src\cvscopy\cvscopy_composite1.cxx"></File>
  4634. <File RelativePath="..\pandatool\src\cvscopy\testCopy.cxx"></File>
  4635. <File RelativePath="..\pandatool\src\cvscopy\cvsSourceDirectory.h"></File>
  4636. <File RelativePath="..\pandatool\src\cvscopy\testCopy.h"></File>
  4637. <File RelativePath="..\pandatool\src\cvscopy\cvsSourceDirectory.cxx"></File>
  4638. <File RelativePath="..\pandatool\src\cvscopy\cvsCopy.cxx"></File>
  4639. <File RelativePath="..\pandatool\src\cvscopy\cvsCopy.h"></File>
  4640. <File RelativePath="..\pandatool\src\cvscopy\cvsSourceTree.cxx"></File>
  4641. <File RelativePath="..\pandatool\src\cvscopy\cvsSourceTree.h"></File>
  4642. </Filter>
  4643. <Filter Name="pandatoolbase">
  4644. <File RelativePath="..\pandatool\src\pandatoolbase\animationConvert.cxx"></File>
  4645. <File RelativePath="..\pandatool\src\pandatoolbase\pathReplace.I"></File>
  4646. <File RelativePath="..\pandatool\src\pandatoolbase\config_pandatoolbase.cxx"></File>
  4647. <File RelativePath="..\pandatool\src\pandatoolbase\pathReplace.h"></File>
  4648. <File RelativePath="..\pandatool\src\pandatoolbase\pandatoolsymbols.h"></File>
  4649. <File RelativePath="..\pandatool\src\pandatoolbase\animationConvert.h"></File>
  4650. <File RelativePath="..\pandatool\src\pandatoolbase\distanceUnit.cxx"></File>
  4651. <File RelativePath="..\pandatool\src\pandatoolbase\config_pandatoolbase.h"></File>
  4652. <File RelativePath="..\pandatool\src\pandatoolbase\pandatoolbase.cxx"></File>
  4653. <File RelativePath="..\pandatool\src\pandatoolbase\pathReplace.cxx"></File>
  4654. <File RelativePath="..\pandatool\src\pandatoolbase\pathStore.h"></File>
  4655. <File RelativePath="..\pandatool\src\pandatoolbase\pathStore.cxx"></File>
  4656. <File RelativePath="..\pandatool\src\pandatoolbase\distanceUnit.h"></File>
  4657. <File RelativePath="..\pandatool\src\pandatoolbase\pandatoolbase.h"></File>
  4658. <File RelativePath="..\pandatool\src\pandatoolbase\pandatoolbase_composite1.cxx"></File>
  4659. </Filter>
  4660. <Filter Name="imagebase">
  4661. <File RelativePath="..\pandatool\src\imagebase\imageFilter.h"></File>
  4662. <File RelativePath="..\pandatool\src\imagebase\imageWriter.cxx"></File>
  4663. <File RelativePath="..\pandatool\src\imagebase\imageWriter.h"></File>
  4664. <File RelativePath="..\pandatool\src\imagebase\imageWriter.I"></File>
  4665. <File RelativePath="..\pandatool\src\imagebase\imageBase.h"></File>
  4666. <File RelativePath="..\pandatool\src\imagebase\imageFilter.cxx"></File>
  4667. <File RelativePath="..\pandatool\src\imagebase\imagebase_composite1.cxx"></File>
  4668. <File RelativePath="..\pandatool\src\imagebase\imageReader.cxx"></File>
  4669. <File RelativePath="..\pandatool\src\imagebase\imageReader.h"></File>
  4670. <File RelativePath="..\pandatool\src\imagebase\imageBase.cxx"></File>
  4671. </Filter>
  4672. <Filter Name="text-stats">
  4673. <File RelativePath="..\pandatool\src\text-stats\textMonitor.h"></File>
  4674. <File RelativePath="..\pandatool\src\text-stats\textStats.h"></File>
  4675. <File RelativePath="..\pandatool\src\text-stats\textMonitor.cxx"></File>
  4676. <File RelativePath="..\pandatool\src\text-stats\textMonitor.I"></File>
  4677. <File RelativePath="..\pandatool\src\text-stats\textStats.cxx"></File>
  4678. </Filter>
  4679. <Filter Name="flt">
  4680. <File RelativePath="..\pandatool\src\flt\fltPackedColor.h"></File>
  4681. <File RelativePath="..\pandatool\src\flt\fltTransformRecord.cxx"></File>
  4682. <File RelativePath="..\pandatool\src\flt\fltMesh.cxx"></File>
  4683. <File RelativePath="..\pandatool\src\flt\config_flt.cxx"></File>
  4684. <File RelativePath="..\pandatool\src\flt\fltTransformRotateAboutPoint.h"></File>
  4685. <File RelativePath="..\pandatool\src\flt\fltVertex.h"></File>
  4686. <File RelativePath="..\pandatool\src\flt\fltMeshPrimitive.cxx"></File>
  4687. <File RelativePath="..\pandatool\src\flt\fltLocalVertexPool.I"></File>
  4688. <File RelativePath="..\pandatool\src\flt\fltInstanceRef.cxx"></File>
  4689. <File RelativePath="..\pandatool\src\flt\fltMesh.I"></File>
  4690. <File RelativePath="..\pandatool\src\flt\fltRecord.cxx"></File>
  4691. <File RelativePath="..\pandatool\src\flt\fltGroup.h"></File>
  4692. <File RelativePath="..\pandatool\src\flt\fltTransformRotateAboutEdge.h"></File>
  4693. <File RelativePath="..\pandatool\src\flt\fltLightSourceDefinition.h"></File>
  4694. <File RelativePath="..\pandatool\src\flt\fltRecordWriter.cxx"></File>
  4695. <File RelativePath="..\pandatool\src\flt\fltRecord.I"></File>
  4696. <File RelativePath="..\pandatool\src\flt\fltGroup.cxx"></File>
  4697. <File RelativePath="..\pandatool\src\flt\fltVectorRecord.h"></File>
  4698. <File RelativePath="..\pandatool\src\flt\fltUnsupportedRecord.cxx"></File>
  4699. <File RelativePath="..\pandatool\src\flt\fltFace.h"></File>
  4700. <File RelativePath="..\pandatool\src\flt\fltGeometry.h"></File>
  4701. <File RelativePath="..\pandatool\src\flt\fltBead.cxx"></File>
  4702. <File RelativePath="..\pandatool\src\flt\fltVertex.I"></File>
  4703. <File RelativePath="..\pandatool\src\flt\fltTexture.h"></File>
  4704. <File RelativePath="..\pandatool\src\flt\config_flt.h"></File>
  4705. <File RelativePath="..\pandatool\src\flt\fltPackedColor.cxx"></File>
  4706. <File RelativePath="..\pandatool\src\flt\fltMeshPrimitive.h"></File>
  4707. <File RelativePath="..\pandatool\src\flt\fltGeometry.cxx"></File>
  4708. <File RelativePath="..\pandatool\src\flt\fltHeader.h"></File>
  4709. <File RelativePath="..\pandatool\src\flt\fltRecordReader.cxx"></File>
  4710. <File RelativePath="..\pandatool\src\flt\fltTransformGeneralMatrix.h"></File>
  4711. <File RelativePath="..\pandatool\src\flt\fltRecordWriter.h"></File>
  4712. <File RelativePath="..\pandatool\src\flt\fltVertex.cxx"></File>
  4713. <File RelativePath="..\pandatool\src\flt\fltExternalReference.h"></File>
  4714. <File RelativePath="..\pandatool\src\flt\fltEyepoint.h"></File>
  4715. <File RelativePath="..\pandatool\src\flt\fltInstanceRef.h"></File>
  4716. <File RelativePath="..\pandatool\src\flt\fltTrackplane.cxx"></File>
  4717. <File RelativePath="..\pandatool\src\flt\fltRecord.h"></File>
  4718. <File RelativePath="..\pandatool\src\flt\fltLocalVertexPool.cxx"></File>
  4719. <File RelativePath="..\pandatool\src\flt\fltTransformPut.h"></File>
  4720. <File RelativePath="..\pandatool\src\flt\fltTransformRotateAboutPoint.cxx"></File>
  4721. <File RelativePath="..\pandatool\src\flt\fltBeadID.cxx"></File>
  4722. <File RelativePath="..\pandatool\src\flt\fltCurve.I"></File>
  4723. <File RelativePath="..\pandatool\src\flt\fltGeometry.I"></File>
  4724. <File RelativePath="..\pandatool\src\flt\fltLOD.cxx"></File>
  4725. <File RelativePath="..\pandatool\src\flt\fltOpcode.h"></File>
  4726. <File RelativePath="..\pandatool\src\flt\fltRecordReader.h"></File>
  4727. <File RelativePath="..\pandatool\src\flt\fltCurve.cxx"></File>
  4728. <File RelativePath="..\pandatool\src\flt\fltUnsupportedRecord.h"></File>
  4729. <File RelativePath="..\pandatool\src\flt\fltBead.h"></File>
  4730. <File RelativePath="..\pandatool\src\flt\fltObject.cxx"></File>
  4731. <File RelativePath="..\pandatool\src\flt\fltBeadID.h"></File>
  4732. <File RelativePath="..\pandatool\src\flt\flt_composite1.cxx"></File>
  4733. <File RelativePath="..\pandatool\src\flt\fltInstanceDefinition.cxx"></File>
  4734. <File RelativePath="..\pandatool\src\flt\fltExternalReference.cxx"></File>
  4735. <File RelativePath="..\pandatool\src\flt\fltTexture.cxx"></File>
  4736. <File RelativePath="..\pandatool\src\flt\fltLOD.h"></File>
  4737. <File RelativePath="..\pandatool\src\flt\fltTransformRotateScale.h"></File>
  4738. <File RelativePath="..\pandatool\src\flt\fltHeader.cxx"></File>
  4739. <File RelativePath="..\pandatool\src\flt\fltPackedColor.I"></File>
  4740. <File RelativePath="..\pandatool\src\flt\fltCurve.h"></File>
  4741. <File RelativePath="..\pandatool\src\flt\fltTransformRotateAboutEdge.cxx"></File>
  4742. <File RelativePath="..\pandatool\src\flt\fltLocalVertexPool.h"></File>
  4743. <File RelativePath="..\pandatool\src\flt\fltLightSourceDefinition.cxx"></File>
  4744. <File RelativePath="..\pandatool\src\flt\fltTransformScale.cxx"></File>
  4745. <File RelativePath="..\pandatool\src\flt\fltVertexList.cxx"></File>
  4746. <File RelativePath="..\pandatool\src\flt\fltMeshPrimitive.I"></File>
  4747. <File RelativePath="..\pandatool\src\flt\fltMaterial.h"></File>
  4748. <File RelativePath="..\pandatool\src\flt\fltTransformGeneralMatrix.cxx"></File>
  4749. <File RelativePath="..\pandatool\src\flt\fltVectorRecord.cxx"></File>
  4750. <File RelativePath="..\pandatool\src\flt\fltTransformScale.h"></File>
  4751. <File RelativePath="..\pandatool\src\flt\fltTransformRotateScale.cxx"></File>
  4752. <File RelativePath="..\pandatool\src\flt\fltTransformTranslate.cxx"></File>
  4753. <File RelativePath="..\pandatool\src\flt\fltVertexList.h"></File>
  4754. <File RelativePath="..\pandatool\src\flt\fltInstanceDefinition.h"></File>
  4755. <File RelativePath="..\pandatool\src\flt\fltTrackplane.h"></File>
  4756. <File RelativePath="..\pandatool\src\flt\fltTransformPut.cxx"></File>
  4757. <File RelativePath="..\pandatool\src\flt\fltObject.h"></File>
  4758. <File RelativePath="..\pandatool\src\flt\fltOpcode.cxx"></File>
  4759. <File RelativePath="..\pandatool\src\flt\fltEyepoint.cxx"></File>
  4760. <File RelativePath="..\pandatool\src\flt\fltFace.cxx"></File>
  4761. <File RelativePath="..\pandatool\src\flt\fltFace.I"></File>
  4762. <File RelativePath="..\pandatool\src\flt\fltTransformTranslate.h"></File>
  4763. <File RelativePath="..\pandatool\src\flt\fltTransformRecord.h"></File>
  4764. <File RelativePath="..\pandatool\src\flt\fltError.cxx"></File>
  4765. <File RelativePath="..\pandatool\src\flt\fltError.h"></File>
  4766. <File RelativePath="..\pandatool\src\flt\fltMaterial.cxx"></File>
  4767. <File RelativePath="..\pandatool\src\flt\fltMesh.h"></File>
  4768. </Filter>
  4769. <Filter Name="vrml">
  4770. <File RelativePath="..\pandatool\src\vrml\standard_nodes.cxx"></File>
  4771. <File RelativePath="..\pandatool\src\vrml\vrmlNode.h"></File>
  4772. <File RelativePath="..\pandatool\src\vrml\vrmlParser.h"></File>
  4773. <File RelativePath="..\pandatool\src\vrml\parse_vrml.h"></File>
  4774. <File RelativePath="..\pandatool\src\vrml\vrmlNodeType.h"></File>
  4775. <File RelativePath="..\pandatool\src\vrml\vrmlNode.cxx"></File>
  4776. <File RelativePath="..\pandatool\src\vrml\vrmlParserDefs.h"></File>
  4777. <File RelativePath="..\pandatool\src\vrml\vrmlLexerDefs.h"></File>
  4778. <File RelativePath="..\pandatool\src\vrml\vrmlLexer.cxx"></File>
  4779. <File RelativePath="..\pandatool\src\vrml\vrmlParser.cxx"></File>
  4780. <File RelativePath="..\pandatool\src\vrml\standardNodes.wrl.pz.c"></File>
  4781. <File RelativePath="..\pandatool\src\vrml\standard_nodes.h"></File>
  4782. <File RelativePath="..\pandatool\src\vrml\parse_vrml.cxx"></File>
  4783. <File RelativePath="..\pandatool\src\vrml\standardNodes.wrl.c"></File>
  4784. <File RelativePath="..\pandatool\src\vrml\vrmlNodeType.cxx"></File>
  4785. </Filter>
  4786. <Filter Name="ptloader">
  4787. <File RelativePath="..\pandatool\src\ptloader\config_ptloader.cxx"></File>
  4788. <File RelativePath="..\pandatool\src\ptloader\loaderFileTypePandatool.cxx"></File>
  4789. <File RelativePath="..\pandatool\src\ptloader\config_ptloader.h"></File>
  4790. <File RelativePath="..\pandatool\src\ptloader\loaderFileTypePandatool.h"></File>
  4791. </Filter>
  4792. <Filter Name="softprogs">
  4793. <File RelativePath="..\pandatool\src\softprogs\softCVS.cxx"></File>
  4794. <File RelativePath="..\pandatool\src\softprogs\softFilename.h"></File>
  4795. <File RelativePath="..\pandatool\src\softprogs\softCVS.h"></File>
  4796. <File RelativePath="..\pandatool\src\softprogs\softFilename.cxx"></File>
  4797. </Filter>
  4798. <Filter Name="imageprogs">
  4799. <File RelativePath="..\pandatool\src\imageprogs\imageTrans.h"></File>
  4800. <File RelativePath="..\pandatool\src\imageprogs\imageTransformColors.cxx"></File>
  4801. <File RelativePath="..\pandatool\src\imageprogs\imageTransformColors.h"></File>
  4802. <File RelativePath="..\pandatool\src\imageprogs\imageResize.h"></File>
  4803. <File RelativePath="..\pandatool\src\imageprogs\imageFixHiddenColor.I"></File>
  4804. <File RelativePath="..\pandatool\src\imageprogs\imageResize.cxx"></File>
  4805. <File RelativePath="..\pandatool\src\imageprogs\imageFixHiddenColor.cxx"></File>
  4806. <File RelativePath="..\pandatool\src\imageprogs\imageInfo.h"></File>
  4807. <File RelativePath="..\pandatool\src\imageprogs\imageFixHiddenColor.h"></File>
  4808. <File RelativePath="..\pandatool\src\imageprogs\imageTransformColors.I"></File>
  4809. <File RelativePath="..\pandatool\src\imageprogs\imageTrans.cxx"></File>
  4810. <File RelativePath="..\pandatool\src\imageprogs\imageInfo.cxx"></File>
  4811. <File RelativePath="..\pandatool\src\imageprogs\imageResize.I"></File>
  4812. </Filter>
  4813. <Filter Name="fltprogs">
  4814. <File RelativePath="..\pandatool\src\fltprogs\fltToEgg.cxx"></File>
  4815. <File RelativePath="..\pandatool\src\fltprogs\eggToFlt.cxx"></File>
  4816. <File RelativePath="..\pandatool\src\fltprogs\fltCopy.h"></File>
  4817. <File RelativePath="..\pandatool\src\fltprogs\fltTrans.h"></File>
  4818. <File RelativePath="..\pandatool\src\fltprogs\fltInfo.h"></File>
  4819. <File RelativePath="..\pandatool\src\fltprogs\fltInfo.cxx"></File>
  4820. <File RelativePath="..\pandatool\src\fltprogs\fltCopy.cxx"></File>
  4821. <File RelativePath="..\pandatool\src\fltprogs\fltTrans.cxx"></File>
  4822. <File RelativePath="..\pandatool\src\fltprogs\fltToEgg.h"></File>
  4823. <File RelativePath="..\pandatool\src\fltprogs\eggToFlt.h"></File>
  4824. </Filter>
  4825. <Filter Name="fltegg">
  4826. <File RelativePath="..\pandatool\src\fltegg\fltToEggConverter.I"></File>
  4827. <File RelativePath="..\pandatool\src\fltegg\fltToEggLevelState.I"></File>
  4828. <File RelativePath="..\pandatool\src\fltegg\fltToEggLevelState.cxx"></File>
  4829. <File RelativePath="..\pandatool\src\fltegg\fltToEggConverter.cxx"></File>
  4830. <File RelativePath="..\pandatool\src\fltegg\fltToEggConverter.h"></File>
  4831. <File RelativePath="..\pandatool\src\fltegg\fltToEggLevelState.h"></File>
  4832. </Filter>
  4833. <Filter Name="eggprogs">
  4834. <File RelativePath="..\pandatool\src\eggprogs\eggRetargetAnim.h"></File>
  4835. <File RelativePath="..\pandatool\src\eggprogs\eggTrans.cxx"></File>
  4836. <File RelativePath="..\pandatool\src\eggprogs\eggRetargetAnim.cxx"></File>
  4837. <File RelativePath="..\pandatool\src\eggprogs\eggTrans.h"></File>
  4838. <File RelativePath="..\pandatool\src\eggprogs\eggRename.h"></File>
  4839. <File RelativePath="..\pandatool\src\eggprogs\eggRename.cxx"></File>
  4840. <File RelativePath="..\pandatool\src\eggprogs\eggCrop.cxx"></File>
  4841. <File RelativePath="..\pandatool\src\eggprogs\eggTopstrip.h"></File>
  4842. <File RelativePath="..\pandatool\src\eggprogs\eggTextureCards.h"></File>
  4843. <File RelativePath="..\pandatool\src\eggprogs\eggMakeTube.h"></File>
  4844. <File RelativePath="..\pandatool\src\eggprogs\eggMakeTube.cxx"></File>
  4845. <File RelativePath="..\pandatool\src\eggprogs\eggCrop.h"></File>
  4846. <File RelativePath="..\pandatool\src\eggprogs\eggTopstrip.cxx"></File>
  4847. <File RelativePath="..\pandatool\src\eggprogs\eggListTextures.cxx"></File>
  4848. <File RelativePath="..\pandatool\src\eggprogs\eggToC.h"></File>
  4849. <File RelativePath="..\pandatool\src\eggprogs\eggTextureCards.cxx"></File>
  4850. <File RelativePath="..\pandatool\src\eggprogs\eggToC.cxx"></File>
  4851. <File RelativePath="..\pandatool\src\eggprogs\eggListTextures.h"></File>
  4852. </Filter>
  4853. <Filter Name="maya">
  4854. <File RelativePath="..\pandatool\src\maya\mayaApi.h"></File>
  4855. <File RelativePath="..\pandatool\src\maya\mayaShaders.h"></File>
  4856. <File RelativePath="..\pandatool\src\maya\post_maya_include.h"></File>
  4857. <File RelativePath="..\pandatool\src\maya\maya_composite1.cxx"></File>
  4858. <File RelativePath="..\pandatool\src\maya\config_maya.h"></File>
  4859. <File RelativePath="..\pandatool\src\maya\maya_funcs.cxx"></File>
  4860. <File RelativePath="..\pandatool\src\maya\mayaShader.cxx"></File>
  4861. <File RelativePath="..\pandatool\src\maya\mayaShader.h"></File>
  4862. <File RelativePath="..\pandatool\src\maya\maya_funcs.h"></File>
  4863. <File RelativePath="..\pandatool\src\maya\mayaShaders.cxx"></File>
  4864. <File RelativePath="..\pandatool\src\maya\pre_maya_include.h"></File>
  4865. <File RelativePath="..\pandatool\src\maya\mayaShaderColorDef.h"></File>
  4866. <File RelativePath="..\pandatool\src\maya\maya_funcs.I"></File>
  4867. <File RelativePath="..\pandatool\src\maya\mayaApi.cxx"></File>
  4868. <File RelativePath="..\pandatool\src\maya\mayaShaderColorDef.cxx"></File>
  4869. <File RelativePath="..\pandatool\src\maya\config_maya.cxx"></File>
  4870. </Filter>
  4871. <Filter Name="lwoegg">
  4872. <File RelativePath="..\pandatool\src\lwoegg\cLwoPolygons.cxx"></File>
  4873. <File RelativePath="..\pandatool\src\lwoegg\cLwoClip.h"></File>
  4874. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurface.cxx"></File>
  4875. <File RelativePath="..\pandatool\src\lwoegg\lwoToEggConverter.h"></File>
  4876. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlock.h"></File>
  4877. <File RelativePath="..\pandatool\src\lwoegg\cLwoPoints.I"></File>
  4878. <File RelativePath="..\pandatool\src\lwoegg\cLwoPolygons.I"></File>
  4879. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlock.I"></File>
  4880. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlockTMap.I"></File>
  4881. <File RelativePath="..\pandatool\src\lwoegg\cLwoClip.cxx"></File>
  4882. <File RelativePath="..\pandatool\src\lwoegg\lwoegg_composite1.cxx"></File>
  4883. <File RelativePath="..\pandatool\src\lwoegg\cLwoLayer.h"></File>
  4884. <File RelativePath="..\pandatool\src\lwoegg\cLwoLayer.cxx"></File>
  4885. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlockTMap.h"></File>
  4886. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlock.cxx"></File>
  4887. <File RelativePath="..\pandatool\src\lwoegg\cLwoPoints.h"></File>
  4888. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurfaceBlockTMap.cxx"></File>
  4889. <File RelativePath="..\pandatool\src\lwoegg\cLwoLayer.I"></File>
  4890. <File RelativePath="..\pandatool\src\lwoegg\cLwoClip.I"></File>
  4891. <File RelativePath="..\pandatool\src\lwoegg\cLwoPoints.cxx"></File>
  4892. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurface.h"></File>
  4893. <File RelativePath="..\pandatool\src\lwoegg\lwoToEggConverter.I"></File>
  4894. <File RelativePath="..\pandatool\src\lwoegg\cLwoPolygons.h"></File>
  4895. <File RelativePath="..\pandatool\src\lwoegg\cLwoSurface.I"></File>
  4896. <File RelativePath="..\pandatool\src\lwoegg\lwoToEggConverter.cxx"></File>
  4897. </Filter>
  4898. <Filter Name="dxfprogs">
  4899. <File RelativePath="..\pandatool\src\dxfprogs\eggToDXF.cxx"></File>
  4900. <File RelativePath="..\pandatool\src\dxfprogs\eggToDXFLayer.cxx"></File>
  4901. <File RelativePath="..\pandatool\src\dxfprogs\dxfToEgg.cxx"></File>
  4902. <File RelativePath="..\pandatool\src\dxfprogs\dxfToEgg.h"></File>
  4903. <File RelativePath="..\pandatool\src\dxfprogs\dxfPoints.cxx"></File>
  4904. <File RelativePath="..\pandatool\src\dxfprogs\eggToDXF.h"></File>
  4905. <File RelativePath="..\pandatool\src\dxfprogs\eggToDXFLayer.h"></File>
  4906. <File RelativePath="..\pandatool\src\dxfprogs\dxfPoints.h"></File>
  4907. </Filter>
  4908. <Filter Name="daeegg">
  4909. <File RelativePath="..\pandatool\src\daeegg\pre_fcollada_include.h"></File>
  4910. <File RelativePath="..\pandatool\src\daeegg\daeToEggConverter.cxx"></File>
  4911. <File RelativePath="..\pandatool\src\daeegg\fcollada_utils.h"></File>
  4912. <File RelativePath="..\pandatool\src\daeegg\daeCharacter.h"></File>
  4913. <File RelativePath="..\pandatool\src\daeegg\daeegg_composite1.cxx"></File>
  4914. <File RelativePath="..\pandatool\src\daeegg\config_daeegg.cxx"></File>
  4915. <File RelativePath="..\pandatool\src\daeegg\daeMaterials.h"></File>
  4916. <File RelativePath="..\pandatool\src\daeegg\daeMaterials.cxx"></File>
  4917. <File RelativePath="..\pandatool\src\daeegg\daeToEggConverter.h"></File>
  4918. <File RelativePath="..\pandatool\src\daeegg\config_daeegg.h"></File>
  4919. <File RelativePath="..\pandatool\src\daeegg\daeCharacter.cxx"></File>
  4920. </Filter>
  4921. <Filter Name="daeprogs">
  4922. <File RelativePath="..\pandatool\src\daeprogs\eggToDAE.h"></File>
  4923. <File RelativePath="..\pandatool\src\daeprogs\eggToDAE.cxx"></File>
  4924. <File RelativePath="..\pandatool\src\daeprogs\daeToEgg.cxx"></File>
  4925. <File RelativePath="..\pandatool\src\daeprogs\daeToEgg.h"></File>
  4926. </Filter>
  4927. <Filter Name="win-stats">
  4928. <File RelativePath="..\pandatool\src\win-stats\winStatsLabelStack.cxx"></File>
  4929. <File RelativePath="..\pandatool\src\win-stats\winStatsStripChart.cxx"></File>
  4930. <File RelativePath="..\pandatool\src\win-stats\winStatsMonitor.cxx"></File>
  4931. <File RelativePath="..\pandatool\src\win-stats\winStats.cxx"></File>
  4932. <File RelativePath="..\pandatool\src\win-stats\winStatsChartMenu.cxx"></File>
  4933. <File RelativePath="..\pandatool\src\win-stats\winStatsGraph.cxx"></File>
  4934. <File RelativePath="..\pandatool\src\win-stats\winstats_composite1.cxx"></File>
  4935. <File RelativePath="..\pandatool\src\win-stats\winStatsLabel.h"></File>
  4936. <File RelativePath="..\pandatool\src\win-stats\winStatsChartMenu.h"></File>
  4937. <File RelativePath="..\pandatool\src\win-stats\winStatsLabelStack.h"></File>
  4938. <File RelativePath="..\pandatool\src\win-stats\winStatsGraph.h"></File>
  4939. <File RelativePath="..\pandatool\src\win-stats\winStatsMonitor.h"></File>
  4940. <File RelativePath="..\pandatool\src\win-stats\winStats.h"></File>
  4941. <File RelativePath="..\pandatool\src\win-stats\winStatsPianoRoll.h"></File>
  4942. <File RelativePath="..\pandatool\src\win-stats\winStatsMonitor.I"></File>
  4943. <File RelativePath="..\pandatool\src\win-stats\winStatsStripChart.h"></File>
  4944. <File RelativePath="..\pandatool\src\win-stats\winStatsPianoRoll.cxx"></File>
  4945. <File RelativePath="..\pandatool\src\win-stats\winStatsServer.cxx"></File>
  4946. <File RelativePath="..\pandatool\src\win-stats\winStatsMenuId.h"></File>
  4947. <File RelativePath="..\pandatool\src\win-stats\winStatsLabel.cxx"></File>
  4948. <File RelativePath="..\pandatool\src\win-stats\winStatsServer.h"></File>
  4949. </Filter>
  4950. <Filter Name="dxfegg">
  4951. <File RelativePath="..\pandatool\src\dxfegg\dxfToEggConverter.cxx"></File>
  4952. <File RelativePath="..\pandatool\src\dxfegg\dxfToEggLayer.cxx"></File>
  4953. <File RelativePath="..\pandatool\src\dxfegg\dxfToEggConverter.h"></File>
  4954. <File RelativePath="..\pandatool\src\dxfegg\dxfToEggLayer.h"></File>
  4955. </Filter>
  4956. <Filter Name="maxprogs">
  4957. <File RelativePath="..\pandatool\src\maxprogs\maxImportRes.h"></File>
  4958. <File RelativePath="..\pandatool\src\maxprogs\maxEggImport.cxx"></File>
  4959. </Filter>
  4960. <Filter Name="egg-palettize">
  4961. <File RelativePath="..\pandatool\src\egg-palettize\eggPalettize.h"></File>
  4962. <File RelativePath="..\pandatool\src\egg-palettize\txaFileFilter.cxx"></File>
  4963. <File RelativePath="..\pandatool\src\egg-palettize\eggPalettize.cxx"></File>
  4964. <File RelativePath="..\pandatool\src\egg-palettize\txaFileFilter.h"></File>
  4965. <File RelativePath="..\pandatool\src\egg-palettize\txaFileFilter.I"></File>
  4966. </Filter>
  4967. <Filter Name="bam">
  4968. <File RelativePath="..\pandatool\src\bam\eggToBam.h"></File>
  4969. <File RelativePath="..\pandatool\src\bam\bamToEgg.cxx"></File>
  4970. <File RelativePath="..\pandatool\src\bam\bamInfo.cxx"></File>
  4971. <File RelativePath="..\pandatool\src\bam\eggToBam.cxx"></File>
  4972. <File RelativePath="..\pandatool\src\bam\bamToEgg.h"></File>
  4973. <File RelativePath="..\pandatool\src\bam\bamInfo.h"></File>
  4974. </Filter>
  4975. <Filter Name="miscprogs">
  4976. <File RelativePath="..\pandatool\src\miscprogs\binToC.h"></File>
  4977. <File RelativePath="..\pandatool\src\miscprogs\binToC.cxx"></File>
  4978. </Filter>
  4979. <Filter Name="mayaprogs">
  4980. <File RelativePath="..\pandatool\src\mayaprogs\mayaPview.h"></File>
  4981. <File RelativePath="..\pandatool\src\mayaprogs\config_mayaloader.cxx"></File>
  4982. <File RelativePath="..\pandatool\src\mayaprogs\mayaPview.cxx"></File>
  4983. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg_client.h"></File>
  4984. <File RelativePath="..\pandatool\src\mayaprogs\blend_test.cxx"></File>
  4985. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg_server.h"></File>
  4986. <File RelativePath="..\pandatool\src\mayaprogs\mayaCopy.h"></File>
  4987. <File RelativePath="..\pandatool\src\mayaprogs\eggToMaya.h"></File>
  4988. <File RelativePath="..\pandatool\src\mayaprogs\mayaSavePview.h"></File>
  4989. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg_server.cxx"></File>
  4990. <File RelativePath="..\pandatool\src\mayaprogs\mayaCopy.cxx"></File>
  4991. <File RelativePath="..\pandatool\src\mayaprogs\eggToMaya.cxx"></File>
  4992. <File RelativePath="..\pandatool\src\mayaprogs\normal_test.cxx"></File>
  4993. <File RelativePath="..\pandatool\src\mayaprogs\mayaSavePview.cxx"></File>
  4994. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg.cxx"></File>
  4995. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg.h"></File>
  4996. <File RelativePath="..\pandatool\src\mayaprogs\mayaWrapper.cxx"></File>
  4997. <File RelativePath="..\pandatool\src\mayaprogs\mayapath.cxx"></File>
  4998. <File RelativePath="..\pandatool\src\mayaprogs\mayaToEgg_client.cxx"></File>
  4999. <File RelativePath="..\pandatool\src\mayaprogs\mayaEggImport.cxx"></File>
  5000. </Filter>
  5001. <Filter Name="vrmlprogs">
  5002. <File RelativePath="..\pandatool\src\vrmlprogs\vrmlToEgg.cxx"></File>
  5003. <File RelativePath="..\pandatool\src\vrmlprogs\vrmlToEgg.h"></File>
  5004. <File RelativePath="..\pandatool\src\vrmlprogs\vrmlTrans.h"></File>
  5005. <File RelativePath="..\pandatool\src\vrmlprogs\vrmlTrans.cxx"></File>
  5006. </Filter>
  5007. <Filter Name="egg-optchar">
  5008. <File RelativePath="..\pandatool\src\egg-optchar\eggOptcharUserData.cxx"></File>
  5009. <File RelativePath="..\pandatool\src\egg-optchar\config_egg_optchar.cxx"></File>
  5010. <File RelativePath="..\pandatool\src\egg-optchar\eggOptcharUserData.I"></File>
  5011. <File RelativePath="..\pandatool\src\egg-optchar\vertexMembership.I"></File>
  5012. <File RelativePath="..\pandatool\src\egg-optchar\eggOptchar.cxx"></File>
  5013. <File RelativePath="..\pandatool\src\egg-optchar\vertexMembership.cxx"></File>
  5014. <File RelativePath="..\pandatool\src\egg-optchar\config_egg_optchar.h"></File>
  5015. <File RelativePath="..\pandatool\src\egg-optchar\eggOptchar.h"></File>
  5016. <File RelativePath="..\pandatool\src\egg-optchar\eggOptcharUserData.h"></File>
  5017. <File RelativePath="..\pandatool\src\egg-optchar\vertexMembership.h"></File>
  5018. </Filter>
  5019. <Filter Name="pstatserver">
  5020. <File RelativePath="..\pandatool\src\pstatserver\pStatThreadData.h"></File>
  5021. <File RelativePath="..\pandatool\src\pstatserver\pStatListener.h"></File>
  5022. <File RelativePath="..\pandatool\src\pstatserver\pStatGraph.h"></File>
  5023. <File RelativePath="..\pandatool\src\pstatserver\pStatMonitor.h"></File>
  5024. <File RelativePath="..\pandatool\src\pstatserver\pStatViewLevel.I"></File>
  5025. <File RelativePath="..\pandatool\src\pstatserver\pStatThreadData.cxx"></File>
  5026. <File RelativePath="..\pandatool\src\pstatserver\pStatServer.h"></File>
  5027. <File RelativePath="..\pandatool\src\pstatserver\pStatReader.h"></File>
  5028. <File RelativePath="..\pandatool\src\pstatserver\pStatViewLevel.h"></File>
  5029. <File RelativePath="..\pandatool\src\pstatserver\pStatPianoRoll.I"></File>
  5030. <File RelativePath="..\pandatool\src\pstatserver\pStatStripChart.h"></File>
  5031. <File RelativePath="..\pandatool\src\pstatserver\pStatPianoRoll.h"></File>
  5032. <File RelativePath="..\pandatool\src\pstatserver\pStatView.cxx"></File>
  5033. <File RelativePath="..\pandatool\src\pstatserver\pstatserver_composite1.cxx"></File>
  5034. <File RelativePath="..\pandatool\src\pstatserver\pStatViewLevel.cxx"></File>
  5035. <File RelativePath="..\pandatool\src\pstatserver\pStatMonitor.I"></File>
  5036. <File RelativePath="..\pandatool\src\pstatserver\pStatListener.cxx"></File>
  5037. <File RelativePath="..\pandatool\src\pstatserver\pStatStripChart.cxx"></File>
  5038. <File RelativePath="..\pandatool\src\pstatserver\pStatPianoRoll.cxx"></File>
  5039. <File RelativePath="..\pandatool\src\pstatserver\pStatClientData.h"></File>
  5040. <File RelativePath="..\pandatool\src\pstatserver\pStatServer.cxx"></File>
  5041. <File RelativePath="..\pandatool\src\pstatserver\pStatGraph.I"></File>
  5042. <File RelativePath="..\pandatool\src\pstatserver\pStatGraph.cxx"></File>
  5043. <File RelativePath="..\pandatool\src\pstatserver\pStatMonitor.cxx"></File>
  5044. <File RelativePath="..\pandatool\src\pstatserver\pStatStripChart.I"></File>
  5045. <File RelativePath="..\pandatool\src\pstatserver\pStatThreadData.I"></File>
  5046. <File RelativePath="..\pandatool\src\pstatserver\pStatReader.cxx"></File>
  5047. <File RelativePath="..\pandatool\src\pstatserver\pStatView.h"></File>
  5048. <File RelativePath="..\pandatool\src\pstatserver\pStatView.I"></File>
  5049. <File RelativePath="..\pandatool\src\pstatserver\pStatClientData.cxx"></File>
  5050. </Filter>
  5051. <Filter Name="gtk-stats">
  5052. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsLabel.cxx"></File>
  5053. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsGraph.cxx"></File>
  5054. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsMonitor.I"></File>
  5055. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsGraph.h"></File>
  5056. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsMonitor.cxx"></File>
  5057. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsStripChart.cxx"></File>
  5058. <File RelativePath="..\pandatool\src\gtk-stats\gtkStats.cxx"></File>
  5059. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsStripChart.h"></File>
  5060. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsPianoRoll.h"></File>
  5061. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsServer.cxx"></File>
  5062. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsLabel.h"></File>
  5063. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsMenuId.h"></File>
  5064. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsLabelStack.h"></File>
  5065. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsPianoRoll.cxx"></File>
  5066. <File RelativePath="..\pandatool\src\gtk-stats\gtkstats_composite1.cxx"></File>
  5067. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsChartMenu.cxx"></File>
  5068. <File RelativePath="..\pandatool\src\gtk-stats\gtkStats.h"></File>
  5069. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsMonitor.h"></File>
  5070. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsChartMenu.h"></File>
  5071. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsLabelStack.cxx"></File>
  5072. <File RelativePath="..\pandatool\src\gtk-stats\gtkStatsServer.h"></File>
  5073. </Filter>
  5074. <Filter Name="xfile">
  5075. <File RelativePath="..\pandatool\src\xfile\xFile.I"></File>
  5076. <File RelativePath="..\pandatool\src\xfile\xFileDataDef.I"></File>
  5077. <File RelativePath="..\pandatool\src\xfile\standard_templates.cxx"></File>
  5078. <File RelativePath="..\pandatool\src\xfile\xFileArrayDef.cxx"></File>
  5079. <File RelativePath="..\pandatool\src\xfile\xFileNode.I"></File>
  5080. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeReference.cxx"></File>
  5081. <File RelativePath="..\pandatool\src\xfile\xFile.cxx"></File>
  5082. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeTemplate.h"></File>
  5083. <File RelativePath="..\pandatool\src\xfile\xFileTemplate.I"></File>
  5084. <File RelativePath="..\pandatool\src\xfile\xLexerDefs.h"></File>
  5085. <File RelativePath="..\pandatool\src\xfile\windowsGuid.h"></File>
  5086. <File RelativePath="..\pandatool\src\xfile\xFileNode.cxx"></File>
  5087. <File RelativePath="..\pandatool\src\xfile\xFileDataNode.cxx"></File>
  5088. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeTemplate.cxx"></File>
  5089. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectArray.I"></File>
  5090. <File RelativePath="..\pandatool\src\xfile\xFileTemplate.h"></File>
  5091. <File RelativePath="..\pandatool\src\xfile\config_xfile.h"></File>
  5092. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectInteger.I"></File>
  5093. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectDouble.I"></File>
  5094. <File RelativePath="..\pandatool\src\xfile\standardTemplates.x.pz.c"></File>
  5095. <File RelativePath="..\pandatool\src\xfile\xLexer.cxx"></File>
  5096. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeTemplate.I"></File>
  5097. <File RelativePath="..\pandatool\src\xfile\xFileArrayDef.I"></File>
  5098. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectDouble.h"></File>
  5099. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectInteger.cxx"></File>
  5100. <File RelativePath="..\pandatool\src\xfile\xFileParseData.cxx"></File>
  5101. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectArray.cxx"></File>
  5102. <File RelativePath="..\pandatool\src\xfile\xFileDataNode.I"></File>
  5103. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectArray.h"></File>
  5104. <File RelativePath="..\pandatool\src\xfile\windowsGuid.I"></File>
  5105. <File RelativePath="..\pandatool\src\xfile\windowsGuid.cxx"></File>
  5106. <File RelativePath="..\pandatool\src\xfile\xFileDataObject.cxx"></File>
  5107. <File RelativePath="..\pandatool\src\xfile\xFileParseData.h"></File>
  5108. <File RelativePath="..\pandatool\src\xfile\xFileDataObject.I"></File>
  5109. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectInteger.h"></File>
  5110. <File RelativePath="..\pandatool\src\xfile\xFileDataNode.h"></File>
  5111. <File RelativePath="..\pandatool\src\xfile\xParser.cxx"></File>
  5112. <File RelativePath="..\pandatool\src\xfile\xFileDataDef.cxx"></File>
  5113. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectString.cxx"></File>
  5114. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeReference.I"></File>
  5115. <File RelativePath="..\pandatool\src\xfile\xFileNode.h"></File>
  5116. <File RelativePath="..\pandatool\src\xfile\xFileParseData.I"></File>
  5117. <File RelativePath="..\pandatool\src\xfile\xFileTemplate.cxx"></File>
  5118. <File RelativePath="..\pandatool\src\xfile\config_xfile.cxx"></File>
  5119. <File RelativePath="..\pandatool\src\xfile\xFileArrayDef.h"></File>
  5120. <File RelativePath="..\pandatool\src\xfile\xFileDataNodeReference.h"></File>
  5121. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectDouble.cxx"></File>
  5122. <File RelativePath="..\pandatool\src\xfile\xfile_composite1.cxx"></File>
  5123. <File RelativePath="..\pandatool\src\xfile\xParser.h"></File>
  5124. <File RelativePath="..\pandatool\src\xfile\standard_templates.h"></File>
  5125. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectString.I"></File>
  5126. <File RelativePath="..\pandatool\src\xfile\xFileDataObjectString.h"></File>
  5127. <File RelativePath="..\pandatool\src\xfile\standardTemplates.x.c"></File>
  5128. <File RelativePath="..\pandatool\src\xfile\xFile.h"></File>
  5129. <File RelativePath="..\pandatool\src\xfile\xFileDataObject.h"></File>
  5130. <File RelativePath="..\pandatool\src\xfile\xFileDataDef.h"></File>
  5131. <File RelativePath="..\pandatool\src\xfile\xParserDefs.h"></File>
  5132. </Filter>
  5133. <Filter Name="egg-qtess">
  5134. <File RelativePath="..\pandatool\src\egg-qtess\subdivSegment.cxx"></File>
  5135. <File RelativePath="..\pandatool\src\egg-qtess\qtessGlobals.h"></File>
  5136. <File RelativePath="..\pandatool\src\egg-qtess\config_egg_qtess.h"></File>
  5137. <File RelativePath="..\pandatool\src\egg-qtess\qtessSurface.h"></File>
  5138. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputFile.h"></File>
  5139. <File RelativePath="..\pandatool\src\egg-qtess\isoPlacer.h"></File>
  5140. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputFile.cxx"></File>
  5141. <File RelativePath="..\pandatool\src\egg-qtess\qtessGlobals.cxx"></File>
  5142. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputEntry.I"></File>
  5143. <File RelativePath="..\pandatool\src\egg-qtess\qtessSurface.cxx"></File>
  5144. <File RelativePath="..\pandatool\src\egg-qtess\eggQtess.h"></File>
  5145. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputFile.I"></File>
  5146. <File RelativePath="..\pandatool\src\egg-qtess\qtessSurface.I"></File>
  5147. <File RelativePath="..\pandatool\src\egg-qtess\subdivSegment.h"></File>
  5148. <File RelativePath="..\pandatool\src\egg-qtess\config_egg_qtess.cxx"></File>
  5149. <File RelativePath="..\pandatool\src\egg-qtess\egg-qtess_composite1.cxx"></File>
  5150. <File RelativePath="..\pandatool\src\egg-qtess\isoPlacer.cxx"></File>
  5151. <File RelativePath="..\pandatool\src\egg-qtess\isoPlacer.I"></File>
  5152. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputEntry.h"></File>
  5153. <File RelativePath="..\pandatool\src\egg-qtess\qtessInputEntry.cxx"></File>
  5154. <File RelativePath="..\pandatool\src\egg-qtess\subdivSegment.I"></File>
  5155. <File RelativePath="..\pandatool\src\egg-qtess\eggQtess.cxx"></File>
  5156. </Filter>
  5157. <Filter Name="vrmlegg">
  5158. <File RelativePath="..\pandatool\src\vrmlegg\vrmlAppearance.h"></File>
  5159. <File RelativePath="..\pandatool\src\vrmlegg\indexedFaceSet.h"></File>
  5160. <File RelativePath="..\pandatool\src\vrmlegg\vrmlToEggConverter.cxx"></File>
  5161. <File RelativePath="..\pandatool\src\vrmlegg\indexedFaceSet.cxx"></File>
  5162. <File RelativePath="..\pandatool\src\vrmlegg\vrmlToEggConverter.h"></File>
  5163. <File RelativePath="..\pandatool\src\vrmlegg\vrmlAppearance.cxx"></File>
  5164. </Filter>
  5165. <Filter Name="palettizer">
  5166. <File RelativePath="..\pandatool\src\palettizer\paletteGroups.h"></File>
  5167. <File RelativePath="..\pandatool\src\palettizer\eggFile.cxx"></File>
  5168. <File RelativePath="..\pandatool\src\palettizer\omitReason.cxx"></File>
  5169. <File RelativePath="..\pandatool\src\palettizer\filenameUnifier.h"></File>
  5170. <File RelativePath="..\pandatool\src\palettizer\palettizer.cxx"></File>
  5171. <File RelativePath="..\pandatool\src\palettizer\textureReference.cxx"></File>
  5172. <File RelativePath="..\pandatool\src\palettizer\pal_string_utils.cxx"></File>
  5173. <File RelativePath="..\pandatool\src\palettizer\palettizer.h"></File>
  5174. <File RelativePath="..\pandatool\src\palettizer\sourceTextureImage.cxx"></File>
  5175. <File RelativePath="..\pandatool\src\palettizer\pal_string_utils.h"></File>
  5176. <File RelativePath="..\pandatool\src\palettizer\textureRequest.h"></File>
  5177. <File RelativePath="..\pandatool\src\palettizer\texturePosition.h"></File>
  5178. <File RelativePath="..\pandatool\src\palettizer\destTextureImage.h"></File>
  5179. <File RelativePath="..\pandatool\src\palettizer\paletteGroup.cxx"></File>
  5180. <File RelativePath="..\pandatool\src\palettizer\paletteImage.h"></File>
  5181. <File RelativePath="..\pandatool\src\palettizer\paletteImage.cxx"></File>
  5182. <File RelativePath="..\pandatool\src\palettizer\textureRequest.cxx"></File>
  5183. <File RelativePath="..\pandatool\src\palettizer\texturePlacement.cxx"></File>
  5184. <File RelativePath="..\pandatool\src\palettizer\eggFile.h"></File>
  5185. <File RelativePath="..\pandatool\src\palettizer\texturePlacement.h"></File>
  5186. <File RelativePath="..\pandatool\src\palettizer\texturePosition.cxx"></File>
  5187. <File RelativePath="..\pandatool\src\palettizer\txaFile.cxx"></File>
  5188. <File RelativePath="..\pandatool\src\palettizer\sourceTextureImage.h"></File>
  5189. <File RelativePath="..\pandatool\src\palettizer\palettizer_composite1.cxx"></File>
  5190. <File RelativePath="..\pandatool\src\palettizer\textureMemoryCounter.h"></File>
  5191. <File RelativePath="..\pandatool\src\palettizer\palettePage.cxx"></File>
  5192. <File RelativePath="..\pandatool\src\palettizer\txaFile.h"></File>
  5193. <File RelativePath="..\pandatool\src\palettizer\omitReason.h"></File>
  5194. <File RelativePath="..\pandatool\src\palettizer\txaLine.h"></File>
  5195. <File RelativePath="..\pandatool\src\palettizer\textureReference.h"></File>
  5196. <File RelativePath="..\pandatool\src\palettizer\textureProperties.h"></File>
  5197. <File RelativePath="..\pandatool\src\palettizer\imageFile.cxx"></File>
  5198. <File RelativePath="..\pandatool\src\palettizer\txaLine.cxx"></File>
  5199. <File RelativePath="..\pandatool\src\palettizer\textureProperties.cxx"></File>
  5200. <File RelativePath="..\pandatool\src\palettizer\palettePage.h"></File>
  5201. <File RelativePath="..\pandatool\src\palettizer\config_palettizer.cxx"></File>
  5202. <File RelativePath="..\pandatool\src\palettizer\textureMemoryCounter.cxx"></File>
  5203. <File RelativePath="..\pandatool\src\palettizer\filenameUnifier.cxx"></File>
  5204. <File RelativePath="..\pandatool\src\palettizer\textureImage.cxx"></File>
  5205. <File RelativePath="..\pandatool\src\palettizer\config_palettizer.h"></File>
  5206. <File RelativePath="..\pandatool\src\palettizer\paletteGroups.cxx"></File>
  5207. <File RelativePath="..\pandatool\src\palettizer\destTextureImage.cxx"></File>
  5208. <File RelativePath="..\pandatool\src\palettizer\paletteGroup.h"></File>
  5209. <File RelativePath="..\pandatool\src\palettizer\textureImage.h"></File>
  5210. <File RelativePath="..\pandatool\src\palettizer\imageFile.h"></File>
  5211. </Filter>
  5212. <Filter Name="dxf">
  5213. <File RelativePath="..\pandatool\src\dxf\dxf_composite1.cxx"></File>
  5214. <File RelativePath="..\pandatool\src\dxf\dxfLayer.h"></File>
  5215. <File RelativePath="..\pandatool\src\dxf\dxfVertex.cxx"></File>
  5216. <File RelativePath="..\pandatool\src\dxf\dxfLayerMap.cxx"></File>
  5217. <File RelativePath="..\pandatool\src\dxf\dxfFile.cxx"></File>
  5218. <File RelativePath="..\pandatool\src\dxf\dxfLayer.cxx"></File>
  5219. <File RelativePath="..\pandatool\src\dxf\dxfFile.h"></File>
  5220. <File RelativePath="..\pandatool\src\dxf\dxfLayerMap.h"></File>
  5221. <File RelativePath="..\pandatool\src\dxf\dxfVertex.h"></File>
  5222. </Filter>
  5223. <Filter Name="maxegg">
  5224. <File RelativePath="..\pandatool\src\maxegg\maxOptionsDialog.cxx"></File>
  5225. <File RelativePath="..\pandatool\src\maxegg\maxEggLoader.h"></File>
  5226. <File RelativePath="..\pandatool\src\maxegg\maxNodeDesc.h"></File>
  5227. <File RelativePath="..\pandatool\src\maxegg\maxNodeDesc.cxx"></File>
  5228. <File RelativePath="..\pandatool\src\maxegg\maxEgg.cxx"></File>
  5229. <File RelativePath="..\pandatool\src\maxegg\maxResource.h"></File>
  5230. <File RelativePath="..\pandatool\src\maxegg\maxEggLoader.cxx"></File>
  5231. <File RelativePath="..\pandatool\src\maxegg\maxEgg.h"></File>
  5232. <File RelativePath="..\pandatool\src\maxegg\maxNodeTree.cxx"></File>
  5233. <File RelativePath="..\pandatool\src\maxegg\maxOptionsDialog.h"></File>
  5234. <File RelativePath="..\pandatool\src\maxegg\maxNodeTree.h"></File>
  5235. <File RelativePath="..\pandatool\src\maxegg\maxegg_composite1.cxx"></File>
  5236. <File RelativePath="..\pandatool\src\maxegg\maxToEggConverter.h"></File>
  5237. <File RelativePath="..\pandatool\src\maxegg\maxToEggConverter.cxx"></File>
  5238. </Filter>
  5239. <Filter Name="lwo">
  5240. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockTMap.h"></File>
  5241. <File RelativePath="..\pandatool\src\lwo\iffId.I"></File>
  5242. <File RelativePath="..\pandatool\src\lwo\lwoPolygonTags.cxx"></File>
  5243. <File RelativePath="..\pandatool\src\lwo\lwoPolygons.h"></File>
  5244. <File RelativePath="..\pandatool\src\lwo\lwoVertexMap.cxx"></File>
  5245. <File RelativePath="..\pandatool\src\lwo\iffGenericChunk.h"></File>
  5246. <File RelativePath="..\pandatool\src\lwo\iffInputFile.cxx"></File>
  5247. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlock.h"></File>
  5248. <File RelativePath="..\pandatool\src\lwo\lwoHeader.I"></File>
  5249. <File RelativePath="..\pandatool\src\lwo\lwoHeader.cxx"></File>
  5250. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlock.cxx"></File>
  5251. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceColor.cxx"></File>
  5252. <File RelativePath="..\pandatool\src\lwo\lwoClip.cxx"></File>
  5253. <File RelativePath="..\pandatool\src\lwo\lwoLayer.cxx"></File>
  5254. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceSmoothingAngle.cxx"></File>
  5255. <File RelativePath="..\pandatool\src\lwo\lwoChunk.cxx"></File>
  5256. <File RelativePath="..\pandatool\src\lwo\lwoLayer.h"></File>
  5257. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceParameter.cxx"></File>
  5258. <File RelativePath="..\pandatool\src\lwo\lwoSurface.h"></File>
  5259. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockWrap.cxx"></File>
  5260. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceParameter.h"></File>
  5261. <File RelativePath="..\pandatool\src\lwo\lwoChunk.h"></File>
  5262. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockProjection.cxx"></File>
  5263. <File RelativePath="..\pandatool\src\lwo\iffId.cxx"></File>
  5264. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockImage.cxx"></File>
  5265. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockOpacity.h"></File>
  5266. <File RelativePath="..\pandatool\src\lwo\lwoSurface.cxx"></File>
  5267. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceSidedness.cxx"></File>
  5268. <File RelativePath="..\pandatool\src\lwo\lwoBoundingBox.h"></File>
  5269. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockRefObj.h"></File>
  5270. <File RelativePath="..\pandatool\src\lwo\lwoPolygons.cxx"></File>
  5271. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockRepeat.h"></File>
  5272. <File RelativePath="..\pandatool\src\lwo\lwoGroupChunk.h"></File>
  5273. <File RelativePath="..\pandatool\src\lwo\lwoClip.h"></File>
  5274. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockChannel.h"></File>
  5275. <File RelativePath="..\pandatool\src\lwo\lwoStillImage.h"></File>
  5276. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockTransform.h"></File>
  5277. <File RelativePath="..\pandatool\src\lwo\lwoGroupChunk.cxx"></File>
  5278. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockHeader.h"></File>
  5279. <File RelativePath="..\pandatool\src\lwo\lwoInputFile.cxx"></File>
  5280. <File RelativePath="..\pandatool\src\lwo\config_lwo.cxx"></File>
  5281. <File RelativePath="..\pandatool\src\lwo\test_lwo.cxx"></File>
  5282. <File RelativePath="..\pandatool\src\lwo\lwoVertexMap.h"></File>
  5283. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockProjection.h"></File>
  5284. <File RelativePath="..\pandatool\src\lwo\iffChunk.cxx"></File>
  5285. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockVMapName.h"></File>
  5286. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockChannel.cxx"></File>
  5287. <File RelativePath="..\pandatool\src\lwo\lwoPoints.h"></File>
  5288. <File RelativePath="..\pandatool\src\lwo\iffInputFile.h"></File>
  5289. <File RelativePath="..\pandatool\src\lwo\lwoDiscontinuousVertexMap.h"></File>
  5290. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockRefObj.cxx"></File>
  5291. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockAxis.cxx"></File>
  5292. <File RelativePath="..\pandatool\src\lwo\lwoTags.h"></File>
  5293. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockTransform.cxx"></File>
  5294. <File RelativePath="..\pandatool\src\lwo\lwoBoundingBox.cxx"></File>
  5295. <File RelativePath="..\pandatool\src\lwo\lwoPoints.cxx"></File>
  5296. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceSmoothingAngle.h"></File>
  5297. <File RelativePath="..\pandatool\src\lwo\lwoStillImage.cxx"></File>
  5298. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceSidedness.h"></File>
  5299. <File RelativePath="..\pandatool\src\lwo\lwo_composite1.cxx"></File>
  5300. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockVMapName.cxx"></File>
  5301. <File RelativePath="..\pandatool\src\lwo\lwoInputFile.h"></File>
  5302. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockTMap.cxx"></File>
  5303. <File RelativePath="..\pandatool\src\lwo\lwoInputFile.I"></File>
  5304. <File RelativePath="..\pandatool\src\lwo\lwoTags.cxx"></File>
  5305. <File RelativePath="..\pandatool\src\lwo\iffGenericChunk.cxx"></File>
  5306. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockEnabled.h"></File>
  5307. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockRepeat.cxx"></File>
  5308. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockCoordSys.h"></File>
  5309. <File RelativePath="..\pandatool\src\lwo\config_lwo.h"></File>
  5310. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockEnabled.cxx"></File>
  5311. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockAxis.h"></File>
  5312. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockHeader.cxx"></File>
  5313. <File RelativePath="..\pandatool\src\lwo\iffChunk.h"></File>
  5314. <File RelativePath="..\pandatool\src\lwo\lwoHeader.h"></File>
  5315. <File RelativePath="..\pandatool\src\lwo\lwoDiscontinuousVertexMap.cxx"></File>
  5316. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockOpacity.cxx"></File>
  5317. <File RelativePath="..\pandatool\src\lwo\iffId.h"></File>
  5318. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceColor.h"></File>
  5319. <File RelativePath="..\pandatool\src\lwo\lwoPolygonTags.h"></File>
  5320. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockWrap.h"></File>
  5321. <File RelativePath="..\pandatool\src\lwo\iffInputFile.I"></File>
  5322. <File RelativePath="..\pandatool\src\lwo\iffGenericChunk.I"></File>
  5323. <File RelativePath="..\pandatool\src\lwo\iffChunk.I"></File>
  5324. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockImage.h"></File>
  5325. <File RelativePath="..\pandatool\src\lwo\lwoSurfaceBlockCoordSys.cxx"></File>
  5326. </Filter>
  5327. <Filter Name="softegg">
  5328. <File RelativePath="..\pandatool\src\softegg\soft2Egg.c"></File>
  5329. <File RelativePath="..\pandatool\src\softegg\softNodeTree.cxx"></File>
  5330. <File RelativePath="..\pandatool\src\softegg\softNodeDesc.h"></File>
  5331. <File RelativePath="..\pandatool\src\softegg\softEggGroupUserData.cxx"></File>
  5332. <File RelativePath="..\pandatool\src\softegg\softEggGroupUserData.I"></File>
  5333. <File RelativePath="..\pandatool\src\softegg\config_softegg.cxx"></File>
  5334. <File RelativePath="..\pandatool\src\softegg\softToEggConverter.cxx"></File>
  5335. <File RelativePath="..\pandatool\src\softegg\softNodeTree.h"></File>
  5336. <File RelativePath="..\pandatool\src\softegg\config_softegg.h"></File>
  5337. <File RelativePath="..\pandatool\src\softegg\softNodeDesc.cxx"></File>
  5338. <File RelativePath="..\pandatool\src\softegg\softToEggConverter.h"></File>
  5339. <File RelativePath="..\pandatool\src\softegg\softEggGroupUserData.h"></File>
  5340. </Filter>
  5341. <Filter Name="xfileprogs">
  5342. <File RelativePath="..\pandatool\src\xfileprogs\eggToX.cxx"></File>
  5343. <File RelativePath="..\pandatool\src\xfileprogs\xFileTrans.cxx"></File>
  5344. <File RelativePath="..\pandatool\src\xfileprogs\xFileToEgg.cxx"></File>
  5345. <File RelativePath="..\pandatool\src\xfileprogs\xFileTrans.h"></File>
  5346. <File RelativePath="..\pandatool\src\xfileprogs\eggToX.h"></File>
  5347. <File RelativePath="..\pandatool\src\xfileprogs\xFileToEgg.h"></File>
  5348. </Filter>
  5349. </Filter>
  5350. <Filter Name="direct">
  5351. <Filter Name="directbase">
  5352. <File RelativePath="..\direct\src\directbase\ppython.cxx"></File>
  5353. <File RelativePath="..\direct\src\directbase\directbase.cxx"></File>
  5354. <File RelativePath="..\direct\src\directbase\directsymbols.h"></File>
  5355. <File RelativePath="..\direct\src\directbase\directbase.h"></File>
  5356. </Filter>
  5357. <Filter Name="dcparse">
  5358. <File RelativePath="..\direct\src\dcparse\dcparse.cxx"></File>
  5359. </Filter>
  5360. <Filter Name="interval">
  5361. <File RelativePath="..\direct\src\interval\cConstrainPosHprInterval.h"></File>
  5362. <File RelativePath="..\direct\src\interval\cConstraintInterval.I"></File>
  5363. <File RelativePath="..\direct\src\interval\cLerpAnimEffectInterval.h"></File>
  5364. <File RelativePath="..\direct\src\interval\cConstrainHprInterval.I"></File>
  5365. <File RelativePath="..\direct\src\interval\cConstrainTransformInterval.cxx"></File>
  5366. <File RelativePath="..\direct\src\interval\cMetaInterval.cxx"></File>
  5367. <File RelativePath="..\direct\src\interval\cIntervalManager.h"></File>
  5368. <File RelativePath="..\direct\src\interval\showInterval.h"></File>
  5369. <File RelativePath="..\direct\src\interval\config_interval.h"></File>
  5370. <File RelativePath="..\direct\src\interval\cLerpNodePathInterval.h"></File>
  5371. <File RelativePath="..\direct\src\interval\cLerpAnimEffectInterval.cxx"></File>
  5372. <File RelativePath="..\direct\src\interval\cLerpAnimEffectInterval.I"></File>
  5373. <File RelativePath="..\direct\src\interval\cMetaInterval.I"></File>
  5374. <File RelativePath="..\direct\src\interval\cConstrainTransformInterval.I"></File>
  5375. <File RelativePath="..\direct\src\interval\hideInterval.cxx"></File>
  5376. <File RelativePath="..\direct\src\interval\cInterval.h"></File>
  5377. <File RelativePath="..\direct\src\interval\hideInterval.I"></File>
  5378. <File RelativePath="..\direct\src\interval\interval_composite1.cxx"></File>
  5379. <File RelativePath="..\direct\src\interval\cIntervalManager.cxx"></File>
  5380. <File RelativePath="..\direct\src\interval\showInterval.I"></File>
  5381. <File RelativePath="..\direct\src\interval\cMetaInterval.h"></File>
  5382. <File RelativePath="..\direct\src\interval\cLerpInterval.cxx"></File>
  5383. <File RelativePath="..\direct\src\interval\cConstrainTransformInterval.h"></File>
  5384. <File RelativePath="..\direct\src\interval\cConstrainPosInterval.h"></File>
  5385. <File RelativePath="..\direct\src\interval\cLerpInterval.I"></File>
  5386. <File RelativePath="..\direct\src\interval\cIntervalManager.I"></File>
  5387. <File RelativePath="..\direct\src\interval\cConstrainPosHprInterval.cxx"></File>
  5388. <File RelativePath="..\direct\src\interval\cConstraintInterval.cxx"></File>
  5389. <File RelativePath="..\direct\src\interval\showInterval.cxx"></File>
  5390. <File RelativePath="..\direct\src\interval\cLerpInterval.h"></File>
  5391. <File RelativePath="..\direct\src\interval\interval_composite.cxx"></File>
  5392. <File RelativePath="..\direct\src\interval\hideInterval.h"></File>
  5393. <File RelativePath="..\direct\src\interval\cConstrainPosHprInterval.I"></File>
  5394. <File RelativePath="..\direct\src\interval\lerp_helpers.h"></File>
  5395. <File RelativePath="..\direct\src\interval\config_interval.cxx"></File>
  5396. <File RelativePath="..\direct\src\interval\cConstrainPosInterval.I"></File>
  5397. <File RelativePath="..\direct\src\interval\cInterval.I"></File>
  5398. <File RelativePath="..\direct\src\interval\cConstrainPosInterval.cxx"></File>
  5399. <File RelativePath="..\direct\src\interval\cConstraintInterval.h"></File>
  5400. <File RelativePath="..\direct\src\interval\cInterval.cxx"></File>
  5401. <File RelativePath="..\direct\src\interval\waitInterval.cxx"></File>
  5402. <File RelativePath="..\direct\src\interval\waitInterval.h"></File>
  5403. <File RelativePath="..\direct\src\interval\cConstrainHprInterval.h"></File>
  5404. <File RelativePath="..\direct\src\interval\cConstrainHprInterval.cxx"></File>
  5405. <File RelativePath="..\direct\src\interval\cLerpNodePathInterval.cxx"></File>
  5406. <File RelativePath="..\direct\src\interval\waitInterval.I"></File>
  5407. <File RelativePath="..\direct\src\interval\cLerpNodePathInterval.I"></File>
  5408. </Filter>
  5409. <Filter Name="showbase">
  5410. <File RelativePath="..\direct\src\showbase\extend_frozen.c"></File>
  5411. <File RelativePath="..\direct\src\showbase\showBase.cxx"></File>
  5412. <File RelativePath="..\direct\src\showbase\showBase.h"></File>
  5413. </Filter>
  5414. <Filter Name="autorestart">
  5415. <File RelativePath="..\direct\src\autorestart\autorestart.c"></File>
  5416. </Filter>
  5417. <Filter Name="plugin_npapi">
  5418. <File RelativePath="..\direct\src\plugin_npapi\ppDownloadRequest.cxx"></File>
  5419. <File RelativePath="..\direct\src\plugin_npapi\ppInstance.h"></File>
  5420. <File RelativePath="..\direct\src\plugin_npapi\ppInstance.I"></File>
  5421. <File RelativePath="..\direct\src\plugin_npapi\ppToplevelObject.I"></File>
  5422. <File RelativePath="..\direct\src\plugin_npapi\startup.cxx"></File>
  5423. <File RelativePath="..\direct\src\plugin_npapi\ppBrowserObject.cxx"></File>
  5424. <File RelativePath="..\direct\src\plugin_npapi\ppPandaObject.cxx"></File>
  5425. <File RelativePath="..\direct\src\plugin_npapi\ppToplevelObject.cxx"></File>
  5426. <File RelativePath="..\direct\src\plugin_npapi\ppPandaObject.h"></File>
  5427. <File RelativePath="..\direct\src\plugin_npapi\ppPandaObject.I"></File>
  5428. <File RelativePath="..\direct\src\plugin_npapi\ppBrowserObject.I"></File>
  5429. <File RelativePath="..\direct\src\plugin_npapi\ppInstance.cxx"></File>
  5430. <File RelativePath="..\direct\src\plugin_npapi\ppBrowserObject.h"></File>
  5431. <File RelativePath="..\direct\src\plugin_npapi\ppDownloadRequest.I"></File>
  5432. <File RelativePath="..\direct\src\plugin_npapi\ppToplevelObject.h"></File>
  5433. <File RelativePath="..\direct\src\plugin_npapi\ppDownloadRequest.h"></File>
  5434. <File RelativePath="..\direct\src\plugin_npapi\startup.h"></File>
  5435. <File RelativePath="..\direct\src\plugin_npapi\nppanda3d_composite1.cxx"></File>
  5436. <File RelativePath="..\direct\src\plugin_npapi\nppanda3d_common.h"></File>
  5437. </Filter>
  5438. <Filter Name="dcparser">
  5439. <File RelativePath="..\direct\src\dcparser\dcFile.h"></File>
  5440. <File RelativePath="..\direct\src\dcparser\dcArrayParameter.h"></File>
  5441. <File RelativePath="..\direct\src\dcparser\primeNumberGenerator.h"></File>
  5442. <File RelativePath="..\direct\src\dcparser\dcPackerCatalog.h"></File>
  5443. <File RelativePath="..\direct\src\dcparser\dcMolecularField.h"></File>
  5444. <File RelativePath="..\direct\src\dcparser\dcParser.cxx"></File>
  5445. <File RelativePath="..\direct\src\dcparser\dcLexerDefs.h"></File>
  5446. <File RelativePath="..\direct\src\dcparser\dcClass.I"></File>
  5447. <File RelativePath="..\direct\src\dcparser\dcKeyword.h"></File>
  5448. <File RelativePath="..\direct\src\dcparser\dcTypedef.cxx"></File>
  5449. <File RelativePath="..\direct\src\dcparser\dcPackData.cxx"></File>
  5450. <File RelativePath="..\direct\src\dcparser\dcPacker.cxx"></File>
  5451. <File RelativePath="..\direct\src\dcparser\dcKeyword.cxx"></File>
  5452. <File RelativePath="..\direct\src\dcparser\dcKeywordList.cxx"></File>
  5453. <File RelativePath="..\direct\src\dcparser\dcSwitchParameter.h"></File>
  5454. <File RelativePath="..\direct\src\dcparser\dcSubatomicType.cxx"></File>
  5455. <File RelativePath="..\direct\src\dcparser\dcFile.cxx"></File>
  5456. <File RelativePath="..\direct\src\dcparser\dcArrayParameter.cxx"></File>
  5457. <File RelativePath="..\direct\src\dcparser\dcPacker.h"></File>
  5458. <File RelativePath="..\direct\src\dcparser\dcindent.cxx"></File>
  5459. <File RelativePath="..\direct\src\dcparser\dcClass.h"></File>
  5460. <File RelativePath="..\direct\src\dcparser\dcParserDefs.h"></File>
  5461. <File RelativePath="..\direct\src\dcparser\dcClass.cxx"></File>
  5462. <File RelativePath="..\direct\src\dcparser\dcindent.h"></File>
  5463. <File RelativePath="..\direct\src\dcparser\dcPacker.I"></File>
  5464. <File RelativePath="..\direct\src\dcparser\dcSwitch.h"></File>
  5465. <File RelativePath="..\direct\src\dcparser\dcLexer.cxx"></File>
  5466. <File RelativePath="..\direct\src\dcparser\dcParser.h"></File>
  5467. <File RelativePath="..\direct\src\dcparser\dcparser_composite1.cxx"></File>
  5468. <File RelativePath="..\direct\src\dcparser\dcParameter.h"></File>
  5469. <File RelativePath="..\direct\src\dcparser\hashGenerator.cxx"></File>
  5470. <File RelativePath="..\direct\src\dcparser\dcParameter.cxx"></File>
  5471. <File RelativePath="..\direct\src\dcparser\dcbase.h"></File>
  5472. <File RelativePath="..\direct\src\dcparser\dcparser_composite.cxx"></File>
  5473. <File RelativePath="..\direct\src\dcparser\dcNumericRange.h"></File>
  5474. <File RelativePath="..\direct\src\dcparser\primeNumberGenerator.cxx"></File>
  5475. <File RelativePath="..\direct\src\dcparser\dcPackerCatalog.cxx"></File>
  5476. <File RelativePath="..\direct\src\dcparser\dcPackerInterface.I"></File>
  5477. <File RelativePath="..\direct\src\dcparser\dcSwitchParameter.cxx"></File>
  5478. <File RelativePath="..\direct\src\dcparser\dcparser_composite2.cxx"></File>
  5479. <File RelativePath="..\direct\src\dcparser\dcDeclaration.cxx"></File>
  5480. <File RelativePath="..\direct\src\dcparser\dcPackerInterface.cxx"></File>
  5481. <File RelativePath="..\direct\src\dcparser\dcTypedef.h"></File>
  5482. <File RelativePath="..\direct\src\dcparser\dcClassParameter.h"></File>
  5483. <File RelativePath="..\direct\src\dcparser\dcField.I"></File>
  5484. <File RelativePath="..\direct\src\dcparser\dcPackerCatalog.I"></File>
  5485. <File RelativePath="..\direct\src\dcparser\dcAtomicField.I"></File>
  5486. <File RelativePath="..\direct\src\dcparser\dcAtomicField.cxx"></File>
  5487. <File RelativePath="..\direct\src\dcparser\dcKeywordList.h"></File>
  5488. <File RelativePath="..\direct\src\dcparser\dcmsgtypes.h"></File>
  5489. <File RelativePath="..\direct\src\dcparser\dcPython.h"></File>
  5490. <File RelativePath="..\direct\src\dcparser\dcPackData.I"></File>
  5491. <File RelativePath="..\direct\src\dcparser\dcSwitch.cxx"></File>
  5492. <File RelativePath="..\direct\src\dcparser\dcAtomicField.h"></File>
  5493. <File RelativePath="..\direct\src\dcparser\dcClassParameter.cxx"></File>
  5494. <File RelativePath="..\direct\src\dcparser\dcMolecularField.cxx"></File>
  5495. <File RelativePath="..\direct\src\dcparser\dcSimpleParameter.cxx"></File>
  5496. <File RelativePath="..\direct\src\dcparser\dcNumericRange.I"></File>
  5497. <File RelativePath="..\direct\src\dcparser\dcSimpleParameter.h"></File>
  5498. <File RelativePath="..\direct\src\dcparser\hashGenerator.h"></File>
  5499. <File RelativePath="..\direct\src\dcparser\dcFile.I"></File>
  5500. <File RelativePath="..\direct\src\dcparser\dcField.h"></File>
  5501. <File RelativePath="..\direct\src\dcparser\dcPackerInterface.h"></File>
  5502. <File RelativePath="..\direct\src\dcparser\dcField.cxx"></File>
  5503. <File RelativePath="..\direct\src\dcparser\dcPackData.h"></File>
  5504. <File RelativePath="..\direct\src\dcparser\dcSubatomicType.h"></File>
  5505. <File RelativePath="..\direct\src\dcparser\dcDeclaration.h"></File>
  5506. </Filter>
  5507. <Filter Name="motiontrail">
  5508. <File RelativePath="..\direct\src\motiontrail\config_motiontrail.cxx"></File>
  5509. <File RelativePath="..\direct\src\motiontrail\cMotionTrail.cxx"></File>
  5510. <File RelativePath="..\direct\src\motiontrail\cMotionTrail.h"></File>
  5511. <File RelativePath="..\direct\src\motiontrail\config_motiontrail.h"></File>
  5512. </Filter>
  5513. <Filter Name="heapq">
  5514. <File RelativePath="..\direct\src\heapq\heapq.cxx"></File>
  5515. </Filter>
  5516. <Filter Name="plugin">
  5517. <File RelativePath="..\direct\src\plugin\p3dHost.cxx"></File>
  5518. <File RelativePath="..\direct\src\plugin\is_pathsep.I"></File>
  5519. <File RelativePath="..\direct\src\plugin\p3dMainObject.h"></File>
  5520. <File RelativePath="..\direct\src\plugin\p3dReferenceCount.cxx"></File>
  5521. <File RelativePath="..\direct\src\plugin\p3dUndefinedObject.h"></File>
  5522. <File RelativePath="..\direct\src\plugin\load_plugin.cxx"></File>
  5523. <File RelativePath="..\direct\src\plugin\p3dReferenceCount.h"></File>
  5524. <File RelativePath="..\direct\src\plugin\p3dConcreteSequence.h"></File>
  5525. <File RelativePath="..\direct\src\plugin\p3d_lock.h"></File>
  5526. <File RelativePath="..\direct\src\plugin\fhandle.h"></File>
  5527. <File RelativePath="..\direct\src\plugin\p3dFloatObject.cxx"></File>
  5528. <File RelativePath="..\direct\src\plugin\p3dCert.h"></File>
  5529. <File RelativePath="..\direct\src\plugin\p3d_plugin_common.h"></File>
  5530. <File RelativePath="..\direct\src\plugin\p3dMultifileReader.I"></File>
  5531. <File RelativePath="..\direct\src\plugin\get_tinyxml.h"></File>
  5532. <File RelativePath="..\direct\src\plugin\p3dObject.cxx"></File>
  5533. <File RelativePath="..\direct\src\plugin\p3dX11SplashWindow.cxx"></File>
  5534. <File RelativePath="..\direct\src\plugin\binaryXml.cxx"></File>
  5535. <File RelativePath="..\direct\src\plugin\fileSpec.cxx"></File>
  5536. <File RelativePath="..\direct\src\plugin\handleStream.I"></File>
  5537. <File RelativePath="..\direct\src\plugin\p3dDownload.cxx"></File>
  5538. <File RelativePath="..\direct\src\plugin\p3dStringObject.h"></File>
  5539. <File RelativePath="..\direct\src\plugin\p3dCInstance.I"></File>
  5540. <File RelativePath="..\direct\src\plugin\p3dSplashWindow.I"></File>
  5541. <File RelativePath="..\direct\src\plugin\p3dOsxSplashWindow.cxx"></File>
  5542. <File RelativePath="..\direct\src\plugin\p3dAuthSession.h"></File>
  5543. <File RelativePath="..\direct\src\plugin\handleStreamBuf.I"></File>
  5544. <File RelativePath="..\direct\src\plugin\p3dBoolObject.cxx"></File>
  5545. <File RelativePath="..\direct\src\plugin\run_p3dpython.h"></File>
  5546. <File RelativePath="..\direct\src\plugin\plugin_common_composite1.cxx"></File>
  5547. <File RelativePath="..\direct\src\plugin\p3dTemporaryFile.cxx"></File>
  5548. <File RelativePath="..\direct\src\plugin\p3dReferenceCount.I"></File>
  5549. <File RelativePath="..\direct\src\plugin\fileSpec.h"></File>
  5550. <File RelativePath="..\direct\src\plugin\p3dFileDownload.h"></File>
  5551. <File RelativePath="..\direct\src\plugin\p3dPackage.cxx"></File>
  5552. <File RelativePath="..\direct\src\plugin\p3dCInstance.h"></File>
  5553. <File RelativePath="..\direct\src\plugin\mkdir_complete.cxx"></File>
  5554. <File RelativePath="..\direct\src\plugin\p3dWinSplashWindow.I"></File>
  5555. <File RelativePath="..\direct\src\plugin\handleStreamBuf.cxx"></File>
  5556. <File RelativePath="..\direct\src\plugin\p3dPatchfileReader.cxx"></File>
  5557. <File RelativePath="..\direct\src\plugin\p3dWindowParams.h"></File>
  5558. <File RelativePath="..\direct\src\plugin\p3dConcreteStruct.cxx"></File>
  5559. <File RelativePath="..\direct\src\plugin\p3dNoneObject.h"></File>
  5560. <File RelativePath="..\direct\src\plugin\p3d_plugin.h"></File>
  5561. <File RelativePath="..\direct\src\plugin\p3dCInstance.cxx"></File>
  5562. <File RelativePath="..\direct\src\plugin\fileSpec.I"></File>
  5563. <File RelativePath="..\direct\src\plugin\p3dFileDownload.I"></File>
  5564. <File RelativePath="..\direct\src\plugin\p3dHost.h"></File>
  5565. <File RelativePath="..\direct\src\plugin\p3dConditionVar.cxx"></File>
  5566. <File RelativePath="..\direct\src\plugin\p3dPatchFinder.I"></File>
  5567. <File RelativePath="..\direct\src\plugin\p3dIntObject.h"></File>
  5568. <File RelativePath="..\direct\src\plugin\p3dMainObject.cxx"></File>
  5569. <File RelativePath="..\direct\src\plugin\p3dPythonMain.cxx"></File>
  5570. <File RelativePath="..\direct\src\plugin\load_plugin.h"></File>
  5571. <File RelativePath="..\direct\src\plugin\p3dFileParams.I"></File>
  5572. <File RelativePath="..\direct\src\plugin\p3dSession.h"></File>
  5573. <File RelativePath="..\direct\src\plugin\p3dIntObject.cxx"></File>
  5574. <File RelativePath="..\direct\src\plugin\p3dAuthSession.I"></File>
  5575. <File RelativePath="..\direct\src\plugin\p3dAuthSession.cxx"></File>
  5576. <File RelativePath="..\direct\src\plugin\p3dSession.I"></File>
  5577. <File RelativePath="..\direct\src\plugin\p3dPythonObject.h"></File>
  5578. <File RelativePath="..\direct\src\plugin\p3dWindowParams.I"></File>
  5579. <File RelativePath="..\direct\src\plugin\p3dInstance.I"></File>
  5580. <File RelativePath="..\direct\src\plugin\handleStream.cxx"></File>
  5581. <File RelativePath="..\direct\src\plugin\p3d_plugin.cxx"></File>
  5582. <File RelativePath="..\direct\src\plugin\p3dPatchFinder.cxx"></File>
  5583. <File RelativePath="..\direct\src\plugin\p3dMultifileReader.cxx"></File>
  5584. <File RelativePath="..\direct\src\plugin\p3dMultifileReader.h"></File>
  5585. <File RelativePath="..\direct\src\plugin\binaryXml.h"></File>
  5586. <File RelativePath="..\direct\src\plugin\p3dStringObject.cxx"></File>
  5587. <File RelativePath="..\direct\src\plugin\p3dPackage.h"></File>
  5588. <File RelativePath="..\direct\src\plugin\p3d_plugin_composite1.cxx"></File>
  5589. <File RelativePath="..\direct\src\plugin\p3dWindowParams.cxx"></File>
  5590. <File RelativePath="..\direct\src\plugin\p3dFileDownload.cxx"></File>
  5591. <File RelativePath="..\direct\src\plugin\p3dConcreteSequence.cxx"></File>
  5592. <File RelativePath="..\direct\src\plugin\is_pathsep.h"></File>
  5593. <File RelativePath="..\direct\src\plugin\p3dTemporaryFile.I"></File>
  5594. <File RelativePath="..\direct\src\plugin\p3dOsxSplashWindow.h"></File>
  5595. <File RelativePath="..\direct\src\plugin\p3dPatchfileReader.I"></File>
  5596. <File RelativePath="..\direct\src\plugin\p3dPythonRun.h"></File>
  5597. <File RelativePath="..\direct\src\plugin\p3dSplashWindow.h"></File>
  5598. <File RelativePath="..\direct\src\plugin\p3dX11SplashWindow.I"></File>
  5599. <File RelativePath="..\direct\src\plugin\p3dInstanceManager.h"></File>
  5600. <File RelativePath="..\direct\src\plugin\p3dSession.cxx"></File>
  5601. <File RelativePath="..\direct\src\plugin\p3dBoolObject.h"></File>
  5602. <File RelativePath="..\direct\src\plugin\p3dPythonRun.cxx"></File>
  5603. <File RelativePath="..\direct\src\plugin\p3dConcreteStruct.h"></File>
  5604. <File RelativePath="..\direct\src\plugin\mkdir_complete.h"></File>
  5605. <File RelativePath="..\direct\src\plugin\handleStream.h"></File>
  5606. <File RelativePath="..\direct\src\plugin\p3dDownload.I"></File>
  5607. <File RelativePath="..\direct\src\plugin\p3dObject.h"></File>
  5608. <File RelativePath="..\direct\src\plugin\p3dPatchfileReader.h"></File>
  5609. <File RelativePath="..\direct\src\plugin\p3dFloatObject.h"></File>
  5610. <File RelativePath="..\direct\src\plugin\p3dPatchFinder.h"></File>
  5611. <File RelativePath="..\direct\src\plugin\p3dFileParams.h"></File>
  5612. <File RelativePath="..\direct\src\plugin\p3dNoneObject.cxx"></File>
  5613. <File RelativePath="..\direct\src\plugin\p3dpython_composite1.cxx"></File>
  5614. <File RelativePath="..\direct\src\plugin\p3dWinSplashWindow.h"></File>
  5615. <File RelativePath="..\direct\src\plugin\p3dTemporaryFile.h"></File>
  5616. <File RelativePath="..\direct\src\plugin\p3dUndefinedObject.cxx"></File>
  5617. <File RelativePath="..\direct\src\plugin\run_p3dpython.cxx"></File>
  5618. <File RelativePath="..\direct\src\plugin\p3dCert.cxx"></File>
  5619. <File RelativePath="..\direct\src\plugin\find_root_dir.h"></File>
  5620. <File RelativePath="..\direct\src\plugin\p3dInstance.cxx"></File>
  5621. <File RelativePath="..\direct\src\plugin\find_root_dir.cxx"></File>
  5622. <File RelativePath="..\direct\src\plugin\p3dX11SplashWindow.h"></File>
  5623. <File RelativePath="..\direct\src\plugin\p3dPythonObject.cxx"></File>
  5624. <File RelativePath="..\direct\src\plugin\p3dPythonRun.I"></File>
  5625. <File RelativePath="..\direct\src\plugin\p3dPackage.I"></File>
  5626. <File RelativePath="..\direct\src\plugin\p3dHost.I"></File>
  5627. <File RelativePath="..\direct\src\plugin\p3dConditionVar.I"></File>
  5628. <File RelativePath="..\direct\src\plugin\p3dInstance.h"></File>
  5629. <File RelativePath="..\direct\src\plugin\p3dInstanceManager.I"></File>
  5630. <File RelativePath="..\direct\src\plugin\p3dSplashWindow.cxx"></File>
  5631. <File RelativePath="..\direct\src\plugin\p3dObject.I"></File>
  5632. <File RelativePath="..\direct\src\plugin\p3dDownload.h"></File>
  5633. <File RelativePath="..\direct\src\plugin\p3dFileParams.cxx"></File>
  5634. <File RelativePath="..\direct\src\plugin\p3dInstanceManager.cxx"></File>
  5635. <File RelativePath="..\direct\src\plugin\p3dConditionVar.h"></File>
  5636. <File RelativePath="..\direct\src\plugin\handleStreamBuf.h"></File>
  5637. <File RelativePath="..\direct\src\plugin\p3dOsxSplashWindow.I"></File>
  5638. <File RelativePath="..\direct\src\plugin\p3dWinSplashWindow.cxx"></File>
  5639. </Filter>
  5640. <Filter Name="p3d">
  5641. <File RelativePath="..\direct\src\p3d\p3dWrapper.c"></File>
  5642. </Filter>
  5643. <Filter Name="directdServer">
  5644. <File RelativePath="..\direct\src\directdServer\directdClient.cxx"></File>
  5645. <File RelativePath="..\direct\src\directdServer\directdServer.h"></File>
  5646. <File RelativePath="..\direct\src\directdServer\directdClient.h"></File>
  5647. <File RelativePath="..\direct\src\directdServer\directdServer.cxx"></File>
  5648. </Filter>
  5649. <Filter Name="directd">
  5650. <File RelativePath="..\direct\src\directd\directd.cxx"></File>
  5651. <File RelativePath="..\direct\src\directd\directd.h"></File>
  5652. </Filter>
  5653. <Filter Name="plugin_activex">
  5654. <File RelativePath="..\direct\src\plugin_activex\stdafx.cpp"></File>
  5655. <File RelativePath="..\direct\src\plugin_activex\PPPandaObject.h"></File>
  5656. <File RelativePath="..\direct\src\plugin_activex\PPLogger.cpp"></File>
  5657. <File RelativePath="..\direct\src\plugin_activex\P3DActiveXCtrl.h"></File>
  5658. <File RelativePath="..\direct\src\plugin_activex\PPInstance.cpp"></File>
  5659. <File RelativePath="..\direct\src\plugin_activex\PPDownloadCallback.cpp"></File>
  5660. <File RelativePath="..\direct\src\plugin_activex\PPInstance.h"></File>
  5661. <File RelativePath="..\direct\src\plugin_activex\P3DActiveXPropPage.h"></File>
  5662. <File RelativePath="..\direct\src\plugin_activex\PPInterface.cpp"></File>
  5663. <File RelativePath="..\direct\src\plugin_activex\stdafx.h"></File>
  5664. <File RelativePath="..\direct\src\plugin_activex\P3DActiveX.cpp"></File>
  5665. <File RelativePath="..\direct\src\plugin_activex\P3DActiveX.h"></File>
  5666. <File RelativePath="..\direct\src\plugin_activex\PPLogger.h"></File>
  5667. <File RelativePath="..\direct\src\plugin_activex\PPDownloadRequest.h"></File>
  5668. <File RelativePath="..\direct\src\plugin_activex\PPDownloadRequest.cpp"></File>
  5669. <File RelativePath="..\direct\src\plugin_activex\PPBrowserObject.h"></File>
  5670. <File RelativePath="..\direct\src\plugin_activex\resource.h"></File>
  5671. <File RelativePath="..\direct\src\plugin_activex\P3DActiveXPropPage.cpp"></File>
  5672. <File RelativePath="..\direct\src\plugin_activex\PPDownloadCallback.h"></File>
  5673. <File RelativePath="..\direct\src\plugin_activex\PPInterface.h"></File>
  5674. <File RelativePath="..\direct\src\plugin_activex\PPPandaObject.cpp"></File>
  5675. <File RelativePath="..\direct\src\plugin_activex\P3DActiveXCtrl.cpp"></File>
  5676. <File RelativePath="..\direct\src\plugin_activex\PPBrowserObject.cpp"></File>
  5677. <File RelativePath="..\direct\src\plugin_activex\p3dactivex_composite1.cxx"></File>
  5678. </Filter>
  5679. <Filter Name="dxml">
  5680. <File RelativePath="..\direct\src\dxml\config_dxml.cxx"></File>
  5681. <File RelativePath="..\direct\src\dxml\config_dxml.h"></File>
  5682. </Filter>
  5683. <Filter Name="distributed">
  5684. <File RelativePath="..\direct\src\distributed\cDistributedSmoothNodeBase.cxx"></File>
  5685. <File RelativePath="..\direct\src\distributed\cConnectionRepository.cxx"></File>
  5686. <File RelativePath="..\direct\src\distributed\config_distributed.cxx"></File>
  5687. <File RelativePath="..\direct\src\distributed\cDistributedSmoothNodeBase.h"></File>
  5688. <File RelativePath="..\direct\src\distributed\cConnectionRepository.I"></File>
  5689. <File RelativePath="..\direct\src\distributed\cConnectionRepository.h"></File>
  5690. <File RelativePath="..\direct\src\distributed\cDistributedSmoothNodeBase.I"></File>
  5691. <File RelativePath="..\direct\src\distributed\config_distributed.h"></File>
  5692. </Filter>
  5693. <Filter Name="deadrec">
  5694. <File RelativePath="..\direct\src\deadrec\config_deadrec.h"></File>
  5695. <File RelativePath="..\direct\src\deadrec\deadrec_composite.cxx"></File>
  5696. <File RelativePath="..\direct\src\deadrec\config_deadrec.cxx"></File>
  5697. <File RelativePath="..\direct\src\deadrec\smoothMover.I"></File>
  5698. <File RelativePath="..\direct\src\deadrec\smoothMover.cxx"></File>
  5699. <File RelativePath="..\direct\src\deadrec\deadrec_composite1.cxx"></File>
  5700. <File RelativePath="..\direct\src\deadrec\smoothMover.h"></File>
  5701. </Filter>
  5702. <Filter Name="plugin_standalone">
  5703. <File RelativePath="..\direct\src\plugin_standalone\panda3dMac.cxx"></File>
  5704. <File RelativePath="..\direct\src\plugin_standalone\panda3dMain.cxx"></File>
  5705. <File RelativePath="..\direct\src\plugin_standalone\panda3dBase.cxx"></File>
  5706. <File RelativePath="..\direct\src\plugin_standalone\panda3dWinMain.cxx"></File>
  5707. <File RelativePath="..\direct\src\plugin_standalone\panda3dMac.h"></File>
  5708. <File RelativePath="..\direct\src\plugin_standalone\panda3d.h"></File>
  5709. <File RelativePath="..\direct\src\plugin_standalone\panda3dBase.h"></File>
  5710. <File RelativePath="..\direct\src\plugin_standalone\panda3dBase.I"></File>
  5711. <File RelativePath="..\direct\src\plugin_standalone\p3dEmbedMain.cxx"></File>
  5712. <File RelativePath="..\direct\src\plugin_standalone\p3dEmbed.cxx"></File>
  5713. <File RelativePath="..\direct\src\plugin_standalone\panda3dMac.I"></File>
  5714. <File RelativePath="..\direct\src\plugin_standalone\panda3d.cxx"></File>
  5715. <File RelativePath="..\direct\src\plugin_standalone\panda3d.I"></File>
  5716. <File RelativePath="..\direct\src\plugin_standalone\p3dEmbed.h"></File>
  5717. </Filter>
  5718. </Filter>
  5719. <Filter Name="contrib">
  5720. <Filter Name="ai">
  5721. <File RelativePath="..\contrib\src\ai\aiNode.h"></File>
  5722. <File RelativePath="..\contrib\src\ai\aiCharacter.cxx"></File>
  5723. <File RelativePath="..\contrib\src\ai\flock.cxx"></File>
  5724. <File RelativePath="..\contrib\src\ai\aiBehaviors.h"></File>
  5725. <File RelativePath="..\contrib\src\ai\wander.cxx"></File>
  5726. <File RelativePath="..\contrib\src\ai\meshNode.cxx"></File>
  5727. <File RelativePath="..\contrib\src\ai\ai_composite.cxx"></File>
  5728. <File RelativePath="..\contrib\src\ai\evade.cxx"></File>
  5729. <File RelativePath="..\contrib\src\ai\wander.h"></File>
  5730. <File RelativePath="..\contrib\src\ai\seek.cxx"></File>
  5731. <File RelativePath="..\contrib\src\ai\globals.h"></File>
  5732. <File RelativePath="..\contrib\src\ai\aiPathFinder.h"></File>
  5733. <File RelativePath="..\contrib\src\ai\aiGlobals.h"></File>
  5734. <File RelativePath="..\contrib\src\ai\config_ai.cxx"></File>
  5735. <File RelativePath="..\contrib\src\ai\aiWorld.h"></File>
  5736. <File RelativePath="..\contrib\src\ai\evade.h"></File>
  5737. <File RelativePath="..\contrib\src\ai\obstacleAvoidance.h"></File>
  5738. <File RelativePath="..\contrib\src\ai\aiCharacter.h"></File>
  5739. <File RelativePath="..\contrib\src\ai\pursue.cxx"></File>
  5740. <File RelativePath="..\contrib\src\ai\pathFind.h"></File>
  5741. <File RelativePath="..\contrib\src\ai\flock.h"></File>
  5742. <File RelativePath="..\contrib\src\ai\config_ai.h"></File>
  5743. <File RelativePath="..\contrib\src\ai\obstacleAvoidance.cxx"></File>
  5744. <File RelativePath="..\contrib\src\ai\aiWorld.cxx"></File>
  5745. <File RelativePath="..\contrib\src\ai\pathFollow.h"></File>
  5746. <File RelativePath="..\contrib\src\ai\flee.h"></File>
  5747. <File RelativePath="..\contrib\src\ai\seek.h"></File>
  5748. <File RelativePath="..\contrib\src\ai\aiPathFinder.cxx"></File>
  5749. <File RelativePath="..\contrib\src\ai\ai_composite1.cxx"></File>
  5750. <File RelativePath="..\contrib\src\ai\aiNode.cxx"></File>
  5751. <File RelativePath="..\contrib\src\ai\arrival.h"></File>
  5752. <File RelativePath="..\contrib\src\ai\pathFollow.cxx"></File>
  5753. <File RelativePath="..\contrib\src\ai\pathFind.cxx"></File>
  5754. <File RelativePath="..\contrib\src\ai\pursue.h"></File>
  5755. <File RelativePath="..\contrib\src\ai\aiBehaviors.cxx"></File>
  5756. <File RelativePath="..\contrib\src\ai\arrival.cxx"></File>
  5757. <File RelativePath="..\contrib\src\ai\meshNode.h"></File>
  5758. <File RelativePath="..\contrib\src\ai\flee.cxx"></File>
  5759. </Filter>
  5760. <Filter Name="contribbase">
  5761. <File RelativePath="..\contrib\src\contribbase\contribsymbols.h"></File>
  5762. <File RelativePath="..\contrib\src\contribbase\contribbase.h"></File>
  5763. </Filter>
  5764. </Filter>
  5765. </Files>
  5766. <Globals>
  5767. </Globals>
  5768. </VisualStudioProject>