├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── authors.txt ├── bin └── win32 │ └── idlc.toolkit.exe ├── code ├── CMakeLists.txt ├── addons │ ├── CMakeLists.txt │ ├── attic │ │ ├── physics │ │ │ ├── CMakeLists.txt │ │ │ ├── amotor.cc │ │ │ ├── amotor.h │ │ │ ├── areaimpulse.cc │ │ │ ├── areaimpulse.h │ │ │ ├── balljoint.cc │ │ │ ├── balljoint.h │ │ │ ├── boxshape.cc │ │ │ ├── boxshape.h │ │ │ ├── capsuleshape.cc │ │ │ ├── capsuleshape.h │ │ │ ├── charentity.cc │ │ │ ├── charentity.h │ │ │ ├── collidecategory.h │ │ │ ├── collideshapeloader.cc │ │ │ ├── collideshapeloader.h │ │ │ ├── composite.cc │ │ │ ├── composite.h │ │ │ ├── compositeloader.cc │ │ │ ├── compositeloader.h │ │ │ ├── contactpoint.cc │ │ │ ├── contactpoint.h │ │ │ ├── explosionareaimpulse.cc │ │ │ ├── explosionareaimpulse.h │ │ │ ├── filterset.cc │ │ │ ├── filterset.h │ │ │ ├── hinge2joint.cc │ │ │ ├── hinge2joint.h │ │ │ ├── hingejoint.cc │ │ │ ├── hingejoint.h │ │ │ ├── joint.cc │ │ │ ├── joint.h │ │ │ ├── jointaxis.h │ │ │ ├── level.cc │ │ │ ├── level.h │ │ │ ├── materialtable.cc │ │ │ ├── materialtable.h │ │ │ ├── meshcache.cc │ │ │ ├── meshcache.h │ │ │ ├── meshshape.cc │ │ │ ├── meshshape.h │ │ │ ├── mousegripper.cc │ │ │ ├── mousegripper.h │ │ │ ├── physics.dox │ │ │ ├── physicsentity.cc │ │ │ ├── physicsentity.h │ │ │ ├── physicsmesh.cc │ │ │ ├── physicsmesh.h │ │ │ ├── physicsserver.cc │ │ │ ├── physicsserver.h │ │ │ ├── physicsutil.cc │ │ │ ├── physicsutil.h │ │ │ ├── probesphere.cc │ │ │ ├── probesphere.h │ │ │ ├── ray.cc │ │ │ ├── ray.h │ │ │ ├── rigidbody.cc │ │ │ ├── rigidbody.h │ │ │ ├── shape.cc │ │ │ ├── shape.h │ │ │ ├── sliderjoint.cc │ │ │ ├── sliderjoint.h │ │ │ ├── sphereshape.cc │ │ │ ├── sphereshape.h │ │ │ ├── stateentity.cc │ │ │ ├── stateentity.h │ │ │ ├── universaljoint.cc │ │ │ └── universaljoint.h │ │ └── physics_bullet │ │ │ ├── CMakeLists.txt │ │ │ ├── actorphysicsentity.cc │ │ │ ├── actorphysicsentity.h │ │ │ ├── boxshape.cc │ │ │ ├── boxshape.h │ │ │ ├── bulletnebulaconversion.h │ │ │ ├── capsuleshape.cc │ │ │ ├── capsuleshape.h │ │ │ ├── collidecategory.h │ │ │ ├── composite.cc │ │ │ ├── composite.h │ │ │ ├── contactpoint.cc │ │ │ ├── contactpoint.h │ │ │ ├── conversion.h │ │ │ ├── debugdrawer.cc │ │ │ ├── debugdrawer.h │ │ │ ├── filterset.cc │ │ │ ├── filterset.h │ │ │ ├── joint.cc │ │ │ ├── joint.h │ │ │ ├── level.cc │ │ │ ├── level.h │ │ │ ├── materialtable.cc │ │ │ ├── materialtable.h │ │ │ ├── mousegripper.cc │ │ │ ├── mousegripper.h │ │ │ ├── nebulamotionstate.h │ │ │ ├── physicsentity.cc │ │ │ ├── physicsentity.h │ │ │ ├── physicsserver.cc │ │ │ ├── physicsserver.h │ │ │ ├── rigidbody.cc │ │ │ ├── rigidbody.h │ │ │ ├── shape.cc │ │ │ ├── shape.h │ │ │ ├── sphereshape.cc │ │ │ └── sphereshape.h │ ├── attr │ │ ├── CMakeLists.txt │ │ ├── accessmode.h │ │ ├── attr.dox │ │ ├── attrexithandler.cc │ │ ├── attrexithandler.h │ │ ├── attribute.h │ │ ├── attributecontainer.cc │ │ ├── attributecontainer.h │ │ ├── attributedefinition.h │ │ ├── attributedefinitionbase.cc │ │ ├── attributedefinitionbase.h │ │ ├── attributetable.cc │ │ ├── attributetable.h │ │ ├── attrid.cc │ │ ├── attrid.h │ │ ├── blobattrid.h │ │ ├── boolattrid.h │ │ ├── float4attrid.h │ │ ├── floatattrid.h │ │ ├── guidattrid.h │ │ ├── intattrid.h │ │ ├── io │ │ │ ├── attrcontainerdbstorage.cc │ │ │ ├── attrcontainerdbstorage.h │ │ │ ├── attrcontainerstoragebase.cc │ │ │ ├── attrcontainerstoragebase.h │ │ │ ├── attrcontainerxmlstorage.cc │ │ │ └── attrcontainerxmlstorage.h │ │ ├── matrix44attrid.h │ │ ├── stringattrid.h │ │ └── valuetype.h │ ├── audio2 │ │ ├── CMakeLists.txt │ │ ├── audio2emitter.cc │ │ ├── audio2emitter.h │ │ ├── audio2interface.cc │ │ ├── audio2interface.h │ │ ├── audio2listener.cc │ │ ├── audio2listener.h │ │ ├── audio2player.cc │ │ ├── audio2player.h │ │ ├── audio2protocol.nidl │ │ ├── audio2server.cc │ │ ├── audio2server.h │ │ ├── fmodcoreaudio │ │ │ ├── fmodaudiodevice.cc │ │ │ ├── fmodaudiodevice.h │ │ │ ├── fmodaudiohandler.cc │ │ │ ├── fmodaudiohandler.h │ │ │ ├── fmodcoreaudiopagehandler.cc │ │ │ ├── fmodcoreaudiopagehandler.h │ │ │ ├── fmoderror.cc │ │ │ ├── fmoderror.h │ │ │ ├── fmodeventwrapper.cc │ │ │ ├── fmodeventwrapper.h │ │ │ ├── fmodlistener.cc │ │ │ ├── fmodlistener.h │ │ │ ├── fmodmusicpromptwrapper.cc │ │ │ └── fmodmusicpromptwrapper.h │ │ ├── fmodeventcategoryid.h │ │ ├── fmodeventhandle.h │ │ ├── fmodeventid.h │ │ ├── fmodeventparameterid.h │ │ ├── fmodeventprojectid.h │ │ ├── fmodeventstate.h │ │ └── fmodpitchunit.h │ ├── db │ │ ├── CMakeLists.txt │ │ ├── column.cc │ │ ├── column.h │ │ ├── command.cc │ │ ├── command.h │ │ ├── database.cc │ │ ├── database.h │ │ ├── dataset.cc │ │ ├── dataset.h │ │ ├── db.dox │ │ ├── dbfactory.cc │ │ ├── dbfactory.h │ │ ├── dbserver.cc │ │ ├── dbserver.h │ │ ├── filterset.cc │ │ ├── filterset.h │ │ ├── reader.cc │ │ ├── reader.h │ │ ├── relation.cc │ │ ├── relation.h │ │ ├── sqlite3 │ │ │ ├── sqlite3command.cc │ │ │ ├── sqlite3command.h │ │ │ ├── sqlite3database.cc │ │ │ ├── sqlite3database.h │ │ │ ├── sqlite3dataset.cc │ │ │ ├── sqlite3dataset.h │ │ │ ├── sqlite3factory.cc │ │ │ ├── sqlite3factory.h │ │ │ ├── sqlite3filterset.cc │ │ │ ├── sqlite3filterset.h │ │ │ ├── sqlite3table.cc │ │ │ └── sqlite3table.h │ │ ├── table.cc │ │ ├── table.h │ │ ├── valuetable.cc │ │ ├── valuetable.h │ │ ├── writer.cc │ │ └── writer.h │ ├── dynui │ │ ├── CMakeLists.txt │ │ ├── console │ │ │ ├── imguiconsole.cc │ │ │ ├── imguiconsole.h │ │ │ ├── imguiconsolehandler.cc │ │ │ └── imguiconsolehandler.h │ │ ├── imguiaddon.cc │ │ ├── imguiaddon.h │ │ ├── imguiinputhandler.cc │ │ ├── imguiinputhandler.h │ │ ├── imguirenderer.cc │ │ ├── imguirenderer.h │ │ ├── imguirtplugin.cc │ │ └── imguirtplugin.h │ ├── effects │ │ ├── CMakeLists.txt │ │ ├── animeventhandler │ │ │ ├── animeventattachmenthandler.cc │ │ │ ├── animeventattachmenthandler.h │ │ │ ├── animeventshakehandler.cc │ │ │ ├── animeventshakehandler.h │ │ │ ├── animeventsoundhandler.cc │ │ │ ├── animeventsoundhandler.h │ │ │ ├── animeventtiminghandler.cc │ │ │ ├── animeventtiminghandler.h │ │ │ ├── animeventvibrationhandler.cc │ │ │ └── animeventvibrationhandler.h │ │ ├── animeventregistry.cc │ │ ├── animeventregistry.h │ │ ├── effects │ │ │ ├── attachmenteffect.cc │ │ │ ├── attachmenteffect.h │ │ │ ├── audioeffect.cc │ │ │ ├── audioeffect.h │ │ │ ├── cameraanimationeffect.cc │ │ │ ├── cameraanimationeffect.h │ │ │ ├── camerashakeeffect.cc │ │ │ ├── camerashakeeffect.h │ │ │ ├── effect.cc │ │ │ ├── effect.h │ │ │ ├── graphicseffect.cc │ │ │ ├── graphicseffect.h │ │ │ ├── postfxeffect.cc │ │ │ ├── postfxeffect.h │ │ │ ├── vibrationeffect.cc │ │ │ └── vibrationeffect.h │ │ ├── effectsattributes.nidl │ │ ├── effectscommands.nidl │ │ ├── effectsfeatureunit.cc │ │ ├── effectsfeatureunit.h │ │ ├── mixer │ │ │ ├── camerashakemixer.cc │ │ │ ├── camerashakemixer.h │ │ │ ├── effectmixer.cc │ │ │ └── effectmixer.h │ │ └── properties │ │ │ ├── effectproperty.cc │ │ │ └── effectproperty.h │ ├── faudio │ │ ├── CMakeLists.txt │ │ ├── audiodevice.cc │ │ ├── audiodevice.h │ │ ├── audioemitterproperty.cc │ │ ├── audioemitterproperty.h │ │ ├── audiohandler.cc │ │ ├── audiohandler.h │ │ ├── audiointerface.cc │ │ ├── audiointerface.h │ │ ├── audiolistener.cc │ │ ├── audiolistener.h │ │ ├── audioprotocol.nidl │ │ ├── audioserver.cc │ │ ├── audioserver.h │ │ ├── busid.h │ │ ├── eventid.h │ │ ├── eventinstance.cc │ │ ├── eventinstance.h │ │ ├── eventparameterid.h │ │ ├── eventstate.h │ │ ├── fmoderror.cc │ │ ├── fmoderror.h │ │ ├── fmodstudiopagehandler.cc │ │ └── fmodstudiopagehandler.h │ ├── forest │ │ ├── CMakeLists.txt │ │ ├── forestprotocol.nidl │ │ ├── forestrendermodule.cc │ │ ├── forestrendermodule.h │ │ ├── rt │ │ │ ├── foresthandler.cc │ │ │ ├── foresthandler.h │ │ │ ├── forestrtplugin.cc │ │ │ ├── forestrtplugin.h │ │ │ ├── forestserver.cc │ │ │ └── forestserver.h │ │ ├── tree.cc │ │ ├── tree.h │ │ ├── treebillboardgraphicsentity.cc │ │ ├── treebillboardgraphicsentity.h │ │ ├── treebillboardrenderer.cc │ │ ├── treebillboardrenderer.h │ │ ├── treecluster.cc │ │ ├── treecluster.h │ │ ├── treeclustergraphicsentity.cc │ │ ├── treeclustergraphicsentity.h │ │ ├── treeclusterpool.cc │ │ ├── treeclusterpool.h │ │ ├── treeinstance.cc │ │ ├── treeinstance.h │ │ ├── treelod.cc │ │ └── treelod.h │ ├── framecapture │ │ ├── CMakeLists.txt │ │ ├── framecaptureprotocol.nidl │ │ ├── framecapturerendermodule.cc │ │ ├── framecapturerendermodule.h │ │ └── rt │ │ │ ├── framecapturehandler.cc │ │ │ ├── framecapturehandler.h │ │ │ ├── framecapturepagehandler.cc │ │ │ ├── framecapturepagehandler.h │ │ │ ├── framecapturertplugin.cc │ │ │ ├── framecapturertplugin.h │ │ │ ├── framecaptureserver.cc │ │ │ └── framecaptureserver.h │ ├── godrays │ │ ├── CMakeLists.txt │ │ ├── godrayprotocol.nidl │ │ ├── godrayrendermodule.cc │ │ ├── godrayrendermodule.h │ │ └── rt │ │ │ ├── godrayhandler.cc │ │ │ ├── godrayhandler.h │ │ │ ├── godrayrtplugin.cc │ │ │ ├── godrayrtplugin.h │ │ │ ├── godrayserver.cc │ │ │ └── godrayserver.h │ ├── grid │ │ ├── CMakeLists.txt │ │ ├── gridaddon.cc │ │ ├── gridaddon.h │ │ ├── gridrtplugin.cc │ │ └── gridrtplugin.h │ ├── locale │ │ ├── localeattributes.cc │ │ ├── localeattributes.h │ │ ├── localeserver.cc │ │ └── localeserver.h │ ├── minimap │ │ ├── CMakeLists.txt │ │ ├── minimap.nidl │ │ ├── minimapmanager.cc │ │ ├── minimapmanager.h │ │ ├── minimapplugin.cc │ │ ├── minimapplugin.h │ │ ├── minimapproperty.cc │ │ ├── minimapproperty.h │ │ └── rocket │ │ │ ├── elementminimap.cc │ │ │ └── elementminimap.h │ ├── multiplayer │ │ ├── CMakeLists.txt │ │ ├── bitreader.cc │ │ ├── bitreader.h │ │ ├── bitwriter.cc │ │ ├── bitwriter.h │ │ ├── lannetworkserver.cc │ │ ├── lannetworkserver.h │ │ ├── multiplayer │ │ │ ├── base │ │ │ │ ├── multiplayernotificationhandlerbase.cc │ │ │ │ └── multiplayernotificationhandlerbase.h │ │ │ ├── defaultmultiplayernotificationhandler.cc │ │ │ ├── defaultmultiplayernotificationhandler.h │ │ │ ├── multiplayermanager.cc │ │ │ ├── multiplayermanager.h │ │ │ ├── player.cc │ │ │ ├── player.h │ │ │ ├── session.cc │ │ │ └── session.h │ │ ├── multiplayerattrs.nidl │ │ ├── multiplayerfeatureunit.cc │ │ ├── multiplayerfeatureunit.h │ │ ├── natnetworkserver.cc │ │ ├── natnetworkserver.h │ │ ├── network │ │ │ ├── base │ │ │ │ ├── multiplayerserverbase.cc │ │ │ │ ├── multiplayerserverbase.h │ │ │ │ ├── packetchannelbase.h │ │ │ │ ├── packetprioritybase.h │ │ │ │ ├── parameterresolverbase.cc │ │ │ │ ├── parameterresolverbase.h │ │ │ │ ├── parametersetbase.cc │ │ │ │ ├── parametersetbase.h │ │ │ │ ├── playerbase.cc │ │ │ │ ├── playerbase.h │ │ │ │ ├── sessioninfobase.cc │ │ │ │ ├── sessioninfobase.h │ │ │ │ ├── uniqueplayeridbase.cc │ │ │ │ └── uniqueplayeridbase.h │ │ │ ├── debug │ │ │ │ ├── base │ │ │ │ │ ├── basenetworkpagehandler.cc │ │ │ │ │ └── basenetworkpagehandler.h │ │ │ │ ├── networkpagehandler.cc │ │ │ │ ├── networkpagehandler.h │ │ │ │ └── raknet │ │ │ │ │ ├── raknetnetworkpagehandler.cc │ │ │ │ │ └── raknetnetworkpagehandler.h │ │ │ ├── multiplayerserver.cc │ │ │ ├── multiplayerserver.h │ │ │ ├── multiplayertype.h │ │ │ ├── netstream.cc │ │ │ ├── netstream.h │ │ │ ├── packetchannel.h │ │ │ ├── packetid.h │ │ │ ├── packetpriority.h │ │ │ ├── player.cc │ │ │ ├── player.h │ │ │ ├── playerinfo.h │ │ │ ├── raknet │ │ │ │ ├── raknetmultiplayerserver.cc │ │ │ │ ├── raknetmultiplayerserver.h │ │ │ │ ├── raknetpacketchannel.cc │ │ │ │ ├── raknetpacketchannel.h │ │ │ │ ├── raknetpacketid.h │ │ │ │ ├── raknetpacketpriority.cc │ │ │ │ ├── raknetpacketpriority.h │ │ │ │ ├── raknetparameterresolver.cc │ │ │ │ ├── raknetparameterresolver.h │ │ │ │ ├── raknetplayer.cc │ │ │ │ ├── raknetplayer.h │ │ │ │ ├── raknetsessioninfo.cc │ │ │ │ ├── raknetsessioninfo.h │ │ │ │ ├── raknettimestamp.cc │ │ │ │ ├── raknettimestamp.h │ │ │ │ ├── raknetuniqueplayerid.cc │ │ │ │ └── raknetuniqueplayerid.h │ │ │ ├── session.cc │ │ │ ├── session.h │ │ │ ├── sessioninfo.cc │ │ │ ├── sessioninfo.h │ │ │ └── timestamp.h │ │ ├── networkentity.cc │ │ ├── networkentity.h │ │ ├── networkfactorymanager.cc │ │ ├── networkfactorymanager.h │ │ ├── networkgame.cc │ │ ├── networkgame.h │ │ ├── networkplayer.cc │ │ ├── networkplayer.h │ │ ├── networkserver.cc │ │ ├── networkserver.h │ │ ├── replicafactory.cc │ │ ├── replicafactory.h │ │ ├── replicationmanager.cc │ │ ├── replicationmanager.h │ │ ├── syncpoint.cc │ │ ├── syncpoint.h │ │ ├── uniqueplayerid.cc │ │ └── uniqueplayerid.h │ ├── navigation │ │ ├── CMakeLists.txt │ │ ├── convexareamarkerproperty.cc │ │ ├── convexareamarkerproperty.h │ │ ├── crowdmanager.cc │ │ ├── crowdmanager.h │ │ ├── debug │ │ │ ├── detourdebug.cc │ │ │ ├── detourdebug.h │ │ │ ├── navigationpagehandler.cc │ │ │ └── navigationpagehandler.h │ │ ├── navigatedproperty.cc │ │ ├── navigatedproperty.h │ │ ├── navigationattributes.nidl │ │ ├── navigationfeatureunit.cc │ │ ├── navigationfeatureunit.h │ │ ├── navigationserver.cc │ │ ├── navigationserver.h │ │ ├── navmeshloader.cc │ │ ├── navmeshloader.h │ │ ├── path3d.cc │ │ ├── path3d.h │ │ └── recast │ │ │ ├── recastutil.cc │ │ │ └── recastutil.h │ ├── nebula2 │ │ ├── CMakeLists.txt │ │ ├── bbox.cc │ │ ├── bxmlreader.cc │ │ ├── frustum.cc │ │ ├── matrix44.cc │ │ ├── string.cc │ │ ├── textwriter.cc │ │ ├── vector.cc │ │ ├── xmlreader.cc │ │ └── xmlwriter.cc │ ├── posteffect │ │ ├── CMakeLists.txt │ │ ├── posteffectentity.cc │ │ ├── posteffectentity.h │ │ ├── posteffectfeatureunit.cc │ │ ├── posteffectfeatureunit.h │ │ ├── posteffectmanager.cc │ │ ├── posteffectmanager.h │ │ ├── posteffectprotocol.nidl │ │ ├── posteffectregistry.cc │ │ ├── posteffectregistry.h │ │ ├── posteffectrendermodule.cc │ │ ├── posteffectrendermodule.h │ │ └── rt │ │ │ ├── params │ │ │ ├── aoparams.cc │ │ │ ├── aoparams.h │ │ │ ├── colorparams.cc │ │ │ ├── colorparams.h │ │ │ ├── depthoffieldparams.cc │ │ │ ├── depthoffieldparams.h │ │ │ ├── fogparams.cc │ │ │ ├── fogparams.h │ │ │ ├── generalparams.cc │ │ │ ├── generalparams.h │ │ │ ├── hdrparams.cc │ │ │ ├── hdrparams.h │ │ │ ├── lightparams.cc │ │ │ ├── lightparams.h │ │ │ ├── parambase.cc │ │ │ ├── parambase.h │ │ │ ├── skyparams.cc │ │ │ └── skyparams.h │ │ │ ├── posteffecthandler.cc │ │ │ ├── posteffecthandler.h │ │ │ ├── posteffectrtplugin.cc │ │ │ ├── posteffectrtplugin.h │ │ │ ├── posteffectserver.cc │ │ │ └── posteffectserver.h │ ├── qtfeature │ │ ├── CMakeLists.txt │ │ ├── qtfeatureunit.cc │ │ ├── qtfeatureunit.h │ │ ├── qtinputproxy.cc │ │ ├── qtinputproxy.h │ │ ├── qtnebulawidget.cc │ │ ├── qtnebulawidget.h │ │ ├── qtserver.cc │ │ └── qtserver.h │ ├── readme.txt │ ├── remote │ │ ├── CMakeLists.txt │ │ ├── defaultremoterequesthandler.cc │ │ ├── defaultremoterequesthandler.h │ │ ├── remotecommandhandler.cc │ │ ├── remotecommandhandler.h │ │ ├── remotecontrol.cc │ │ ├── remotecontrol.h │ │ ├── remotecontrolproxy.cc │ │ ├── remotecontrolproxy.h │ │ ├── remoteinterface.cc │ │ ├── remoteinterface.h │ │ ├── remotemessagehandler.cc │ │ ├── remotemessagehandler.h │ │ ├── remoteprotocol.nidl │ │ ├── remoterequest.cc │ │ ├── remoterequest.h │ │ ├── remoterequesthandler.cc │ │ ├── remoterequesthandler.h │ │ ├── remoterequestreader.cc │ │ ├── remoterequestreader.h │ │ ├── remoteresponsewriter.cc │ │ ├── remoteresponsewriter.h │ │ ├── remotestatus.cc │ │ └── remotestatus.h │ ├── scripting │ │ ├── CMakeLists.txt │ │ ├── arg.h │ │ ├── argsblock.cc │ │ ├── argsblock.h │ │ ├── command.cc │ │ ├── command.h │ │ ├── commands │ │ │ ├── iolibrary.nidl │ │ │ └── stdlibrary.nidl │ │ ├── debug │ │ │ ├── scriptingpagehandler.cc │ │ │ └── scriptingpagehandler.h │ │ ├── lua │ │ │ ├── luaserver.cc │ │ │ └── luaserver.h │ │ ├── scripting.dox │ │ ├── scriptserver.cc │ │ └── scriptserver.h │ ├── sequencer │ │ ├── CMakeLists.txt │ │ ├── animatedparameter.h │ │ ├── beziercurve.cc │ │ ├── beziercurve.h │ │ ├── beziergraph.cc │ │ ├── beziergraph.h │ │ ├── cubicequationsolver.cc │ │ ├── cubicequationsolver.h │ │ ├── sequencerfeatureunit.cc │ │ ├── sequencerfeatureunit.h │ │ ├── sequencermanager.cc │ │ ├── sequencermanager.h │ │ ├── track.cc │ │ ├── track.h │ │ ├── trackbar.cc │ │ ├── trackbar.h │ │ ├── tracksequencer.cc │ │ ├── tracksequencer.h │ │ ├── xmlattrparser.cc │ │ └── xmlattrparser.h │ ├── silhouette │ │ ├── CMakeLists.txt │ │ ├── silhouetteaddon.cc │ │ ├── silhouetteaddon.h │ │ ├── silhouettertplugin.cc │ │ └── silhouettertplugin.h │ ├── stdneb.cc │ ├── stdneb.h │ ├── ui │ │ ├── CMakeLists.txt │ │ ├── base │ │ │ ├── uielementbase.cc │ │ │ ├── uielementbase.h │ │ │ ├── uilayoutbase.cc │ │ │ ├── uilayoutbase.h │ │ │ ├── uiplugin.cc │ │ │ ├── uiplugin.h │ │ │ ├── uiserverbase.cc │ │ │ └── uiserverbase.h │ │ ├── ceui │ │ │ ├── ceuigeometrybuffer.cc │ │ │ ├── ceuigeometrybuffer.h │ │ │ ├── ceuilayout.cc │ │ │ ├── ceuilayout.h │ │ │ ├── ceuirawdatacontainer.cc │ │ │ ├── ceuirawdatacontainer.h │ │ │ ├── ceuirenderer.cc │ │ │ ├── ceuirenderer.h │ │ │ ├── ceuirendertarget.cc │ │ │ ├── ceuirendertarget.h │ │ │ ├── ceuiresourceprovider.cc │ │ │ ├── ceuiresourceprovider.h │ │ │ ├── ceuiserver.cc │ │ │ ├── ceuiserver.h │ │ │ ├── ceuitexture.cc │ │ │ ├── ceuitexture.h │ │ │ ├── ceuiviewporttarget.cc │ │ │ └── ceuiviewporttarget.h │ │ ├── rocket │ │ │ ├── rocketelement.cc │ │ │ ├── rocketelement.h │ │ │ ├── rocketeventinstancer.cc │ │ │ ├── rocketeventinstancer.h │ │ │ ├── rocketeventlistener.cc │ │ │ ├── rocketeventlistener.h │ │ │ ├── rocketeventlistenerinstancer.cc │ │ │ ├── rocketeventlistenerinstancer.h │ │ │ ├── rocketinterface.cc │ │ │ ├── rocketinterface.h │ │ │ ├── rocketlayout.cc │ │ │ ├── rocketlayout.h │ │ │ ├── rocketrenderer.cc │ │ │ ├── rocketrenderer.h │ │ │ ├── rocketserver.cc │ │ │ └── rocketserver.h │ │ ├── uiattrs │ │ │ └── uiattributes.nidl │ │ ├── uicommands.nidl │ │ ├── uielement.cc │ │ ├── uielement.h │ │ ├── uielementgroup.cc │ │ ├── uielementgroup.h │ │ ├── uievent.h │ │ ├── uieventhandler.cc │ │ ├── uieventhandler.h │ │ ├── uifeatureunit.cc │ │ ├── uifeatureunit.h │ │ ├── uiinputhandler.cc │ │ ├── uiinputhandler.h │ │ ├── uilayout.cc │ │ ├── uilayout.h │ │ ├── uirtplugin.cc │ │ ├── uirtplugin.h │ │ ├── uiserver.cc │ │ └── uiserver.h │ ├── vegetation │ │ ├── CMakeLists.txt │ │ ├── emptyresourceloader.cc │ │ ├── emptyresourceloader.h │ │ ├── grassentityeventhandler.cc │ │ ├── grassentityeventhandler.h │ │ ├── grassgroundmap.cc │ │ ├── grassgroundmap.h │ │ ├── grassheightmap.cc │ │ ├── grassheightmap.h │ │ ├── grasslayer.cc │ │ ├── grasslayer.h │ │ ├── grasslayerinfo.h │ │ ├── grasslibrary.cc │ │ ├── grasslibrary.h │ │ ├── grasspatch.cc │ │ ├── grasspatch.h │ │ ├── grasspatcharray.cc │ │ ├── grasspatcharray.h │ │ ├── grasspatchcoords.cc │ │ ├── grasspatchcoords.h │ │ ├── grassplantmesh.cc │ │ ├── grassplantmesh.h │ │ ├── grassrenderer.cc │ │ └── grassrenderer.h │ ├── vibration │ │ ├── CMakeLists.txt │ │ ├── vibrationhandler.cc │ │ ├── vibrationhandler.h │ │ ├── vibrationinterface.cc │ │ ├── vibrationinterface.h │ │ ├── vibrationplayer.cc │ │ ├── vibrationplayer.h │ │ └── vibrationprotocol.nidl │ └── video │ │ ├── CMakeLists.txt │ │ ├── base │ │ ├── videoserverbase.cc │ │ └── videoserverbase.h │ │ ├── rt │ │ ├── videohandler.cc │ │ ├── videohandler.h │ │ ├── videortplugin.cc │ │ ├── videortplugin.h │ │ ├── videoserver.cc │ │ └── videoserver.h │ │ ├── theora │ │ ├── theoravideoplayer.cc │ │ ├── theoravideoplayer.h │ │ ├── theoravideoserver.cc │ │ └── theoravideoserver.h │ │ ├── videoprotocol.nidl │ │ ├── videorendermodule.cc │ │ ├── videorendermodule.h │ │ └── win32 │ │ ├── win32videoserver.cc │ │ └── win32videoserver.h ├── application │ ├── CMakeLists.txt │ ├── appgame │ │ ├── appconfig.h │ │ ├── gameapplication.cc │ │ ├── gameapplication.h │ │ ├── statehandler.cc │ │ └── statehandler.h │ ├── application.dox │ ├── application.h │ ├── attic │ │ └── physicsfeature │ │ │ ├── physicsattr │ │ │ ├── physicsattributes.cc │ │ │ └── physicsattributes.h │ │ │ ├── physicsfeature.dox │ │ │ ├── physicsfeatureunit.cc │ │ │ ├── physicsfeatureunit.h │ │ │ ├── physicsprotocol.cc │ │ │ ├── physicsprotocol.h │ │ │ ├── physicsprotocol.nidl │ │ │ └── properties │ │ │ ├── actorphysicsproperty.cc │ │ │ ├── actorphysicsproperty.h │ │ │ ├── environmentcollideproperty.cc │ │ │ ├── environmentcollideproperty.h │ │ │ ├── mousegripperproperty.cc │ │ │ ├── mousegripperproperty.h │ │ │ ├── physicsproperty.cc │ │ │ ├── physicsproperty.h │ │ │ ├── triggerproperty.cc │ │ │ └── triggerproperty.h │ ├── basegamefeature │ │ ├── basegameattr │ │ │ └── basegameattributes.nidl │ │ ├── basegamefeature.dox │ │ ├── basegamefeatureunit.cc │ │ ├── basegamefeatureunit.h │ │ ├── basegameprotocol.nidl │ │ ├── basegametiming │ │ │ ├── gametimesource.cc │ │ │ ├── gametimesource.h │ │ │ ├── inputtimesource.cc │ │ │ ├── inputtimesource.h │ │ │ ├── systemtimesource.cc │ │ │ ├── systemtimesource.h │ │ │ ├── timemanager.cc │ │ │ ├── timemanager.h │ │ │ ├── timesource.cc │ │ │ └── timesource.h │ │ ├── debug │ │ │ ├── objectinspectorhandler.cc │ │ │ └── objectinspectorhandler.h │ │ ├── loader │ │ │ ├── entityloader.cc │ │ │ ├── entityloader.h │ │ │ ├── entityloaderbase.cc │ │ │ ├── entityloaderbase.h │ │ │ ├── levelloader.cc │ │ │ ├── levelloader.h │ │ │ ├── loader.dox │ │ │ ├── loaderserver.cc │ │ │ ├── loaderserver.h │ │ │ ├── userprofile.cc │ │ │ └── userprofile.h │ │ ├── managers │ │ │ ├── audiomanager.cc │ │ │ ├── audiomanager.h │ │ │ ├── categorymanager.cc │ │ │ ├── categorymanager.h │ │ │ ├── entitymanager.cc │ │ │ ├── entitymanager.h │ │ │ ├── envquerymanager.cc │ │ │ ├── envquerymanager.h │ │ │ ├── factorymanager.cc │ │ │ ├── factorymanager.h │ │ │ ├── focusmanager.cc │ │ │ ├── focusmanager.h │ │ │ ├── globalattrsmanager.cc │ │ │ ├── globalattrsmanager.h │ │ │ ├── levelattrsmanager.cc │ │ │ └── levelattrsmanager.h │ │ ├── properties │ │ │ ├── basegameproperties.nidl │ │ │ ├── timeproperty.cc │ │ │ ├── timeproperty.h │ │ │ ├── transformableproperty.cc │ │ │ └── transformableproperty.h │ │ └── statehandlers │ │ │ ├── gamestatehandler.cc │ │ │ └── gamestatehandler.h │ ├── commandhandlers │ │ ├── createentitycommand.cc │ │ └── createentitycommand.h │ ├── game │ │ ├── entity.cc │ │ ├── entity.h │ │ ├── featureunit.cc │ │ ├── featureunit.h │ │ ├── game.dox │ │ ├── gameserver.cc │ │ ├── gameserver.h │ │ ├── manager.cc │ │ ├── manager.h │ │ ├── property.cc │ │ └── property.h │ ├── graphicsfeature │ │ ├── CMakeLists.txt │ │ ├── animpath │ │ │ ├── animpath.h │ │ │ ├── managedpathanimation.cc │ │ │ ├── managedpathanimation.h │ │ │ ├── pathanimation.cc │ │ │ ├── pathanimation.h │ │ │ ├── streampathanimationloader.cc │ │ │ └── streampathanimationloader.h │ │ ├── gameanimeventhandler.cc │ │ ├── gameanimeventhandler.h │ │ ├── graphicsattr │ │ │ └── graphicsattributes.nidl │ │ ├── graphicsfeature.dox │ │ ├── graphicsfeatureproperties.h │ │ ├── graphicsfeatureprotocol.cc │ │ ├── graphicsfeatureprotocol.h │ │ ├── graphicsfeatureprotocol.nidl │ │ ├── graphicsfeatureunit.cc │ │ ├── graphicsfeatureunit.h │ │ ├── graphicsutil │ │ │ ├── animutil.cc │ │ │ ├── animutil.h │ │ │ ├── attachmentutil.cc │ │ │ ├── attachmentutil.h │ │ │ ├── lightflickerutil.cc │ │ │ ├── lightflickerutil.h │ │ │ ├── segmentedgfxutil.cc │ │ │ └── segmentedgfxutil.h │ │ ├── loader │ │ │ ├── environmentloader.cc │ │ │ └── environmentloader.h │ │ ├── managers │ │ │ ├── attachmentmanager.cc │ │ │ ├── attachmentmanager.h │ │ │ ├── enventitymanager.cc │ │ │ └── enventitymanager.h │ │ └── properties │ │ │ ├── actorgraphicsproperty.cc │ │ │ ├── actorgraphicsproperty.h │ │ │ ├── ambiencebubbleproperty.cc │ │ │ ├── ambiencebubbleproperty.h │ │ │ ├── animationcontrolproperty.cc │ │ │ ├── animationcontrolproperty.h │ │ │ ├── animpathproperty.cc │ │ │ ├── animpathproperty.h │ │ │ ├── cameraproperty.cc │ │ │ ├── cameraproperty.h │ │ │ ├── chasecameraproperty.cc │ │ │ ├── chasecameraproperty.h │ │ │ ├── cutscenecameraproperty.cc │ │ │ ├── cutscenecameraproperty.h │ │ │ ├── environmentgraphicsproperty.cc │ │ │ ├── environmentgraphicsproperty.h │ │ │ ├── fpscameraproperty.cc │ │ │ ├── fpscameraproperty.h │ │ │ ├── freemoveproperty.cc │ │ │ ├── freemoveproperty.h │ │ │ ├── graphicsproperty.cc │ │ │ ├── graphicsproperty.h │ │ │ ├── inputproperty.cc │ │ │ ├── inputproperty.h │ │ │ ├── lightprobeproperty.cc │ │ │ ├── lightprobeproperty.h │ │ │ ├── lightproperty.cc │ │ │ ├── lightproperty.h │ │ │ ├── mayacameraproperty.cc │ │ │ ├── mayacameraproperty.h │ │ │ ├── pathanimproperty.cc │ │ │ └── pathanimproperty.h │ ├── physicsfeature │ │ ├── CMakeLists.txt │ │ ├── gamefilterset.cc │ │ ├── gamefilterset.h │ │ ├── physicsattr │ │ │ └── physicsattributes.nidl │ │ ├── physicsfeatureunit.cc │ │ ├── physicsfeatureunit.h │ │ ├── physicsprotocol.nidl │ │ └── properties │ │ │ ├── actorphysicsproperty.cc │ │ │ ├── actorphysicsproperty.h │ │ │ ├── animatedphysicsproperty.cc │ │ │ ├── animatedphysicsproperty.h │ │ │ ├── environmentcollideproperty.cc │ │ │ ├── environmentcollideproperty.h │ │ │ ├── interactproperty.cc │ │ │ ├── interactproperty.h │ │ │ ├── mousegripperproperty.cc │ │ │ ├── mousegripperproperty.h │ │ │ ├── physicsproperty.cc │ │ │ ├── physicsproperty.h │ │ │ ├── pointnclickinputproperty.cc │ │ │ ├── pointnclickinputproperty.h │ │ │ ├── staticphysicsproperty.cc │ │ │ ├── staticphysicsproperty.h │ │ │ ├── triggerproperty.cc │ │ │ └── triggerproperty.h │ ├── scriptfeature │ │ ├── CMakeLists.txt │ │ ├── actionreader.cc │ │ ├── actionreader.h │ │ ├── actions │ │ │ ├── action.cc │ │ │ ├── action.h │ │ │ ├── actionlist.cc │ │ │ ├── actionlist.h │ │ │ ├── behaviour │ │ │ │ ├── fsmaction.cc │ │ │ │ └── fsmaction.h │ │ │ ├── ifthenelseaction.cc │ │ │ ├── ifthenelseaction.h │ │ │ ├── sequenceaction.cc │ │ │ └── sequenceaction.h │ │ ├── conditions │ │ │ ├── and.cc │ │ │ ├── and.h │ │ │ ├── behaviour │ │ │ │ ├── fsmcondition.cc │ │ │ │ └── fsmcondition.h │ │ │ ├── condition.cc │ │ │ ├── condition.h │ │ │ ├── not.cc │ │ │ ├── not.h │ │ │ ├── operator.h │ │ │ ├── or.cc │ │ │ └── or.h │ │ ├── dialog │ │ │ ├── dialog.cc │ │ │ ├── dialog.h │ │ │ ├── dialogdesc.cc │ │ │ ├── dialogdesc.h │ │ │ ├── dialogtake.cc │ │ │ └── dialogtake.h │ │ ├── fsm │ │ │ ├── behaviourproperty.cc │ │ │ ├── behaviourproperty.h │ │ │ ├── state.cc │ │ │ ├── state.h │ │ │ ├── statemachine.cc │ │ │ ├── statemachine.h │ │ │ ├── transition.cc │ │ │ └── transition.h │ │ ├── log │ │ │ ├── infolog.cc │ │ │ ├── infolog.h │ │ │ ├── infologfilter.cc │ │ │ └── infologfilter.h │ │ ├── managers │ │ │ ├── dialogmanager.cc │ │ │ ├── dialogmanager.h │ │ │ ├── logmanager.cc │ │ │ ├── logmanager.h │ │ │ ├── questmanager.cc │ │ │ ├── questmanager.h │ │ │ ├── scriptmanager.cc │ │ │ ├── scriptmanager.h │ │ │ ├── scripttemplatemanager.cc │ │ │ ├── scripttemplatemanager.h │ │ │ ├── substitutionmanager.cc │ │ │ └── substitutionmanager.h │ │ ├── quest │ │ │ ├── task.cc │ │ │ └── task.h │ │ ├── scriptattr │ │ │ └── scriptattributes.nidl │ │ ├── scriptfeatureunit.cc │ │ ├── scriptfeatureunit.h │ │ ├── scriptprotocol.nidl │ │ ├── scripttable.cc │ │ └── scripttable.h │ ├── scriptingfeature │ │ ├── CMakeLists.txt │ │ ├── properties │ │ │ ├── scriptingproperty.cc │ │ │ ├── scriptingproperty.h │ │ │ ├── scriptingtriggerproperty.cc │ │ │ └── scriptingtriggerproperty.h │ │ ├── scriptingcommands.nidl │ │ ├── scriptingfeature.cc │ │ ├── scriptingfeature.h │ │ ├── scriptinginputhandler.cc │ │ ├── scriptinginputhandler.h │ │ └── scriptingprotocol.nidl │ ├── stateobjectfeature │ │ ├── CMakeLists.txt │ │ ├── properties │ │ │ ├── stategraphicsproperty.cc │ │ │ ├── stategraphicsproperty.h │ │ │ ├── stateinfo.h │ │ │ ├── stateproperty.cc │ │ │ └── stateproperty.h │ │ ├── stateobjectfeatureunit.h │ │ └── stateobjectprotocol.nidl │ ├── stdneb.cc │ └── stdneb.h ├── benchmarks │ ├── CMakeLists.txt │ ├── benchmarkaddon │ │ ├── CMakeLists.txt │ │ ├── databaseinsert.cc │ │ ├── databaseinsert.h │ │ ├── databasequery.cc │ │ ├── databasequery.h │ │ ├── dbattrs.cc │ │ ├── dbattrs.h │ │ └── main.cc │ ├── benchmarkbase │ │ ├── CMakeLists.txt │ │ ├── benchmark.cc │ │ ├── benchmark.h │ │ ├── benchmarking.dox │ │ ├── benchmarkrunner.cc │ │ └── benchmarkrunner.h │ ├── benchmarkfoundation │ │ ├── CMakeLists.txt │ │ ├── createobjects.cc │ │ ├── createobjects.h │ │ ├── createobjectsbyclassname.cc │ │ ├── createobjectsbyclassname.h │ │ ├── createobjectsbyfourcc.cc │ │ ├── createobjectsbyfourcc.h │ │ ├── float4math.cc │ │ ├── float4math.h │ │ ├── main.cc │ │ ├── matrix44inverse.cc │ │ ├── matrix44inverse.h │ │ ├── matrix44multiply.cc │ │ ├── matrix44multiply.h │ │ ├── mempoolbenchmark.cc │ │ └── mempoolbenchmark.h │ └── stdneb.cc ├── extlibs │ ├── CMakeLists.txt │ ├── Effects11 │ │ ├── CMakeLists.txt │ │ ├── Effect.h │ │ ├── EffectAPI.cpp │ │ ├── EffectBinaryFormat.h │ │ ├── EffectLoad.cpp │ │ ├── EffectLoad.h │ │ ├── EffectNonRuntime.cpp │ │ ├── EffectReflection.cpp │ │ ├── EffectRuntime.cpp │ │ ├── EffectStateBase11.h │ │ ├── EffectStates11.h │ │ ├── EffectVariable.inl │ │ ├── SOParser.h │ │ ├── d3dx11dbg.cpp │ │ ├── d3dx11dbg.h │ │ ├── d3dx11effect.h │ │ ├── d3dxGlobal.cpp │ │ ├── d3dxglobal.h │ │ └── pchfx.h │ ├── SOIL │ │ ├── CMakeLists.txt │ │ ├── SOIL.c │ │ ├── SOIL.h │ │ ├── image_DXT.c │ │ ├── image_DXT.h │ │ ├── image_helper.c │ │ ├── image_helper.h │ │ ├── original │ │ │ ├── stb_image-1.09.c │ │ │ └── stb_image-1.16.c │ │ ├── stb_image_aug.c │ │ ├── stb_image_aug.h │ │ ├── stbi_DDS_aug.h │ │ └── stbi_DDS_aug_c.h │ ├── base64 │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── base64.c │ │ ├── base64.h │ │ ├── copyright.txt │ │ └── main.c │ ├── bullet │ │ ├── CMakeLists.txt │ │ └── bullet │ │ │ ├── AUTHORS │ │ │ ├── BspDemo.bsp │ │ │ ├── BulletLicense.txt │ │ │ ├── Bullet_User_Manual.pdf │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile │ │ │ ├── Extras │ │ │ ├── AllBulletDemosOSX │ │ │ │ ├── AllBulletDemos.xcodeproj │ │ │ │ │ ├── TemplateIcon.icns │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── zakariya.pbxuser │ │ │ │ │ └── zakariya.perspectivev3 │ │ │ │ ├── AllBulletDemos_Prefix.pch │ │ │ │ ├── BulletIcon.icns │ │ │ │ ├── BulletIcon.psd │ │ │ │ ├── English.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── README.txt │ │ │ │ ├── main.m │ │ │ │ └── src │ │ │ │ │ ├── BTDemo.h │ │ │ │ │ ├── BTDemo.mm │ │ │ │ │ ├── BTDemosAppController.h │ │ │ │ │ ├── BTDemosAppController.m │ │ │ │ │ ├── BTSimulationParameters.h │ │ │ │ │ ├── BTSimulationParameters.m │ │ │ │ │ └── toolkit │ │ │ │ │ ├── BTFullscreenWindow.h │ │ │ │ │ ├── BTFullscreenWindow.m │ │ │ │ │ ├── BTGLUTKeyAdapter.h │ │ │ │ │ ├── BTGLUTKeyAdapter.m │ │ │ │ │ ├── BTOpenGLDisplayDelegate.h │ │ │ │ │ ├── BTOpenGLView.h │ │ │ │ │ └── BTOpenGLView.m │ │ │ ├── CDTestFramework │ │ │ │ ├── AntTweakBar │ │ │ │ │ ├── ChangeLog.txt │ │ │ │ │ ├── Clean.bat │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── include │ │ │ │ │ │ └── AntTweakBar.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── AntPerfTimer.h │ │ │ │ │ │ ├── AntTweakBar.rc │ │ │ │ │ │ ├── AntTweakBar.sln │ │ │ │ │ │ ├── AntTweakBar.vcproj │ │ │ │ │ │ ├── LoadOGL.cpp │ │ │ │ │ │ ├── LoadOGL.h │ │ │ │ │ │ ├── LoadOGLCore.cpp │ │ │ │ │ │ ├── LoadOGLCore.h │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Makefile.x86_64 │ │ │ │ │ │ ├── MiniGLUT.h │ │ │ │ │ │ ├── TwBar.cpp │ │ │ │ │ │ ├── TwBar.h │ │ │ │ │ │ ├── TwColors.cpp │ │ │ │ │ │ ├── TwColors.h │ │ │ │ │ │ ├── TwDirect3D10.cpp │ │ │ │ │ │ ├── TwDirect3D10.h │ │ │ │ │ │ ├── TwDirect3D11.cpp │ │ │ │ │ │ ├── TwDirect3D11.h │ │ │ │ │ │ ├── TwDirect3D9.cpp │ │ │ │ │ │ ├── TwDirect3D9.h │ │ │ │ │ │ ├── TwEventGLFW.c │ │ │ │ │ │ ├── TwEventGLUT.c │ │ │ │ │ │ ├── TwEventSDL.c │ │ │ │ │ │ ├── TwEventWin.c │ │ │ │ │ │ ├── TwEventWin32.c │ │ │ │ │ │ ├── TwEventX11.c │ │ │ │ │ │ ├── TwFonts.cpp │ │ │ │ │ │ ├── TwFonts.h │ │ │ │ │ │ ├── TwGraph.h │ │ │ │ │ │ ├── TwMgr.cpp │ │ │ │ │ │ ├── TwMgr.h │ │ │ │ │ │ ├── TwOpenGL.cpp │ │ │ │ │ │ ├── TwOpenGL.h │ │ │ │ │ │ ├── TwOpenGLCore.cpp │ │ │ │ │ │ ├── TwOpenGLCore.h │ │ │ │ │ │ ├── TwPrecomp.cpp │ │ │ │ │ │ ├── TwPrecomp.h │ │ │ │ │ │ ├── d3d10vs2003.h │ │ │ │ │ │ ├── res │ │ │ │ │ │ ├── FontChars.txt │ │ │ │ │ │ ├── FontFixed1.pgm │ │ │ │ │ │ ├── FontLargeAA.pgm │ │ │ │ │ │ ├── FontNormal.pgm │ │ │ │ │ │ ├── FontNormalAA.pgm │ │ │ │ │ │ ├── FontSmall.pgm │ │ │ │ │ │ ├── TwXCursors.h │ │ │ │ │ │ ├── cur00000.cur │ │ │ │ │ │ ├── cur00001.cur │ │ │ │ │ │ ├── cur00002.cur │ │ │ │ │ │ ├── cur00003.cur │ │ │ │ │ │ ├── cur00004.cur │ │ │ │ │ │ ├── cur00005.cur │ │ │ │ │ │ ├── cur00006.cur │ │ │ │ │ │ ├── cur00007.cur │ │ │ │ │ │ ├── cur00008.cur │ │ │ │ │ │ ├── cur00009.cur │ │ │ │ │ │ ├── cur00010.cur │ │ │ │ │ │ ├── cur00011.cur │ │ │ │ │ │ ├── cur00012.cur │ │ │ │ │ │ ├── cur00013.cur │ │ │ │ │ │ ├── curs00.pbm │ │ │ │ │ │ ├── curs01.pbm │ │ │ │ │ │ ├── curs02.pbm │ │ │ │ │ │ ├── curs03.pbm │ │ │ │ │ │ ├── curs04.pbm │ │ │ │ │ │ ├── curs05.pbm │ │ │ │ │ │ ├── curs06.pbm │ │ │ │ │ │ ├── curs07.pbm │ │ │ │ │ │ ├── curs08.pbm │ │ │ │ │ │ ├── curs09.pbm │ │ │ │ │ │ ├── curs10.pbm │ │ │ │ │ │ ├── curs11.pbm │ │ │ │ │ │ ├── curs12.pbm │ │ │ │ │ │ ├── curs13.pbm │ │ │ │ │ │ ├── mask00.pbm │ │ │ │ │ │ ├── mask01.pbm │ │ │ │ │ │ ├── mask02.pbm │ │ │ │ │ │ ├── mask03.pbm │ │ │ │ │ │ ├── mask04.pbm │ │ │ │ │ │ ├── mask05.pbm │ │ │ │ │ │ ├── mask06.pbm │ │ │ │ │ │ ├── mask07.pbm │ │ │ │ │ │ ├── mask08.pbm │ │ │ │ │ │ ├── mask09.pbm │ │ │ │ │ │ ├── mask10.pbm │ │ │ │ │ │ ├── mask11.pbm │ │ │ │ │ │ ├── mask12.pbm │ │ │ │ │ │ └── mask13.pbm │ │ │ │ │ │ └── resource.h │ │ │ │ ├── BipartiteBoxPruning.cpp │ │ │ │ ├── BipartiteBoxPruning.h │ │ │ │ ├── BulletSAPCompleteBoxPruningTest.cpp │ │ │ │ ├── BulletSAPCompleteBoxPruningTest.h │ │ │ │ ├── CDTestFramework.cpp │ │ │ │ ├── CDTestFramework.h │ │ │ │ ├── CDTestFramework.sln │ │ │ │ ├── CDTestFramework.txt │ │ │ │ ├── CDTestFramework.vcproj │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── CapsuleMeshQuery.cpp │ │ │ │ ├── CapsuleMeshQuery.h │ │ │ │ ├── CollisionTest.cpp │ │ │ │ ├── CollisionTest.h │ │ │ │ ├── CompleteBoxPruning.cpp │ │ │ │ ├── CompleteBoxPruning.h │ │ │ │ ├── GLFontData.h │ │ │ │ ├── GLFontRenderer.cpp │ │ │ │ ├── GLFontRenderer.h │ │ │ │ ├── GLUT32.DLL │ │ │ │ ├── History.txt │ │ │ │ ├── IceHelpers.cpp │ │ │ │ ├── IceHelpers.h │ │ │ │ ├── License.txt │ │ │ │ ├── OBBMeshQuery.cpp │ │ │ │ ├── OBBMeshQuery.h │ │ │ │ ├── Opcode │ │ │ │ │ ├── Ice │ │ │ │ │ │ ├── IceAABB.cpp │ │ │ │ │ │ ├── IceAABB.h │ │ │ │ │ │ ├── IceAllocator.cpp │ │ │ │ │ │ ├── IceAllocator.h │ │ │ │ │ │ ├── IceAssert.h │ │ │ │ │ │ ├── IceAxes.h │ │ │ │ │ │ ├── IceBitArray.cpp │ │ │ │ │ │ ├── IceBitArray.h │ │ │ │ │ │ ├── IceBoundingSphere.h │ │ │ │ │ │ ├── IceContainer.cpp │ │ │ │ │ │ ├── IceContainer.h │ │ │ │ │ │ ├── IceFPU.h │ │ │ │ │ │ ├── IceHPoint.cpp │ │ │ │ │ │ ├── IceHPoint.h │ │ │ │ │ │ ├── IceHashing.h │ │ │ │ │ │ ├── IceIndexedTriangle.cpp │ │ │ │ │ │ ├── IceIndexedTriangle.h │ │ │ │ │ │ ├── IceLSS.h │ │ │ │ │ │ ├── IceMatrix3x3.cpp │ │ │ │ │ │ ├── IceMatrix3x3.h │ │ │ │ │ │ ├── IceMatrix4x4.cpp │ │ │ │ │ │ ├── IceMatrix4x4.h │ │ │ │ │ │ ├── IceMemoryMacros.h │ │ │ │ │ │ ├── IceOBB.cpp │ │ │ │ │ │ ├── IceOBB.h │ │ │ │ │ │ ├── IcePairs.h │ │ │ │ │ │ ├── IcePlane.cpp │ │ │ │ │ │ ├── IcePlane.h │ │ │ │ │ │ ├── IcePoint.cpp │ │ │ │ │ │ ├── IcePoint.h │ │ │ │ │ │ ├── IcePreprocessor.h │ │ │ │ │ │ ├── IceRandom.cpp │ │ │ │ │ │ ├── IceRandom.h │ │ │ │ │ │ ├── IceRay.cpp │ │ │ │ │ │ ├── IceRay.h │ │ │ │ │ │ ├── IceRevisitedRadix.cpp │ │ │ │ │ │ ├── IceRevisitedRadix.h │ │ │ │ │ │ ├── IceSegment.cpp │ │ │ │ │ │ ├── IceSegment.h │ │ │ │ │ │ ├── IceTriangle.cpp │ │ │ │ │ │ ├── IceTriangle.h │ │ │ │ │ │ ├── IceTrilist.h │ │ │ │ │ │ ├── IceTypes.h │ │ │ │ │ │ ├── IceUtils.cpp │ │ │ │ │ │ ├── IceUtils.h │ │ │ │ │ │ ├── _IceAABB.h │ │ │ │ │ │ ├── _IceContainer.cpp │ │ │ │ │ │ ├── _IceContainer.h │ │ │ │ │ │ ├── _IceFPU.h │ │ │ │ │ │ ├── _IceMemoryMacros.h │ │ │ │ │ │ ├── _IcePreprocessor.h │ │ │ │ │ │ ├── _IceRevisitedRadix.cpp │ │ │ │ │ │ ├── _IceRevisitedRadix.h │ │ │ │ │ │ ├── _IceTypes.h │ │ │ │ │ │ └── _IceUtils.h │ │ │ │ │ ├── OPC_AABBCollider.cpp │ │ │ │ │ ├── OPC_AABBCollider.h │ │ │ │ │ ├── OPC_AABBTree.cpp │ │ │ │ │ ├── OPC_AABBTree.h │ │ │ │ │ ├── OPC_ArraySAP.cpp │ │ │ │ │ ├── OPC_ArraySAP.h │ │ │ │ │ ├── OPC_BaseModel.cpp │ │ │ │ │ ├── OPC_BaseModel.h │ │ │ │ │ ├── OPC_BoxBoxOverlap.h │ │ │ │ │ ├── OPC_BoxPruning.cpp │ │ │ │ │ ├── OPC_BoxPruning.h │ │ │ │ │ ├── OPC_Collider.cpp │ │ │ │ │ ├── OPC_Collider.h │ │ │ │ │ ├── OPC_Common.cpp │ │ │ │ │ ├── OPC_Common.h │ │ │ │ │ ├── OPC_HybridModel.cpp │ │ │ │ │ ├── OPC_HybridModel.h │ │ │ │ │ ├── OPC_IceHook.h │ │ │ │ │ ├── OPC_LSSAABBOverlap.h │ │ │ │ │ ├── OPC_LSSCollider.cpp │ │ │ │ │ ├── OPC_LSSCollider.h │ │ │ │ │ ├── OPC_LSSTriOverlap.h │ │ │ │ │ ├── OPC_MeshInterface.cpp │ │ │ │ │ ├── OPC_MeshInterface.h │ │ │ │ │ ├── OPC_Model.cpp │ │ │ │ │ ├── OPC_Model.h │ │ │ │ │ ├── OPC_OBBCollider.cpp │ │ │ │ │ ├── OPC_OBBCollider.h │ │ │ │ │ ├── OPC_OptimizedTree.cpp │ │ │ │ │ ├── OPC_OptimizedTree.h │ │ │ │ │ ├── OPC_Picking.cpp │ │ │ │ │ ├── OPC_Picking.h │ │ │ │ │ ├── OPC_PlanesAABBOverlap.h │ │ │ │ │ ├── OPC_PlanesCollider.cpp │ │ │ │ │ ├── OPC_PlanesCollider.h │ │ │ │ │ ├── OPC_PlanesTriOverlap.h │ │ │ │ │ ├── OPC_RayAABBOverlap.h │ │ │ │ │ ├── OPC_RayCollider.cpp │ │ │ │ │ ├── OPC_RayCollider.h │ │ │ │ │ ├── OPC_RayTriOverlap.h │ │ │ │ │ ├── OPC_Settings.h │ │ │ │ │ ├── OPC_SphereAABBOverlap.h │ │ │ │ │ ├── OPC_SphereCollider.cpp │ │ │ │ │ ├── OPC_SphereCollider.h │ │ │ │ │ ├── OPC_SphereTriOverlap.h │ │ │ │ │ ├── OPC_SweepAndPrune.cpp │ │ │ │ │ ├── OPC_SweepAndPrune.h │ │ │ │ │ ├── OPC_TreeBuilders.cpp │ │ │ │ │ ├── OPC_TreeBuilders.h │ │ │ │ │ ├── OPC_TreeCollider.cpp │ │ │ │ │ ├── OPC_TreeCollider.h │ │ │ │ │ ├── OPC_TriBoxOverlap.h │ │ │ │ │ ├── OPC_TriTriOverlap.h │ │ │ │ │ ├── OPC_VolumeCollider.cpp │ │ │ │ │ ├── OPC_VolumeCollider.h │ │ │ │ │ ├── Opcode.cpp │ │ │ │ │ ├── Opcode.dsp │ │ │ │ │ ├── Opcode.dsw │ │ │ │ │ ├── Opcode.h │ │ │ │ │ ├── Opcode.sln │ │ │ │ │ ├── Opcode.vcproj │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ └── StdAfx.h │ │ │ │ ├── OpcodeArraySAPTest.cpp │ │ │ │ ├── OpcodeArraySAPTest.h │ │ │ │ ├── Profiling.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── RenderingHelpers.cpp │ │ │ │ ├── RenderingHelpers.h │ │ │ │ ├── SphereMeshQuery.cpp │ │ │ │ ├── SphereMeshQuery.h │ │ │ │ ├── Terrain.cpp │ │ │ │ ├── Terrain.h │ │ │ │ ├── convex1.bin │ │ │ │ ├── stdafx.cpp │ │ │ │ └── stdafx.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CUDA │ │ │ │ ├── btCudaBroadphase.cpp │ │ │ │ ├── btCudaBroadphase.cu │ │ │ │ ├── btCudaBroadphase.h │ │ │ │ ├── btCudaDefines.h │ │ │ │ ├── btCudaUtils.cu │ │ │ │ ├── btGpuDemo2dCudaFunc.cu │ │ │ │ ├── btGpuDemo3dCudaFunc.cu │ │ │ │ ├── cutil_gl_error.h │ │ │ │ ├── cutil_math.h │ │ │ │ ├── libbulletcuda.vcproj │ │ │ │ ├── radixsort.cu │ │ │ │ ├── radixsort.cuh │ │ │ │ └── radixsort_kernel.cu │ │ │ ├── ConvexDecomposition │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConvexBuilder.cpp │ │ │ │ ├── ConvexBuilder.h │ │ │ │ ├── ConvexDecomposition.cpp │ │ │ │ ├── ConvexDecomposition.h │ │ │ │ ├── bestfit.cpp │ │ │ │ ├── bestfit.h │ │ │ │ ├── bestfitobb.cpp │ │ │ │ ├── bestfitobb.h │ │ │ │ ├── cd_hull.cpp │ │ │ │ ├── cd_hull.h │ │ │ │ ├── cd_vector.h │ │ │ │ ├── cd_wavefront.cpp │ │ │ │ ├── cd_wavefront.h │ │ │ │ ├── concavity.cpp │ │ │ │ ├── concavity.h │ │ │ │ ├── fitsphere.cpp │ │ │ │ ├── fitsphere.h │ │ │ │ ├── float_math.cpp │ │ │ │ ├── float_math.h │ │ │ │ ├── meshvolume.cpp │ │ │ │ ├── meshvolume.h │ │ │ │ ├── planetri.cpp │ │ │ │ ├── planetri.h │ │ │ │ ├── premake4.lua │ │ │ │ ├── raytri.cpp │ │ │ │ ├── raytri.h │ │ │ │ ├── splitplane.cpp │ │ │ │ ├── splitplane.h │ │ │ │ ├── vlookup.cpp │ │ │ │ └── vlookup.h │ │ │ ├── GIMPACTUtils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btGImpactConvexDecompositionShape.cpp │ │ │ │ └── btGImpactConvexDecompositionShape.h │ │ │ ├── HACD │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hacdCircularList.h │ │ │ │ ├── hacdCircularList.inl │ │ │ │ ├── hacdGraph.cpp │ │ │ │ ├── hacdGraph.h │ │ │ │ ├── hacdHACD.cpp │ │ │ │ ├── hacdHACD.h │ │ │ │ ├── hacdICHull.cpp │ │ │ │ ├── hacdICHull.h │ │ │ │ ├── hacdManifoldMesh.cpp │ │ │ │ ├── hacdManifoldMesh.h │ │ │ │ ├── hacdVector.h │ │ │ │ ├── hacdVector.inl │ │ │ │ ├── hacdVersion.h │ │ │ │ └── premake4.lua │ │ │ ├── Makefile.am │ │ │ ├── Serialize │ │ │ │ ├── BlenderSerialize │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bBlenderFile.cpp │ │ │ │ │ ├── bBlenderFile.h │ │ │ │ │ ├── bMain.cpp │ │ │ │ │ ├── bMain.h │ │ │ │ │ ├── dna249-64bit.cpp │ │ │ │ │ └── dna249.cpp │ │ │ │ ├── BulletFileLoader │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CMakeLists.txt.orig │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ └── bullet.h │ │ │ │ │ ├── bChunk.cpp │ │ │ │ │ ├── bChunk.h │ │ │ │ │ ├── bCommon.h │ │ │ │ │ ├── bDNA.cpp │ │ │ │ │ ├── bDNA.h │ │ │ │ │ ├── bDefines.h │ │ │ │ │ ├── bFile.cpp │ │ │ │ │ ├── bFile.h │ │ │ │ │ ├── btBulletFile.cpp │ │ │ │ │ ├── btBulletFile.h │ │ │ │ │ └── premake4.lua │ │ │ │ ├── BulletWorldImporter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btBulletWorldImporter.cpp │ │ │ │ │ ├── btBulletWorldImporter.h │ │ │ │ │ ├── btWorldImporter.cpp │ │ │ │ │ ├── btWorldImporter.h │ │ │ │ │ └── premake4.lua │ │ │ │ ├── BulletXmlWorldImporter │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btBulletXmlWorldImporter.cpp │ │ │ │ │ ├── btBulletXmlWorldImporter.h │ │ │ │ │ ├── premake4.lua │ │ │ │ │ ├── string_split.cpp │ │ │ │ │ ├── string_split.h │ │ │ │ │ ├── tinystr.cpp │ │ │ │ │ ├── tinystr.h │ │ │ │ │ ├── tinyxml.cpp │ │ │ │ │ ├── tinyxml.h │ │ │ │ │ ├── tinyxmlerror.cpp │ │ │ │ │ └── tinyxmlparser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HeaderGenerator │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── apiGen.cpp │ │ │ │ │ ├── blenderGenerate.py │ │ │ │ │ ├── bulletGenerate.py │ │ │ │ │ └── createDnaString.bat │ │ │ │ ├── ReadBulletSample │ │ │ │ │ ├── BulletDataExtractor.cpp │ │ │ │ │ ├── BulletDataExtractor.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── main.cpp │ │ │ │ └── makesdna │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── DNA_rigidbody.h │ │ │ │ │ └── makesdna.cpp │ │ │ ├── glui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GL │ │ │ │ │ └── glui.h │ │ │ │ ├── algebra3.cpp │ │ │ │ ├── algebra3.h │ │ │ │ ├── arcball.cpp │ │ │ │ ├── arcball.h │ │ │ │ ├── glui.cpp │ │ │ │ ├── glui_add_controls.cpp │ │ │ │ ├── glui_bitmap_img_data.cpp │ │ │ │ ├── glui_bitmaps.cpp │ │ │ │ ├── glui_button.cpp │ │ │ │ ├── glui_checkbox.cpp │ │ │ │ ├── glui_column.cpp │ │ │ │ ├── glui_commandline.cpp │ │ │ │ ├── glui_control.cpp │ │ │ │ ├── glui_edittext.cpp │ │ │ │ ├── glui_filebrowser.cpp │ │ │ │ ├── glui_internal.h │ │ │ │ ├── glui_internal_control.h │ │ │ │ ├── glui_list.cpp │ │ │ │ ├── glui_listbox.cpp │ │ │ │ ├── glui_mouse_iaction.cpp │ │ │ │ ├── glui_node.cpp │ │ │ │ ├── glui_panel.cpp │ │ │ │ ├── glui_radio.cpp │ │ │ │ ├── glui_rollout.cpp │ │ │ │ ├── glui_rotation.cpp │ │ │ │ ├── glui_scrollbar.cpp │ │ │ │ ├── glui_separator.cpp │ │ │ │ ├── glui_spinner.cpp │ │ │ │ ├── glui_statictext.cpp │ │ │ │ ├── glui_string.cpp │ │ │ │ ├── glui_textbox.cpp │ │ │ │ ├── glui_translation.cpp │ │ │ │ ├── glui_tree.cpp │ │ │ │ ├── glui_treepanel.cpp │ │ │ │ ├── glui_window.cpp │ │ │ │ ├── quaternion.cpp │ │ │ │ ├── quaternion.h │ │ │ │ └── readme.txt │ │ │ ├── khx2dae │ │ │ │ ├── Bullet_dae_screenshot.jpg │ │ │ │ ├── Havok5.5toColladaPhysics.dae │ │ │ │ ├── Havok_hkx_screenshot.jpg │ │ │ │ ├── SimpleLoadDemo.patch │ │ │ │ └── readme.txt │ │ │ ├── premake4.lua │ │ │ └── sph │ │ │ │ ├── READ_ME.txt │ │ │ │ ├── cmp.sh │ │ │ │ ├── common │ │ │ │ ├── GLee.c │ │ │ │ ├── GLee.h │ │ │ │ ├── common_defs.h │ │ │ │ ├── geomx.cpp │ │ │ │ ├── geomx.h │ │ │ │ ├── gl_helper.cpp │ │ │ │ ├── gl_helper.h │ │ │ │ ├── glext.h │ │ │ │ ├── glut.h │ │ │ │ ├── image.cpp │ │ │ │ ├── image.h │ │ │ │ ├── matrix-inline.h │ │ │ │ ├── matrix.cci │ │ │ │ ├── matrix.cpp │ │ │ │ ├── matrix.h │ │ │ │ ├── mdebug.cpp │ │ │ │ ├── mdebug.h │ │ │ │ ├── mesh.cpp │ │ │ │ ├── mesh.h │ │ │ │ ├── mesh_info.h │ │ │ │ ├── mtime.cpp │ │ │ │ ├── mtime.h │ │ │ │ ├── particle.cpp │ │ │ │ ├── particle.h │ │ │ │ ├── point_set.cpp │ │ │ │ ├── point_set.h │ │ │ │ ├── vector-inline.h │ │ │ │ ├── vector.cci │ │ │ │ ├── vector.cpp │ │ │ │ └── vector.h │ │ │ │ ├── fluid_system_host.linkinfo │ │ │ │ ├── fluids.vcproj │ │ │ │ ├── fluids │ │ │ │ ├── fluid.cpp │ │ │ │ ├── fluid.h │ │ │ │ ├── fluid_system.cpp │ │ │ │ ├── fluid_system.cu │ │ │ │ ├── fluid_system.h │ │ │ │ ├── fluid_system_host.cu │ │ │ │ ├── fluid_system_host.cuh │ │ │ │ ├── fluid_system_kern.cu │ │ │ │ ├── fluid_system_kern.cuh │ │ │ │ ├── radixsort.cu │ │ │ │ ├── radixsort.cuh │ │ │ │ └── radixsort_kernel.cu │ │ │ │ ├── fluids_2005.sln │ │ │ │ ├── fluids_2005.vcproj │ │ │ │ └── main.cpp │ │ │ ├── GLUT32.DLL │ │ │ ├── INSTALL │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── RELEASING.TXT │ │ │ ├── VERSION │ │ │ ├── acinclude.m4 │ │ │ ├── autogen.sh │ │ │ ├── bullet.pc.cmake │ │ │ ├── bullet.pc.in │ │ │ ├── bullet_logo.png │ │ │ ├── config.h.in │ │ │ ├── configure.ac │ │ │ ├── convex0.bin │ │ │ ├── file.obj │ │ │ ├── glew32.dll │ │ │ ├── glew64.dll │ │ │ ├── glut64.dll │ │ │ ├── heightfield128x128.raw │ │ │ ├── install-sh │ │ │ ├── jenga.dae │ │ │ ├── lib │ │ │ └── readme.txt │ │ │ ├── src │ │ │ ├── Bullet-C-Api.h │ │ │ ├── BulletCollision │ │ │ │ ├── BroadphaseCollision │ │ │ │ │ ├── btAxisSweep3.cpp │ │ │ │ │ ├── btAxisSweep3.h │ │ │ │ │ ├── btBroadphaseInterface.h │ │ │ │ │ ├── btBroadphaseProxy.cpp │ │ │ │ │ ├── btBroadphaseProxy.h │ │ │ │ │ ├── btCollisionAlgorithm.cpp │ │ │ │ │ ├── btCollisionAlgorithm.h │ │ │ │ │ ├── btDbvt.cpp │ │ │ │ │ ├── btDbvt.h │ │ │ │ │ ├── btDbvtBroadphase.cpp │ │ │ │ │ ├── btDbvtBroadphase.h │ │ │ │ │ ├── btDispatcher.cpp │ │ │ │ │ ├── btDispatcher.h │ │ │ │ │ ├── btMultiSapBroadphase.cpp │ │ │ │ │ ├── btMultiSapBroadphase.h │ │ │ │ │ ├── btOverlappingPairCache.cpp │ │ │ │ │ ├── btOverlappingPairCache.h │ │ │ │ │ ├── btOverlappingPairCallback.h │ │ │ │ │ ├── btQuantizedBvh.cpp │ │ │ │ │ ├── btQuantizedBvh.h │ │ │ │ │ ├── btSimpleBroadphase.cpp │ │ │ │ │ └── btSimpleBroadphase.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CollisionDispatch │ │ │ │ │ ├── SphereTriangleDetector.cpp │ │ │ │ │ ├── SphereTriangleDetector.h │ │ │ │ │ ├── btActivatingCollisionAlgorithm.cpp │ │ │ │ │ ├── btActivatingCollisionAlgorithm.h │ │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.cpp │ │ │ │ │ ├── btBox2dBox2dCollisionAlgorithm.h │ │ │ │ │ ├── btBoxBoxCollisionAlgorithm.cpp │ │ │ │ │ ├── btBoxBoxCollisionAlgorithm.h │ │ │ │ │ ├── btBoxBoxDetector.cpp │ │ │ │ │ ├── btBoxBoxDetector.h │ │ │ │ │ ├── btCollisionConfiguration.h │ │ │ │ │ ├── btCollisionCreateFunc.h │ │ │ │ │ ├── btCollisionDispatcher.cpp │ │ │ │ │ ├── btCollisionDispatcher.h │ │ │ │ │ ├── btCollisionObject.cpp │ │ │ │ │ ├── btCollisionObject.h │ │ │ │ │ ├── btCollisionObjectWrapper.h │ │ │ │ │ ├── btCollisionWorld.cpp │ │ │ │ │ ├── btCollisionWorld.h │ │ │ │ │ ├── btCompoundCollisionAlgorithm.cpp │ │ │ │ │ ├── btCompoundCollisionAlgorithm.h │ │ │ │ │ ├── btConvex2dConvex2dAlgorithm.cpp │ │ │ │ │ ├── btConvex2dConvex2dAlgorithm.h │ │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.cpp │ │ │ │ │ ├── btConvexConcaveCollisionAlgorithm.h │ │ │ │ │ ├── btConvexConvexAlgorithm.cpp │ │ │ │ │ ├── btConvexConvexAlgorithm.h │ │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.cpp │ │ │ │ │ ├── btConvexPlaneCollisionAlgorithm.h │ │ │ │ │ ├── btDefaultCollisionConfiguration.cpp │ │ │ │ │ ├── btDefaultCollisionConfiguration.h │ │ │ │ │ ├── btEmptyCollisionAlgorithm.cpp │ │ │ │ │ ├── btEmptyCollisionAlgorithm.h │ │ │ │ │ ├── btGhostObject.cpp │ │ │ │ │ ├── btGhostObject.h │ │ │ │ │ ├── btInternalEdgeUtility.cpp │ │ │ │ │ ├── btInternalEdgeUtility.h │ │ │ │ │ ├── btManifoldResult.cpp │ │ │ │ │ ├── btManifoldResult.h │ │ │ │ │ ├── btSimulationIslandManager.cpp │ │ │ │ │ ├── btSimulationIslandManager.h │ │ │ │ │ ├── btSphereBoxCollisionAlgorithm.cpp │ │ │ │ │ ├── btSphereBoxCollisionAlgorithm.h │ │ │ │ │ ├── btSphereSphereCollisionAlgorithm.cpp │ │ │ │ │ ├── btSphereSphereCollisionAlgorithm.h │ │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.cpp │ │ │ │ │ ├── btSphereTriangleCollisionAlgorithm.h │ │ │ │ │ ├── btUnionFind.cpp │ │ │ │ │ └── btUnionFind.h │ │ │ │ ├── CollisionShapes │ │ │ │ │ ├── btBox2dShape.cpp │ │ │ │ │ ├── btBox2dShape.h │ │ │ │ │ ├── btBoxShape.cpp │ │ │ │ │ ├── btBoxShape.h │ │ │ │ │ ├── btBvhTriangleMeshShape.cpp │ │ │ │ │ ├── btBvhTriangleMeshShape.h │ │ │ │ │ ├── btCapsuleShape.cpp │ │ │ │ │ ├── btCapsuleShape.h │ │ │ │ │ ├── btCollisionMargin.h │ │ │ │ │ ├── btCollisionShape.cpp │ │ │ │ │ ├── btCollisionShape.h │ │ │ │ │ ├── btCompoundShape.cpp │ │ │ │ │ ├── btCompoundShape.h │ │ │ │ │ ├── btConcaveShape.cpp │ │ │ │ │ ├── btConcaveShape.h │ │ │ │ │ ├── btConeShape.cpp │ │ │ │ │ ├── btConeShape.h │ │ │ │ │ ├── btConvex2dShape.cpp │ │ │ │ │ ├── btConvex2dShape.h │ │ │ │ │ ├── btConvexHullShape.cpp │ │ │ │ │ ├── btConvexHullShape.h │ │ │ │ │ ├── btConvexInternalShape.cpp │ │ │ │ │ ├── btConvexInternalShape.h │ │ │ │ │ ├── btConvexPointCloudShape.cpp │ │ │ │ │ ├── btConvexPointCloudShape.h │ │ │ │ │ ├── btConvexPolyhedron.cpp │ │ │ │ │ ├── btConvexPolyhedron.h │ │ │ │ │ ├── btConvexShape.cpp │ │ │ │ │ ├── btConvexShape.h │ │ │ │ │ ├── btConvexTriangleMeshShape.cpp │ │ │ │ │ ├── btConvexTriangleMeshShape.h │ │ │ │ │ ├── btCylinderShape.cpp │ │ │ │ │ ├── btCylinderShape.h │ │ │ │ │ ├── btEmptyShape.cpp │ │ │ │ │ ├── btEmptyShape.h │ │ │ │ │ ├── btHeightfieldTerrainShape.cpp │ │ │ │ │ ├── btHeightfieldTerrainShape.h │ │ │ │ │ ├── btMaterial.h │ │ │ │ │ ├── btMinkowskiSumShape.cpp │ │ │ │ │ ├── btMinkowskiSumShape.h │ │ │ │ │ ├── btMultiSphereShape.cpp │ │ │ │ │ ├── btMultiSphereShape.h │ │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp │ │ │ │ │ ├── btMultimaterialTriangleMeshShape.h │ │ │ │ │ ├── btOptimizedBvh.cpp │ │ │ │ │ ├── btOptimizedBvh.h │ │ │ │ │ ├── btPolyhedralConvexShape.cpp │ │ │ │ │ ├── btPolyhedralConvexShape.h │ │ │ │ │ ├── btScaledBvhTriangleMeshShape.cpp │ │ │ │ │ ├── btScaledBvhTriangleMeshShape.h │ │ │ │ │ ├── btShapeHull.cpp │ │ │ │ │ ├── btShapeHull.h │ │ │ │ │ ├── btSphereShape.cpp │ │ │ │ │ ├── btSphereShape.h │ │ │ │ │ ├── btStaticPlaneShape.cpp │ │ │ │ │ ├── btStaticPlaneShape.h │ │ │ │ │ ├── btStridingMeshInterface.cpp │ │ │ │ │ ├── btStridingMeshInterface.h │ │ │ │ │ ├── btTetrahedronShape.cpp │ │ │ │ │ ├── btTetrahedronShape.h │ │ │ │ │ ├── btTriangleBuffer.cpp │ │ │ │ │ ├── btTriangleBuffer.h │ │ │ │ │ ├── btTriangleCallback.cpp │ │ │ │ │ ├── btTriangleCallback.h │ │ │ │ │ ├── btTriangleIndexVertexArray.cpp │ │ │ │ │ ├── btTriangleIndexVertexArray.h │ │ │ │ │ ├── btTriangleIndexVertexMaterialArray.cpp │ │ │ │ │ ├── btTriangleIndexVertexMaterialArray.h │ │ │ │ │ ├── btTriangleInfoMap.h │ │ │ │ │ ├── btTriangleMesh.cpp │ │ │ │ │ ├── btTriangleMesh.h │ │ │ │ │ ├── btTriangleMeshShape.cpp │ │ │ │ │ ├── btTriangleMeshShape.h │ │ │ │ │ ├── btTriangleShape.h │ │ │ │ │ ├── btUniformScalingShape.cpp │ │ │ │ │ └── btUniformScalingShape.h │ │ │ │ ├── Doxyfile │ │ │ │ ├── Gimpact │ │ │ │ │ ├── btBoxCollision.h │ │ │ │ │ ├── btClipPolygon.h │ │ │ │ │ ├── btContactProcessing.cpp │ │ │ │ │ ├── btContactProcessing.h │ │ │ │ │ ├── btGImpactBvh.cpp │ │ │ │ │ ├── btGImpactBvh.h │ │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp │ │ │ │ │ ├── btGImpactCollisionAlgorithm.h │ │ │ │ │ ├── btGImpactMassUtil.h │ │ │ │ │ ├── btGImpactQuantizedBvh.cpp │ │ │ │ │ ├── btGImpactQuantizedBvh.h │ │ │ │ │ ├── btGImpactShape.cpp │ │ │ │ │ ├── btGImpactShape.h │ │ │ │ │ ├── btGenericPoolAllocator.cpp │ │ │ │ │ ├── btGenericPoolAllocator.h │ │ │ │ │ ├── btGeometryOperations.h │ │ │ │ │ ├── btQuantization.h │ │ │ │ │ ├── btTriangleShapeEx.cpp │ │ │ │ │ ├── btTriangleShapeEx.h │ │ │ │ │ ├── gim_array.h │ │ │ │ │ ├── gim_basic_geometry_operations.h │ │ │ │ │ ├── gim_bitset.h │ │ │ │ │ ├── gim_box_collision.h │ │ │ │ │ ├── gim_box_set.cpp │ │ │ │ │ ├── gim_box_set.h │ │ │ │ │ ├── gim_clip_polygon.h │ │ │ │ │ ├── gim_contact.cpp │ │ │ │ │ ├── gim_contact.h │ │ │ │ │ ├── gim_geom_types.h │ │ │ │ │ ├── gim_geometry.h │ │ │ │ │ ├── gim_hash_table.h │ │ │ │ │ ├── gim_linear_math.h │ │ │ │ │ ├── gim_math.h │ │ │ │ │ ├── gim_memory.cpp │ │ │ │ │ ├── gim_memory.h │ │ │ │ │ ├── gim_radixsort.h │ │ │ │ │ ├── gim_tri_collision.cpp │ │ │ │ │ └── gim_tri_collision.h │ │ │ │ ├── NarrowPhaseCollision │ │ │ │ │ ├── btContinuousConvexCollision.cpp │ │ │ │ │ ├── btContinuousConvexCollision.h │ │ │ │ │ ├── btConvexCast.cpp │ │ │ │ │ ├── btConvexCast.h │ │ │ │ │ ├── btConvexPenetrationDepthSolver.h │ │ │ │ │ ├── btDiscreteCollisionDetectorInterface.h │ │ │ │ │ ├── btGjkConvexCast.cpp │ │ │ │ │ ├── btGjkConvexCast.h │ │ │ │ │ ├── btGjkEpa2.cpp │ │ │ │ │ ├── btGjkEpa2.h │ │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.cpp │ │ │ │ │ ├── btGjkEpaPenetrationDepthSolver.h │ │ │ │ │ ├── btGjkPairDetector.cpp │ │ │ │ │ ├── btGjkPairDetector.h │ │ │ │ │ ├── btManifoldPoint.h │ │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.cpp │ │ │ │ │ ├── btMinkowskiPenetrationDepthSolver.h │ │ │ │ │ ├── btPersistentManifold.cpp │ │ │ │ │ ├── btPersistentManifold.h │ │ │ │ │ ├── btPointCollector.h │ │ │ │ │ ├── btPolyhedralContactClipping.cpp │ │ │ │ │ ├── btPolyhedralContactClipping.h │ │ │ │ │ ├── btRaycastCallback.cpp │ │ │ │ │ ├── btRaycastCallback.h │ │ │ │ │ ├── btSimplexSolverInterface.h │ │ │ │ │ ├── btSubSimplexConvexCast.cpp │ │ │ │ │ ├── btSubSimplexConvexCast.h │ │ │ │ │ ├── btVoronoiSimplexSolver.cpp │ │ │ │ │ └── btVoronoiSimplexSolver.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletDynamics │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Character │ │ │ │ │ ├── btCharacterControllerInterface.h │ │ │ │ │ ├── btKinematicCharacterController.cpp │ │ │ │ │ └── btKinematicCharacterController.h │ │ │ │ ├── ConstraintSolver │ │ │ │ │ ├── btConeTwistConstraint.cpp │ │ │ │ │ ├── btConeTwistConstraint.h │ │ │ │ │ ├── btConstraintSolver.h │ │ │ │ │ ├── btContactConstraint.cpp │ │ │ │ │ ├── btContactConstraint.h │ │ │ │ │ ├── btContactSolverInfo.h │ │ │ │ │ ├── btGearConstraint.cpp │ │ │ │ │ ├── btGearConstraint.h │ │ │ │ │ ├── btGeneric6DofConstraint.cpp │ │ │ │ │ ├── btGeneric6DofConstraint.h │ │ │ │ │ ├── btGeneric6DofSpringConstraint.cpp │ │ │ │ │ ├── btGeneric6DofSpringConstraint.h │ │ │ │ │ ├── btHinge2Constraint.cpp │ │ │ │ │ ├── btHinge2Constraint.h │ │ │ │ │ ├── btHingeConstraint.cpp │ │ │ │ │ ├── btHingeConstraint.h │ │ │ │ │ ├── btJacobianEntry.h │ │ │ │ │ ├── btPoint2PointConstraint.cpp │ │ │ │ │ ├── btPoint2PointConstraint.h │ │ │ │ │ ├── btSequentialImpulseConstraintSolver.cpp │ │ │ │ │ ├── btSequentialImpulseConstraintSolver.h │ │ │ │ │ ├── btSliderConstraint.cpp │ │ │ │ │ ├── btSliderConstraint.h │ │ │ │ │ ├── btSolve2LinearConstraint.cpp │ │ │ │ │ ├── btSolve2LinearConstraint.h │ │ │ │ │ ├── btSolverBody.h │ │ │ │ │ ├── btSolverConstraint.h │ │ │ │ │ ├── btTypedConstraint.cpp │ │ │ │ │ ├── btTypedConstraint.h │ │ │ │ │ ├── btUniversalConstraint.cpp │ │ │ │ │ └── btUniversalConstraint.h │ │ │ │ ├── Dynamics │ │ │ │ │ ├── Bullet-C-API.cpp │ │ │ │ │ ├── btActionInterface.h │ │ │ │ │ ├── btDiscreteDynamicsWorld.cpp │ │ │ │ │ ├── btDiscreteDynamicsWorld.h │ │ │ │ │ ├── btDynamicsWorld.h │ │ │ │ │ ├── btRigidBody.cpp │ │ │ │ │ ├── btRigidBody.h │ │ │ │ │ ├── btSimpleDynamicsWorld.cpp │ │ │ │ │ └── btSimpleDynamicsWorld.h │ │ │ │ ├── Vehicle │ │ │ │ │ ├── btRaycastVehicle.cpp │ │ │ │ │ ├── btRaycastVehicle.h │ │ │ │ │ ├── btVehicleRaycaster.h │ │ │ │ │ ├── btWheelInfo.cpp │ │ │ │ │ └── btWheelInfo.h │ │ │ │ └── premake4.lua │ │ │ ├── BulletMultiThreaded │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GpuSoftBodySolvers │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── DX11 │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── HLSL │ │ │ │ │ │ │ ├── ApplyForces.hlsl │ │ │ │ │ │ │ ├── ComputeBounds.hlsl │ │ │ │ │ │ │ ├── Integrate.hlsl │ │ │ │ │ │ │ ├── OutputToVertexArray.hlsl │ │ │ │ │ │ │ ├── PrepareLinks.hlsl │ │ │ │ │ │ │ ├── SolvePositions.hlsl │ │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl │ │ │ │ │ │ │ ├── UpdateConstants.hlsl │ │ │ │ │ │ │ ├── UpdateNodes.hlsl │ │ │ │ │ │ │ ├── UpdateNormals.hlsl │ │ │ │ │ │ │ ├── UpdatePositions.hlsl │ │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl │ │ │ │ │ │ │ ├── VSolveLinks.hlsl │ │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl │ │ │ │ │ │ │ └── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl │ │ │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h │ │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h │ │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h │ │ │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h │ │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h │ │ │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h │ │ │ │ │ │ ├── btSoftBodySolver_DX11.cpp │ │ │ │ │ │ ├── btSoftBodySolver_DX11.h │ │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp │ │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ ├── OpenCL │ │ │ │ │ │ ├── AMD │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ │ ├── Apple │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Intel │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ │ ├── MiniCL │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── MiniCLTaskWrap.cpp │ │ │ │ │ │ ├── NVidia │ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ │ └── premake4.lua │ │ │ │ │ │ ├── OpenCLC10 │ │ │ │ │ │ │ ├── ApplyForces.cl │ │ │ │ │ │ │ ├── ComputeBounds.cl │ │ │ │ │ │ │ ├── Integrate.cl │ │ │ │ │ │ │ ├── OutputToVertexArray.cl │ │ │ │ │ │ │ ├── PrepareLinks.cl │ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl │ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl │ │ │ │ │ │ │ ├── SolvePositions.cl │ │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl │ │ │ │ │ │ │ ├── UpdateConstants.cl │ │ │ │ │ │ │ ├── UpdateFixedVertexPositions.cl │ │ │ │ │ │ │ ├── UpdateNodes.cl │ │ │ │ │ │ │ ├── UpdateNormals.cl │ │ │ │ │ │ │ ├── UpdatePositions.cl │ │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl │ │ │ │ │ │ │ └── VSolveLinks.cl │ │ │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h │ │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h │ │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h │ │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp │ │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h │ │ │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h │ │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h │ │ │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h │ │ │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp │ │ │ │ │ │ ├── btSoftBodySolver_OpenCL.h │ │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp │ │ │ │ │ │ └── btSoftBodySolver_OpenCLSIMDAware.h │ │ │ │ │ └── Shared │ │ │ │ │ │ └── btSoftBodySolverData.h │ │ │ │ ├── HeapManager.h │ │ │ │ ├── PlatformDefinitions.h │ │ │ │ ├── PosixThreadSupport.cpp │ │ │ │ ├── PosixThreadSupport.h │ │ │ │ ├── PpuAddressSpace.h │ │ │ │ ├── SequentialThreadSupport.cpp │ │ │ │ ├── SequentialThreadSupport.h │ │ │ │ ├── SpuCollisionObjectWrapper.cpp │ │ │ │ ├── SpuCollisionObjectWrapper.h │ │ │ │ ├── SpuCollisionTaskProcess.cpp │ │ │ │ ├── SpuCollisionTaskProcess.h │ │ │ │ ├── SpuContactManifoldCollisionAlgorithm.cpp │ │ │ │ ├── SpuContactManifoldCollisionAlgorithm.h │ │ │ │ ├── SpuDoubleBuffer.h │ │ │ │ ├── SpuFakeDma.cpp │ │ │ │ ├── SpuFakeDma.h │ │ │ │ ├── SpuGatheringCollisionDispatcher.cpp │ │ │ │ ├── SpuGatheringCollisionDispatcher.h │ │ │ │ ├── SpuLibspe2Support.cpp │ │ │ │ ├── SpuLibspe2Support.h │ │ │ │ ├── SpuNarrowPhaseCollisionTask │ │ │ │ │ ├── Box.h │ │ │ │ │ ├── SpuCollisionShapes.cpp │ │ │ │ │ ├── SpuCollisionShapes.h │ │ │ │ │ ├── SpuContactResult.cpp │ │ │ │ │ ├── SpuContactResult.h │ │ │ │ │ ├── SpuConvexPenetrationDepthSolver.h │ │ │ │ │ ├── SpuGatheringCollisionTask.cpp │ │ │ │ │ ├── SpuGatheringCollisionTask.h │ │ │ │ │ ├── SpuLocalSupport.h │ │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp │ │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h │ │ │ │ │ ├── SpuPreferredPenetrationDirections.h │ │ │ │ │ ├── boxBoxDistance.cpp │ │ │ │ │ ├── boxBoxDistance.h │ │ │ │ │ └── readme.txt │ │ │ │ ├── SpuSampleTask │ │ │ │ │ ├── SpuSampleTask.cpp │ │ │ │ │ ├── SpuSampleTask.h │ │ │ │ │ └── readme.txt │ │ │ │ ├── SpuSampleTaskProcess.cpp │ │ │ │ ├── SpuSampleTaskProcess.h │ │ │ │ ├── SpuSync.h │ │ │ │ ├── TrbDynBody.h │ │ │ │ ├── TrbStateVec.h │ │ │ │ ├── Win32ThreadSupport.cpp │ │ │ │ ├── Win32ThreadSupport.h │ │ │ │ ├── btGpu3DGridBroadphase.cpp │ │ │ │ ├── btGpu3DGridBroadphase.h │ │ │ │ ├── btGpu3DGridBroadphaseSharedCode.h │ │ │ │ ├── btGpu3DGridBroadphaseSharedDefs.h │ │ │ │ ├── btGpu3DGridBroadphaseSharedTypes.h │ │ │ │ ├── btGpuDefines.h │ │ │ │ ├── btGpuUtilsSharedCode.h │ │ │ │ ├── btGpuUtilsSharedDefs.h │ │ │ │ ├── btParallelConstraintSolver.cpp │ │ │ │ ├── btParallelConstraintSolver.h │ │ │ │ ├── btThreadSupportInterface.cpp │ │ │ │ ├── btThreadSupportInterface.h │ │ │ │ └── vectormath2bullet.h │ │ │ ├── BulletSoftBody │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btDefaultSoftBodySolver.cpp │ │ │ │ ├── btDefaultSoftBodySolver.h │ │ │ │ ├── btSoftBody.cpp │ │ │ │ ├── btSoftBody.h │ │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp │ │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h │ │ │ │ ├── btSoftBodyData.h │ │ │ │ ├── btSoftBodyHelpers.cpp │ │ │ │ ├── btSoftBodyHelpers.h │ │ │ │ ├── btSoftBodyInternals.h │ │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp │ │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h │ │ │ │ ├── btSoftBodySolverVertexBuffer.h │ │ │ │ ├── btSoftBodySolvers.h │ │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp │ │ │ │ ├── btSoftRigidCollisionAlgorithm.h │ │ │ │ ├── btSoftRigidDynamicsWorld.cpp │ │ │ │ ├── btSoftRigidDynamicsWorld.h │ │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp │ │ │ │ ├── btSoftSoftCollisionAlgorithm.h │ │ │ │ ├── btSparseSDF.h │ │ │ │ └── premake4.lua │ │ │ ├── CMakeLists.txt │ │ │ ├── LinearMath │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btAabbUtil2.h │ │ │ │ ├── btAlignedAllocator.cpp │ │ │ │ ├── btAlignedAllocator.h │ │ │ │ ├── btAlignedObjectArray.h │ │ │ │ ├── btConvexHull.cpp │ │ │ │ ├── btConvexHull.h │ │ │ │ ├── btConvexHullComputer.cpp │ │ │ │ ├── btConvexHullComputer.h │ │ │ │ ├── btDefaultMotionState.h │ │ │ │ ├── btGeometryUtil.cpp │ │ │ │ ├── btGeometryUtil.h │ │ │ │ ├── btGrahamScan2dConvexHull.h │ │ │ │ ├── btHashMap.h │ │ │ │ ├── btIDebugDraw.h │ │ │ │ ├── btList.h │ │ │ │ ├── btMatrix3x3.h │ │ │ │ ├── btMinMax.h │ │ │ │ ├── btMotionState.h │ │ │ │ ├── btPolarDecomposition.cpp │ │ │ │ ├── btPolarDecomposition.h │ │ │ │ ├── btPoolAllocator.h │ │ │ │ ├── btQuadWord.h │ │ │ │ ├── btQuaternion.h │ │ │ │ ├── btQuickprof.cpp │ │ │ │ ├── btQuickprof.h │ │ │ │ ├── btRandom.h │ │ │ │ ├── btScalar.h │ │ │ │ ├── btSerializer.cpp │ │ │ │ ├── btSerializer.h │ │ │ │ ├── btStackAlloc.h │ │ │ │ ├── btTransform.h │ │ │ │ ├── btTransformUtil.h │ │ │ │ ├── btVector3.cpp │ │ │ │ ├── btVector3.h │ │ │ │ └── premake4.lua │ │ │ ├── Makefile.am │ │ │ ├── MiniCL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MiniCL.cpp │ │ │ │ ├── MiniCLTask │ │ │ │ │ ├── MiniCLTask.cpp │ │ │ │ │ └── MiniCLTask.h │ │ │ │ ├── MiniCLTaskScheduler.cpp │ │ │ │ ├── MiniCLTaskScheduler.h │ │ │ │ ├── cl.h │ │ │ │ ├── cl_MiniCL_Defs.h │ │ │ │ ├── cl_gl.h │ │ │ │ └── cl_platform.h │ │ │ ├── btBulletCollisionCommon.h │ │ │ ├── btBulletDynamicsCommon.h │ │ │ └── vectormath │ │ │ │ ├── neon │ │ │ │ ├── boolInVec.h │ │ │ │ ├── floatInVec.h │ │ │ │ ├── mat_aos.h │ │ │ │ ├── quat_aos.h │ │ │ │ ├── vec_aos.h │ │ │ │ └── vectormath_aos.h │ │ │ │ ├── scalar │ │ │ │ ├── boolInVec.h │ │ │ │ ├── floatInVec.h │ │ │ │ ├── mat_aos.h │ │ │ │ ├── quat_aos.h │ │ │ │ ├── vec_aos.h │ │ │ │ └── vectormath_aos.h │ │ │ │ ├── sse │ │ │ │ ├── boolInVec.h │ │ │ │ ├── floatInVec.h │ │ │ │ ├── mat_aos.h │ │ │ │ ├── quat_aos.h │ │ │ │ ├── vec_aos.h │ │ │ │ ├── vecidx_aos.h │ │ │ │ └── vectormath_aos.h │ │ │ │ └── vmInclude.h │ │ │ └── test1.oec │ ├── cjson │ │ └── CMakeLists.txt │ ├── libfreetype │ │ ├── CMakeLists.txt │ │ ├── FTL.TXT │ │ ├── LICENSE.TXT │ │ ├── autofit │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afpic.c │ │ │ ├── afpic.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ └── autofit.c │ │ ├── base │ │ │ ├── basepic.c │ │ │ ├── basepic.h │ │ │ ├── ftadvanc.c │ │ │ ├── ftapi.c │ │ │ ├── ftbase.c │ │ │ ├── ftbase.h │ │ │ ├── ftbbox.c │ │ │ ├── ftbdf.c │ │ │ ├── ftbitmap.c │ │ │ ├── ftcalc.c │ │ │ ├── ftcid.c │ │ │ ├── ftdbgmem.c │ │ │ ├── ftdebug.c │ │ │ ├── ftfstype.c │ │ │ ├── ftgasp.c │ │ │ ├── ftgloadr.c │ │ │ ├── ftglyph.c │ │ │ ├── ftgxval.c │ │ │ ├── ftinit.c │ │ │ ├── ftlcdfil.c │ │ │ ├── ftmac.c │ │ │ ├── ftmm.c │ │ │ ├── ftobjs.c │ │ │ ├── ftotval.c │ │ │ ├── ftoutln.c │ │ │ ├── ftpatent.c │ │ │ ├── ftpfr.c │ │ │ ├── ftpic.c │ │ │ ├── ftrfork.c │ │ │ ├── ftsnames.c │ │ │ ├── ftstream.c │ │ │ ├── ftstroke.c │ │ │ ├── ftsynth.c │ │ │ ├── ftsystem.c │ │ │ ├── fttrigon.c │ │ │ ├── fttype1.c │ │ │ ├── ftutil.c │ │ │ ├── ftwinfnt.c │ │ │ └── ftxf86.c │ │ ├── bdf │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ └── bdflib.c │ │ ├── cache │ │ │ ├── ftcache.c │ │ │ ├── ftcbasic.c │ │ │ ├── ftccache.c │ │ │ ├── ftccache.h │ │ │ ├── ftccback.h │ │ │ ├── ftccmap.c │ │ │ ├── ftcerror.h │ │ │ ├── ftcglyph.c │ │ │ ├── ftcglyph.h │ │ │ ├── ftcimage.c │ │ │ ├── ftcimage.h │ │ │ ├── ftcmanag.c │ │ │ ├── ftcmanag.h │ │ │ ├── ftcmru.c │ │ │ ├── ftcmru.h │ │ │ ├── ftcsbits.c │ │ │ └── ftcsbits.h │ │ ├── cff │ │ │ ├── cff.c │ │ │ ├── cffcmap.c │ │ │ ├── cffcmap.h │ │ │ ├── cffdrivr.c │ │ │ ├── cffdrivr.h │ │ │ ├── cfferrs.h │ │ │ ├── cffgload.c │ │ │ ├── cffgload.h │ │ │ ├── cffload.c │ │ │ ├── cffload.h │ │ │ ├── cffobjs.c │ │ │ ├── cffobjs.h │ │ │ ├── cffparse.c │ │ │ ├── cffparse.h │ │ │ ├── cffpic.c │ │ │ ├── cffpic.h │ │ │ ├── cfftoken.h │ │ │ └── cfftypes.h │ │ ├── cid │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ └── type1cid.c │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.h │ │ │ ├── ftadvanc.h │ │ │ ├── ftbbox.h │ │ │ ├── ftbdf.h │ │ │ ├── ftbitmap.h │ │ │ ├── ftcache.h │ │ │ ├── ftchapters.h │ │ │ ├── ftcid.h │ │ │ ├── fterrdef.h │ │ │ ├── fterrors.h │ │ │ ├── ftgasp.h │ │ │ ├── ftglyph.h │ │ │ ├── ftgxval.h │ │ │ ├── ftgzip.h │ │ │ ├── ftimage.h │ │ │ ├── ftincrem.h │ │ │ ├── ftlcdfil.h │ │ │ ├── ftlist.h │ │ │ ├── ftlzw.h │ │ │ ├── ftmac.h │ │ │ ├── ftmm.h │ │ │ ├── ftmodapi.h │ │ │ ├── ftmoderr.h │ │ │ ├── ftotval.h │ │ │ ├── ftoutln.h │ │ │ ├── ftpfr.h │ │ │ ├── ftrender.h │ │ │ ├── ftsizes.h │ │ │ ├── ftsnames.h │ │ │ ├── ftstroke.h │ │ │ ├── ftsynth.h │ │ │ ├── ftsystem.h │ │ │ ├── fttrigon.h │ │ │ ├── fttypes.h │ │ │ ├── ftwinfnt.h │ │ │ ├── ftxf86.h │ │ │ ├── internal │ │ │ │ ├── autohint.h │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdriver.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpic.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.h │ │ │ │ ├── pcftypes.h │ │ │ │ ├── psaux.h │ │ │ │ ├── pshints.h │ │ │ │ ├── services │ │ │ │ │ ├── svbdf.h │ │ │ │ │ ├── svcid.h │ │ │ │ │ ├── svgldict.h │ │ │ │ │ ├── svgxval.h │ │ │ │ │ ├── svkern.h │ │ │ │ │ ├── svmm.h │ │ │ │ │ ├── svotval.h │ │ │ │ │ ├── svpfr.h │ │ │ │ │ ├── svpostnm.h │ │ │ │ │ ├── svpscmap.h │ │ │ │ │ ├── svpsinfo.h │ │ │ │ │ ├── svsfnt.h │ │ │ │ │ ├── svttcmap.h │ │ │ │ │ ├── svtteng.h │ │ │ │ │ ├── svttglyf.h │ │ │ │ │ ├── svwinfnt.h │ │ │ │ │ └── svxf86nm.h │ │ │ │ ├── sfnt.h │ │ │ │ ├── t1types.h │ │ │ │ └── tttypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ ├── tttags.h │ │ │ └── ttunpat.h │ │ ├── ft2build.h │ │ ├── gxvalid │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ └── gxvtrak.c │ │ ├── gzip │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ └── ftzopen.h │ │ ├── otvalid │ │ │ ├── otvalid.c │ │ │ ├── otvalid.h │ │ │ ├── otvbase.c │ │ │ ├── otvcommn.c │ │ │ ├── otvcommn.h │ │ │ ├── otverror.h │ │ │ ├── otvgdef.c │ │ │ ├── otvgpos.c │ │ │ ├── otvgpos.h │ │ │ ├── otvgsub.c │ │ │ ├── otvjstf.c │ │ │ ├── otvmath.c │ │ │ ├── otvmod.c │ │ │ └── otvmod.h │ │ ├── pcf │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ └── pcfutil.h │ │ ├── pfr │ │ │ ├── pfr.c │ │ │ ├── pfrcmap.c │ │ │ ├── pfrcmap.h │ │ │ ├── pfrdrivr.c │ │ │ ├── pfrdrivr.h │ │ │ ├── pfrerror.h │ │ │ ├── pfrgload.c │ │ │ ├── pfrgload.h │ │ │ ├── pfrload.c │ │ │ ├── pfrload.h │ │ │ ├── pfrobjs.c │ │ │ ├── pfrobjs.h │ │ │ ├── pfrsbit.c │ │ │ ├── pfrsbit.h │ │ │ └── pfrtypes.h │ │ ├── psaux │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── psaux.c │ │ │ ├── psauxerr.h │ │ │ ├── psauxmod.c │ │ │ ├── psauxmod.h │ │ │ ├── psconv.c │ │ │ ├── psconv.h │ │ │ ├── psobjs.c │ │ │ ├── psobjs.h │ │ │ ├── t1cmap.c │ │ │ ├── t1cmap.h │ │ │ ├── t1decode.c │ │ │ └── t1decode.h │ │ ├── pshinter │ │ │ ├── pshalgo.c │ │ │ ├── pshalgo.h │ │ │ ├── pshglob.c │ │ │ ├── pshglob.h │ │ │ ├── pshinter.c │ │ │ ├── pshmod.c │ │ │ ├── pshmod.h │ │ │ ├── pshnterr.h │ │ │ ├── pshpic.c │ │ │ ├── pshpic.h │ │ │ ├── pshrec.c │ │ │ └── pshrec.h │ │ ├── psnames │ │ │ ├── psmodule.c │ │ │ ├── psmodule.h │ │ │ ├── psnamerr.h │ │ │ ├── psnames.c │ │ │ ├── pspic.c │ │ │ ├── pspic.h │ │ │ └── pstables.h │ │ ├── raster │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ ├── rastpic.c │ │ │ └── rastpic.h │ │ ├── sfnt │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfntpic.c │ │ │ ├── sfntpic.h │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ ├── ttsbit.h │ │ │ └── ttsbit0.c │ │ ├── smooth │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.h │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── .gitignore │ │ │ │ ├── content.py │ │ │ │ ├── docbeauty.py │ │ │ │ ├── docmaker.py │ │ │ │ ├── formatter.py │ │ │ │ ├── sources.py │ │ │ │ ├── tohtml.py │ │ │ │ └── utils.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ └── test_trig.c │ │ ├── truetype │ │ │ ├── truetype.c │ │ │ ├── ttdriver.c │ │ │ ├── ttdriver.h │ │ │ ├── tterrors.h │ │ │ ├── ttgload.c │ │ │ ├── ttgload.h │ │ │ ├── ttgxvar.c │ │ │ ├── ttgxvar.h │ │ │ ├── ttinterp.c │ │ │ ├── ttinterp.h │ │ │ ├── ttobjs.c │ │ │ ├── ttobjs.h │ │ │ ├── ttpic.c │ │ │ ├── ttpic.h │ │ │ ├── ttpload.c │ │ │ └── ttpload.h │ │ ├── type1 │ │ │ ├── t1afm.c │ │ │ ├── t1afm.h │ │ │ ├── t1driver.c │ │ │ ├── t1driver.h │ │ │ ├── t1errors.h │ │ │ ├── t1gload.c │ │ │ ├── t1gload.h │ │ │ ├── t1load.c │ │ │ ├── t1load.h │ │ │ ├── t1objs.c │ │ │ ├── t1objs.h │ │ │ ├── t1parse.c │ │ │ ├── t1parse.h │ │ │ ├── t1tokens.h │ │ │ └── type1.c │ │ ├── type42 │ │ │ ├── t42drivr.c │ │ │ ├── t42drivr.h │ │ │ ├── t42error.h │ │ │ ├── t42objs.c │ │ │ ├── t42objs.h │ │ │ ├── t42parse.c │ │ │ ├── t42parse.h │ │ │ ├── t42types.h │ │ │ └── type42.c │ │ └── winfonts │ │ │ ├── fnterrs.h │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── libjpeg │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── cderror.h │ │ ├── cdjpeg.c │ │ ├── cdjpeg.h │ │ ├── jaricom.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jcarith.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdarith.c │ │ ├── jdatadst.c │ │ ├── jdatasrc.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jinclude.h │ │ ├── jmemansi.c │ │ ├── jmemmgr.c │ │ ├── jmemsys.h │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── rdbmp.c │ │ ├── rdcolmap.c │ │ ├── rdgif.c │ │ ├── rdppm.c │ │ ├── rdrle.c │ │ ├── rdswitch.c │ │ ├── rdtarga.c │ │ ├── transupp.c │ │ ├── transupp.h │ │ ├── wrbmp.c │ │ ├── wrgif.c │ │ ├── wrjpgcom.c │ │ ├── wrppm.c │ │ ├── wrrle.c │ │ └── wrtarga.c │ ├── libpng │ │ ├── CMakeLists.txt │ │ ├── config.h │ │ ├── png.c │ │ ├── png.h │ │ ├── pngconf.h │ │ ├── pngdebug.h │ │ ├── pngerror.c │ │ ├── pngget.c │ │ ├── pnginfo.h │ │ ├── pnglibconf.h │ │ ├── pngmem.c │ │ ├── pngpread.c │ │ ├── pngpriv.h │ │ ├── pngread.c │ │ ├── pngrio.c │ │ ├── pngrtran.c │ │ ├── pngrutil.c │ │ ├── pngset.c │ │ ├── pngstruct.h │ │ ├── pngtest.c │ │ ├── pngtrans.c │ │ ├── pngwio.c │ │ ├── pngwrite.c │ │ ├── pngwtran.c │ │ └── pngwutil.c │ ├── libqimg │ │ ├── CMakeLists.txt │ │ ├── qdevilplugin.cc │ │ └── qdevilplugin.h │ ├── librocket │ │ ├── CMakeLists.txt │ │ └── Rocket │ │ │ ├── Controls.h │ │ │ ├── Controls │ │ │ ├── Clipboard.cpp │ │ │ ├── Clipboard.h │ │ │ ├── Controls.cpp │ │ │ ├── Controls.h │ │ │ ├── DataFormatter.cpp │ │ │ ├── DataFormatter.h │ │ │ ├── DataQuery.cpp │ │ │ ├── DataQuery.h │ │ │ ├── DataSource.cpp │ │ │ ├── DataSource.h │ │ │ ├── DataSourceListener.cpp │ │ │ ├── DataSourceListener.h │ │ │ ├── ElementDataGrid.cpp │ │ │ ├── ElementDataGrid.h │ │ │ ├── ElementDataGridCell.cpp │ │ │ ├── ElementDataGridCell.h │ │ │ ├── ElementDataGridExpandButton.cpp │ │ │ ├── ElementDataGridExpandButton.h │ │ │ ├── ElementDataGridRow.cpp │ │ │ ├── ElementDataGridRow.h │ │ │ ├── ElementForm.cpp │ │ │ ├── ElementForm.h │ │ │ ├── ElementFormControl.cpp │ │ │ ├── ElementFormControl.h │ │ │ ├── ElementFormControlDataSelect.cpp │ │ │ ├── ElementFormControlDataSelect.h │ │ │ ├── ElementFormControlInput.cpp │ │ │ ├── ElementFormControlInput.h │ │ │ ├── ElementFormControlSelect.cpp │ │ │ ├── ElementFormControlSelect.h │ │ │ ├── ElementFormControlTextArea.cpp │ │ │ ├── ElementFormControlTextArea.h │ │ │ ├── ElementTabSet.cpp │ │ │ ├── ElementTabSet.h │ │ │ ├── ElementTextSelection.cpp │ │ │ ├── ElementTextSelection.h │ │ │ ├── Header.h │ │ │ ├── InputType.cpp │ │ │ ├── InputType.h │ │ │ ├── InputTypeButton.cpp │ │ │ ├── InputTypeButton.h │ │ │ ├── InputTypeCheckbox.cpp │ │ │ ├── InputTypeCheckbox.h │ │ │ ├── InputTypeRadio.cpp │ │ │ ├── InputTypeRadio.h │ │ │ ├── InputTypeRange.cpp │ │ │ ├── InputTypeRange.h │ │ │ ├── InputTypeSubmit.cpp │ │ │ ├── InputTypeSubmit.h │ │ │ ├── InputTypeText.cpp │ │ │ ├── InputTypeText.h │ │ │ ├── SelectOption.cpp │ │ │ ├── SelectOption.h │ │ │ ├── WidgetDropDown.cpp │ │ │ ├── WidgetDropDown.h │ │ │ ├── WidgetSlider.cpp │ │ │ ├── WidgetSlider.h │ │ │ ├── WidgetSliderInput.cpp │ │ │ ├── WidgetSliderInput.h │ │ │ ├── WidgetTextInput.cpp │ │ │ ├── WidgetTextInput.h │ │ │ ├── WidgetTextInputMultiLine.cpp │ │ │ ├── WidgetTextInputMultiLine.h │ │ │ ├── WidgetTextInputSingleLine.cpp │ │ │ ├── WidgetTextInputSingleLine.h │ │ │ ├── WidgetTextInputSingleLinePassword.cpp │ │ │ ├── WidgetTextInputSingleLinePassword.h │ │ │ ├── XMLNodeHandlerDataGrid.cpp │ │ │ ├── XMLNodeHandlerDataGrid.h │ │ │ ├── XMLNodeHandlerTabSet.cpp │ │ │ ├── XMLNodeHandlerTabSet.h │ │ │ ├── XMLNodeHandlerTextArea.cpp │ │ │ └── XMLNodeHandlerTextArea.h │ │ │ ├── Core.h │ │ │ ├── Core │ │ │ ├── BaseXMLParser.cpp │ │ │ ├── BaseXMLParser.h │ │ │ ├── Box.cpp │ │ │ ├── Box.h │ │ │ ├── Clock.cpp │ │ │ ├── Clock.h │ │ │ ├── Colour.h │ │ │ ├── Colour.inl │ │ │ ├── Context.cpp │ │ │ ├── Context.h │ │ │ ├── ContextInstancer.cpp │ │ │ ├── ContextInstancer.h │ │ │ ├── ContextInstancerDefault.cpp │ │ │ ├── ContextInstancerDefault.h │ │ │ ├── ConvolutionFilter.cpp │ │ │ ├── ConvolutionFilter.h │ │ │ ├── Core.cpp │ │ │ ├── Core.h │ │ │ ├── Debug.h │ │ │ ├── DebugFont.h │ │ │ ├── Decorator.cpp │ │ │ ├── Decorator.h │ │ │ ├── DecoratorInstancer.cpp │ │ │ ├── DecoratorInstancer.h │ │ │ ├── DecoratorNone.cpp │ │ │ ├── DecoratorNone.h │ │ │ ├── DecoratorNoneInstancer.cpp │ │ │ ├── DecoratorNoneInstancer.h │ │ │ ├── DecoratorTiled.cpp │ │ │ ├── DecoratorTiled.h │ │ │ ├── DecoratorTiledBox.cpp │ │ │ ├── DecoratorTiledBox.h │ │ │ ├── DecoratorTiledBoxInstancer.cpp │ │ │ ├── DecoratorTiledBoxInstancer.h │ │ │ ├── DecoratorTiledHorizontal.cpp │ │ │ ├── DecoratorTiledHorizontal.h │ │ │ ├── DecoratorTiledHorizontalInstancer.cpp │ │ │ ├── DecoratorTiledHorizontalInstancer.h │ │ │ ├── DecoratorTiledImage.cpp │ │ │ ├── DecoratorTiledImage.h │ │ │ ├── DecoratorTiledImageInstancer.cpp │ │ │ ├── DecoratorTiledImageInstancer.h │ │ │ ├── DecoratorTiledInstancer.cpp │ │ │ ├── DecoratorTiledInstancer.h │ │ │ ├── DecoratorTiledVertical.cpp │ │ │ ├── DecoratorTiledVertical.h │ │ │ ├── DecoratorTiledVerticalInstancer.cpp │ │ │ ├── DecoratorTiledVerticalInstancer.h │ │ │ ├── Dictionary.cpp │ │ │ ├── Dictionary.h │ │ │ ├── Dictionary.inl │ │ │ ├── DocumentHeader.cpp │ │ │ ├── DocumentHeader.h │ │ │ ├── Element.cpp │ │ │ ├── Element.h │ │ │ ├── Element.inl │ │ │ ├── ElementBackground.cpp │ │ │ ├── ElementBackground.h │ │ │ ├── ElementBorder.cpp │ │ │ ├── ElementBorder.h │ │ │ ├── ElementDecoration.cpp │ │ │ ├── ElementDecoration.h │ │ │ ├── ElementDefinition.cpp │ │ │ ├── ElementDefinition.h │ │ │ ├── ElementDocument.cpp │ │ │ ├── ElementDocument.h │ │ │ ├── ElementHandle.cpp │ │ │ ├── ElementHandle.h │ │ │ ├── ElementImage.cpp │ │ │ ├── ElementImage.h │ │ │ ├── ElementInstancer.cpp │ │ │ ├── ElementInstancer.h │ │ │ ├── ElementInstancerGeneric.h │ │ │ ├── ElementInstancerGeneric.inl │ │ │ ├── ElementReference.cpp │ │ │ ├── ElementReference.h │ │ │ ├── ElementScroll.cpp │ │ │ ├── ElementScroll.h │ │ │ ├── ElementStyle.cpp │ │ │ ├── ElementStyle.h │ │ │ ├── ElementStyleCache.cpp │ │ │ ├── ElementStyleCache.h │ │ │ ├── ElementText.cpp │ │ │ ├── ElementText.h │ │ │ ├── ElementTextDefault.cpp │ │ │ ├── ElementTextDefault.h │ │ │ ├── ElementUtilities.cpp │ │ │ ├── ElementUtilities.h │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── EventDispatcher.cpp │ │ │ ├── EventDispatcher.h │ │ │ ├── EventInstancer.cpp │ │ │ ├── EventInstancer.h │ │ │ ├── EventInstancerDefault.cpp │ │ │ ├── EventInstancerDefault.h │ │ │ ├── EventIterators.h │ │ │ ├── EventListener.h │ │ │ ├── EventListenerInstancer.cpp │ │ │ ├── EventListenerInstancer.h │ │ │ ├── Factory.cpp │ │ │ ├── Factory.h │ │ │ ├── FileInterface.cpp │ │ │ ├── FileInterface.h │ │ │ ├── FileInterfaceDefault.cpp │ │ │ ├── FileInterfaceDefault.h │ │ │ ├── Font.h │ │ │ ├── FontDatabase.cpp │ │ │ ├── FontDatabase.h │ │ │ ├── FontEffect.cpp │ │ │ ├── FontEffect.h │ │ │ ├── FontEffectInstancer.cpp │ │ │ ├── FontEffectInstancer.h │ │ │ ├── FontEffectNone.cpp │ │ │ ├── FontEffectNone.h │ │ │ ├── FontEffectNoneInstancer.cpp │ │ │ ├── FontEffectNoneInstancer.h │ │ │ ├── FontEffectOutline.cpp │ │ │ ├── FontEffectOutline.h │ │ │ ├── FontEffectOutlineInstancer.cpp │ │ │ ├── FontEffectOutlineInstancer.h │ │ │ ├── FontEffectShadow.cpp │ │ │ ├── FontEffectShadow.h │ │ │ ├── FontEffectShadowInstancer.cpp │ │ │ ├── FontEffectShadowInstancer.h │ │ │ ├── FontFace.cpp │ │ │ ├── FontFace.h │ │ │ ├── FontFaceHandle.cpp │ │ │ ├── FontFaceHandle.h │ │ │ ├── FontFaceLayer.cpp │ │ │ ├── FontFaceLayer.h │ │ │ ├── FontFamily.cpp │ │ │ ├── FontFamily.h │ │ │ ├── FontGlyph.h │ │ │ ├── Geometry.cpp │ │ │ ├── Geometry.h │ │ │ ├── GeometryDatabase.cpp │ │ │ ├── GeometryDatabase.h │ │ │ ├── GeometryUtilities.cpp │ │ │ ├── GeometryUtilities.h │ │ │ ├── Header.h │ │ │ ├── Input.h │ │ │ ├── LayoutBlockBox.cpp │ │ │ ├── LayoutBlockBox.h │ │ │ ├── LayoutBlockBoxSpace.cpp │ │ │ ├── LayoutBlockBoxSpace.h │ │ │ ├── LayoutEngine.cpp │ │ │ ├── LayoutEngine.h │ │ │ ├── LayoutInlineBox.cpp │ │ │ ├── LayoutInlineBox.h │ │ │ ├── LayoutInlineBoxText.cpp │ │ │ ├── LayoutInlineBoxText.h │ │ │ ├── LayoutLineBox.cpp │ │ │ ├── LayoutLineBox.h │ │ │ ├── Log.cpp │ │ │ ├── Log.h │ │ │ ├── Math.cpp │ │ │ ├── Math.h │ │ │ ├── MathTypes.h │ │ │ ├── Platform.h │ │ │ ├── Plugin.cpp │ │ │ ├── Plugin.h │ │ │ ├── PluginRegistry.cpp │ │ │ ├── PluginRegistry.h │ │ │ ├── Pool.h │ │ │ ├── Pool.inl │ │ │ ├── Property.cpp │ │ │ ├── Property.h │ │ │ ├── PropertyDefinition.cpp │ │ │ ├── PropertyDefinition.h │ │ │ ├── PropertyDictionary.cpp │ │ │ ├── PropertyDictionary.h │ │ │ ├── PropertyParser.h │ │ │ ├── PropertyParserColour.cpp │ │ │ ├── PropertyParserColour.h │ │ │ ├── PropertyParserKeyword.cpp │ │ │ ├── PropertyParserKeyword.h │ │ │ ├── PropertyParserNumber.cpp │ │ │ ├── PropertyParserNumber.h │ │ │ ├── PropertyParserString.cpp │ │ │ ├── PropertyParserString.h │ │ │ ├── PropertyShorthandDefinition.h │ │ │ ├── PropertySpecification.cpp │ │ │ ├── PropertySpecification.h │ │ │ ├── ReferenceCountable.cpp │ │ │ ├── ReferenceCountable.h │ │ │ ├── RenderInterface.cpp │ │ │ ├── RenderInterface.h │ │ │ ├── ScriptInterface.h │ │ │ ├── Stream.cpp │ │ │ ├── Stream.h │ │ │ ├── StreamFile.cpp │ │ │ ├── StreamFile.h │ │ │ ├── StreamMemory.cpp │ │ │ ├── StreamMemory.h │ │ │ ├── String.cpp │ │ │ ├── String.h │ │ │ ├── StringBase.h │ │ │ ├── StringBase.inl │ │ │ ├── StringCache.cpp │ │ │ ├── StringCache.h │ │ │ ├── StringUtilities.cpp │ │ │ ├── StringUtilities.h │ │ │ ├── StyleSheet.cpp │ │ │ ├── StyleSheet.h │ │ │ ├── StyleSheetFactory.cpp │ │ │ ├── StyleSheetFactory.h │ │ │ ├── StyleSheetKeywords.h │ │ │ ├── StyleSheetNode.cpp │ │ │ ├── StyleSheetNode.h │ │ │ ├── StyleSheetNodeSelector.cpp │ │ │ ├── StyleSheetNodeSelector.h │ │ │ ├── StyleSheetNodeSelectorEmpty.cpp │ │ │ ├── StyleSheetNodeSelectorEmpty.h │ │ │ ├── StyleSheetNodeSelectorFirstChild.cpp │ │ │ ├── StyleSheetNodeSelectorFirstChild.h │ │ │ ├── StyleSheetNodeSelectorFirstOfType.cpp │ │ │ ├── StyleSheetNodeSelectorFirstOfType.h │ │ │ ├── StyleSheetNodeSelectorLastChild.cpp │ │ │ ├── StyleSheetNodeSelectorLastChild.h │ │ │ ├── StyleSheetNodeSelectorLastOfType.cpp │ │ │ ├── StyleSheetNodeSelectorLastOfType.h │ │ │ ├── StyleSheetNodeSelectorNthChild.cpp │ │ │ ├── StyleSheetNodeSelectorNthChild.h │ │ │ ├── StyleSheetNodeSelectorNthLastChild.cpp │ │ │ ├── StyleSheetNodeSelectorNthLastChild.h │ │ │ ├── StyleSheetNodeSelectorNthLastOfType.cpp │ │ │ ├── StyleSheetNodeSelectorNthLastOfType.h │ │ │ ├── StyleSheetNodeSelectorNthOfType.cpp │ │ │ ├── StyleSheetNodeSelectorNthOfType.h │ │ │ ├── StyleSheetNodeSelectorOnlyChild.cpp │ │ │ ├── StyleSheetNodeSelectorOnlyChild.h │ │ │ ├── StyleSheetNodeSelectorOnlyOfType.cpp │ │ │ ├── StyleSheetNodeSelectorOnlyOfType.h │ │ │ ├── StyleSheetParser.cpp │ │ │ ├── StyleSheetParser.h │ │ │ ├── StyleSheetSpecification.cpp │ │ │ ├── StyleSheetSpecification.h │ │ │ ├── SystemInterface.cpp │ │ │ ├── SystemInterface.h │ │ │ ├── Template.cpp │ │ │ ├── Template.h │ │ │ ├── TemplateCache.cpp │ │ │ ├── TemplateCache.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureDatabase.cpp │ │ │ ├── TextureDatabase.h │ │ │ ├── TextureLayout.cpp │ │ │ ├── TextureLayout.h │ │ │ ├── TextureLayoutRectangle.cpp │ │ │ ├── TextureLayoutRectangle.h │ │ │ ├── TextureLayoutRow.cpp │ │ │ ├── TextureLayoutRow.h │ │ │ ├── TextureLayoutTexture.cpp │ │ │ ├── TextureLayoutTexture.h │ │ │ ├── TextureResource.cpp │ │ │ ├── TextureResource.h │ │ │ ├── TypeConverter.h │ │ │ ├── TypeConverter.inl │ │ │ ├── Types.h │ │ │ ├── URL.cpp │ │ │ ├── URL.h │ │ │ ├── UnicodeRange.cpp │ │ │ ├── UnicodeRange.h │ │ │ ├── Variant.cpp │ │ │ ├── Variant.h │ │ │ ├── Variant.inl │ │ │ ├── Vector2.cpp │ │ │ ├── Vector2.h │ │ │ ├── Vector2.inl │ │ │ ├── Vertex.h │ │ │ ├── WString.cpp │ │ │ ├── WString.h │ │ │ ├── WidgetSlider.cpp │ │ │ ├── WidgetSlider.h │ │ │ ├── WidgetSliderScroll.cpp │ │ │ ├── WidgetSliderScroll.h │ │ │ ├── XMLNodeHandler.cpp │ │ │ ├── XMLNodeHandler.h │ │ │ ├── XMLNodeHandlerBody.cpp │ │ │ ├── XMLNodeHandlerBody.h │ │ │ ├── XMLNodeHandlerDefault.cpp │ │ │ ├── XMLNodeHandlerDefault.h │ │ │ ├── XMLNodeHandlerHead.cpp │ │ │ ├── XMLNodeHandlerHead.h │ │ │ ├── XMLNodeHandlerTemplate.cpp │ │ │ ├── XMLNodeHandlerTemplate.h │ │ │ ├── XMLParseTools.cpp │ │ │ ├── XMLParseTools.h │ │ │ ├── XMLParser.cpp │ │ │ ├── XMLParser.h │ │ │ ├── precompiled.cpp │ │ │ └── precompiled.h │ │ │ ├── Debugger.h │ │ │ └── Debugger │ │ │ ├── BeaconSource.h │ │ │ ├── CommonSource.h │ │ │ ├── Debugger.cpp │ │ │ ├── Debugger.h │ │ │ ├── ElementContextHook.cpp │ │ │ ├── ElementContextHook.h │ │ │ ├── ElementInfo.cpp │ │ │ ├── ElementInfo.h │ │ │ ├── ElementLog.cpp │ │ │ ├── ElementLog.h │ │ │ ├── FontSource.h │ │ │ ├── Geometry.cpp │ │ │ ├── Geometry.h │ │ │ ├── Header.h │ │ │ ├── InfoSource.h │ │ │ ├── LogSource.h │ │ │ ├── MenuSource.h │ │ │ ├── Plugin.cpp │ │ │ ├── Plugin.h │ │ │ ├── SystemInterface.cpp │ │ │ └── SystemInterface.h │ ├── lua │ │ ├── CMakeLists.txt │ │ ├── lapi.cc │ │ ├── lapi.h │ │ ├── lauxlib.cc │ │ ├── lauxlib.h │ │ ├── lbaselib.cc │ │ ├── lcode.cc │ │ ├── lcode.h │ │ ├── ldblib.cc │ │ ├── ldebug.cc │ │ ├── ldebug.h │ │ ├── ldo.cc │ │ ├── ldo.h │ │ ├── ldump.cc │ │ ├── lfunc.cc │ │ ├── lfunc.h │ │ ├── lgc.cc │ │ ├── lgc.h │ │ ├── linit.cc │ │ ├── liolib.cc │ │ ├── llex.cc │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.cc │ │ ├── lmem.cc │ │ ├── lmem.h │ │ ├── loadlib.cc │ │ ├── lobject.cc │ │ ├── lobject.h │ │ ├── lopcodes.cc │ │ ├── lopcodes.h │ │ ├── loslib.cc │ │ ├── lparser.cc │ │ ├── lparser.h │ │ ├── lstate.cc │ │ ├── lstate.h │ │ ├── lstring.cc │ │ ├── lstring.h │ │ ├── lstrlib.cc │ │ ├── ltable.cc │ │ ├── ltable.h │ │ ├── ltablib.cc │ │ ├── ltm.cc │ │ ├── ltm.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.cc │ │ ├── lundump.h │ │ ├── lvm.cc │ │ ├── lvm.h │ │ ├── lzio.cc │ │ ├── lzio.h │ │ └── print.cc │ ├── nvidia-texture-tools │ │ ├── CMakeLists.txt │ │ ├── ChangeLog │ │ ├── NVIDIA_Texture_Tools_LICENSE.txt │ │ ├── NVIDIA_Texture_Tools_README.txt │ │ ├── VERSION │ │ ├── buildpkg │ │ ├── cmake │ │ │ ├── DetermineProcessor.cmake │ │ │ ├── FindCUDA.cmake │ │ │ ├── FindCg.cmake │ │ │ ├── FindDirectX.cmake │ │ │ ├── FindFreeImage.cmake │ │ │ ├── FindGLEW.cmake │ │ │ ├── FindMaya.cmake │ │ │ ├── FindOpenEXR.cmake │ │ │ ├── OptimalOptions.cmake │ │ │ ├── make2cmake.cmake │ │ │ ├── parse_cubin.cmake │ │ │ └── run_nvcc.cmake │ │ ├── configure │ │ ├── data │ │ │ ├── bugs │ │ │ │ ├── 85 │ │ │ │ │ ├── Sky.tga │ │ │ │ │ ├── sky_dither.dds │ │ │ │ │ ├── sky_error.dds │ │ │ │ │ ├── sky_screenshot_1.png │ │ │ │ │ └── tables.cpp │ │ │ │ ├── 88 │ │ │ │ │ └── nmap.png │ │ │ │ └── mthomson │ │ │ │ │ ├── world.png │ │ │ │ │ └── world.tif │ │ │ ├── cubemaps │ │ │ │ └── MeadowTrail.dds │ │ │ ├── luma │ │ │ │ └── testpat_orig.1k.png │ │ │ └── testsuite │ │ │ │ ├── epic │ │ │ │ ├── Bradley1.png │ │ │ │ ├── Gradient.png │ │ │ │ ├── MoreRocks.png │ │ │ │ ├── Rainbow.png │ │ │ │ ├── Text.png │ │ │ │ └── Wall.png │ │ │ │ ├── farbrausch │ │ │ │ ├── t.2d.pn02.png │ │ │ │ ├── t.aircondition.01.png │ │ │ │ ├── t.bricks.02.png │ │ │ │ ├── t.bricks.05.png │ │ │ │ ├── t.concrete.cracked.01.png │ │ │ │ ├── t.envi.colored02.png │ │ │ │ ├── t.envi.colored03.png │ │ │ │ ├── t.font.01.png │ │ │ │ ├── t.sewers.01.png │ │ │ │ ├── t.train.03.png │ │ │ │ └── t.yello.01.png │ │ │ │ ├── id_nmap │ │ │ │ ├── 01_arcade.png │ │ │ │ ├── 02_tentacle.png │ │ │ │ ├── 03_chest.png │ │ │ │ └── 04_face.png │ │ │ │ ├── id_tnmap │ │ │ │ ├── 01_dot1.png │ │ │ │ ├── 02_dot2.png │ │ │ │ ├── 03_dot3.png │ │ │ │ ├── 04_dot4.png │ │ │ │ ├── 05_lumpy.png │ │ │ │ ├── 06_voronoi.png │ │ │ │ ├── 07_turtle.png │ │ │ │ ├── 08_normalmap.png │ │ │ │ ├── 09_metal.png │ │ │ │ ├── 10_skin.png │ │ │ │ ├── 11_onetile.png │ │ │ │ ├── 12_barrel.png │ │ │ │ ├── 13_arcade.png │ │ │ │ ├── 14_tentacle.png │ │ │ │ ├── 15_chest.png │ │ │ │ └── 16_face.png │ │ │ │ ├── kodak │ │ │ │ ├── kodim01.png │ │ │ │ ├── kodim02.png │ │ │ │ ├── kodim03.png │ │ │ │ ├── kodim04.png │ │ │ │ ├── kodim05.png │ │ │ │ ├── kodim06.png │ │ │ │ ├── kodim07.png │ │ │ │ ├── kodim08.png │ │ │ │ ├── kodim09.png │ │ │ │ ├── kodim10.png │ │ │ │ ├── kodim11.png │ │ │ │ ├── kodim12.png │ │ │ │ ├── kodim13.png │ │ │ │ ├── kodim14.png │ │ │ │ ├── kodim15.png │ │ │ │ ├── kodim16.png │ │ │ │ ├── kodim17.png │ │ │ │ ├── kodim18.png │ │ │ │ ├── kodim19.png │ │ │ │ ├── kodim20.png │ │ │ │ ├── kodim21.png │ │ │ │ ├── kodim22.png │ │ │ │ ├── kodim23.png │ │ │ │ └── kodim24.png │ │ │ │ ├── lightmap │ │ │ │ ├── cottage.dds │ │ │ │ ├── specruin.dds │ │ │ │ └── tower.dds │ │ │ │ ├── lugaru │ │ │ │ ├── lugaru-blood.png │ │ │ │ ├── lugaru-bush.png │ │ │ │ ├── lugaru-cursor.png │ │ │ │ └── lugaru-hawk.png │ │ │ │ ├── quake3 │ │ │ │ ├── q3-blocks15cgeomtrn.tga │ │ │ │ ├── q3-blocks17bloody.tga │ │ │ │ ├── q3-dark_tin2.tga │ │ │ │ ├── q3-fan.tga │ │ │ │ ├── q3-fan_grate.tga │ │ │ │ ├── q3-metal2_2.tga │ │ │ │ ├── q3-panel_glo.tga │ │ │ │ ├── q3-proto_fence.tga │ │ │ │ └── q3-wires02.tga │ │ │ │ └── waterloo │ │ │ │ ├── clegg.png │ │ │ │ ├── frymire.png │ │ │ │ ├── lena.png │ │ │ │ ├── monarch.png │ │ │ │ ├── peppers.png │ │ │ │ ├── sail.png │ │ │ │ ├── serrano.png │ │ │ │ └── tulips.png │ │ ├── doc │ │ │ └── release_todo │ │ ├── extern │ │ │ ├── CMakeLists.txt │ │ │ ├── FreeImage │ │ │ │ ├── FreeImage.def │ │ │ │ ├── FreeImage.dll │ │ │ │ ├── FreeImage.h │ │ │ │ ├── FreeImage.lib │ │ │ │ ├── Whatsnew.txt │ │ │ │ ├── libFreeImage.a │ │ │ │ ├── license-fi.txt │ │ │ │ └── license-gpl.txt │ │ │ ├── atitc │ │ │ │ ├── ATI_Compress.chm │ │ │ │ ├── ATI_Compress.h │ │ │ │ ├── VC7 │ │ │ │ │ ├── MT DLL Debug │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC7.lib │ │ │ │ │ ├── MT DLL Release │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC7.lib │ │ │ │ │ ├── MT Debug │ │ │ │ │ │ └── ATI_Compress_MT_VC7.lib │ │ │ │ │ └── MT Release │ │ │ │ │ │ └── ATI_Compress_MT_VC7.lib │ │ │ │ └── VC8 │ │ │ │ │ ├── DLL Debug │ │ │ │ │ ├── Win32 │ │ │ │ │ │ ├── ATI_Compress_1_7.dll │ │ │ │ │ │ └── ATI_Compress_1_7_DLL.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── ATI_Compress_1_7.dll │ │ │ │ │ │ └── ATI_Compress_1_7_DLL.lib │ │ │ │ │ ├── DLL Release │ │ │ │ │ ├── Win32 │ │ │ │ │ │ ├── ATI_Compress_1_7.dll │ │ │ │ │ │ └── ATI_Compress_1_7_DLL.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ ├── ATI_Compress_1_7.dll │ │ │ │ │ │ └── ATI_Compress_1_7_DLL.lib │ │ │ │ │ ├── MT DLL Debug │ │ │ │ │ ├── Win32 │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC8.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC8.lib │ │ │ │ │ ├── MT DLL Release │ │ │ │ │ ├── Win32 │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC8.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ └── ATI_Compress_MT_DLL_VC8.lib │ │ │ │ │ ├── MT Debug │ │ │ │ │ ├── Win32 │ │ │ │ │ │ └── ATI_Compress_MT_VC8.lib │ │ │ │ │ └── x64 │ │ │ │ │ │ └── ATI_Compress_MT_VC8.lib │ │ │ │ │ └── MT Release │ │ │ │ │ ├── Win32 │ │ │ │ │ └── ATI_Compress_MT_VC8.lib │ │ │ │ │ └── x64 │ │ │ │ │ └── ATI_Compress_MT_VC8.lib │ │ │ ├── glew │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.txt │ │ │ │ ├── bin │ │ │ │ │ └── glew32.dll │ │ │ │ ├── include │ │ │ │ │ └── GL │ │ │ │ │ │ ├── glew.h │ │ │ │ │ │ ├── glxew.h │ │ │ │ │ │ └── wglew.h │ │ │ │ └── lib │ │ │ │ │ ├── glew32.lib │ │ │ │ │ └── glew32s.lib │ │ │ ├── poshlib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── posh.c │ │ │ │ └── posh.h │ │ │ ├── skylight │ │ │ │ ├── ArHosekSkyModel.c │ │ │ │ ├── ArHosekSkyModel.h │ │ │ │ ├── ArHosekSkyModelData.h │ │ │ │ └── README.txt │ │ │ └── stb │ │ │ │ ├── stb_dxt.h │ │ │ │ └── stb_image.h │ │ ├── project │ │ │ ├── vc10 │ │ │ │ ├── Nvidia.TextureTools │ │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── TextureTools.cs │ │ │ │ ├── bc6-01-eigen-solver.vsp │ │ │ │ ├── bc6-02-no-double.vsp │ │ │ │ ├── bc6.psess │ │ │ │ ├── bc6h │ │ │ │ │ └── bc6h.vcxproj │ │ │ │ ├── bc7 │ │ │ │ │ └── bc7.vcxproj │ │ │ │ ├── imperativeapi │ │ │ │ │ └── imperativeapi.vcxproj │ │ │ │ ├── nvassemble │ │ │ │ │ ├── nvassemble.rc │ │ │ │ │ ├── nvassemble.vcxproj │ │ │ │ │ ├── nvassemble.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvcompress │ │ │ │ │ ├── nvcompress.rc │ │ │ │ │ ├── nvcompress.vcxproj │ │ │ │ │ ├── nvcompress.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvconfig.h │ │ │ │ ├── nvcore │ │ │ │ │ └── nvcore.vcxproj │ │ │ │ ├── nvddsinfo │ │ │ │ │ ├── nvddsinfo.rc │ │ │ │ │ ├── nvddsinfo.vcxproj │ │ │ │ │ ├── nvddsinfo.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvdecompress │ │ │ │ │ ├── nvdecompress.rc │ │ │ │ │ ├── nvdecompress.vcxproj │ │ │ │ │ ├── nvdecompress.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvimage │ │ │ │ │ └── nvimage.vcxproj │ │ │ │ ├── nvimgdiff │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvimgdiff.rc │ │ │ │ │ ├── nvimgdiff.vcxproj │ │ │ │ │ ├── nvimgdiff.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── nvmath │ │ │ │ │ └── nvmath.vcxproj │ │ │ │ ├── nvthread │ │ │ │ │ ├── nvthread.vcxproj │ │ │ │ │ └── nvthread.vcxproj.filters │ │ │ │ ├── nvtt.props │ │ │ │ ├── nvtt.sln │ │ │ │ ├── nvtt │ │ │ │ │ ├── nvtt.rc │ │ │ │ │ ├── nvtt.vcxproj │ │ │ │ │ ├── nvtt.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── nvzoom │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvzoom.rc │ │ │ │ │ ├── nvzoom.vcxproj │ │ │ │ │ ├── nvzoom.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── squish │ │ │ │ │ └── squish.vcxproj │ │ │ │ └── testsuite │ │ │ │ │ └── testsuite.vcxproj │ │ │ ├── vc12 │ │ │ │ ├── Nvidia.TextureTools │ │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── TextureTools.cs │ │ │ │ ├── bc6-01-eigen-solver.vsp │ │ │ │ ├── bc6-02-no-double.vsp │ │ │ │ ├── bc6.psess │ │ │ │ ├── bc6h │ │ │ │ │ └── bc6h.vcxproj │ │ │ │ ├── bc7 │ │ │ │ │ └── bc7.vcxproj │ │ │ │ ├── imperativeapi │ │ │ │ │ └── imperativeapi.vcxproj │ │ │ │ ├── nvassemble │ │ │ │ │ ├── nvassemble.rc │ │ │ │ │ ├── nvassemble.vcxproj │ │ │ │ │ ├── nvassemble.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvcompress │ │ │ │ │ ├── nvcompress.rc │ │ │ │ │ ├── nvcompress.vcxproj │ │ │ │ │ ├── nvcompress.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvconfig.h │ │ │ │ ├── nvcore │ │ │ │ │ └── nvcore.vcxproj │ │ │ │ ├── nvddsinfo │ │ │ │ │ ├── nvddsinfo.rc │ │ │ │ │ ├── nvddsinfo.vcxproj │ │ │ │ │ ├── nvddsinfo.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvdecompress │ │ │ │ │ ├── nvdecompress.rc │ │ │ │ │ ├── nvdecompress.vcxproj │ │ │ │ │ ├── nvdecompress.vcxproj.filters │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvimage │ │ │ │ │ └── nvimage.vcxproj │ │ │ │ ├── nvimgdiff │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvimgdiff.rc │ │ │ │ │ ├── nvimgdiff.vcxproj │ │ │ │ │ ├── nvimgdiff.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── nvmath │ │ │ │ │ └── nvmath.vcxproj │ │ │ │ ├── nvthread │ │ │ │ │ ├── nvthread.vcxproj │ │ │ │ │ └── nvthread.vcxproj.filters │ │ │ │ ├── nvtt.props │ │ │ │ ├── nvtt.sln │ │ │ │ ├── nvtt │ │ │ │ │ ├── nvtt.rc │ │ │ │ │ ├── nvtt.vcxproj │ │ │ │ │ ├── nvtt.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── nvzoom │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvzoom.rc │ │ │ │ │ ├── nvzoom.vcxproj │ │ │ │ │ ├── nvzoom.vcxproj.filters │ │ │ │ │ └── resource.h │ │ │ │ ├── squish │ │ │ │ │ └── squish.vcxproj │ │ │ │ └── testsuite │ │ │ │ │ └── testsuite.vcxproj │ │ │ ├── vc8 │ │ │ │ ├── .ignore │ │ │ │ ├── Nvidia.TextureTools │ │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── TextureTools.cs │ │ │ │ ├── PhotoshopExporter │ │ │ │ │ ├── PhotoshopExporter.cpp │ │ │ │ │ ├── PhotoshopExporter.h │ │ │ │ │ └── PhotoshopExporter.vcproj │ │ │ │ ├── nvassemble │ │ │ │ │ ├── nvassemble.rc │ │ │ │ │ ├── nvassemble.vcproj │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvcompress │ │ │ │ │ ├── nvcompress.rc │ │ │ │ │ ├── nvcompress.vcproj │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvconfig.h │ │ │ │ ├── nvcore │ │ │ │ │ ├── .ignore │ │ │ │ │ └── nvcore.vcproj │ │ │ │ ├── nvddsinfo │ │ │ │ │ ├── nvddsinfo.rc │ │ │ │ │ ├── nvddsinfo.vcproj │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvdecompress │ │ │ │ │ ├── nvdecompress.rc │ │ │ │ │ ├── nvdecompress.vcproj │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ └── resource.h │ │ │ │ ├── nvimage │ │ │ │ │ ├── .ignore │ │ │ │ │ └── nvimage.vcproj │ │ │ │ ├── nvimgdiff │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvimgdiff.rc │ │ │ │ │ ├── nvimgdiff.vcproj │ │ │ │ │ └── resource.h │ │ │ │ ├── nvmath │ │ │ │ │ ├── .ignore │ │ │ │ │ └── nvmath.vcproj │ │ │ │ ├── nvtt.sln │ │ │ │ ├── nvtt.vsprops │ │ │ │ ├── nvtt │ │ │ │ │ ├── .ignore │ │ │ │ │ ├── nvtt.rc │ │ │ │ │ ├── nvtt.vcproj │ │ │ │ │ └── resource.h │ │ │ │ ├── nvzoom │ │ │ │ │ ├── nvidia.ico │ │ │ │ │ ├── nvzoom.rc │ │ │ │ │ ├── nvzoom.vcproj │ │ │ │ │ └── resource.h │ │ │ │ ├── squish │ │ │ │ │ └── squish.vcproj │ │ │ │ └── testsuite │ │ │ │ │ └── testsuite.vcproj │ │ │ └── vc9 │ │ │ │ ├── .ignore │ │ │ │ ├── Nvidia.TextureTools │ │ │ │ ├── Nvidia.TextureTools.csproj │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── TextureTools.cs │ │ │ │ ├── bc6h │ │ │ │ └── bc6h.vcproj │ │ │ │ ├── bc7 │ │ │ │ └── bc7.vcproj │ │ │ │ ├── cubemaptest │ │ │ │ └── cubemaptest.vcproj │ │ │ │ ├── hdrtest │ │ │ │ └── hdrtest.vcproj │ │ │ │ ├── imperativeapi │ │ │ │ └── imperativeapi.vcproj │ │ │ │ ├── nvassemble │ │ │ │ ├── nvassemble.rc │ │ │ │ ├── nvassemble.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvcompress │ │ │ │ ├── nvcompress.rc │ │ │ │ ├── nvcompress.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvconfig.h │ │ │ │ ├── nvcore │ │ │ │ └── nvcore.vcproj │ │ │ │ ├── nvddsinfo │ │ │ │ ├── nvddsinfo.rc │ │ │ │ ├── nvddsinfo.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvdecompress │ │ │ │ ├── nvdecompress.rc │ │ │ │ ├── nvdecompress.vcproj │ │ │ │ ├── nvidia.ico │ │ │ │ └── resource.h │ │ │ │ ├── nvimage │ │ │ │ └── nvimage.vcproj │ │ │ │ ├── nvimgdiff │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvimgdiff.rc │ │ │ │ ├── nvimgdiff.vcproj │ │ │ │ └── resource.h │ │ │ │ ├── nvmath │ │ │ │ └── nvmath.vcproj │ │ │ │ ├── nvthread │ │ │ │ └── nvthread.vcproj │ │ │ │ ├── nvtt.sln │ │ │ │ ├── nvtt.vsprops │ │ │ │ ├── nvtt │ │ │ │ ├── nvtt.rc │ │ │ │ ├── nvtt.vcproj │ │ │ │ └── resource.h │ │ │ │ ├── nvzoom │ │ │ │ ├── nvidia.ico │ │ │ │ ├── nvzoom.rc │ │ │ │ ├── nvzoom.vcproj │ │ │ │ └── resource.h │ │ │ │ ├── squish │ │ │ │ └── squish.vcproj │ │ │ │ ├── stress │ │ │ │ └── stress.vcproj │ │ │ │ └── testsuite │ │ │ │ └── testsuite.vcproj │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── bc6h │ │ │ ├── CMakeLists.txt │ │ │ ├── bits.h │ │ │ ├── shapes_two.h │ │ │ ├── tile.h │ │ │ ├── zoh.cpp │ │ │ ├── zoh.h │ │ │ ├── zoh_utils.cpp │ │ │ ├── zoh_utils.h │ │ │ ├── zohone.cpp │ │ │ └── zohtwo.cpp │ │ │ ├── bc7 │ │ │ ├── CMakeLists.txt │ │ │ ├── avpcl.cpp │ │ │ ├── avpcl.h │ │ │ ├── avpcl_mode0.cpp │ │ │ ├── avpcl_mode1.cpp │ │ │ ├── avpcl_mode2.cpp │ │ │ ├── avpcl_mode3.cpp │ │ │ ├── avpcl_mode4.cpp │ │ │ ├── avpcl_mode5.cpp │ │ │ ├── avpcl_mode6.cpp │ │ │ ├── avpcl_mode7.cpp │ │ │ ├── avpcl_utils.cpp │ │ │ ├── avpcl_utils.h │ │ │ ├── bits.h │ │ │ ├── endpts.h │ │ │ ├── shapes_three.h │ │ │ ├── shapes_two.h │ │ │ └── tile.h │ │ │ ├── nvconfig.h.in │ │ │ ├── nvcore │ │ │ ├── Array.h │ │ │ ├── Array.inl │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug.cpp │ │ │ ├── Debug.h │ │ │ ├── DefsGnucDarwin.h │ │ │ ├── DefsGnucLinux.h │ │ │ ├── DefsGnucWin32.h │ │ │ ├── DefsVcWin32.h │ │ │ ├── FileSystem.cpp │ │ │ ├── FileSystem.h │ │ │ ├── ForEach.h │ │ │ ├── Hash.h │ │ │ ├── Library.cpp │ │ │ ├── Library.h │ │ │ ├── Memory.cpp │ │ │ ├── Memory.h │ │ │ ├── Ptr.h │ │ │ ├── RefCounted.h │ │ │ ├── StdStream.h │ │ │ ├── StrLib.cpp │ │ │ ├── StrLib.h │ │ │ ├── Stream.h │ │ │ ├── TextWriter.cpp │ │ │ ├── TextWriter.h │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── Utils.h │ │ │ └── nvcore.h │ │ │ ├── nvimage │ │ │ ├── BlockDXT.cpp │ │ │ ├── BlockDXT.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ColorBlock.cpp │ │ │ ├── ColorBlock.h │ │ │ ├── ColorSpace.cpp │ │ │ ├── ColorSpace.h │ │ │ ├── DirectDrawSurface.cpp │ │ │ ├── DirectDrawSurface.h │ │ │ ├── ErrorMetric.cpp │ │ │ ├── ErrorMetric.h │ │ │ ├── Filter.cpp │ │ │ ├── Filter.h │ │ │ ├── FloatImage.cpp │ │ │ ├── FloatImage.h │ │ │ ├── Image.cpp │ │ │ ├── Image.h │ │ │ ├── ImageIO.cpp │ │ │ ├── ImageIO.h │ │ │ ├── KtxFile.cpp │ │ │ ├── KtxFile.h │ │ │ ├── NormalMap.cpp │ │ │ ├── NormalMap.h │ │ │ ├── PixelFormat.h │ │ │ ├── PsdFile.h │ │ │ ├── Quantize.cpp │ │ │ ├── Quantize.h │ │ │ ├── TgaFile.h │ │ │ ├── ValveTextureFormat.h │ │ │ └── nvimage.h │ │ │ ├── nvmath │ │ │ ├── Box.cpp │ │ │ ├── Box.h │ │ │ ├── Box.inl │ │ │ ├── CMakeLists.txt │ │ │ ├── Color.cpp │ │ │ ├── Color.h │ │ │ ├── Color.inl │ │ │ ├── Fitting.cpp │ │ │ ├── Fitting.h │ │ │ ├── Half.cpp │ │ │ ├── Half.h │ │ │ ├── Matrix.cpp │ │ │ ├── Matrix.h │ │ │ ├── Matrix.inl │ │ │ ├── Plane.cpp │ │ │ ├── Plane.h │ │ │ ├── Plane.inl │ │ │ ├── SimdVector.h │ │ │ ├── SimdVector_SSE.h │ │ │ ├── SimdVector_VE.h │ │ │ ├── SphericalHarmonic.cpp │ │ │ ├── SphericalHarmonic.h │ │ │ ├── Vector.cpp │ │ │ ├── Vector.h │ │ │ ├── Vector.inl │ │ │ ├── ftoi.h │ │ │ └── nvmath.h │ │ │ ├── nvthread │ │ │ ├── Atomic.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Event.cpp │ │ │ ├── Event.h │ │ │ ├── Mutex.cpp │ │ │ ├── Mutex.h │ │ │ ├── ParallelFor.cpp │ │ │ ├── ParallelFor.h │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── ThreadPool.cpp │ │ │ ├── ThreadPool.h │ │ │ ├── Win32.h │ │ │ ├── nvthread.cpp │ │ │ └── nvthread.h │ │ │ └── nvtt │ │ │ ├── BlockCompressor.cpp │ │ │ ├── BlockCompressor.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ClusterFit.cpp │ │ │ ├── ClusterFit.h │ │ │ ├── CompressionOptions.cpp │ │ │ ├── CompressionOptions.h │ │ │ ├── Compressor.h │ │ │ ├── CompressorDX10.cpp │ │ │ ├── CompressorDX10.h │ │ │ ├── CompressorDX11.cpp │ │ │ ├── CompressorDX11.h │ │ │ ├── CompressorDX9.cpp │ │ │ ├── CompressorDX9.h │ │ │ ├── CompressorDXT1.cpp │ │ │ ├── CompressorDXT1.h │ │ │ ├── CompressorRGB.cpp │ │ │ ├── CompressorRGB.h │ │ │ ├── Context.cpp │ │ │ ├── Context.h │ │ │ ├── CubeSurface.cpp │ │ │ ├── CubeSurface.h │ │ │ ├── InputOptions.cpp │ │ │ ├── InputOptions.h │ │ │ ├── OptimalCompressDXT.cpp │ │ │ ├── OptimalCompressDXT.h │ │ │ ├── OutputOptions.cpp │ │ │ ├── OutputOptions.h │ │ │ ├── QuickCompressDXT.cpp │ │ │ ├── QuickCompressDXT.h │ │ │ ├── SingleColorLookup.cpp │ │ │ ├── SingleColorLookup.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── TaskDispatcher.cpp │ │ │ ├── TaskDispatcher.h │ │ │ ├── cuda │ │ │ ├── BitmapTable.h │ │ │ ├── CompressKernel.cu │ │ │ ├── ConvolveKernel.cu │ │ │ ├── CudaCompressorDXT.cpp │ │ │ ├── CudaCompressorDXT.h │ │ │ ├── CudaMath.h │ │ │ ├── CudaUtils.cpp │ │ │ └── CudaUtils.h │ │ │ ├── experimental │ │ │ ├── nvtt_experimental.cpp │ │ │ ├── nvtt_experimental.h │ │ │ └── test.cpp │ │ │ ├── nvtt.cpp │ │ │ ├── nvtt.h │ │ │ ├── nvtt_wrapper.cpp │ │ │ ├── nvtt_wrapper.h │ │ │ ├── squish │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile │ │ │ ├── README │ │ │ ├── alpha.cpp │ │ │ ├── alpha.h │ │ │ ├── clusterfit.cpp │ │ │ ├── clusterfit.h │ │ │ ├── colourblock.cpp │ │ │ ├── colourblock.h │ │ │ ├── colourfit.cpp │ │ │ ├── colourfit.h │ │ │ ├── colourset.cpp │ │ │ ├── colourset.h │ │ │ ├── config │ │ │ ├── config.h │ │ │ ├── extra │ │ │ │ ├── squishgen.cpp │ │ │ │ ├── squishgen2.cpp │ │ │ │ ├── squishpng.cpp │ │ │ │ └── squishtest.cpp │ │ │ ├── fastclusterfit.cpp │ │ │ ├── fastclusterfit.h │ │ │ ├── fastclusterlookup.inl │ │ │ ├── maths.cpp │ │ │ ├── maths.h │ │ │ ├── rangefit.cpp │ │ │ ├── rangefit.h │ │ │ ├── simd.h │ │ │ ├── simd_3dnow.h │ │ │ ├── simd_sse.h │ │ │ ├── simd_ve.h │ │ │ ├── singlechannelfit.cpp │ │ │ ├── singlechannelfit.h │ │ │ ├── singlecolourfit.cpp │ │ │ ├── singlecolourfit.h │ │ │ ├── singlecolourlookup.inl │ │ │ ├── squish.cpp │ │ │ ├── squish.h │ │ │ ├── weightedclusterfit.cpp │ │ │ └── weightedclusterfit.h │ │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── GoogleCharts.h │ │ │ ├── ctest.c │ │ │ ├── cubemaptest.cpp │ │ │ ├── driverapi.cpp │ │ │ ├── filtertest.cpp │ │ │ ├── hdrtest.cpp │ │ │ ├── imperativeapi.cpp │ │ │ ├── mpegenc.cpp │ │ │ ├── process_alpha_map.cpp │ │ │ └── testsuite.cpp │ │ │ └── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── assemble.cpp │ │ │ ├── benchmark.cpp │ │ │ ├── cmdline.h │ │ │ ├── compress.cpp │ │ │ ├── compressdialog.cpp │ │ │ ├── compressdialog.h │ │ │ ├── compressdialog.ui │ │ │ ├── ddsinfo.cpp │ │ │ ├── ddsview.cpp │ │ │ ├── decompress.cpp │ │ │ ├── imgdiff.cpp │ │ │ ├── nvtt-thumbnailer.schema.in │ │ │ ├── resize.cpp │ │ │ ├── thumbnailer.cpp │ │ │ └── ui │ │ │ ├── configdialog.cpp │ │ │ ├── configdialog.h │ │ │ ├── configdialog.ui │ │ │ └── main.cpp │ ├── readme.txt │ ├── sqlite3 │ │ ├── CMakeLists.txt │ │ ├── sqlite3.c │ │ └── sqlite3.h │ ├── stackwalker │ │ ├── CMakeLists.txt │ │ ├── StackWalker.cpp │ │ └── StackWalker.h │ ├── stb │ │ └── stb_truetype.h │ ├── stdneb.cc │ ├── stdneb.h │ ├── tinyxml │ │ ├── CMakeLists.txt │ │ ├── tinystr.cc │ │ ├── tinystr.h │ │ ├── tinyxml.cc │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cc │ │ └── tinyxmlparser.cc │ └── zlib │ │ ├── CMakeLists.txt │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── crypt.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzio.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── ioapi.h │ │ ├── ionebula3.cc │ │ ├── ionebula3.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zconf.h │ │ ├── zconf.in.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── foundation │ ├── CMakeLists.txt │ ├── app │ │ ├── app.dox │ │ ├── application.cc │ │ ├── application.h │ │ ├── consoleapplication.cc │ │ └── consoleapplication.h │ ├── core │ │ ├── base.dox │ │ ├── config.h │ │ ├── core.dox │ │ ├── coreserver.cc │ │ ├── coreserver.h │ │ ├── debug.cc │ │ ├── debug.h │ │ ├── debug │ │ │ ├── corepagehandler.cc │ │ │ ├── corepagehandler.h │ │ │ ├── stringatompagehandler.cc │ │ │ └── stringatompagehandler.h │ │ ├── exithandler.cc │ │ ├── exithandler.h │ │ ├── factory.cc │ │ ├── factory.h │ │ ├── osx │ │ │ ├── osxsingleton.h │ │ │ ├── osxsysfunc.h │ │ │ └── precompiled.h │ │ ├── posix │ │ │ ├── posixsingleton.h │ │ │ ├── posixsysfunc.cc │ │ │ ├── posixsysfunc.h │ │ │ └── precompiled.h │ │ ├── ptr.h │ │ ├── refcounted.cc │ │ ├── refcounted.h │ │ ├── refcountedlist.cc │ │ ├── refcountedlist.h │ │ ├── rtti.cc │ │ ├── rtti.h │ │ ├── rttimacros.h │ │ ├── singleton.h │ │ ├── sysfunc.h │ │ ├── types.h │ │ ├── weakptr.h │ │ └── win32 │ │ │ ├── precompiled.h │ │ │ ├── win32.dox │ │ │ ├── win32singleton.h │ │ │ ├── win32sysfunc.cc │ │ │ └── win32sysfunc.h │ ├── debug │ │ ├── debug.dox │ │ ├── debugcounter.cc │ │ ├── debugcounter.h │ │ ├── debugfloat.h │ │ ├── debughandler.cc │ │ ├── debughandler.h │ │ ├── debuginterface.cc │ │ ├── debuginterface.h │ │ ├── debugpagehandler.cc │ │ ├── debugpagehandler.h │ │ ├── debugserver.cc │ │ ├── debugserver.h │ │ ├── debugtimer.cc │ │ ├── debugtimer.h │ │ ├── minidump.h │ │ ├── stacktrace.h │ │ └── win32 │ │ │ ├── win32minidump.cc │ │ │ ├── win32minidump.h │ │ │ ├── win32stacktrace.cc │ │ │ └── win32stacktrace.h │ ├── foundation.h │ ├── framesync │ │ ├── framesynctimer.cc │ │ └── framesynctimer.h │ ├── http │ │ ├── debug │ │ │ ├── helloworldrequesthandler.cc │ │ │ ├── helloworldrequesthandler.h │ │ │ ├── svgtestpagehandler.cc │ │ │ └── svgtestpagehandler.h │ │ ├── defaulthttprequesthandler.cc │ │ ├── defaulthttprequesthandler.h │ │ ├── html │ │ │ ├── htmlelement.cc │ │ │ ├── htmlelement.h │ │ │ ├── htmlpagewriter.cc │ │ │ └── htmlpagewriter.h │ │ ├── http.dox │ │ ├── httpclient.cc │ │ ├── httpclient.h │ │ ├── httpclientregistry.cc │ │ ├── httpclientregistry.h │ │ ├── httpinterface.cc │ │ ├── httpinterface.h │ │ ├── httpmessagehandler.cc │ │ ├── httpmessagehandler.h │ │ ├── httpmethod.h │ │ ├── httpnzstream.cc │ │ ├── httpnzstream.h │ │ ├── httpprotocol.nidl │ │ ├── httprequest.cc │ │ ├── httprequest.h │ │ ├── httprequesthandler.cc │ │ ├── httprequesthandler.h │ │ ├── httprequestreader.cc │ │ ├── httprequestreader.h │ │ ├── httprequestwriter.cc │ │ ├── httprequestwriter.h │ │ ├── httpresponsereader.cc │ │ ├── httpresponsereader.h │ │ ├── httpresponsewriter.cc │ │ ├── httpresponsewriter.h │ │ ├── httpserver.cc │ │ ├── httpserver.h │ │ ├── httpserverproxy.cc │ │ ├── httpserverproxy.h │ │ ├── httpstatus.cc │ │ ├── httpstatus.h │ │ ├── httpstream.cc │ │ ├── httpstream.h │ │ └── svg │ │ │ ├── svglinechartwriter.cc │ │ │ ├── svglinechartwriter.h │ │ │ ├── svgpagewriter.cc │ │ │ └── svgpagewriter.h │ ├── interface │ │ ├── interface.dox │ │ ├── interfacebase.cc │ │ ├── interfacebase.h │ │ ├── interfacehandlerbase.cc │ │ └── interfacehandlerbase.h │ ├── io │ │ ├── archfs │ │ │ ├── archive.cc │ │ │ ├── archive.h │ │ │ ├── archivebase.cc │ │ │ ├── archivebase.h │ │ │ ├── archivefilesystem.cc │ │ │ ├── archivefilesystem.h │ │ │ ├── archivefilesystembase.cc │ │ │ └── archivefilesystembase.h │ │ ├── assign.h │ │ ├── assignregistry.cc │ │ ├── assignregistry.h │ │ ├── base │ │ │ ├── gamecontentserverbase.cc │ │ │ └── gamecontentserverbase.h │ │ ├── binaryreader.cc │ │ ├── binaryreader.h │ │ ├── binarywriter.cc │ │ ├── binarywriter.h │ │ ├── bxmlreader.cc │ │ ├── bxmlreader.h │ │ ├── console.cc │ │ ├── console.h │ │ ├── consolehandler.cc │ │ ├── consolehandler.h │ │ ├── debug │ │ │ ├── consolepagehandler.cc │ │ │ ├── consolepagehandler.h │ │ │ ├── iopagehandler.cc │ │ │ └── iopagehandler.h │ │ ├── excelxmlreader.cc │ │ ├── excelxmlreader.h │ │ ├── filestream.cc │ │ ├── filestream.h │ │ ├── filetime.h │ │ ├── fswrapper.h │ │ ├── gamecontentserver.cc │ │ ├── gamecontentserver.h │ │ ├── historyconsolehandler.cc │ │ ├── historyconsolehandler.h │ │ ├── io.dox │ │ ├── iointerface.cc │ │ ├── iointerface.h │ │ ├── iointerfacehandler.cc │ │ ├── iointerfacehandler.h │ │ ├── iointerfaceprotocol.nidl │ │ ├── ioserver.cc │ │ ├── ioserver.h │ │ ├── logfileconsolehandler.cc │ │ ├── logfileconsolehandler.h │ │ ├── mediatype.h │ │ ├── memorystream.cc │ │ ├── memorystream.h │ │ ├── osx │ │ │ ├── osxconsolehandler.cc │ │ │ ├── osxconsolehandler.h │ │ │ ├── osxfiletime.h │ │ │ ├── osxfswrapper.cc │ │ │ └── osxfswrapper.h │ │ ├── posix │ │ │ ├── posixconsolehandler.cc │ │ │ ├── posixconsolehandler.h │ │ │ ├── posixfiletime.h │ │ │ ├── posixfswrapper.cc │ │ │ └── posixfswrapper.h │ │ ├── safefilestream.cc │ │ ├── safefilestream.h │ │ ├── schemeregistry.cc │ │ ├── schemeregistry.h │ │ ├── stream.cc │ │ ├── stream.h │ │ ├── streamreader.cc │ │ ├── streamreader.h │ │ ├── streamwriter.cc │ │ ├── streamwriter.h │ │ ├── textreader.cc │ │ ├── textreader.h │ │ ├── textwriter.cc │ │ ├── textwriter.h │ │ ├── uri.cc │ │ ├── uri.h │ │ ├── util │ │ │ ├── bxmlfilestructs.h │ │ │ ├── bxmlloaderutil.cc │ │ │ └── bxmlloaderutil.h │ │ ├── win32 │ │ │ ├── win32consolehandler.cc │ │ │ └── win32consolehandler.h │ │ ├── win360 │ │ │ ├── win360filetime.cc │ │ │ ├── win360filetime.h │ │ │ ├── win360fswrapper.cc │ │ │ └── win360fswrapper.h │ │ ├── xmlreader.cc │ │ ├── xmlreader.h │ │ ├── xmlwriter.cc │ │ ├── xmlwriter.h │ │ └── zipfs │ │ │ ├── ziparchive.cc │ │ │ ├── ziparchive.h │ │ │ ├── zipdirentry.cc │ │ │ ├── zipdirentry.h │ │ │ ├── zipfileentry.cc │ │ │ ├── zipfileentry.h │ │ │ ├── zipfilestream.cc │ │ │ ├── zipfilestream.h │ │ │ ├── zipfilesystem.cc │ │ │ └── zipfilesystem.h │ ├── jobs │ │ ├── base │ │ │ ├── jobbase.cc │ │ │ ├── jobbase.h │ │ │ ├── jobfuncdescbase.h │ │ │ ├── jobportbase.cc │ │ │ ├── jobportbase.h │ │ │ ├── jobsystembase.cc │ │ │ └── jobsystembase.h │ │ ├── job.cc │ │ ├── job.h │ │ ├── jobdatadesc.h │ │ ├── jobfunccontext.h │ │ ├── jobfuncdesc.h │ │ ├── jobport.cc │ │ ├── jobport.h │ │ ├── jobsystem.cc │ │ ├── jobsystem.h │ │ ├── jobuniformdesc.h │ │ ├── serial │ │ │ ├── serialjob.cc │ │ │ ├── serialjob.h │ │ │ ├── serialjobfuncdesc.h │ │ │ ├── serialjobport.cc │ │ │ ├── serialjobport.h │ │ │ ├── serialjobsystem.cc │ │ │ └── serialjobsystem.h │ │ ├── stdjob.h │ │ └── tp │ │ │ ├── tpjob.cc │ │ │ ├── tpjob.h │ │ │ ├── tpjobcommand.h │ │ │ ├── tpjobfuncdesc.h │ │ │ ├── tpjobport.cc │ │ │ ├── tpjobport.h │ │ │ ├── tpjobslice.cc │ │ │ ├── tpjobslice.h │ │ │ ├── tpjobsystem.cc │ │ │ ├── tpjobsystem.h │ │ │ ├── tpjobthreadpool.cc │ │ │ ├── tpjobthreadpool.h │ │ │ ├── tpworkerthread.cc │ │ │ └── tpworkerthread.h │ ├── legacy.dox │ ├── math │ │ ├── angularpfeedbackloop.h │ │ ├── bbox.cc │ │ ├── bbox.h │ │ ├── clipstatus.h │ │ ├── extrapolator.h │ │ ├── float2.h │ │ ├── float4.h │ │ ├── frustum.h │ │ ├── line.cc │ │ ├── line.h │ │ ├── math.dox │ │ ├── matrix44.h │ │ ├── noise.h │ │ ├── pfeedbackloop.h │ │ ├── pidfeedbackloop.h │ │ ├── plane.h │ │ ├── point.h │ │ ├── polar.h │ │ ├── pquatfeedbackloop.h │ │ ├── quaternion.h │ │ ├── rectangle.h │ │ ├── scalar.h │ │ ├── sce │ │ │ ├── sce_float4.cc │ │ │ ├── sce_float4.h │ │ │ ├── sce_matrix44.cc │ │ │ ├── sce_matrix44.h │ │ │ ├── sce_plane.cc │ │ │ ├── sce_plane.h │ │ │ ├── sce_point.h │ │ │ ├── sce_scalar.h │ │ │ └── sce_vector.h │ │ ├── sphere_.cc │ │ ├── sphere_.h │ │ ├── transform44.h │ │ ├── vecmath │ │ │ ├── vec_float4.cc │ │ │ ├── vec_float4.h │ │ │ ├── vec_matrix44.cc │ │ │ ├── vec_matrix44.h │ │ │ ├── vec_plane.cc │ │ │ ├── vec_plane.h │ │ │ ├── vec_point.h │ │ │ ├── vec_quaternion.cc │ │ │ ├── vec_quaternion.h │ │ │ ├── vec_scalar.h │ │ │ └── vec_vector.h │ │ ├── vector.h │ │ └── xnamath │ │ │ ├── xna_float4.cc │ │ │ ├── xna_float4.h │ │ │ ├── xna_matrix44.cc │ │ │ ├── xna_matrix44.h │ │ │ ├── xna_plane.cc │ │ │ ├── xna_plane.h │ │ │ ├── xna_point.h │ │ │ ├── xna_quaternion.cc │ │ │ ├── xna_quaternion.h │ │ │ ├── xna_scalar.h │ │ │ └── xna_vector.h │ ├── memory │ │ ├── debug │ │ │ ├── memorypagehandler.cc │ │ │ └── memorypagehandler.h │ │ ├── heap.h │ │ ├── memory.dox │ │ ├── memory.h │ │ ├── memorypool.h │ │ ├── osx │ │ │ ├── osxheap.cc │ │ │ ├── osxheap.h │ │ │ ├── osxmemory.cc │ │ │ ├── osxmemory.h │ │ │ ├── osxmemoryconfig.cc │ │ │ ├── osxmemoryconfig.h │ │ │ ├── osxmemorypool.cc │ │ │ └── osxmemorypool.h │ │ ├── poolarrayallocator.cc │ │ ├── poolarrayallocator.h │ │ ├── posix │ │ │ ├── posixheap.cc │ │ │ ├── posixheap.h │ │ │ ├── posixmemory.cc │ │ │ ├── posixmemory.h │ │ │ ├── posixmemoryconfig.cc │ │ │ ├── posixmemoryconfig.h │ │ │ ├── posixmemorypool.cc │ │ │ └── posixmemorypool.h │ │ ├── win32 │ │ │ └── win32memory.h │ │ └── win360 │ │ │ ├── win360heap.cc │ │ │ ├── win360heap.h │ │ │ ├── win360memory.cc │ │ │ ├── win360memory.h │ │ │ ├── win360memoryconfig.cc │ │ │ ├── win360memoryconfig.h │ │ │ ├── win360memorypool.cc │ │ │ └── win360memorypool.h │ ├── messaging │ │ ├── asyncport.cc │ │ ├── asyncport.h │ │ ├── batchmessage.cc │ │ ├── batchmessage.h │ │ ├── blockinghandlerthread.cc │ │ ├── blockinghandlerthread.h │ │ ├── delegatetable.cc │ │ ├── delegatetable.h │ │ ├── dispatcher.cc │ │ ├── dispatcher.h │ │ ├── handler.cc │ │ ├── handler.h │ │ ├── handlerthreadbase.cc │ │ ├── handlerthreadbase.h │ │ ├── id.h │ │ ├── message.cc │ │ ├── message.h │ │ ├── messagecallbackhandler.cc │ │ ├── messagecallbackhandler.h │ │ ├── messagereader.cc │ │ ├── messagereader.h │ │ ├── messagewriter.cc │ │ ├── messagewriter.h │ │ ├── messaging.dox │ │ ├── port.cc │ │ ├── port.h │ │ ├── runthroughhandlerthread.cc │ │ ├── runthroughhandlerthread.h │ │ ├── staticmessagehandler.cc │ │ └── staticmessagehandler.h │ ├── net │ │ ├── debugmessage.h │ │ ├── debugpacket.cc │ │ ├── debugpacket.h │ │ ├── messageclient.cc │ │ ├── messageclient.h │ │ ├── messageclientconnection.cc │ │ ├── messageclientconnection.h │ │ ├── net.dox │ │ ├── posix │ │ │ ├── posixipaddress.cc │ │ │ ├── posixipaddress.h │ │ │ ├── posixsocket.cc │ │ │ └── posixsocket.h │ │ ├── socket │ │ │ ├── ipaddress.h │ │ │ ├── socket.cc │ │ │ └── socket.h │ │ ├── tcp │ │ │ ├── stdtcpclient.cc │ │ │ ├── stdtcpclient.h │ │ │ ├── stdtcpclientconnection.cc │ │ │ ├── stdtcpclientconnection.h │ │ │ ├── stdtcpserver.cc │ │ │ └── stdtcpserver.h │ │ ├── tcpclient.cc │ │ ├── tcpclient.h │ │ ├── tcpclientconnection.cc │ │ ├── tcpclientconnection.h │ │ ├── tcpmessagecodec.cc │ │ ├── tcpmessagecodec.h │ │ ├── tcpserver.cc │ │ ├── tcpserver.h │ │ └── win360 │ │ │ ├── win360ipaddress.cc │ │ │ ├── win360ipaddress.h │ │ │ ├── win360socket.cc │ │ │ └── win360socket.h │ ├── stdneb.cc │ ├── stdneb.h │ ├── system │ │ ├── appentry.h │ │ ├── base │ │ │ ├── systeminfobase.cc │ │ │ └── systeminfobase.h │ │ ├── byteorder.h │ │ ├── cpu.h │ │ ├── darwin │ │ │ ├── darwinbyteorder.h │ │ │ ├── darwinsysteminfo.cc │ │ │ └── darwinsysteminfo.h │ │ ├── environment.h │ │ ├── nebulasettings.h │ │ ├── osx │ │ │ └── osxcpu.h │ │ ├── posix │ │ │ ├── posixcpu.h │ │ │ ├── posixenvironment.cc │ │ │ ├── posixenvironment.h │ │ │ ├── posixsettings.cc │ │ │ ├── posixsettings.h │ │ │ ├── posixsysteminfo.cc │ │ │ └── posixsysteminfo.h │ │ ├── system.dox │ │ ├── systeminfo.h │ │ └── win32 │ │ │ ├── win32cpu.h │ │ │ ├── win32environment.cc │ │ │ ├── win32environment.h │ │ │ ├── win32registry.cc │ │ │ ├── win32registry.h │ │ │ ├── win32systeminfo.cc │ │ │ └── win32systeminfo.h │ ├── threading │ │ ├── barrier.h │ │ ├── criticalsection.h │ │ ├── darwin │ │ │ ├── darwinbarrier.h │ │ │ └── darwininterlocked.h │ │ ├── debug │ │ │ ├── threadpagehandler.cc │ │ │ └── threadpagehandler.h │ │ ├── event.h │ │ ├── interlocked.h │ │ ├── linux │ │ │ ├── linuxbarrier.h │ │ │ ├── linuxcompletioncounter.h │ │ │ ├── linuxcriticalsection.h │ │ │ ├── linuxevent.h │ │ │ ├── linuxinterlocked.h │ │ │ ├── linuxrendezvous.h │ │ │ ├── linuxthread.cc │ │ │ ├── linuxthread.h │ │ │ ├── linuxthreadid.h │ │ │ ├── linuxthreadlocaldata.cc │ │ │ ├── linuxthreadlocaldata.h │ │ │ ├── linuxthreadlocalptr.cc │ │ │ └── linuxthreadlocalptr.h │ │ ├── objectref.cc │ │ ├── objectref.h │ │ ├── osx │ │ │ ├── osxcriticalsection.h │ │ │ ├── osxinterlocked.h │ │ │ ├── osxthread.cc │ │ │ ├── osxthread.h │ │ │ ├── osxthreadid.h │ │ │ └── osxthreadlocalptr.h │ │ ├── posix │ │ │ ├── posixbarrier.h │ │ │ ├── posixcriticalsection.h │ │ │ ├── posixevent.h │ │ │ ├── posixinterlocked.h │ │ │ ├── posixthread.cc │ │ │ ├── posixthread.h │ │ │ ├── posixthreadbarrier.h │ │ │ ├── posixthreadbarrier_cond.h │ │ │ ├── posixthreadid.h │ │ │ └── posixthreadlocalptr.h │ │ ├── rendezvous.h │ │ ├── safeflag.h │ │ ├── safepriorityqueue.h │ │ ├── safequeue.h │ │ ├── thread.cc │ │ ├── thread.h │ │ ├── threadbarrier.h │ │ ├── threadid.h │ │ ├── threading.dox │ │ └── win360 │ │ │ ├── win360barrier.h │ │ │ ├── win360criticalsection.cc │ │ │ ├── win360criticalsection.h │ │ │ ├── win360event.h │ │ │ ├── win360interlocked.h │ │ │ ├── win360rendezvous.h │ │ │ ├── win360thread.cc │ │ │ ├── win360thread.h │ │ │ ├── win360threadbarrier.h │ │ │ └── win360threadid.h │ ├── timing │ │ ├── base │ │ │ ├── calendartimebase.cc │ │ │ └── calendartimebase.h │ │ ├── calendartime.h │ │ ├── darwin │ │ │ ├── darwintimer.cc │ │ │ └── darwintimer.h │ │ ├── posix │ │ │ ├── posixcalendartime.cc │ │ │ ├── posixcalendartime.h │ │ │ ├── posixtimer.cc │ │ │ └── posixtimer.h │ │ ├── time.h │ │ ├── timer.h │ │ ├── timing.dox │ │ └── win360 │ │ │ ├── win360calendartime.cc │ │ │ ├── win360calendartime.h │ │ │ ├── win360timer.cc │ │ │ └── win360timer.h │ └── util │ │ ├── array.h │ │ ├── bitfield.h │ │ ├── blob.cc │ │ ├── blob.h │ │ ├── commandlineargs.cc │ │ ├── commandlineargs.h │ │ ├── crc.cc │ │ ├── crc.h │ │ ├── delegate.h │ │ ├── dictionary.h │ │ ├── fixedarray.h │ │ ├── fixedtable.h │ │ ├── fourcc.h │ │ ├── globalstringatomtable.cc │ │ ├── globalstringatomtable.h │ │ ├── guid.h │ │ ├── hashtable.h │ │ ├── keyvaluepair.h │ │ ├── list.h │ │ ├── localstringatomtable.cc │ │ ├── localstringatomtable.h │ │ ├── osx │ │ ├── osxguid.cc │ │ └── osxguid.h │ │ ├── posix │ │ ├── posixguid.cc │ │ └── posixguid.h │ │ ├── priorityarray.h │ │ ├── quadtree.h │ │ ├── queue.h │ │ ├── randomnumbertable.cc │ │ ├── randomnumbertable.h │ │ ├── ringbuffer.h │ │ ├── round.h │ │ ├── runlengthcodec.cc │ │ ├── runlengthcodec.h │ │ ├── simpletree.h │ │ ├── sparsetable.h │ │ ├── stack.h │ │ ├── string.cc │ │ ├── string.h │ │ ├── stringatom.cc │ │ ├── stringatom.h │ │ ├── stringatomtablebase.cc │ │ ├── stringatomtablebase.h │ │ ├── stringbuffer.cc │ │ ├── stringbuffer.h │ │ ├── typepunning.h │ │ ├── util.dox │ │ ├── variant.h │ │ └── win32 │ │ ├── win32guid.cc │ │ ├── win32guid.h │ │ ├── win32stringconverter.cc │ │ └── win32stringconverter.h ├── mayaplugin │ ├── CMakeLists.txt │ ├── mayacommands │ │ ├── mayaattrutilcmd.cc │ │ ├── mayaattrutilcmd.h │ │ ├── mayadirectoryregistrycmd.cc │ │ ├── mayadirectoryregistrycmd.h │ │ ├── mayaexportscenecmd.cc │ │ └── mayaexportscenecmd.h │ ├── mayacore │ │ ├── mayamaterialgroupregistry.cc │ │ ├── mayamaterialgroupregistry.h │ │ ├── mayanode.cc │ │ ├── mayanode.h │ │ ├── mayascene.cc │ │ ├── mayascene.h │ │ ├── mayastatus.h │ │ ├── mayavariable.h │ │ ├── mayavariableregistry.cc │ │ └── mayavariableregistry.h │ ├── mayaexporters │ │ ├── mayaexporterbase.cc │ │ ├── mayaexporterbase.h │ │ ├── mayameshexporter.cc │ │ └── mayameshexporter.h │ ├── mayaextractors │ │ ├── mayaextractorbase.cc │ │ ├── mayaextractorbase.h │ │ ├── mayahierarchyextractor.cc │ │ ├── mayahierarchyextractor.h │ │ ├── mayalodnodeextractor.cc │ │ ├── mayalodnodeextractor.h │ │ ├── mayasceneextractor.cc │ │ ├── mayasceneextractor.h │ │ ├── mayashapenodeextractor.cc │ │ └── mayashapenodeextractor.h │ ├── mayalegacy │ │ ├── mayaenvcmd.cc │ │ ├── mayaenvcmd.h │ │ ├── mayaqueryshadercmd.cc │ │ ├── mayaqueryshadercmd.h │ │ ├── mayaremotecontrolcmd.cc │ │ └── mayaremotecontrolcmd.h │ ├── mayaloadsave │ │ ├── mayascenewriter.cc │ │ └── mayascenewriter.h │ ├── mayamain │ │ ├── mayacommandregistry.cc │ │ ├── mayacommandregistry.h │ │ ├── mayadirectoryregistry.cc │ │ ├── mayadirectoryregistry.h │ │ ├── mayalogger.cc │ │ ├── mayalogger.h │ │ ├── mayanebula3runtime.cc │ │ ├── mayanebula3runtime.h │ │ ├── mayaplugin.cc │ │ ├── mayaplugin.h │ │ └── mayapluginmain.cc │ ├── mayashaders │ │ ├── mayashader.cc │ │ ├── mayashader.h │ │ ├── mayashaderfilter.h │ │ ├── mayashaderparam.cc │ │ ├── mayashaderparam.h │ │ ├── mayashaderregistry.cc │ │ └── mayashaderregistry.h │ ├── mayautil │ │ ├── mayaattrtype.cc │ │ ├── mayaattrtype.h │ │ ├── mayaattrutil.cc │ │ ├── mayaattrutil.h │ │ ├── mayanodeutil.cc │ │ ├── mayanodeutil.h │ │ ├── mayashaderutil.cc │ │ ├── mayashaderutil.h │ │ ├── mayatransformutil.cc │ │ ├── mayatransformutil.h │ │ └── mayatype.h │ └── stdneb.cc ├── qttoolkit │ ├── CMakeLists.txt │ ├── batchexporter │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── NBE.ico │ │ │ ├── batchexporter.rc │ │ │ ├── batchexporterapp.cc │ │ │ ├── batchexporterapp.h │ │ │ └── main.cc │ │ └── ui │ │ │ ├── about.ui │ │ │ └── batchexporterqt.ui │ ├── batchexporter2 │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── NBE.ico │ │ │ ├── batchexporter.rc │ │ │ ├── batchexporterapp.cc │ │ │ ├── batchexporterapp.h │ │ │ └── main.cc │ │ └── ui │ │ │ ├── about.ui │ │ │ └── batchexporterqt.ui │ ├── contentbrowser │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── NCB.ico │ │ │ ├── actions │ │ │ │ ├── baseaction.cc │ │ │ │ ├── baseaction.h │ │ │ │ ├── modelmodifyaction.cc │ │ │ │ └── modelmodifyaction.h │ │ │ ├── contentbrowser.rc │ │ │ ├── contentbrowserapp.cc │ │ │ ├── contentbrowserapp.h │ │ │ ├── contentbrowserwindow.cc │ │ │ ├── contentbrowserwindow.h │ │ │ ├── importerwindow.cc │ │ │ ├── importerwindow.h │ │ │ ├── librarytreewidget.cc │ │ │ ├── librarytreewidget.h │ │ │ ├── main.cc │ │ │ ├── materials │ │ │ │ ├── materialdatabase.cc │ │ │ │ └── materialdatabase.h │ │ │ ├── modelimporter │ │ │ │ ├── attic │ │ │ │ │ ├── importerwindow.cc │ │ │ │ │ └── importerwindow.h │ │ │ │ ├── clipcontroller.cc │ │ │ │ ├── clipcontroller.h │ │ │ │ ├── fbx │ │ │ │ │ ├── nfbxreader.cc │ │ │ │ │ └── nfbxreader.h │ │ │ │ ├── modelcontroller.cc │ │ │ │ ├── modelcontroller.h │ │ │ │ ├── modelimporterwindow.cc │ │ │ │ ├── modelimporterwindow.h │ │ │ │ ├── physicscontroller.cc │ │ │ │ └── physicscontroller.h │ │ │ ├── previewer │ │ │ │ ├── previewstate.cc │ │ │ │ ├── previewstate.h │ │ │ │ ├── previewwidget.cc │ │ │ │ └── previewwidget.h │ │ │ ├── progressreporter.cc │ │ │ ├── progressreporter.h │ │ │ ├── textureimporter │ │ │ │ ├── textureimporterwindow.cc │ │ │ │ └── textureimporterwindow.h │ │ │ └── widgets │ │ │ │ ├── animations │ │ │ │ ├── animationhandler.cc │ │ │ │ ├── animationhandler.h │ │ │ │ ├── animationitem.cc │ │ │ │ └── animationitem.h │ │ │ │ ├── audio │ │ │ │ ├── audiohandler.cc │ │ │ │ ├── audiohandler.h │ │ │ │ ├── audioitem.cc │ │ │ │ ├── audioitem.h │ │ │ │ ├── bankitem.cc │ │ │ │ └── bankitem.h │ │ │ │ ├── basehandler.cc │ │ │ │ ├── basehandler.h │ │ │ │ ├── baseitem.cc │ │ │ │ ├── baseitem.h │ │ │ │ ├── materials │ │ │ │ ├── materialhandler.cc │ │ │ │ ├── materialhandler.h │ │ │ │ ├── materialitem.cc │ │ │ │ ├── materialitem.h │ │ │ │ ├── mutablesurface.cc │ │ │ │ ├── mutablesurface.h │ │ │ │ ├── mutablesurfaceconstant.cc │ │ │ │ ├── mutablesurfaceconstant.h │ │ │ │ ├── mutablesurfaceinstance.cc │ │ │ │ └── mutablesurfaceinstance.h │ │ │ │ ├── meshes │ │ │ │ ├── meshhandler.cc │ │ │ │ ├── meshhandler.h │ │ │ │ ├── meshitem.cc │ │ │ │ └── meshitem.h │ │ │ │ ├── models │ │ │ │ ├── characternodeframe.cc │ │ │ │ ├── characternodeframe.h │ │ │ │ ├── characternodehandler.cc │ │ │ │ ├── characternodehandler.h │ │ │ │ ├── modelhandler.cc │ │ │ │ ├── modelhandler.h │ │ │ │ ├── modelitem.cc │ │ │ │ ├── modelitem.h │ │ │ │ ├── modelnodeframe.cc │ │ │ │ ├── modelnodeframe.h │ │ │ │ ├── modelnodehandler.cc │ │ │ │ ├── modelnodehandler.h │ │ │ │ ├── mutablecharacterskeleton.cc │ │ │ │ ├── mutablecharacterskeleton.h │ │ │ │ ├── mutableparticlesysteminstance.cc │ │ │ │ ├── mutableparticlesysteminstance.h │ │ │ │ ├── particlenodeframe.cc │ │ │ │ ├── particlenodeframe.h │ │ │ │ ├── particlenodehandler.cc │ │ │ │ ├── particlenodehandler.h │ │ │ │ ├── physicsnodeframe.cc │ │ │ │ ├── physicsnodeframe.h │ │ │ │ ├── physicsnodehandler.cc │ │ │ │ └── physicsnodehandler.h │ │ │ │ ├── particles │ │ │ │ ├── particlecurvewidget.cc │ │ │ │ ├── particlecurvewidget.h │ │ │ │ ├── particleenvelopewidget.cc │ │ │ │ └── particleenvelopewidget.h │ │ │ │ ├── textures │ │ │ │ ├── texturehandler.cc │ │ │ │ ├── texturehandler.h │ │ │ │ ├── textureitem.cc │ │ │ │ └── textureitem.h │ │ │ │ └── ui │ │ │ │ ├── fontitem.cc │ │ │ │ ├── fontitem.h │ │ │ │ ├── layoutitem.cc │ │ │ │ ├── layoutitem.h │ │ │ │ ├── uihandler.cc │ │ │ │ └── uihandler.h │ │ └── ui │ │ │ ├── audioinfowidget.ui │ │ │ ├── characternodeinfowidget.ui │ │ │ ├── contentbrowserwindow.ui │ │ │ ├── materialhelpwidget.ui │ │ │ ├── materialinfowidget.ui │ │ │ ├── materialwidget.ui │ │ │ ├── materialwizard.ui │ │ │ ├── modelimporterwindow.ui │ │ │ ├── modelinfowidget.ui │ │ │ ├── modelnodeinfowidget.ui │ │ │ ├── particleeffectwizard.ui │ │ │ ├── particlenodeinfowidget.ui │ │ │ ├── particlenodesettingtemplate.ui │ │ │ ├── physicsnodeinfowidget.ui │ │ │ ├── saveresourcedialog.ui │ │ │ ├── textureimporterwindow.ui │ │ │ ├── textureinfowidget.ui │ │ │ └── uiinfowidget.ui │ ├── copyright.txt │ ├── gpl.txt │ ├── icons │ │ ├── BluePrints.png │ │ ├── Contentbrowser.png │ │ ├── Environment.png │ │ ├── FX.png │ │ ├── Game.png │ │ ├── Leveleditor.png │ │ ├── Light.png │ │ ├── Play.png │ │ ├── Properties.png │ │ ├── Template.png │ │ ├── audio.png │ │ ├── envprobes.png │ │ ├── grid.png │ │ ├── gui.png │ │ ├── nebulalogo.png │ │ ├── open.png │ │ ├── save.png │ │ ├── saveas.png │ │ └── stefan.jpg │ ├── importer │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── clip.cpp │ │ │ ├── clip.h │ │ │ ├── clipcontroller.cpp │ │ │ ├── clipcontroller.h │ │ │ ├── clipdelegate.cpp │ │ │ ├── clipdelegate.h │ │ │ ├── clipmodel.cpp │ │ │ ├── clipmodel.h │ │ │ ├── fbx │ │ │ │ ├── fbxreader.cpp │ │ │ │ └── fbxreader.h │ │ │ ├── importdatabase.cpp │ │ │ ├── importdatabase.h │ │ │ ├── importer.cpp │ │ │ ├── importer.h │ │ │ ├── importoptions.cpp │ │ │ ├── importoptions.h │ │ │ ├── main.cpp │ │ │ ├── modelcontroller.cpp │ │ │ ├── modelcontroller.h │ │ │ ├── take.cpp │ │ │ └── take.h │ │ └── ui │ │ │ └── importerqt.ui │ ├── leveleditor2 │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── NLE.ico │ │ │ ├── actions │ │ │ │ ├── action.h │ │ │ │ ├── actionmanager.cc │ │ │ │ ├── actionmanager.h │ │ │ │ ├── createaction.cc │ │ │ │ ├── createaction.h │ │ │ │ ├── deleteaction.cc │ │ │ │ ├── deleteaction.h │ │ │ │ ├── duplicateaction.cc │ │ │ │ ├── duplicateaction.h │ │ │ │ ├── selectaction.cc │ │ │ │ ├── selectaction.h │ │ │ │ ├── transformaction.cc │ │ │ │ └── transformaction.h │ │ │ ├── entityguid.h │ │ │ ├── entityutils │ │ │ │ ├── placementutil.cc │ │ │ │ ├── placementutil.h │ │ │ │ ├── rotationfeature.cc │ │ │ │ ├── rotationfeature.h │ │ │ │ ├── scalefeature.cc │ │ │ │ ├── scalefeature.h │ │ │ │ ├── selectionutil.cc │ │ │ │ ├── selectionutil.h │ │ │ │ ├── transformfeature.cc │ │ │ │ ├── transformfeature.h │ │ │ │ ├── translatefeature.cc │ │ │ │ └── translatefeature.h │ │ │ ├── layers │ │ │ │ ├── layer.cc │ │ │ │ ├── layer.h │ │ │ │ ├── layerhandler.cc │ │ │ │ └── layerhandler.h │ │ │ ├── level.cc │ │ │ ├── level.h │ │ │ ├── leveleditor.rc │ │ │ ├── leveleditor2app.cc │ │ │ ├── leveleditor2app.h │ │ │ ├── leveleditor2entitymanager.cc │ │ │ ├── leveleditor2entitymanager.h │ │ │ ├── leveleditorstate.cc │ │ │ ├── leveleditorstate.h │ │ │ ├── lighting │ │ │ │ ├── editorlightprobeproperty.cc │ │ │ │ ├── editorlightprobeproperty.h │ │ │ │ ├── environmentprobecapturer.cc │ │ │ │ ├── environmentprobecapturer.h │ │ │ │ ├── lightprobemanager.cc │ │ │ │ └── lightprobemanager.h │ │ │ ├── main.cc │ │ │ ├── managers │ │ │ │ ├── attributewidgetmanager.cc │ │ │ │ └── attributewidgetmanager.h │ │ │ ├── properties │ │ │ │ ├── editorlightproperty.cc │ │ │ │ ├── editorlightproperty.h │ │ │ │ ├── editormultiselectproperty.cc │ │ │ │ ├── editormultiselectproperty.h │ │ │ │ ├── editornavareaproperty.cc │ │ │ │ ├── editornavareaproperty.h │ │ │ │ ├── editornavmeshproperty.cc │ │ │ │ ├── editornavmeshproperty.h │ │ │ │ ├── editorproperty.cc │ │ │ │ └── editorproperty.h │ │ │ └── widgets │ │ │ │ ├── audiodialoghandler.cc │ │ │ │ ├── audiodialoghandler.h │ │ │ │ ├── blueprinthandler.cc │ │ │ │ ├── blueprinthandler.h │ │ │ │ ├── createentitydialoghandler.cc │ │ │ │ ├── createentitydialoghandler.h │ │ │ │ ├── entityhandler.cc │ │ │ │ ├── entityhandler.h │ │ │ │ ├── entitytreewidget.cc │ │ │ │ ├── entitytreewidget.h │ │ │ │ ├── leveleditor2window.cc │ │ │ │ ├── leveleditor2window.h │ │ │ │ ├── levelpropertieshandler.cc │ │ │ │ ├── levelpropertieshandler.h │ │ │ │ ├── uidialoghandler.cc │ │ │ │ ├── uidialoghandler.h │ │ │ │ ├── viewerwidget.cc │ │ │ │ └── viewerwidget.h │ │ ├── leveleditor2protocol.nidl │ │ └── ui │ │ │ ├── audiodialog.ui │ │ │ ├── blueprints_dialog.ui │ │ │ ├── chooseentitydialog.ui │ │ │ ├── entity_dialog.ui │ │ │ ├── gridsizedialog.ui │ │ │ ├── leveleditor2window.ui │ │ │ ├── levelproperties.ui │ │ │ ├── lightprobedialog.ui │ │ │ └── uidialog.ui │ ├── nody │ │ ├── CMakeLists.txt │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── config.h │ │ │ ├── generation │ │ │ │ ├── generator.cc │ │ │ │ └── generator.h │ │ │ ├── link │ │ │ │ ├── graphics │ │ │ │ │ ├── antialiasedlinegraphics.cc │ │ │ │ │ ├── antialiasedlinegraphics.h │ │ │ │ │ ├── linkgraphics.cc │ │ │ │ │ └── linkgraphics.h │ │ │ │ ├── link.cc │ │ │ │ └── link.h │ │ │ ├── node │ │ │ │ ├── attic │ │ │ │ │ ├── node.cc │ │ │ │ │ └── node.h │ │ │ │ ├── graphics │ │ │ │ │ ├── nodegraphics.cc │ │ │ │ │ ├── nodegraphics.h │ │ │ │ │ ├── nodeitemgroup.cc │ │ │ │ │ ├── nodeitemgroup.h │ │ │ │ │ ├── nodepixmapitem.cc │ │ │ │ │ └── nodepixmapitem.h │ │ │ │ ├── node.cc │ │ │ │ └── node.h │ │ │ ├── project │ │ │ │ ├── project.cc │ │ │ │ ├── project.h │ │ │ │ ├── projectloader.cc │ │ │ │ ├── projectloader.h │ │ │ │ ├── projectsaver.cc │ │ │ │ ├── projectsaver.h │ │ │ │ ├── saveable.cc │ │ │ │ └── saveable.h │ │ │ ├── scene │ │ │ │ ├── attic │ │ │ │ │ ├── nodepalette.cc │ │ │ │ │ └── nodepalette.h │ │ │ │ ├── graphics │ │ │ │ │ ├── attic │ │ │ │ │ │ ├── nodegraphicspalette.cc │ │ │ │ │ │ ├── nodegraphicspalette.h │ │ │ │ │ │ ├── nodegraphicspaletteview.cc │ │ │ │ │ │ └── nodegraphicspaletteview.h │ │ │ │ │ ├── nodegraphicsscene.cc │ │ │ │ │ ├── nodegraphicsscene.h │ │ │ │ │ ├── nodegraphicssceneview.cc │ │ │ │ │ └── nodegraphicssceneview.h │ │ │ │ ├── nodescene.cc │ │ │ │ └── nodescene.h │ │ │ ├── simulation │ │ │ │ ├── simresult.cc │ │ │ │ ├── simresult.h │ │ │ │ ├── simulation.cc │ │ │ │ └── simulation.h │ │ │ ├── variable │ │ │ │ ├── graphics │ │ │ │ │ ├── variableinstancegraphics.cc │ │ │ │ │ └── variableinstancegraphics.h │ │ │ │ ├── variable.cc │ │ │ │ ├── variable.h │ │ │ │ ├── variableinstance.cc │ │ │ │ ├── variableinstance.h │ │ │ │ ├── vartype.cc │ │ │ │ └── vartype.h │ │ │ └── variation │ │ │ │ ├── graphics │ │ │ │ ├── variationlistitem.cc │ │ │ │ ├── variationlistitem.h │ │ │ │ ├── variationlistwidget.cc │ │ │ │ └── variationlistwidget.h │ │ │ │ ├── supervariation.cc │ │ │ │ ├── supervariation.h │ │ │ │ ├── supervariationinstance.cc │ │ │ │ ├── supervariationinstance.h │ │ │ │ ├── supervariationloader.cc │ │ │ │ ├── supervariationloader.h │ │ │ │ ├── variation.cc │ │ │ │ ├── variation.h │ │ │ │ ├── variationdatabase.cc │ │ │ │ ├── variationdatabase.h │ │ │ │ ├── variationinstance.cc │ │ │ │ ├── variationinstance.h │ │ │ │ ├── variationloader.cc │ │ │ │ └── variationloader.h │ │ ├── shady │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── codehighlighter.cc │ │ │ │ ├── codehighlighter.h │ │ │ │ ├── generation │ │ │ │ │ ├── anyfxgenerator.cc │ │ │ │ │ └── anyfxgenerator.h │ │ │ │ ├── graypalette.cc │ │ │ │ ├── graypalette.h │ │ │ │ ├── main.cc │ │ │ │ ├── materialwindow.cc │ │ │ │ ├── materialwindow.h │ │ │ │ ├── node │ │ │ │ │ ├── graphics │ │ │ │ │ │ ├── shadynodegraphics.cc │ │ │ │ │ │ └── shadynodegraphics.h │ │ │ │ │ ├── shadynode.cc │ │ │ │ │ └── shadynode.h │ │ │ │ ├── pathvalidator.cc │ │ │ │ ├── pathvalidator.h │ │ │ │ ├── project │ │ │ │ │ ├── shadyproject.cc │ │ │ │ │ ├── shadyproject.h │ │ │ │ │ ├── shadyprojectloader.cc │ │ │ │ │ ├── shadyprojectloader.h │ │ │ │ │ ├── shadyprojectsaver.cc │ │ │ │ │ └── shadyprojectsaver.h │ │ │ │ ├── shadyapp.cc │ │ │ │ ├── shadyapp.h │ │ │ │ ├── shadydefs.h │ │ │ │ ├── shadywindow.cc │ │ │ │ ├── shadywindow.h │ │ │ │ ├── simulation │ │ │ │ │ └── simulationcommands.nidl │ │ │ │ ├── variable │ │ │ │ │ ├── shadyvariable.cc │ │ │ │ │ └── shadyvariable.h │ │ │ │ ├── variation │ │ │ │ │ ├── shadysupervariation.cc │ │ │ │ │ ├── shadysupervariation.h │ │ │ │ │ ├── shadysupervariationloader.cc │ │ │ │ │ ├── shadysupervariationloader.h │ │ │ │ │ ├── shadyvariation.cc │ │ │ │ │ ├── shadyvariation.h │ │ │ │ │ ├── shadyvariationloader.cc │ │ │ │ │ └── shadyvariationloader.h │ │ │ │ ├── vecvalidator.cc │ │ │ │ └── vecvalidator.h │ │ │ └── ui │ │ │ │ ├── buildsettings.ui │ │ │ │ ├── materialwizard.ui │ │ │ │ ├── shadywindow.ui │ │ │ │ └── validation.ui │ │ ├── stdneb.cc │ │ └── stdneb.h │ ├── particleconverter │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── main.cc │ │ │ ├── particleconverterapp.cc │ │ │ ├── particleconverterapp.h │ │ │ ├── particleconverterwindow.cc │ │ │ └── particleconverterwindow.h │ │ └── ui │ │ │ └── particleconverterwidget.ui │ ├── projectwizard │ │ ├── CMakeLists.txt │ │ └── code │ │ │ └── main.cc │ ├── qtaddons │ │ ├── CMakeLists.txt │ │ ├── attributecontrollerwidget │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── animclipcontroller.cc │ │ │ │ ├── animclipcontroller.h │ │ │ │ ├── attributecontrollerwidget.cc │ │ │ │ ├── attributecontrollerwidget.h │ │ │ │ ├── baseattributecontroller.cc │ │ │ │ ├── baseattributecontroller.h │ │ │ │ ├── boolcontroller.cc │ │ │ │ ├── boolcontroller.h │ │ │ │ ├── callbackmanager.cc │ │ │ │ ├── callbackmanager.h │ │ │ │ ├── colourcontroller.cc │ │ │ │ ├── colourcontroller.h │ │ │ │ ├── decimalnumbercontroller.cc │ │ │ │ ├── decimalnumbercontroller.h │ │ │ │ ├── float4controller.cc │ │ │ │ ├── float4controller.h │ │ │ │ ├── guidcontroller.cc │ │ │ │ ├── guidcontroller.h │ │ │ │ ├── integercontroller.cc │ │ │ │ ├── integercontroller.h │ │ │ │ ├── matrix44controller.cc │ │ │ │ ├── matrix44controller.h │ │ │ │ ├── physicsmaterialcontroller.cc │ │ │ │ ├── physicsmaterialcontroller.h │ │ │ │ ├── qluasyntaxhighlighter.cc │ │ │ │ ├── qluasyntaxhighlighter.h │ │ │ │ ├── qluatextedit.cc │ │ │ │ ├── qluatextedit.h │ │ │ │ ├── resourcestringcontroller.cc │ │ │ │ ├── resourcestringcontroller.h │ │ │ │ ├── scripteditor.cc │ │ │ │ ├── scripteditor.h │ │ │ │ ├── stringcontroller.cc │ │ │ │ ├── stringcontroller.h │ │ │ │ ├── stringlistcontroller.cc │ │ │ │ └── stringlistcontroller.h │ │ │ └── ui │ │ │ │ ├── attributecontrollerwidget.ui │ │ │ │ ├── boolcontroller.ui │ │ │ │ ├── colourcontroller.ui │ │ │ │ ├── decimalnumbercontroller.ui │ │ │ │ ├── float4controller.ui │ │ │ │ ├── guidcontroller.ui │ │ │ │ ├── integercontroller.ui │ │ │ │ ├── matrix44controller.ui │ │ │ │ ├── resourcestringcontroller.ui │ │ │ │ ├── scripteditor.ui │ │ │ │ ├── stringcontroller.ui │ │ │ │ ├── stringlistcontroller.ui │ │ │ │ └── textcontroller.ui │ │ ├── globalprobecontroller │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── environmentprobewindow.cc │ │ │ │ └── environmentprobewindow.h │ │ │ └── ui │ │ │ │ └── environmentprobedialog.ui │ │ ├── miniexporter │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── miniexporter.cc │ │ │ │ └── miniexporter.h │ │ │ └── ui │ │ │ │ └── miniexporterdialog.ui │ │ ├── physicsmaterialeditor │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── physicsmaterialeditor.cc │ │ │ │ └── physicsmaterialeditor.h │ │ │ └── ui │ │ │ │ └── physicsmaterialeditorwindow.ui │ │ ├── posteffectcontroller │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── posteffectcontroller.cc │ │ │ │ └── posteffectcontroller.h │ │ │ └── ui │ │ │ │ └── posteffectsettingswindow.ui │ │ ├── remoteinterface │ │ │ ├── CMakeLists.txt │ │ │ ├── qtremoteclient.cc │ │ │ ├── qtremoteclient.h │ │ │ ├── qtremotehandler.cc │ │ │ ├── qtremoteprotocol.nidl │ │ │ ├── qtremoteserver.cc │ │ │ └── qtremoteserver.h │ │ ├── resourcebrowser │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ │ ├── assetbrowser.cc │ │ │ │ ├── assetbrowser.h │ │ │ │ ├── filewatcher.cc │ │ │ │ ├── filewatcher.h │ │ │ │ ├── imageloaderthread.cc │ │ │ │ ├── imageloaderthread.h │ │ │ │ ├── tileddirectoryitem.cc │ │ │ │ ├── tileddirectoryitem.h │ │ │ │ ├── tiledgraphicsitem.cc │ │ │ │ ├── tiledgraphicsitem.h │ │ │ │ ├── tiledgraphicsview.cc │ │ │ │ ├── tiledgraphicsview.h │ │ │ │ ├── tiledmodelitem.cc │ │ │ │ ├── tiledmodelitem.h │ │ │ │ ├── tiledsurfaceitem.cc │ │ │ │ ├── tiledsurfaceitem.h │ │ │ │ ├── tiledtextureitem.cc │ │ │ │ └── tiledtextureitem.h │ │ │ └── ui │ │ │ │ ├── assetbrowser.ui │ │ │ │ └── folder_512.png │ │ └── splash │ │ │ ├── CMakeLists.txt │ │ │ ├── code │ │ │ ├── splash.cc │ │ │ └── splash.h │ │ │ └── ui │ │ │ └── splashdialog.ui │ ├── qttools │ │ ├── CMakeLists.txt │ │ ├── code │ │ │ ├── output │ │ │ │ ├── outputmanager.cc │ │ │ │ ├── outputmanager.h │ │ │ │ ├── outputstream.cc │ │ │ │ └── outputstream.h │ │ │ ├── style │ │ │ │ ├── graypalette.cc │ │ │ │ └── graypalette.h │ │ │ └── tools │ │ │ │ ├── commandlineargs.cc │ │ │ │ ├── commandlineargs.h │ │ │ │ ├── progressnotifier.cc │ │ │ │ ├── progressnotifier.h │ │ │ │ ├── style.cc │ │ │ │ └── style.h │ │ └── ui │ │ │ ├── icons │ │ │ ├── black │ │ │ │ └── png │ │ │ │ │ ├── 2x2_grid_icon_16.png │ │ │ │ │ ├── 2x2_grid_icon_24.png │ │ │ │ │ ├── 2x2_grid_icon_32.png │ │ │ │ │ ├── 2x2_grid_icon_48.png │ │ │ │ │ ├── 3x3_grid_2_icon_16.png │ │ │ │ │ ├── 3x3_grid_2_icon_24.png │ │ │ │ │ ├── 3x3_grid_2_icon_32.png │ │ │ │ │ ├── 3x3_grid_2_icon_48.png │ │ │ │ │ ├── 3x3_grid_icon_16.png │ │ │ │ │ ├── 3x3_grid_icon_24.png │ │ │ │ │ ├── 3x3_grid_icon_32.png │ │ │ │ │ ├── 3x3_grid_icon_48.png │ │ │ │ │ ├── air_signal_icon_16.png │ │ │ │ │ ├── air_signal_icon_24.png │ │ │ │ │ ├── air_signal_icon_32.png │ │ │ │ │ ├── air_signal_icon_48.png │ │ │ │ │ ├── align_center_icon_16.png │ │ │ │ │ ├── align_center_icon_24.png │ │ │ │ │ ├── align_center_icon_32.png │ │ │ │ │ ├── align_center_icon_48.png │ │ │ │ │ ├── align_just_icon_16.png │ │ │ │ │ ├── align_just_icon_24.png │ │ │ │ │ ├── align_just_icon_32.png │ │ │ │ │ ├── align_just_icon_48.png │ │ │ │ │ ├── align_left_icon_16.png │ │ │ │ │ ├── align_left_icon_24.png │ │ │ │ │ ├── align_left_icon_32.png │ │ │ │ │ ├── align_left_icon_48.png │ │ │ │ │ ├── align_right_icon_16.png │ │ │ │ │ ├── align_right_icon_24.png │ │ │ │ │ ├── align_right_icon_32.png │ │ │ │ │ ├── align_right_icon_48.png │ │ │ │ │ ├── app_window_16.png │ │ │ │ │ ├── app_window_24.png │ │ │ │ │ ├── app_window_32.png │ │ │ │ │ ├── app_window_48.png │ │ │ │ │ ├── app_window_black_16.png │ │ │ │ │ ├── app_window_black_24.png │ │ │ │ │ ├── app_window_black_32.png │ │ │ │ │ ├── app_window_black_48.png │ │ │ │ │ ├── app_window_black_icon_16.png │ │ │ │ │ ├── app_window_black_icon_24.png │ │ │ │ │ ├── app_window_black_icon_32.png │ │ │ │ │ ├── app_window_black_icon_48.png │ │ │ │ │ ├── app_window_cross_16.png │ │ │ │ │ ├── app_window_cross_24.png │ │ │ │ │ ├── app_window_cross_32.png │ │ │ │ │ ├── app_window_cross_48.png │ │ │ │ │ ├── app_window_cross_icon_16.png │ │ │ │ │ ├── app_window_cross_icon_24.png │ │ │ │ │ ├── app_window_cross_icon_32.png │ │ │ │ │ ├── app_window_cross_icon_48.png │ │ │ │ │ ├── app_window_icon_16.png │ │ │ │ │ ├── app_window_icon_24.png │ │ │ │ │ ├── app_window_icon_32.png │ │ │ │ │ ├── app_window_icon_48.png │ │ │ │ │ ├── app_window_shell_16.png │ │ │ │ │ ├── app_window_shell_24.png │ │ │ │ │ ├── app_window_shell_32.png │ │ │ │ │ ├── app_window_shell_48.png │ │ │ │ │ ├── app_window_shell_icon_16.png │ │ │ │ │ ├── app_window_shell_icon_24.png │ │ │ │ │ ├── app_window_shell_icon_32.png │ │ │ │ │ ├── app_window_shell_icon_48.png │ │ │ │ │ ├── arrow_bottom_icon_16.png │ │ │ │ │ ├── arrow_bottom_icon_24.png │ │ │ │ │ ├── arrow_bottom_icon_32.png │ │ │ │ │ ├── arrow_bottom_icon_48.png │ │ │ │ │ ├── arrow_bottom_left_icon_16.png │ │ │ │ │ ├── arrow_bottom_left_icon_24.png │ │ │ │ │ ├── arrow_bottom_left_icon_32.png │ │ │ │ │ ├── arrow_bottom_left_icon_48.png │ │ │ │ │ ├── arrow_bottom_rigth_icon_16.png │ │ │ │ │ ├── arrow_bottom_rigth_icon_24.png │ │ │ │ │ ├── arrow_bottom_rigth_icon_32.png │ │ │ │ │ ├── arrow_bottom_rigth_icon_48.png │ │ │ │ │ ├── arrow_l_icon_16.png │ │ │ │ │ ├── arrow_l_icon_24.png │ │ │ │ │ ├── arrow_l_icon_32.png │ │ │ │ │ ├── arrow_l_icon_48.png │ │ │ │ │ ├── arrow_left_icon_16.png │ │ │ │ │ ├── arrow_left_icon_24.png │ │ │ │ │ ├── arrow_left_icon_32.png │ │ │ │ │ ├── arrow_left_icon_48.png │ │ │ │ │ ├── arrow_r_icon_16.png │ │ │ │ │ ├── arrow_r_icon_24.png │ │ │ │ │ ├── arrow_r_icon_32.png │ │ │ │ │ ├── arrow_r_icon_48.png │ │ │ │ │ ├── arrow_right_icon_16.png │ │ │ │ │ ├── arrow_right_icon_24.png │ │ │ │ │ ├── arrow_right_icon_32.png │ │ │ │ │ ├── arrow_right_icon_48.png │ │ │ │ │ ├── arrow_top_icon_16.png │ │ │ │ │ ├── arrow_top_icon_24.png │ │ │ │ │ ├── arrow_top_icon_32.png │ │ │ │ │ ├── arrow_top_icon_48.png │ │ │ │ │ ├── arrow_top_left_icon_16.png │ │ │ │ │ ├── arrow_top_left_icon_24.png │ │ │ │ │ ├── arrow_top_left_icon_32.png │ │ │ │ │ ├── arrow_top_left_icon_48.png │ │ │ │ │ ├── arrow_top_right_icon_16.png │ │ │ │ │ ├── arrow_top_right_icon_24.png │ │ │ │ │ ├── arrow_top_right_icon_32.png │ │ │ │ │ ├── arrow_top_right_icon_48.png │ │ │ │ │ ├── arrow_two_head_2_icon_16.png │ │ │ │ │ ├── arrow_two_head_2_icon_24.png │ │ │ │ │ ├── arrow_two_head_2_icon_32.png │ │ │ │ │ ├── arrow_two_head_2_icon_48.png │ │ │ │ │ ├── arrow_two_head_icon_16.png │ │ │ │ │ ├── arrow_two_head_icon_24.png │ │ │ │ │ ├── arrow_two_head_icon_32.png │ │ │ │ │ ├── arrow_two_head_icon_48.png │ │ │ │ │ ├── attention_icon_16.png │ │ │ │ │ ├── attention_icon_24.png │ │ │ │ │ ├── attention_icon_32.png │ │ │ │ │ ├── attention_icon_48.png │ │ │ │ │ ├── balance_icon_16.png │ │ │ │ │ ├── balance_icon_24.png │ │ │ │ │ ├── balance_icon_32.png │ │ │ │ │ ├── balance_icon_48.png │ │ │ │ │ ├── battery_icon_16.png │ │ │ │ │ ├── battery_icon_24.png │ │ │ │ │ ├── battery_icon_32.png │ │ │ │ │ ├── battery_icon_48.png │ │ │ │ │ ├── bell_icon_16.png │ │ │ │ │ ├── bell_icon_24.png │ │ │ │ │ ├── bell_icon_32.png │ │ │ │ │ ├── bell_icon_48.png │ │ │ │ │ ├── book_icon_16.png │ │ │ │ │ ├── book_icon_24.png │ │ │ │ │ ├── book_icon_32.png │ │ │ │ │ ├── book_icon_48.png │ │ │ │ │ ├── book_side_icon_16.png │ │ │ │ │ ├── book_side_icon_24.png │ │ │ │ │ ├── book_side_icon_32.png │ │ │ │ │ ├── book_side_icon_48.png │ │ │ │ │ ├── bookmark_1_icon_16.png │ │ │ │ │ ├── bookmark_1_icon_24.png │ │ │ │ │ ├── bookmark_1_icon_32.png │ │ │ │ │ ├── bookmark_1_icon_48.png │ │ │ │ │ ├── bookmark_2_icon_16.png │ │ │ │ │ ├── bookmark_2_icon_24.png │ │ │ │ │ ├── bookmark_2_icon_32.png │ │ │ │ │ ├── bookmark_2_icon_48.png │ │ │ │ │ ├── box_icon_16.png │ │ │ │ │ ├── box_icon_24.png │ │ │ │ │ ├── box_icon_32.png │ │ │ │ │ ├── box_icon_48.png │ │ │ │ │ ├── br_down_icon_16.png │ │ │ │ │ ├── br_down_icon_24.png │ │ │ │ │ ├── br_down_icon_32.png │ │ │ │ │ ├── br_down_icon_48.png │ │ │ │ │ ├── br_next_icon_16.png │ │ │ │ │ ├── br_next_icon_24.png │ │ │ │ │ ├── br_next_icon_32.png │ │ │ │ │ ├── br_next_icon_48.png │ │ │ │ │ ├── br_prev_icon_16.png │ │ │ │ │ ├── br_prev_icon_24.png │ │ │ │ │ ├── br_prev_icon_32.png │ │ │ │ │ ├── br_prev_icon_48.png │ │ │ │ │ ├── br_up_icon_16.png │ │ │ │ │ ├── br_up_icon_24.png │ │ │ │ │ ├── br_up_icon_32.png │ │ │ │ │ ├── br_up_icon_48.png │ │ │ │ │ ├── brackets_icon_16.png │ │ │ │ │ ├── brackets_icon_24.png │ │ │ │ │ ├── brackets_icon_32.png │ │ │ │ │ ├── brackets_icon_48.png │ │ │ │ │ ├── browser_icon_16.png │ │ │ │ │ ├── browser_icon_24.png │ │ │ │ │ ├── browser_icon_32.png │ │ │ │ │ ├── browser_icon_48.png │ │ │ │ │ ├── brush_icon_16.png │ │ │ │ │ ├── brush_icon_24.png │ │ │ │ │ ├── brush_icon_32.png │ │ │ │ │ ├── brush_icon_48.png │ │ │ │ │ ├── bug_icon_16.png │ │ │ │ │ ├── bug_icon_24.png │ │ │ │ │ ├── bug_icon_32.png │ │ │ │ │ ├── bug_icon_48.png │ │ │ │ │ ├── burst_icon_16.png │ │ │ │ │ ├── burst_icon_24.png │ │ │ │ │ ├── burst_icon_32.png │ │ │ │ │ ├── burst_icon_48.png │ │ │ │ │ ├── calc_icon_16.png │ │ │ │ │ ├── calc_icon_24.png │ │ │ │ │ ├── calc_icon_32.png │ │ │ │ │ ├── calc_icon_48.png │ │ │ │ │ ├── calendar_1_icon_16.png │ │ │ │ │ ├── calendar_1_icon_24.png │ │ │ │ │ ├── calendar_1_icon_32.png │ │ │ │ │ ├── calendar_1_icon_48.png │ │ │ │ │ ├── calendar_2_icon_16.png │ │ │ │ │ ├── calendar_2_icon_24.png │ │ │ │ │ ├── calendar_2_icon_32.png │ │ │ │ │ ├── calendar_2_icon_48.png │ │ │ │ │ ├── cancel_icon_16.png │ │ │ │ │ ├── cancel_icon_24.png │ │ │ │ │ ├── cancel_icon_32.png │ │ │ │ │ ├── cancel_icon_48.png │ │ │ │ │ ├── case_icon_16.png │ │ │ │ │ ├── case_icon_24.png │ │ │ │ │ ├── case_icon_32.png │ │ │ │ │ ├── case_icon_48.png │ │ │ │ │ ├── cassette_icon_16.png │ │ │ │ │ ├── cassette_icon_24.png │ │ │ │ │ ├── cassette_icon_32.png │ │ │ │ │ ├── cassette_icon_48.png │ │ │ │ │ ├── cc_icon_16.png │ │ │ │ │ ├── cc_icon_24.png │ │ │ │ │ ├── cc_icon_32.png │ │ │ │ │ ├── cc_icon_48.png │ │ │ │ │ ├── cert_icon_16.png │ │ │ │ │ ├── cert_icon_24.png │ │ │ │ │ ├── cert_icon_32.png │ │ │ │ │ ├── cert_icon_48.png │ │ │ │ │ ├── chart_bar_icon_16.png │ │ │ │ │ ├── chart_bar_icon_24.png │ │ │ │ │ ├── chart_bar_icon_32.png │ │ │ │ │ ├── chart_bar_icon_48.png │ │ │ │ │ ├── chart_line_2_icon_16.png │ │ │ │ │ ├── chart_line_2_icon_24.png │ │ │ │ │ ├── chart_line_2_icon_32.png │ │ │ │ │ ├── chart_line_2_icon_48.png │ │ │ │ │ ├── chart_line_icon_16.png │ │ │ │ │ ├── chart_line_icon_24.png │ │ │ │ │ ├── chart_line_icon_32.png │ │ │ │ │ ├── chart_line_icon_48.png │ │ │ │ │ ├── chart_pie_icon_16.png │ │ │ │ │ ├── chart_pie_icon_24.png │ │ │ │ │ ├── chart_pie_icon_32.png │ │ │ │ │ ├── chart_pie_icon_48.png │ │ │ │ │ ├── chat_bubble_message_square_icon_16.png │ │ │ │ │ ├── chat_bubble_message_square_icon_24.png │ │ │ │ │ ├── chat_bubble_message_square_icon_32.png │ │ │ │ │ ├── chat_bubble_message_square_icon_48.png │ │ │ │ │ ├── checkbox_checked_icon_16.png │ │ │ │ │ ├── checkbox_checked_icon_24.png │ │ │ │ │ ├── checkbox_checked_icon_32.png │ │ │ │ │ ├── checkbox_checked_icon_48.png │ │ │ │ │ ├── checkbox_unchecked_icon_16.png │ │ │ │ │ ├── checkbox_unchecked_icon_24.png │ │ │ │ │ ├── checkbox_unchecked_icon_32.png │ │ │ │ │ ├── checkbox_unchecked_icon_48.png │ │ │ │ │ ├── checkmark_icon_16.png │ │ │ │ │ ├── checkmark_icon_24.png │ │ │ │ │ ├── checkmark_icon_32.png │ │ │ │ │ ├── checkmark_icon_48.png │ │ │ │ │ ├── clip_icon_16.png │ │ │ │ │ ├── clip_icon_24.png │ │ │ │ │ ├── clip_icon_32.png │ │ │ │ │ ├── clip_icon_48.png │ │ │ │ │ ├── clipboard_copy_icon_16.png │ │ │ │ │ ├── clipboard_copy_icon_24.png │ │ │ │ │ ├── clipboard_copy_icon_32.png │ │ │ │ │ ├── clipboard_copy_icon_48.png │ │ │ │ │ ├── clipboard_cut_icon_16.png │ │ │ │ │ ├── clipboard_cut_icon_24.png │ │ │ │ │ ├── clipboard_cut_icon_32.png │ │ │ │ │ ├── clipboard_cut_icon_48.png │ │ │ │ │ ├── clipboard_past_icon_16.png │ │ │ │ │ ├── clipboard_past_icon_24.png │ │ │ │ │ ├── clipboard_past_icon_32.png │ │ │ │ │ ├── clipboard_past_icon_48.png │ │ │ │ │ ├── clock_icon_16.png │ │ │ │ │ ├── clock_icon_24.png │ │ │ │ │ ├── clock_icon_32.png │ │ │ │ │ ├── clock_icon_48.png │ │ │ │ │ ├── cloud_icon_16.png │ │ │ │ │ ├── cloud_icon_24.png │ │ │ │ │ ├── cloud_icon_32.png │ │ │ │ │ ├── cloud_icon_48.png │ │ │ │ │ ├── cloud_rain_icon_16.png │ │ │ │ │ ├── cloud_rain_icon_24.png │ │ │ │ │ ├── cloud_rain_icon_32.png │ │ │ │ │ ├── cloud_rain_icon_48.png │ │ │ │ │ ├── coffe_cup_icon_16.png │ │ │ │ │ ├── coffe_cup_icon_24.png │ │ │ │ │ ├── coffe_cup_icon_32.png │ │ │ │ │ ├── coffe_cup_icon_48.png │ │ │ │ │ ├── cog_icon_16.png │ │ │ │ │ ├── cog_icon_24.png │ │ │ │ │ ├── cog_icon_32.png │ │ │ │ │ ├── cog_icon_48.png │ │ │ │ │ ├── cogs_icon_16.png │ │ │ │ │ ├── cogs_icon_24.png │ │ │ │ │ ├── cogs_icon_32.png │ │ │ │ │ ├── cogs_icon_48.png │ │ │ │ │ ├── comp_icon_16.png │ │ │ │ │ ├── comp_icon_24.png │ │ │ │ │ ├── comp_icon_32.png │ │ │ │ │ ├── comp_icon_48.png │ │ │ │ │ ├── compass_icon_16.png │ │ │ │ │ ├── compass_icon_24.png │ │ │ │ │ ├── compass_icon_32.png │ │ │ │ │ ├── compass_icon_48.png │ │ │ │ │ ├── connect_icon_16.png │ │ │ │ │ ├── connect_icon_24.png │ │ │ │ │ ├── connect_icon_32.png │ │ │ │ │ ├── connect_icon_48.png │ │ │ │ │ ├── contact_card_icon_16.png │ │ │ │ │ ├── contact_card_icon_24.png │ │ │ │ │ ├── contact_card_icon_32.png │ │ │ │ │ ├── contact_card_icon_48.png │ │ │ │ │ ├── contact_icon_16.png │ │ │ │ │ ├── contact_icon_24.png │ │ │ │ │ ├── contact_icon_32.png │ │ │ │ │ ├── contact_icon_48.png │ │ │ │ │ ├── cube_icon_16.png │ │ │ │ │ ├── cube_icon_24.png │ │ │ │ │ ├── cube_icon_32.png │ │ │ │ │ ├── cube_icon_48.png │ │ │ │ │ ├── cur_bp_icon_16.png │ │ │ │ │ ├── cur_bp_icon_24.png │ │ │ │ │ ├── cur_bp_icon_32.png │ │ │ │ │ ├── cur_bp_icon_48.png │ │ │ │ │ ├── cur_dollar_icon_16.png │ │ │ │ │ ├── cur_dollar_icon_24.png │ │ │ │ │ ├── cur_dollar_icon_32.png │ │ │ │ │ ├── cur_dollar_icon_48.png │ │ │ │ │ ├── cur_euro_icon_16.png │ │ │ │ │ ├── cur_euro_icon_24.png │ │ │ │ │ ├── cur_euro_icon_32.png │ │ │ │ │ ├── cur_euro_icon_48.png │ │ │ │ │ ├── cur_yen_icon_16.png │ │ │ │ │ ├── cur_yen_icon_24.png │ │ │ │ │ ├── cur_yen_icon_32.png │ │ │ │ │ ├── cur_yen_icon_48.png │ │ │ │ │ ├── cursor_H_split_icon_16.png │ │ │ │ │ ├── cursor_H_split_icon_24.png │ │ │ │ │ ├── cursor_H_split_icon_32.png │ │ │ │ │ ├── cursor_H_split_icon_48.png │ │ │ │ │ ├── cursor_V_split_icon_16.png │ │ │ │ │ ├── cursor_V_split_icon_24.png │ │ │ │ │ ├── cursor_V_split_icon_32.png │ │ │ │ │ ├── cursor_V_split_icon_48.png │ │ │ │ │ ├── cursor_arrow_icon_16.png │ │ │ │ │ ├── cursor_arrow_icon_24.png │ │ │ │ │ ├── cursor_arrow_icon_32.png │ │ │ │ │ ├── cursor_arrow_icon_48.png │ │ │ │ │ ├── cursor_drag_arrow_2_icon_16.png │ │ │ │ │ ├── cursor_drag_arrow_2_icon_24.png │ │ │ │ │ ├── cursor_drag_arrow_2_icon_32.png │ │ │ │ │ ├── cursor_drag_arrow_2_icon_48.png │ │ │ │ │ ├── cursor_drag_arrow_icon_16.png │ │ │ │ │ ├── cursor_drag_arrow_icon_24.png │ │ │ │ │ ├── cursor_drag_arrow_icon_32.png │ │ │ │ │ ├── cursor_drag_arrow_icon_48.png │ │ │ │ │ ├── cursor_drag_hand_icon_16.png │ │ │ │ │ ├── cursor_drag_hand_icon_24.png │ │ │ │ │ ├── cursor_drag_hand_icon_32.png │ │ │ │ │ ├── cursor_drag_hand_icon_48.png │ │ │ │ │ ├── cursor_hand_icon_16.png │ │ │ │ │ ├── cursor_hand_icon_24.png │ │ │ │ │ ├── cursor_hand_icon_32.png │ │ │ │ │ ├── cursor_hand_icon_48.png │ │ │ │ │ ├── dashboard_icon_16.png │ │ │ │ │ ├── dashboard_icon_24.png │ │ │ │ │ ├── dashboard_icon_32.png │ │ │ │ │ ├── dashboard_icon_48.png │ │ │ │ │ ├── db_icon_16.png │ │ │ │ │ ├── db_icon_24.png │ │ │ │ │ ├── db_icon_32.png │ │ │ │ │ ├── db_icon_48.png │ │ │ │ │ ├── delete_icon_16.png │ │ │ │ │ ├── delete_icon_24.png │ │ │ │ │ ├── delete_icon_32.png │ │ │ │ │ ├── delete_icon_48.png │ │ │ │ │ ├── delete_server_icon_16.png │ │ │ │ │ ├── delete_server_icon_24.png │ │ │ │ │ ├── delete_server_icon_32.png │ │ │ │ │ ├── delete_server_icon_48.png │ │ │ │ │ ├── disconnected_icon_16.png │ │ │ │ │ ├── disconnected_icon_24.png │ │ │ │ │ ├── disconnected_icon_32.png │ │ │ │ │ ├── disconnected_icon_48.png │ │ │ │ │ ├── doc_delete_icon_16.png │ │ │ │ │ ├── doc_delete_icon_24.png │ │ │ │ │ ├── doc_delete_icon_32.png │ │ │ │ │ ├── doc_delete_icon_48.png │ │ │ │ │ ├── doc_edit_icon_16.png │ │ │ │ │ ├── doc_edit_icon_24.png │ │ │ │ │ ├── doc_edit_icon_32.png │ │ │ │ │ ├── doc_edit_icon_48.png │ │ │ │ │ ├── doc_empty_icon_16.png │ │ │ │ │ ├── doc_empty_icon_24.png │ │ │ │ │ ├── doc_empty_icon_32.png │ │ │ │ │ ├── doc_empty_icon_48.png │ │ │ │ │ ├── doc_export_icon_16.png │ │ │ │ │ ├── doc_export_icon_24.png │ │ │ │ │ ├── doc_export_icon_32.png │ │ │ │ │ ├── doc_export_icon_48.png │ │ │ │ │ ├── doc_import_icon_16.png │ │ │ │ │ ├── doc_import_icon_24.png │ │ │ │ │ ├── doc_import_icon_32.png │ │ │ │ │ ├── doc_import_icon_48.png │ │ │ │ │ ├── doc_lines_icon_16.png │ │ │ │ │ ├── doc_lines_icon_24.png │ │ │ │ │ ├── doc_lines_icon_32.png │ │ │ │ │ ├── doc_lines_icon_48.png │ │ │ │ │ ├── doc_lines_stright_icon_16.png │ │ │ │ │ ├── doc_lines_stright_icon_24.png │ │ │ │ │ ├── doc_lines_stright_icon_32.png │ │ │ │ │ ├── doc_lines_stright_icon_48.png │ │ │ │ │ ├── doc_minus_icon_16.png │ │ │ │ │ ├── doc_minus_icon_24.png │ │ │ │ │ ├── doc_minus_icon_32.png │ │ │ │ │ ├── doc_minus_icon_48.png │ │ │ │ │ ├── doc_new_icon_16.png │ │ │ │ │ ├── doc_new_icon_24.png │ │ │ │ │ ├── doc_new_icon_32.png │ │ │ │ │ ├── doc_new_icon_48.png │ │ │ │ │ ├── doc_plus_icon_16.png │ │ │ │ │ ├── doc_plus_icon_24.png │ │ │ │ │ ├── doc_plus_icon_32.png │ │ │ │ │ ├── doc_plus_icon_48.png │ │ │ │ │ ├── document_icon_16.png │ │ │ │ │ ├── document_icon_24.png │ │ │ │ │ ├── document_icon_32.png │ │ │ │ │ ├── document_icon_48.png │ │ │ │ │ ├── download_icon_16.png │ │ │ │ │ ├── download_icon_24.png │ │ │ │ │ ├── download_icon_32.png │ │ │ │ │ ├── download_icon_48.png │ │ │ │ │ ├── eject_icon_16.png │ │ │ │ │ ├── eject_icon_24.png │ │ │ │ │ ├── eject_icon_32.png │ │ │ │ │ ├── eject_icon_48.png │ │ │ │ │ ├── emotion_sad_icon_16.png │ │ │ │ │ ├── emotion_sad_icon_24.png │ │ │ │ │ ├── emotion_sad_icon_32.png │ │ │ │ │ ├── emotion_sad_icon_48.png │ │ │ │ │ ├── emotion_smile_icon_16.png │ │ │ │ │ ├── emotion_smile_icon_24.png │ │ │ │ │ ├── emotion_smile_icon_32.png │ │ │ │ │ ├── emotion_smile_icon_48.png │ │ │ │ │ ├── expand_icon_16.png │ │ │ │ │ ├── expand_icon_24.png │ │ │ │ │ ├── expand_icon_32.png │ │ │ │ │ ├── expand_icon_48.png │ │ │ │ │ ├── export_icon_16.png │ │ │ │ │ ├── export_icon_24.png │ │ │ │ │ ├── export_icon_32.png │ │ │ │ │ ├── export_icon_48.png │ │ │ │ │ ├── eye_icon_16.png │ │ │ │ │ ├── eye_icon_24.png │ │ │ │ │ ├── eye_icon_32.png │ │ │ │ │ ├── eye_icon_48.png │ │ │ │ │ ├── eye_inv_icon_16.png │ │ │ │ │ ├── eye_inv_icon_24.png │ │ │ │ │ ├── eye_inv_icon_32.png │ │ │ │ │ ├── eye_inv_icon_48.png │ │ │ │ │ ├── facebook_icon_16.png │ │ │ │ │ ├── facebook_icon_24.png │ │ │ │ │ ├── facebook_icon_32.png │ │ │ │ │ ├── facebook_icon_48.png │ │ │ │ │ ├── fastforward_next_icon_16.png │ │ │ │ │ ├── fastforward_next_icon_24.png │ │ │ │ │ ├── fastforward_next_icon_32.png │ │ │ │ │ ├── fastforward_next_icon_48.png │ │ │ │ │ ├── fill_icon_16.png │ │ │ │ │ ├── fill_icon_24.png │ │ │ │ │ ├── fill_icon_32.png │ │ │ │ │ ├── fill_icon_48.png │ │ │ │ │ ├── filter_icon_16.png │ │ │ │ │ ├── filter_icon_24.png │ │ │ │ │ ├── filter_icon_32.png │ │ │ │ │ ├── filter_icon_48.png │ │ │ │ │ ├── fire_icon_16.png │ │ │ │ │ ├── fire_icon_24.png │ │ │ │ │ ├── fire_icon_32.png │ │ │ │ │ ├── fire_icon_48.png │ │ │ │ │ ├── flag_2_icon_16.png │ │ │ │ │ ├── flag_2_icon_24.png │ │ │ │ │ ├── flag_2_icon_32.png │ │ │ │ │ ├── flag_2_icon_48.png │ │ │ │ │ ├── flag_icon_16.png │ │ │ │ │ ├── flag_icon_24.png │ │ │ │ │ ├── flag_icon_32.png │ │ │ │ │ ├── flag_icon_48.png │ │ │ │ │ ├── folder_arrow_icon_16.png │ │ │ │ │ ├── folder_arrow_icon_24.png │ │ │ │ │ ├── folder_arrow_icon_32.png │ │ │ │ │ ├── folder_arrow_icon_48.png │ │ │ │ │ ├── folder_delete_icon_16.png │ │ │ │ │ ├── folder_delete_icon_24.png │ │ │ │ │ ├── folder_delete_icon_32.png │ │ │ │ │ ├── folder_delete_icon_48.png │ │ │ │ │ ├── folder_icon_16.png │ │ │ │ │ ├── folder_icon_24.png │ │ │ │ │ ├── folder_icon_32.png │ │ │ │ │ ├── folder_icon_48.png │ │ │ │ │ ├── folder_minus_icon_16.png │ │ │ │ │ ├── folder_minus_icon_24.png │ │ │ │ │ ├── folder_minus_icon_32.png │ │ │ │ │ ├── folder_minus_icon_48.png │ │ │ │ │ ├── folder_open_icon_16.png │ │ │ │ │ ├── folder_open_icon_24.png │ │ │ │ │ ├── folder_open_icon_32.png │ │ │ │ │ ├── folder_open_icon_48.png │ │ │ │ │ ├── folder_plus_icon_16.png │ │ │ │ │ ├── folder_plus_icon_24.png │ │ │ │ │ ├── folder_plus_icon_32.png │ │ │ │ │ ├── folder_plus_icon_48.png │ │ │ │ │ ├── font_bold_icon_16.png │ │ │ │ │ ├── font_bold_icon_24.png │ │ │ │ │ ├── font_bold_icon_32.png │ │ │ │ │ ├── font_bold_icon_48.png │ │ │ │ │ ├── font_italic_icon_16.png │ │ │ │ │ ├── font_italic_icon_24.png │ │ │ │ │ ├── font_italic_icon_32.png │ │ │ │ │ ├── font_italic_icon_48.png │ │ │ │ │ ├── font_size_icon_16.png │ │ │ │ │ ├── font_size_icon_24.png │ │ │ │ │ ├── font_size_icon_32.png │ │ │ │ │ ├── font_size_icon_48.png │ │ │ │ │ ├── font_strokethrough_icon_16.png │ │ │ │ │ ├── font_strokethrough_icon_24.png │ │ │ │ │ ├── font_strokethrough_icon_32.png │ │ │ │ │ ├── font_strokethrough_icon_48.png │ │ │ │ │ ├── font_underline_icon_16.png │ │ │ │ │ ├── font_underline_icon_24.png │ │ │ │ │ ├── font_underline_icon_32.png │ │ │ │ │ ├── font_underline_icon_48.png │ │ │ │ │ ├── game_pad_icon_16.png │ │ │ │ │ ├── game_pad_icon_24.png │ │ │ │ │ ├── game_pad_icon_32.png │ │ │ │ │ ├── game_pad_icon_48.png │ │ │ │ │ ├── glasses_icon_16.png │ │ │ │ │ ├── glasses_icon_24.png │ │ │ │ │ ├── glasses_icon_32.png │ │ │ │ │ ├── glasses_icon_48.png │ │ │ │ │ ├── globe_1_icon_16.png │ │ │ │ │ ├── globe_1_icon_24.png │ │ │ │ │ ├── globe_1_icon_32.png │ │ │ │ │ ├── globe_1_icon_48.png │ │ │ │ │ ├── globe_2_icon_16.png │ │ │ │ │ ├── globe_2_icon_24.png │ │ │ │ │ ├── globe_2_icon_32.png │ │ │ │ │ ├── globe_2_icon_48.png │ │ │ │ │ ├── globe_3_icon_16.png │ │ │ │ │ ├── globe_3_icon_24.png │ │ │ │ │ ├── globe_3_icon_32.png │ │ │ │ │ ├── globe_3_icon_48.png │ │ │ │ │ ├── google_icon_16.png │ │ │ │ │ ├── google_icon_24.png │ │ │ │ │ ├── google_icon_32.png │ │ │ │ │ ├── google_icon_48.png │ │ │ │ │ ├── hand_1_icon_16.png │ │ │ │ │ ├── hand_1_icon_24.png │ │ │ │ │ ├── hand_1_icon_32.png │ │ │ │ │ ├── hand_1_icon_48.png │ │ │ │ │ ├── hand_2_icon_16.png │ │ │ │ │ ├── hand_2_icon_24.png │ │ │ │ │ ├── hand_2_icon_32.png │ │ │ │ │ ├── hand_2_icon_48.png │ │ │ │ │ ├── hand_contra_icon_16.png │ │ │ │ │ ├── hand_contra_icon_24.png │ │ │ │ │ ├── hand_contra_icon_32.png │ │ │ │ │ ├── hand_contra_icon_48.png │ │ │ │ │ ├── hand_pro_icon_16.png │ │ │ │ │ ├── hand_pro_icon_24.png │ │ │ │ │ ├── hand_pro_icon_32.png │ │ │ │ │ ├── hand_pro_icon_48.png │ │ │ │ │ ├── hanger_icon_16.png │ │ │ │ │ ├── hanger_icon_24.png │ │ │ │ │ ├── hanger_icon_32.png │ │ │ │ │ ├── hanger_icon_48.png │ │ │ │ │ ├── headphones_icon_16.png │ │ │ │ │ ├── headphones_icon_24.png │ │ │ │ │ ├── headphones_icon_32.png │ │ │ │ │ ├── headphones_icon_48.png │ │ │ │ │ ├── heart_empty_icon_16.png │ │ │ │ │ ├── heart_empty_icon_24.png │ │ │ │ │ ├── heart_empty_icon_32.png │ │ │ │ │ ├── heart_empty_icon_48.png │ │ │ │ │ ├── heart_icon_16.png │ │ │ │ │ ├── heart_icon_24.png │ │ │ │ │ ├── heart_icon_32.png │ │ │ │ │ ├── heart_icon_48.png │ │ │ │ │ ├── home_icon_16.png │ │ │ │ │ ├── home_icon_24.png │ │ │ │ │ ├── home_icon_32.png │ │ │ │ │ ├── home_icon_48.png │ │ │ │ │ ├── image_text_icon_16.png │ │ │ │ │ ├── image_text_icon_24.png │ │ │ │ │ ├── image_text_icon_32.png │ │ │ │ │ ├── image_text_icon_48.png │ │ │ │ │ ├── import_icon_16.png │ │ │ │ │ ├── import_icon_24.png │ │ │ │ │ ├── import_icon_32.png │ │ │ │ │ ├── import_icon_48.png │ │ │ │ │ ├── inbox_icon_16.png │ │ │ │ │ ├── inbox_icon_24.png │ │ │ │ │ ├── inbox_icon_32.png │ │ │ │ │ ├── inbox_icon_48.png │ │ │ │ │ ├── indent_decrease_icon_16.png │ │ │ │ │ ├── indent_decrease_icon_24.png │ │ │ │ │ ├── indent_decrease_icon_32.png │ │ │ │ │ ├── indent_decrease_icon_48.png │ │ │ │ │ ├── indent_increase_icon_16.png │ │ │ │ │ ├── indent_increase_icon_24.png │ │ │ │ │ ├── indent_increase_icon_32.png │ │ │ │ │ ├── indent_increase_icon_48.png │ │ │ │ │ ├── info_icon_16.png │ │ │ │ │ ├── info_icon_24.png │ │ │ │ │ ├── info_icon_32.png │ │ │ │ │ ├── info_icon_48.png │ │ │ │ │ ├── inject_icon_16.png │ │ │ │ │ ├── inject_icon_24.png │ │ │ │ │ ├── inject_icon_32.png │ │ │ │ │ ├── inject_icon_48.png │ │ │ │ │ ├── invisible_light_icon_16.png │ │ │ │ │ ├── invisible_light_icon_24.png │ │ │ │ │ ├── invisible_light_icon_32.png │ │ │ │ │ ├── invisible_light_icon_48.png │ │ │ │ │ ├── invisible_revert_icon_16.png │ │ │ │ │ ├── invisible_revert_icon_24.png │ │ │ │ │ ├── invisible_revert_icon_32.png │ │ │ │ │ ├── invisible_revert_icon_48.png │ │ │ │ │ ├── iphone_icon_16.png │ │ │ │ │ ├── iphone_icon_24.png │ │ │ │ │ ├── iphone_icon_32.png │ │ │ │ │ ├── iphone_icon_48.png │ │ │ │ │ ├── key_icon_16.png │ │ │ │ │ ├── key_icon_24.png │ │ │ │ │ ├── key_icon_32.png │ │ │ │ │ ├── key_icon_48.png │ │ │ │ │ ├── layers_1_icon_16.png │ │ │ │ │ ├── layers_1_icon_24.png │ │ │ │ │ ├── layers_1_icon_32.png │ │ │ │ │ ├── layers_1_icon_48.png │ │ │ │ │ ├── layers_2_icon_16.png │ │ │ │ │ ├── layers_2_icon_24.png │ │ │ │ │ ├── layers_2_icon_32.png │ │ │ │ │ ├── layers_2_icon_48.png │ │ │ │ │ ├── lightbulb_icon_16.png │ │ │ │ │ ├── lightbulb_icon_24.png │ │ │ │ │ ├── lightbulb_icon_32.png │ │ │ │ │ ├── lightbulb_icon_48.png │ │ │ │ │ ├── lighting_icon_16.png │ │ │ │ │ ├── lighting_icon_24.png │ │ │ │ │ ├── lighting_icon_32.png │ │ │ │ │ ├── lighting_icon_48.png │ │ │ │ │ ├── link_icon_16.png │ │ │ │ │ ├── link_icon_24.png │ │ │ │ │ ├── link_icon_32.png │ │ │ │ │ ├── link_icon_48.png │ │ │ │ │ ├── list_bullets_icon_16.png │ │ │ │ │ ├── list_bullets_icon_24.png │ │ │ │ │ ├── list_bullets_icon_32.png │ │ │ │ │ ├── list_bullets_icon_48.png │ │ │ │ │ ├── list_num_icon_16.png │ │ │ │ │ ├── list_num_icon_24.png │ │ │ │ │ ├── list_num_icon_32.png │ │ │ │ │ ├── list_num_icon_48.png │ │ │ │ │ ├── loading_throbber_icon_16.png │ │ │ │ │ ├── loading_throbber_icon_24.png │ │ │ │ │ ├── loading_throbber_icon_32.png │ │ │ │ │ ├── loading_throbber_icon_48.png │ │ │ │ │ ├── lock_open_icon_16.png │ │ │ │ │ ├── lock_open_icon_24.png │ │ │ │ │ ├── lock_open_icon_32.png │ │ │ │ │ ├── lock_open_icon_48.png │ │ │ │ │ ├── magic_wand_2_icon_16.png │ │ │ │ │ ├── magic_wand_2_icon_24.png │ │ │ │ │ ├── magic_wand_2_icon_32.png │ │ │ │ │ ├── magic_wand_2_icon_48.png │ │ │ │ │ ├── magic_wand_icon_16.png │ │ │ │ │ ├── magic_wand_icon_24.png │ │ │ │ │ ├── magic_wand_icon_32.png │ │ │ │ │ ├── magic_wand_icon_48.png │ │ │ │ │ ├── mail_2_icon_16.png │ │ │ │ │ ├── mail_2_icon_24.png │ │ │ │ │ ├── mail_2_icon_32.png │ │ │ │ │ ├── mail_2_icon_48.png │ │ │ │ │ ├── mail_icon_16.png │ │ │ │ │ ├── mail_icon_24.png │ │ │ │ │ ├── mail_icon_32.png │ │ │ │ │ ├── mail_icon_48.png │ │ │ │ │ ├── message_attention_icon_16.png │ │ │ │ │ ├── message_attention_icon_24.png │ │ │ │ │ ├── message_attention_icon_32.png │ │ │ │ │ ├── message_attention_icon_48.png │ │ │ │ │ ├── mic_icon_16.png │ │ │ │ │ ├── mic_icon_24.png │ │ │ │ │ ├── mic_icon_32.png │ │ │ │ │ ├── mic_icon_48.png │ │ │ │ │ ├── microphone_icon_16.png │ │ │ │ │ ├── microphone_icon_24.png │ │ │ │ │ ├── microphone_icon_32.png │ │ │ │ │ ├── microphone_icon_48.png │ │ │ │ │ ├── money_icon_16.png │ │ │ │ │ ├── money_icon_24.png │ │ │ │ │ ├── money_icon_32.png │ │ │ │ │ ├── money_icon_48.png │ │ │ │ │ ├── monitor_icon_16.png │ │ │ │ │ ├── monitor_icon_24.png │ │ │ │ │ ├── monitor_icon_32.png │ │ │ │ │ ├── monitor_icon_48.png │ │ │ │ │ ├── movie_icon_16.png │ │ │ │ │ ├── movie_icon_24.png │ │ │ │ │ ├── movie_icon_32.png │ │ │ │ │ ├── movie_icon_48.png │ │ │ │ │ ├── music_icon_16.png │ │ │ │ │ ├── music_icon_24.png │ │ │ │ │ ├── music_icon_32.png │ │ │ │ │ ├── music_icon_48.png │ │ │ │ │ ├── music_square_icon_16.png │ │ │ │ │ ├── music_square_icon_24.png │ │ │ │ │ ├── music_square_icon_32.png │ │ │ │ │ ├── music_square_icon_48.png │ │ │ │ │ ├── net_comp_icon_16.png │ │ │ │ │ ├── net_comp_icon_24.png │ │ │ │ │ ├── net_comp_icon_32.png │ │ │ │ │ ├── net_comp_icon_48.png │ │ │ │ │ ├── network_icon_16.png │ │ │ │ │ ├── network_icon_24.png │ │ │ │ │ ├── network_icon_32.png │ │ │ │ │ ├── network_icon_48.png │ │ │ │ │ ├── not_connected_icon_16.png │ │ │ │ │ ├── not_connected_icon_24.png │ │ │ │ │ ├── not_connected_icon_32.png │ │ │ │ │ ├── not_connected_icon_48.png │ │ │ │ │ ├── notepad_2_icon_16.png │ │ │ │ │ ├── notepad_2_icon_24.png │ │ │ │ │ ├── notepad_2_icon_32.png │ │ │ │ │ ├── notepad_2_icon_48.png │ │ │ │ │ ├── notepad_icon_16.png │ │ │ │ │ ├── notepad_icon_24.png │ │ │ │ │ ├── notepad_icon_32.png │ │ │ │ │ ├── notepad_icon_48.png │ │ │ │ │ ├── off_icon_16.png │ │ │ │ │ ├── off_icon_24.png │ │ │ │ │ ├── off_icon_32.png │ │ │ │ │ ├── off_icon_48.png │ │ │ │ │ ├── on-off_icon_16.png │ │ │ │ │ ├── on-off_icon_24.png │ │ │ │ │ ├── on-off_icon_32.png │ │ │ │ │ ├── on-off_icon_48.png │ │ │ │ │ ├── on_icon_16.png │ │ │ │ │ ├── on_icon_24.png │ │ │ │ │ ├── on_icon_32.png │ │ │ │ │ ├── on_icon_48.png │ │ │ │ │ ├── openid_icon_16.png │ │ │ │ │ ├── openid_icon_24.png │ │ │ │ │ ├── openid_icon_32.png │ │ │ │ │ ├── openid_icon_48.png │ │ │ │ │ ├── padlock_closed_icon_16.png │ │ │ │ │ ├── padlock_closed_icon_24.png │ │ │ │ │ ├── padlock_closed_icon_32.png │ │ │ │ │ ├── padlock_closed_icon_48.png │ │ │ │ │ ├── padlock_open_icon_16.png │ │ │ │ │ ├── padlock_open_icon_24.png │ │ │ │ │ ├── padlock_open_icon_32.png │ │ │ │ │ ├── padlock_open_icon_48.png │ │ │ │ │ ├── page_layout_icon_16.png │ │ │ │ │ ├── page_layout_icon_24.png │ │ │ │ │ ├── page_layout_icon_32.png │ │ │ │ │ ├── page_layout_icon_48.png │ │ │ │ │ ├── paper_airplane_icon_16.png │ │ │ │ │ ├── paper_airplane_icon_24.png │ │ │ │ │ ├── paper_airplane_icon_32.png │ │ │ │ │ ├── paper_airplane_icon_48.png │ │ │ │ │ ├── paragraph_icon_16.png │ │ │ │ │ ├── paragraph_icon_24.png │ │ │ │ │ ├── paragraph_icon_32.png │ │ │ │ │ ├── paragraph_icon_48.png │ │ │ │ │ ├── pencil_icon_16.png │ │ │ │ │ ├── pencil_icon_24.png │ │ │ │ │ ├── pencil_icon_32.png │ │ │ │ │ ├── pencil_icon_48.png │ │ │ │ │ ├── phone_1_icon_16.png │ │ │ │ │ ├── phone_1_icon_24.png │ │ │ │ │ ├── phone_1_icon_32.png │ │ │ │ │ ├── phone_1_icon_48.png │ │ │ │ │ ├── phone_2_icon_16.png │ │ │ │ │ ├── phone_2_icon_24.png │ │ │ │ │ ├── phone_2_icon_32.png │ │ │ │ │ ├── phone_2_icon_48.png │ │ │ │ │ ├── phone_icon_16.png │ │ │ │ │ ├── phone_icon_24.png │ │ │ │ │ ├── phone_icon_32.png │ │ │ │ │ ├── phone_icon_48.png │ │ │ │ │ ├── phone_touch_icon_16.png │ │ │ │ │ ├── phone_touch_icon_24.png │ │ │ │ │ ├── phone_touch_icon_32.png │ │ │ │ │ ├── phone_touch_icon_48.png │ │ │ │ │ ├── photo_icon_16.png │ │ │ │ │ ├── photo_icon_24.png │ │ │ │ │ ├── photo_icon_32.png │ │ │ │ │ ├── photo_icon_48.png │ │ │ │ │ ├── picture_icon_16.png │ │ │ │ │ ├── picture_icon_24.png │ │ │ │ │ ├── picture_icon_32.png │ │ │ │ │ ├── picture_icon_48.png │ │ │ │ │ ├── pin_2_icon_16.png │ │ │ │ │ ├── pin_2_icon_24.png │ │ │ │ │ ├── pin_2_icon_32.png │ │ │ │ │ ├── pin_2_icon_48.png │ │ │ │ │ ├── pin_icon_16.png │ │ │ │ │ ├── pin_icon_24.png │ │ │ │ │ ├── pin_icon_32.png │ │ │ │ │ ├── pin_icon_48.png │ │ │ │ │ ├── pin_map_down_icon_16.png │ │ │ │ │ ├── pin_map_down_icon_24.png │ │ │ │ │ ├── pin_map_down_icon_32.png │ │ │ │ │ ├── pin_map_down_icon_48.png │ │ │ │ │ ├── pin_map_icon_16.png │ │ │ │ │ ├── pin_map_icon_24.png │ │ │ │ │ ├── pin_map_icon_32.png │ │ │ │ │ ├── pin_map_icon_48.png │ │ │ │ │ ├── pin_map_left_icon_16.png │ │ │ │ │ ├── pin_map_left_icon_24.png │ │ │ │ │ ├── pin_map_left_icon_32.png │ │ │ │ │ ├── pin_map_left_icon_48.png │ │ │ │ │ ├── pin_map_right_icon_16.png │ │ │ │ │ ├── pin_map_right_icon_24.png │ │ │ │ │ ├── pin_map_right_icon_32.png │ │ │ │ │ ├── pin_map_right_icon_48.png │ │ │ │ │ ├── pin_map_top_icon_16.png │ │ │ │ │ ├── pin_map_top_icon_24.png │ │ │ │ │ ├── pin_map_top_icon_32.png │ │ │ │ │ ├── pin_map_top_icon_48.png │ │ │ │ │ ├── pin_sq_down_icon_16.png │ │ │ │ │ ├── pin_sq_down_icon_24.png │ │ │ │ │ ├── pin_sq_down_icon_32.png │ │ │ │ │ ├── pin_sq_down_icon_48.png │ │ │ │ │ ├── pin_sq_left_icon_16.png │ │ │ │ │ ├── pin_sq_left_icon_24.png │ │ │ │ │ ├── pin_sq_left_icon_32.png │ │ │ │ │ ├── pin_sq_left_icon_48.png │ │ │ │ │ ├── pin_sq_right_icon_16.png │ │ │ │ │ ├── pin_sq_right_icon_24.png │ │ │ │ │ ├── pin_sq_right_icon_32.png │ │ │ │ │ ├── pin_sq_right_icon_48.png │ │ │ │ │ ├── pin_sq_top_icon_16.png │ │ │ │ │ ├── pin_sq_top_icon_24.png │ │ │ │ │ ├── pin_sq_top_icon_32.png │ │ │ │ │ ├── pin_sq_top_icon_48.png │ │ │ │ │ ├── playback_ff_icon_16.png │ │ │ │ │ ├── playback_ff_icon_24.png │ │ │ │ │ ├── playback_ff_icon_32.png │ │ │ │ │ ├── playback_ff_icon_48.png │ │ │ │ │ ├── playback_next_icon_16.png │ │ │ │ │ ├── playback_next_icon_24.png │ │ │ │ │ ├── playback_next_icon_32.png │ │ │ │ │ ├── playback_next_icon_48.png │ │ │ │ │ ├── playback_pause_icon_16.png │ │ │ │ │ ├── playback_pause_icon_24.png │ │ │ │ │ ├── playback_pause_icon_32.png │ │ │ │ │ ├── playback_pause_icon_48.png │ │ │ │ │ ├── playback_play_icon_16.png │ │ │ │ │ ├── playback_play_icon_24.png │ │ │ │ │ ├── playback_play_icon_32.png │ │ │ │ │ ├── playback_play_icon_48.png │ │ │ │ │ ├── playback_prev_icon_16.png │ │ │ │ │ ├── playback_prev_icon_24.png │ │ │ │ │ ├── playback_prev_icon_32.png │ │ │ │ │ ├── playback_prev_icon_48.png │ │ │ │ │ ├── playback_rec_icon_16.png │ │ │ │ │ ├── playback_rec_icon_24.png │ │ │ │ │ ├── playback_rec_icon_32.png │ │ │ │ │ ├── playback_rec_icon_48.png │ │ │ │ │ ├── playback_reload_icon_16.png │ │ │ │ │ ├── playback_reload_icon_24.png │ │ │ │ │ ├── playback_reload_icon_32.png │ │ │ │ │ ├── playback_reload_icon_48.png │ │ │ │ │ ├── playback_rew_icon_16.png │ │ │ │ │ ├── playback_rew_icon_24.png │ │ │ │ │ ├── playback_rew_icon_32.png │ │ │ │ │ ├── playback_rew_icon_48.png │ │ │ │ │ ├── playback_stop_icon_16.png │ │ │ │ │ ├── playback_stop_icon_24.png │ │ │ │ │ ├── playback_stop_icon_32.png │ │ │ │ │ ├── playback_stop_icon_48.png │ │ │ │ │ ├── podcast_icon_16.png │ │ │ │ │ ├── podcast_icon_24.png │ │ │ │ │ ├── podcast_icon_32.png │ │ │ │ │ ├── podcast_icon_48.png │ │ │ │ │ ├── preso_icon_16.png │ │ │ │ │ ├── preso_icon_24.png │ │ │ │ │ ├── preso_icon_32.png │ │ │ │ │ ├── preso_icon_48.png │ │ │ │ │ ├── print_icon_16.png │ │ │ │ │ ├── print_icon_24.png │ │ │ │ │ ├── print_icon_32.png │ │ │ │ │ ├── print_icon_48.png │ │ │ │ │ ├── push_pin_icon_16.png │ │ │ │ │ ├── push_pin_icon_24.png │ │ │ │ │ ├── push_pin_icon_32.png │ │ │ │ │ ├── push_pin_icon_48.png │ │ │ │ │ ├── redo_icon_16.png │ │ │ │ │ ├── redo_icon_24.png │ │ │ │ │ ├── redo_icon_32.png │ │ │ │ │ ├── redo_icon_48.png │ │ │ │ │ ├── refresh_icon_16.png │ │ │ │ │ ├── refresh_icon_24.png │ │ │ │ │ ├── refresh_icon_32.png │ │ │ │ │ ├── refresh_icon_48.png │ │ │ │ │ ├── reload_icon_16.png │ │ │ │ │ ├── reload_icon_24.png │ │ │ │ │ ├── reload_icon_32.png │ │ │ │ │ ├── reload_icon_48.png │ │ │ │ │ ├── rewind_previous_icon_16.png │ │ │ │ │ ├── rewind_previous_icon_24.png │ │ │ │ │ ├── rewind_previous_icon_32.png │ │ │ │ │ ├── rewind_previous_icon_48.png │ │ │ │ │ ├── rnd_br_down_icon_16.png │ │ │ │ │ ├── rnd_br_down_icon_24.png │ │ │ │ │ ├── rnd_br_down_icon_32.png │ │ │ │ │ ├── rnd_br_down_icon_48.png │ │ │ │ │ ├── rnd_br_first_icon_16.png │ │ │ │ │ ├── rnd_br_first_icon_24.png │ │ │ │ │ ├── rnd_br_first_icon_32.png │ │ │ │ │ ├── rnd_br_first_icon_48.png │ │ │ │ │ ├── rnd_br_last_icon_16.png │ │ │ │ │ ├── rnd_br_last_icon_24.png │ │ │ │ │ ├── rnd_br_last_icon_32.png │ │ │ │ │ ├── rnd_br_last_icon_48.png │ │ │ │ │ ├── rnd_br_next_icon_16.png │ │ │ │ │ ├── rnd_br_next_icon_24.png │ │ │ │ │ ├── rnd_br_next_icon_32.png │ │ │ │ │ ├── rnd_br_next_icon_48.png │ │ │ │ │ ├── rnd_br_prev_icon_16.png │ │ │ │ │ ├── rnd_br_prev_icon_24.png │ │ │ │ │ ├── rnd_br_prev_icon_32.png │ │ │ │ │ ├── rnd_br_prev_icon_48.png │ │ │ │ │ ├── rnd_br_up_icon_16.png │ │ │ │ │ ├── rnd_br_up_icon_24.png │ │ │ │ │ ├── rnd_br_up_icon_32.png │ │ │ │ │ ├── rnd_br_up_icon_48.png │ │ │ │ │ ├── round_and_up_icon_16.png │ │ │ │ │ ├── round_and_up_icon_24.png │ │ │ │ │ ├── round_and_up_icon_32.png │ │ │ │ │ ├── round_and_up_icon_48.png │ │ │ │ │ ├── round_arrow_left_icon_16.png │ │ │ │ │ ├── round_arrow_left_icon_24.png │ │ │ │ │ ├── round_arrow_left_icon_32.png │ │ │ │ │ ├── round_arrow_left_icon_48.png │ │ │ │ │ ├── round_arrow_right_icon_16.png │ │ │ │ │ ├── round_arrow_right_icon_24.png │ │ │ │ │ ├── round_arrow_right_icon_32.png │ │ │ │ │ ├── round_arrow_right_icon_48.png │ │ │ │ │ ├── round_checkmark_icon_16.png │ │ │ │ │ ├── round_checkmark_icon_24.png │ │ │ │ │ ├── round_checkmark_icon_32.png │ │ │ │ │ ├── round_checkmark_icon_48.png │ │ │ │ │ ├── round_delete_icon_16.png │ │ │ │ │ ├── round_delete_icon_24.png │ │ │ │ │ ├── round_delete_icon_32.png │ │ │ │ │ ├── round_delete_icon_48.png │ │ │ │ │ ├── round_icon_16.png │ │ │ │ │ ├── round_icon_24.png │ │ │ │ │ ├── round_icon_32.png │ │ │ │ │ ├── round_icon_48.png │ │ │ │ │ ├── round_minus_icon_16.png │ │ │ │ │ ├── round_minus_icon_24.png │ │ │ │ │ ├── round_minus_icon_32.png │ │ │ │ │ ├── round_minus_icon_48.png │ │ │ │ │ ├── round_plus_icon_16.png │ │ │ │ │ ├── round_plus_icon_24.png │ │ │ │ │ ├── round_plus_icon_32.png │ │ │ │ │ ├── round_plus_icon_48.png │ │ │ │ │ ├── rss_icon_16.png │ │ │ │ │ ├── rss_icon_24.png │ │ │ │ │ ├── rss_icon_32.png │ │ │ │ │ ├── rss_icon_48.png │ │ │ │ │ ├── rss_sq_icon_16.png │ │ │ │ │ ├── rss_sq_icon_24.png │ │ │ │ │ ├── rss_sq_icon_32.png │ │ │ │ │ ├── rss_sq_icon_48.png │ │ │ │ │ ├── sand_icon_16.png │ │ │ │ │ ├── sand_icon_24.png │ │ │ │ │ ├── sand_icon_32.png │ │ │ │ │ ├── sand_icon_48.png │ │ │ │ │ ├── sat_dish_icon_16.png │ │ │ │ │ ├── sat_dish_icon_24.png │ │ │ │ │ ├── sat_dish_icon_32.png │ │ │ │ │ ├── sat_dish_icon_48.png │ │ │ │ │ ├── save_icon_16.png │ │ │ │ │ ├── save_icon_24.png │ │ │ │ │ ├── save_icon_32.png │ │ │ │ │ ├── save_icon_48.png │ │ │ │ │ ├── server_icon_16.png │ │ │ │ │ ├── server_icon_24.png │ │ │ │ │ ├── server_icon_32.png │ │ │ │ │ ├── server_icon_48.png │ │ │ │ │ ├── shapes_icon_16.png │ │ │ │ │ ├── shapes_icon_24.png │ │ │ │ │ ├── shapes_icon_32.png │ │ │ │ │ ├── shapes_icon_48.png │ │ │ │ │ ├── share_2_icon_16.png │ │ │ │ │ ├── share_2_icon_24.png │ │ │ │ │ ├── share_2_icon_32.png │ │ │ │ │ ├── share_2_icon_48.png │ │ │ │ │ ├── share_icon_16.png │ │ │ │ │ ├── share_icon_24.png │ │ │ │ │ ├── share_icon_32.png │ │ │ │ │ ├── share_icon_48.png │ │ │ │ │ ├── shield_2_icon_16.png │ │ │ │ │ ├── shield_2_icon_24.png │ │ │ │ │ ├── shield_2_icon_32.png │ │ │ │ │ ├── shield_2_icon_48.png │ │ │ │ │ ├── shield_icon_16.png │ │ │ │ │ ├── shield_icon_24.png │ │ │ │ │ ├── shield_icon_32.png │ │ │ │ │ ├── shield_icon_48.png │ │ │ │ │ ├── shop_cart_icon_16.png │ │ │ │ │ ├── shop_cart_icon_24.png │ │ │ │ │ ├── shop_cart_icon_32.png │ │ │ │ │ ├── shop_cart_icon_48.png │ │ │ │ │ ├── shopping_bag_dollar_icon_16.png │ │ │ │ │ ├── shopping_bag_dollar_icon_24.png │ │ │ │ │ ├── shopping_bag_dollar_icon_32.png │ │ │ │ │ ├── shopping_bag_dollar_icon_48.png │ │ │ │ │ ├── shopping_bag_icon_16.png │ │ │ │ │ ├── shopping_bag_icon_24.png │ │ │ │ │ ├── shopping_bag_icon_32.png │ │ │ │ │ ├── shopping_bag_icon_48.png │ │ │ │ │ ├── sound_high_icon_16.png │ │ │ │ │ ├── sound_high_icon_24.png │ │ │ │ │ ├── sound_high_icon_32.png │ │ │ │ │ ├── sound_high_icon_48.png │ │ │ │ │ ├── sound_low_icon_16.png │ │ │ │ │ ├── sound_low_icon_24.png │ │ │ │ │ ├── sound_low_icon_32.png │ │ │ │ │ ├── sound_low_icon_48.png │ │ │ │ │ ├── sound_mute_icon_16.png │ │ │ │ │ ├── sound_mute_icon_24.png │ │ │ │ │ ├── sound_mute_icon_32.png │ │ │ │ │ ├── sound_mute_icon_48.png │ │ │ │ │ ├── spechbubble_2_icon_16.png │ │ │ │ │ ├── spechbubble_2_icon_24.png │ │ │ │ │ ├── spechbubble_2_icon_32.png │ │ │ │ │ ├── spechbubble_2_icon_48.png │ │ │ │ │ ├── spechbubble_icon_16.png │ │ │ │ │ ├── spechbubble_icon_24.png │ │ │ │ │ ├── spechbubble_icon_32.png │ │ │ │ │ ├── spechbubble_icon_48.png │ │ │ │ │ ├── spechbubble_sq_icon_16.png │ │ │ │ │ ├── spechbubble_sq_icon_24.png │ │ │ │ │ ├── spechbubble_sq_icon_32.png │ │ │ │ │ ├── spechbubble_sq_icon_48.png │ │ │ │ │ ├── spechbubble_sq_line_icon_16.png │ │ │ │ │ ├── spechbubble_sq_line_icon_24.png │ │ │ │ │ ├── spechbubble_sq_line_icon_32.png │ │ │ │ │ ├── spechbubble_sq_line_icon_48.png │ │ │ │ │ ├── sq_br_down_icon_16.png │ │ │ │ │ ├── sq_br_down_icon_24.png │ │ │ │ │ ├── sq_br_down_icon_32.png │ │ │ │ │ ├── sq_br_down_icon_48.png │ │ │ │ │ ├── sq_br_first_icon_16.png │ │ │ │ │ ├── sq_br_first_icon_24.png │ │ │ │ │ ├── sq_br_first_icon_32.png │ │ │ │ │ ├── sq_br_first_icon_48.png │ │ │ │ │ ├── sq_br_last_icon_16.png │ │ │ │ │ ├── sq_br_last_icon_24.png │ │ │ │ │ ├── sq_br_last_icon_32.png │ │ │ │ │ ├── sq_br_last_icon_48.png │ │ │ │ │ ├── sq_br_next_icon_16.png │ │ │ │ │ ├── sq_br_next_icon_24.png │ │ │ │ │ ├── sq_br_next_icon_32.png │ │ │ │ │ ├── sq_br_next_icon_48.png │ │ │ │ │ ├── sq_br_prev_icon_16.png │ │ │ │ │ ├── sq_br_prev_icon_24.png │ │ │ │ │ ├── sq_br_prev_icon_32.png │ │ │ │ │ ├── sq_br_prev_icon_48.png │ │ │ │ │ ├── sq_br_up_icon_16.png │ │ │ │ │ ├── sq_br_up_icon_24.png │ │ │ │ │ ├── sq_br_up_icon_32.png │ │ │ │ │ ├── sq_br_up_icon_48.png │ │ │ │ │ ├── sq_down_icon_16.png │ │ │ │ │ ├── sq_down_icon_24.png │ │ │ │ │ ├── sq_down_icon_32.png │ │ │ │ │ ├── sq_down_icon_48.png │ │ │ │ │ ├── sq_minus_icon_16.png │ │ │ │ │ ├── sq_minus_icon_24.png │ │ │ │ │ ├── sq_minus_icon_32.png │ │ │ │ │ ├── sq_minus_icon_48.png │ │ │ │ │ ├── sq_next_icon_16.png │ │ │ │ │ ├── sq_next_icon_24.png │ │ │ │ │ ├── sq_next_icon_32.png │ │ │ │ │ ├── sq_next_icon_48.png │ │ │ │ │ ├── sq_plus_icon_16.png │ │ │ │ │ ├── sq_plus_icon_24.png │ │ │ │ │ ├── sq_plus_icon_32.png │ │ │ │ │ ├── sq_plus_icon_48.png │ │ │ │ │ ├── sq_prev_icon_16.png │ │ │ │ │ ├── sq_prev_icon_24.png │ │ │ │ │ ├── sq_prev_icon_32.png │ │ │ │ │ ├── sq_prev_icon_48.png │ │ │ │ │ ├── sq_up_icon_16.png │ │ │ │ │ ├── sq_up_icon_24.png │ │ │ │ │ ├── sq_up_icon_32.png │ │ │ │ │ ├── sq_up_icon_48.png │ │ │ │ │ ├── square_shape_icon_16.png │ │ │ │ │ ├── square_shape_icon_24.png │ │ │ │ │ ├── square_shape_icon_32.png │ │ │ │ │ ├── square_shape_icon_48.png │ │ │ │ │ ├── stairs_down_icon_16.png │ │ │ │ │ ├── stairs_down_icon_24.png │ │ │ │ │ ├── stairs_down_icon_32.png │ │ │ │ │ ├── stairs_down_icon_48.png │ │ │ │ │ ├── stairs_up_icon_16.png │ │ │ │ │ ├── stairs_up_icon_24.png │ │ │ │ │ ├── stairs_up_icon_32.png │ │ │ │ │ ├── stairs_up_icon_48.png │ │ │ │ │ ├── star_fav_empty_icon_16.png │ │ │ │ │ ├── star_fav_empty_icon_24.png │ │ │ │ │ ├── star_fav_empty_icon_32.png │ │ │ │ │ ├── star_fav_empty_icon_48.png │ │ │ │ │ ├── star_fav_icon_16.png │ │ │ │ │ ├── star_fav_icon_24.png │ │ │ │ │ ├── star_fav_icon_32.png │ │ │ │ │ ├── star_fav_icon_48.png │ │ │ │ │ ├── star_icon_16.png │ │ │ │ │ ├── star_icon_24.png │ │ │ │ │ ├── star_icon_32.png │ │ │ │ │ ├── star_icon_48.png │ │ │ │ │ ├── stop_watch_icon_16.png │ │ │ │ │ ├── stop_watch_icon_24.png │ │ │ │ │ ├── stop_watch_icon_32.png │ │ │ │ │ ├── stop_watch_icon_48.png │ │ │ │ │ ├── sun_icon_16.png │ │ │ │ │ ├── sun_icon_24.png │ │ │ │ │ ├── sun_icon_32.png │ │ │ │ │ ├── sun_icon_48.png │ │ │ │ │ ├── tag_icon_16.png │ │ │ │ │ ├── tag_icon_24.png │ │ │ │ │ ├── tag_icon_32.png │ │ │ │ │ ├── tag_icon_48.png │ │ │ │ │ ├── tape_icon_16.png │ │ │ │ │ ├── tape_icon_24.png │ │ │ │ │ ├── tape_icon_32.png │ │ │ │ │ ├── tape_icon_48.png │ │ │ │ │ ├── target_icon_16.png │ │ │ │ │ ├── target_icon_24.png │ │ │ │ │ ├── target_icon_32.png │ │ │ │ │ ├── target_icon_48.png │ │ │ │ │ ├── text_curstor_icon_16.png │ │ │ │ │ ├── text_curstor_icon_24.png │ │ │ │ │ ├── text_curstor_icon_32.png │ │ │ │ │ ├── text_curstor_icon_48.png │ │ │ │ │ ├── text_letter_t_icon_16.png │ │ │ │ │ ├── text_letter_t_icon_24.png │ │ │ │ │ ├── text_letter_t_icon_32.png │ │ │ │ │ ├── text_letter_t_icon_48.png │ │ │ │ │ ├── top_right_expand_icon_16.png │ │ │ │ │ ├── top_right_expand_icon_24.png │ │ │ │ │ ├── top_right_expand_icon_32.png │ │ │ │ │ ├── top_right_expand_icon_48.png │ │ │ │ │ ├── track_icon_16.png │ │ │ │ │ ├── track_icon_24.png │ │ │ │ │ ├── track_icon_32.png │ │ │ │ │ ├── track_icon_48.png │ │ │ │ │ ├── trash_icon_16.png │ │ │ │ │ ├── trash_icon_24.png │ │ │ │ │ ├── trash_icon_32.png │ │ │ │ │ ├── trash_icon_48.png │ │ │ │ │ ├── twitter_2_icon_16.png │ │ │ │ │ ├── twitter_2_icon_24.png │ │ │ │ │ ├── twitter_2_icon_32.png │ │ │ │ │ ├── twitter_2_icon_48.png │ │ │ │ │ ├── twitter_icon_16.png │ │ │ │ │ ├── twitter_icon_24.png │ │ │ │ │ ├── twitter_icon_32.png │ │ │ │ │ ├── twitter_icon_48.png │ │ │ │ │ ├── undo_icon_16.png │ │ │ │ │ ├── undo_icon_24.png │ │ │ │ │ ├── undo_icon_32.png │ │ │ │ │ ├── undo_icon_48.png │ │ │ │ │ ├── user_icon_16.png │ │ │ │ │ ├── user_icon_24.png │ │ │ │ │ ├── user_icon_32.png │ │ │ │ │ ├── user_icon_48.png │ │ │ │ │ ├── users_icon_16.png │ │ │ │ │ ├── users_icon_24.png │ │ │ │ │ ├── users_icon_32.png │ │ │ │ │ ├── users_icon_48.png │ │ │ │ │ ├── vault_icon_16.png │ │ │ │ │ ├── vault_icon_24.png │ │ │ │ │ ├── vault_icon_32.png │ │ │ │ │ ├── vault_icon_48.png │ │ │ │ │ ├── wallet_icon_16.png │ │ │ │ │ ├── wallet_icon_24.png │ │ │ │ │ ├── wallet_icon_32.png │ │ │ │ │ ├── wallet_icon_48.png │ │ │ │ │ ├── wifi_router_icon_16.png │ │ │ │ │ ├── wifi_router_icon_24.png │ │ │ │ │ ├── wifi_router_icon_32.png │ │ │ │ │ ├── wifi_router_icon_48.png │ │ │ │ │ ├── wireless_signal_icon_16.png │ │ │ │ │ ├── wireless_signal_icon_24.png │ │ │ │ │ ├── wireless_signal_icon_32.png │ │ │ │ │ ├── wireless_signal_icon_48.png │ │ │ │ │ ├── wrench_icon_16.png │ │ │ │ │ ├── wrench_icon_24.png │ │ │ │ │ ├── wrench_icon_32.png │ │ │ │ │ ├── wrench_icon_48.png │ │ │ │ │ ├── wrench_plus_2_icon_16.png │ │ │ │ │ ├── wrench_plus_2_icon_24.png │ │ │ │ │ ├── wrench_plus_2_icon_32.png │ │ │ │ │ ├── wrench_plus_2_icon_48.png │ │ │ │ │ ├── wrench_plus_icon_16.png │ │ │ │ │ ├── wrench_plus_icon_24.png │ │ │ │ │ ├── wrench_plus_icon_32.png │ │ │ │ │ ├── wrench_plus_icon_48.png │ │ │ │ │ ├── youtube_icon_16.png │ │ │ │ │ ├── youtube_icon_24.png │ │ │ │ │ ├── youtube_icon_32.png │ │ │ │ │ ├── youtube_icon_48.png │ │ │ │ │ ├── zoom_icon_16.png │ │ │ │ │ ├── zoom_icon_24.png │ │ │ │ │ ├── zoom_icon_32.png │ │ │ │ │ └── zoom_icon_48.png │ │ │ ├── maya │ │ │ │ ├── arrowDown.png │ │ │ │ ├── arrowLeft.png │ │ │ │ ├── arrowRight.png │ │ │ │ ├── arrowUp.png │ │ │ │ ├── bordersclean.png │ │ │ │ ├── check.png │ │ │ │ ├── checkboxhover.png │ │ │ │ ├── checkboxhovercheck.png │ │ │ │ ├── radiobutton.png │ │ │ │ ├── radiobuttonchecked.png │ │ │ │ ├── radiobuttonhover.png │ │ │ │ ├── simpleArrowDown.png │ │ │ │ ├── simpleArrowLeft.png │ │ │ │ ├── simpleArrowRight.png │ │ │ │ ├── simpleArrowUp.png │ │ │ │ ├── simpleborder.png │ │ │ │ ├── sliderhoridark.png │ │ │ │ ├── sliderhoridarktrans.png │ │ │ │ ├── slidervertdark.png │ │ │ │ ├── slidervertdarktrans.png │ │ │ │ └── thinborder.png │ │ │ └── white │ │ │ │ └── png │ │ │ │ ├── 2x2_grid_icon_16.png │ │ │ │ ├── 2x2_grid_icon_24.png │ │ │ │ ├── 2x2_grid_icon_32.png │ │ │ │ ├── 2x2_grid_icon_48.png │ │ │ │ ├── 3x3_grid_2_icon_16.png │ │ │ │ ├── 3x3_grid_2_icon_24.png │ │ │ │ ├── 3x3_grid_2_icon_32.png │ │ │ │ ├── 3x3_grid_2_icon_48.png │ │ │ │ ├── 3x3_grid_icon_16.png │ │ │ │ ├── 3x3_grid_icon_24.png │ │ │ │ ├── 3x3_grid_icon_32.png │ │ │ │ ├── 3x3_grid_icon_48.png │ │ │ │ ├── air_signal_icon_16.png │ │ │ │ ├── air_signal_icon_24.png │ │ │ │ ├── air_signal_icon_32.png │ │ │ │ ├── air_signal_icon_48.png │ │ │ │ ├── align_center_icon_16.png │ │ │ │ ├── align_center_icon_24.png │ │ │ │ ├── align_center_icon_32.png │ │ │ │ ├── align_center_icon_48.png │ │ │ │ ├── align_just_icon_16.png │ │ │ │ ├── align_just_icon_24.png │ │ │ │ ├── align_just_icon_32.png │ │ │ │ ├── align_just_icon_48.png │ │ │ │ ├── align_left_icon_16.png │ │ │ │ ├── align_left_icon_24.png │ │ │ │ ├── align_left_icon_32.png │ │ │ │ ├── align_left_icon_48.png │ │ │ │ ├── align_right_icon_16.png │ │ │ │ ├── align_right_icon_24.png │ │ │ │ ├── align_right_icon_32.png │ │ │ │ ├── align_right_icon_48.png │ │ │ │ ├── app_window_16.png │ │ │ │ ├── app_window_24.png │ │ │ │ ├── app_window_32.png │ │ │ │ ├── app_window_48.png │ │ │ │ ├── app_window_black_16.png │ │ │ │ ├── app_window_black_24.png │ │ │ │ ├── app_window_black_32.png │ │ │ │ ├── app_window_black_48.png │ │ │ │ ├── app_window_black_icon_16.png │ │ │ │ ├── app_window_black_icon_24.png │ │ │ │ ├── app_window_black_icon_32.png │ │ │ │ ├── app_window_black_icon_48.png │ │ │ │ ├── app_window_cross_16.png │ │ │ │ ├── app_window_cross_24.png │ │ │ │ ├── app_window_cross_32.png │ │ │ │ ├── app_window_cross_48.png │ │ │ │ ├── app_window_cross_icon_16.png │ │ │ │ ├── app_window_cross_icon_24.png │ │ │ │ ├── app_window_cross_icon_32.png │ │ │ │ ├── app_window_cross_icon_48.png │ │ │ │ ├── app_window_icon_16.png │ │ │ │ ├── app_window_icon_24.png │ │ │ │ ├── app_window_icon_32.png │ │ │ │ ├── app_window_icon_48.png │ │ │ │ ├── app_window_shell_16.png │ │ │ │ ├── app_window_shell_24.png │ │ │ │ ├── app_window_shell_32.png │ │ │ │ ├── app_window_shell_48.png │ │ │ │ ├── app_window_shell_icon_16.png │ │ │ │ ├── app_window_shell_icon_24.png │ │ │ │ ├── app_window_shell_icon_32.png │ │ │ │ ├── app_window_shell_icon_48.png │ │ │ │ ├── arrow_bottom_icon_16.png │ │ │ │ ├── arrow_bottom_icon_24.png │ │ │ │ ├── arrow_bottom_icon_32.png │ │ │ │ ├── arrow_bottom_icon_48.png │ │ │ │ ├── arrow_bottom_left_icon_16.png │ │ │ │ ├── arrow_bottom_left_icon_24.png │ │ │ │ ├── arrow_bottom_left_icon_32.png │ │ │ │ ├── arrow_bottom_left_icon_48.png │ │ │ │ ├── arrow_bottom_rigth_icon_16.png │ │ │ │ ├── arrow_bottom_rigth_icon_24.png │ │ │ │ ├── arrow_bottom_rigth_icon_32.png │ │ │ │ ├── arrow_bottom_rigth_icon_48.png │ │ │ │ ├── arrow_l_icon_16.png │ │ │ │ ├── arrow_l_icon_24.png │ │ │ │ ├── arrow_l_icon_32.png │ │ │ │ ├── arrow_l_icon_48.png │ │ │ │ ├── arrow_left_icon_16.png │ │ │ │ ├── arrow_left_icon_24.png │ │ │ │ ├── arrow_left_icon_32.png │ │ │ │ ├── arrow_left_icon_48.png │ │ │ │ ├── arrow_r_icon_16.png │ │ │ │ ├── arrow_r_icon_24.png │ │ │ │ ├── arrow_r_icon_32.png │ │ │ │ ├── arrow_r_icon_48.png │ │ │ │ ├── arrow_right_icon_16.png │ │ │ │ ├── arrow_right_icon_24.png │ │ │ │ ├── arrow_right_icon_32.png │ │ │ │ ├── arrow_right_icon_48.png │ │ │ │ ├── arrow_top_icon_16.png │ │ │ │ ├── arrow_top_icon_24.png │ │ │ │ ├── arrow_top_icon_32.png │ │ │ │ ├── arrow_top_icon_48.png │ │ │ │ ├── arrow_top_left_icon_16.png │ │ │ │ ├── arrow_top_left_icon_24.png │ │ │ │ ├── arrow_top_left_icon_32.png │ │ │ │ ├── arrow_top_left_icon_48.png │ │ │ │ ├── arrow_top_right_icon_16.png │ │ │ │ ├── arrow_top_right_icon_24.png │ │ │ │ ├── arrow_top_right_icon_32.png │ │ │ │ ├── arrow_top_right_icon_48.png │ │ │ │ ├── arrow_two_head_2_icon_16.png │ │ │ │ ├── arrow_two_head_2_icon_24.png │ │ │ │ ├── arrow_two_head_2_icon_32.png │ │ │ │ ├── arrow_two_head_2_icon_48.png │ │ │ │ ├── arrow_two_head_icon_16.png │ │ │ │ ├── arrow_two_head_icon_24.png │ │ │ │ ├── arrow_two_head_icon_32.png │ │ │ │ ├── arrow_two_head_icon_48.png │ │ │ │ ├── attention_icon_16.png │ │ │ │ ├── attention_icon_24.png │ │ │ │ ├── attention_icon_32.png │ │ │ │ ├── attention_icon_48.png │ │ │ │ ├── balance_icon_16.png │ │ │ │ ├── balance_icon_24.png │ │ │ │ ├── balance_icon_32.png │ │ │ │ ├── balance_icon_48.png │ │ │ │ ├── battery_icon_16.png │ │ │ │ ├── battery_icon_24.png │ │ │ │ ├── battery_icon_32.png │ │ │ │ ├── battery_icon_48.png │ │ │ │ ├── bell_icon_16.png │ │ │ │ ├── bell_icon_24.png │ │ │ │ ├── bell_icon_32.png │ │ │ │ ├── bell_icon_48.png │ │ │ │ ├── book_icon_16.png │ │ │ │ ├── book_icon_24.png │ │ │ │ ├── book_icon_32.png │ │ │ │ ├── book_icon_48.png │ │ │ │ ├── book_side_icon_16.png │ │ │ │ ├── book_side_icon_24.png │ │ │ │ ├── book_side_icon_32.png │ │ │ │ ├── book_side_icon_48.png │ │ │ │ ├── bookmark_1_icon_16.png │ │ │ │ ├── bookmark_1_icon_24.png │ │ │ │ ├── bookmark_1_icon_32.png │ │ │ │ ├── bookmark_1_icon_48.png │ │ │ │ ├── bookmark_2_icon_16.png │ │ │ │ ├── bookmark_2_icon_24.png │ │ │ │ ├── bookmark_2_icon_32.png │ │ │ │ ├── bookmark_2_icon_48.png │ │ │ │ ├── box_icon_16.png │ │ │ │ ├── box_icon_24.png │ │ │ │ ├── box_icon_32.png │ │ │ │ ├── box_icon_48.png │ │ │ │ ├── br_down_icon_16.png │ │ │ │ ├── br_down_icon_24.png │ │ │ │ ├── br_down_icon_32.png │ │ │ │ ├── br_down_icon_48.png │ │ │ │ ├── br_next_icon_16.png │ │ │ │ ├── br_next_icon_24.png │ │ │ │ ├── br_next_icon_32.png │ │ │ │ ├── br_next_icon_48.png │ │ │ │ ├── br_prev_icon_16.png │ │ │ │ ├── br_prev_icon_24.png │ │ │ │ ├── br_prev_icon_32.png │ │ │ │ ├── br_prev_icon_48.png │ │ │ │ ├── br_up_icon_16.png │ │ │ │ ├── br_up_icon_24.png │ │ │ │ ├── br_up_icon_32.png │ │ │ │ ├── br_up_icon_48.png │ │ │ │ ├── brackets_icon_16.png │ │ │ │ ├── brackets_icon_24.png │ │ │ │ ├── brackets_icon_32.png │ │ │ │ ├── brackets_icon_48.png │ │ │ │ ├── browser_icon_16.png │ │ │ │ ├── browser_icon_24.png │ │ │ │ ├── browser_icon_32.png │ │ │ │ ├── browser_icon_48.png │ │ │ │ ├── brush_icon_16.png │ │ │ │ ├── brush_icon_24.png │ │ │ │ ├── brush_icon_32.png │ │ │ │ ├── brush_icon_48.png │ │ │ │ ├── bug_icon_16.png │ │ │ │ ├── bug_icon_24.png │ │ │ │ ├── bug_icon_32.png │ │ │ │ ├── bug_icon_48.png │ │ │ │ ├── burst_icon_16.png │ │ │ │ ├── burst_icon_24.png │ │ │ │ ├── burst_icon_32.png │ │ │ │ ├── burst_icon_48.png │ │ │ │ ├── calc_icon_16.png │ │ │ │ ├── calc_icon_24.png │ │ │ │ ├── calc_icon_32.png │ │ │ │ ├── calc_icon_48.png │ │ │ │ ├── calendar_1_icon_16.png │ │ │ │ ├── calendar_1_icon_24.png │ │ │ │ ├── calendar_1_icon_32.png │ │ │ │ ├── calendar_1_icon_48.png │ │ │ │ ├── calendar_2_icon_16.png │ │ │ │ ├── calendar_2_icon_24.png │ │ │ │ ├── calendar_2_icon_32.png │ │ │ │ ├── calendar_2_icon_48.png │ │ │ │ ├── cancel_icon_16.png │ │ │ │ ├── cancel_icon_24.png │ │ │ │ ├── cancel_icon_32.png │ │ │ │ ├── cancel_icon_48.png │ │ │ │ ├── case_icon_16.png │ │ │ │ ├── case_icon_24.png │ │ │ │ ├── case_icon_32.png │ │ │ │ ├── case_icon_48.png │ │ │ │ ├── cassette_icon_16.png │ │ │ │ ├── cassette_icon_24.png │ │ │ │ ├── cassette_icon_32.png │ │ │ │ ├── cassette_icon_48.png │ │ │ │ ├── cc_icon_16.png │ │ │ │ ├── cc_icon_24.png │ │ │ │ ├── cc_icon_32.png │ │ │ │ ├── cc_icon_48.png │ │ │ │ ├── cert_icon_16.png │ │ │ │ ├── cert_icon_24.png │ │ │ │ ├── cert_icon_32.png │ │ │ │ ├── cert_icon_48.png │ │ │ │ ├── chart_bar_icon_16.png │ │ │ │ ├── chart_bar_icon_24.png │ │ │ │ ├── chart_bar_icon_32.png │ │ │ │ ├── chart_bar_icon_48.png │ │ │ │ ├── chart_line_2_icon_16.png │ │ │ │ ├── chart_line_2_icon_24.png │ │ │ │ ├── chart_line_2_icon_32.png │ │ │ │ ├── chart_line_2_icon_48.png │ │ │ │ ├── chart_line_icon_16.png │ │ │ │ ├── chart_line_icon_24.png │ │ │ │ ├── chart_line_icon_32.png │ │ │ │ ├── chart_line_icon_48.png │ │ │ │ ├── chart_pie_icon_16.png │ │ │ │ ├── chart_pie_icon_24.png │ │ │ │ ├── chart_pie_icon_32.png │ │ │ │ ├── chart_pie_icon_48.png │ │ │ │ ├── chat_bubble_message_square_icon_16.png │ │ │ │ ├── chat_bubble_message_square_icon_24.png │ │ │ │ ├── chat_bubble_message_square_icon_32.png │ │ │ │ ├── chat_bubble_message_square_icon_48.png │ │ │ │ ├── checkbox_checked_icon_16.png │ │ │ │ ├── checkbox_checked_icon_24.png │ │ │ │ ├── checkbox_checked_icon_32.png │ │ │ │ ├── checkbox_checked_icon_48.png │ │ │ │ ├── checkbox_unchecked_icon_16.png │ │ │ │ ├── checkbox_unchecked_icon_24.png │ │ │ │ ├── checkbox_unchecked_icon_32.png │ │ │ │ ├── checkbox_unchecked_icon_48.png │ │ │ │ ├── checkmark_icon_16.png │ │ │ │ ├── checkmark_icon_24.png │ │ │ │ ├── checkmark_icon_32.png │ │ │ │ ├── checkmark_icon_48.png │ │ │ │ ├── clip_icon_16.png │ │ │ │ ├── clip_icon_24.png │ │ │ │ ├── clip_icon_32.png │ │ │ │ ├── clip_icon_48.png │ │ │ │ ├── clipboard_copy_icon_16.png │ │ │ │ ├── clipboard_copy_icon_24.png │ │ │ │ ├── clipboard_copy_icon_32.png │ │ │ │ ├── clipboard_copy_icon_48.png │ │ │ │ ├── clipboard_cut_icon_16.png │ │ │ │ ├── clipboard_cut_icon_24.png │ │ │ │ ├── clipboard_cut_icon_32.png │ │ │ │ ├── clipboard_cut_icon_48.png │ │ │ │ ├── clipboard_past_icon_16.png │ │ │ │ ├── clipboard_past_icon_24.png │ │ │ │ ├── clipboard_past_icon_32.png │ │ │ │ ├── clipboard_past_icon_48.png │ │ │ │ ├── clock_icon_16.png │ │ │ │ ├── clock_icon_24.png │ │ │ │ ├── clock_icon_32.png │ │ │ │ ├── clock_icon_48.png │ │ │ │ ├── cloud_icon_16.png │ │ │ │ ├── cloud_icon_24.png │ │ │ │ ├── cloud_icon_32.png │ │ │ │ ├── cloud_icon_48.png │ │ │ │ ├── cloud_rain_icon_16.png │ │ │ │ ├── cloud_rain_icon_24.png │ │ │ │ ├── cloud_rain_icon_32.png │ │ │ │ ├── cloud_rain_icon_48.png │ │ │ │ ├── coffe_cup_icon_16.png │ │ │ │ ├── coffe_cup_icon_24.png │ │ │ │ ├── coffe_cup_icon_32.png │ │ │ │ ├── coffe_cup_icon_48.png │ │ │ │ ├── cog_icon_16.png │ │ │ │ ├── cog_icon_24.png │ │ │ │ ├── cog_icon_32.png │ │ │ │ ├── cog_icon_48.png │ │ │ │ ├── cogs_icon_16.png │ │ │ │ ├── cogs_icon_24.png │ │ │ │ ├── cogs_icon_32.png │ │ │ │ ├── cogs_icon_48.png │ │ │ │ ├── comp_icon_16.png │ │ │ │ ├── comp_icon_24.png │ │ │ │ ├── comp_icon_32.png │ │ │ │ ├── comp_icon_48.png │ │ │ │ ├── compass_icon_16.png │ │ │ │ ├── compass_icon_24.png │ │ │ │ ├── compass_icon_32.png │ │ │ │ ├── compass_icon_48.png │ │ │ │ ├── connect_icon_16.png │ │ │ │ ├── connect_icon_24.png │ │ │ │ ├── connect_icon_32.png │ │ │ │ ├── connect_icon_48.png │ │ │ │ ├── contact_card_icon_16.png │ │ │ │ ├── contact_card_icon_24.png │ │ │ │ ├── contact_card_icon_32.png │ │ │ │ ├── contact_card_icon_48.png │ │ │ │ ├── contact_icon_16.png │ │ │ │ ├── contact_icon_24.png │ │ │ │ ├── contact_icon_32.png │ │ │ │ ├── contact_icon_48.png │ │ │ │ ├── cube_icon_16.png │ │ │ │ ├── cube_icon_24.png │ │ │ │ ├── cube_icon_32.png │ │ │ │ ├── cube_icon_48.png │ │ │ │ ├── cur_bp_icon_16.png │ │ │ │ ├── cur_bp_icon_24.png │ │ │ │ ├── cur_bp_icon_32.png │ │ │ │ ├── cur_bp_icon_48.png │ │ │ │ ├── cur_dollar_icon_16.png │ │ │ │ ├── cur_dollar_icon_24.png │ │ │ │ ├── cur_dollar_icon_32.png │ │ │ │ ├── cur_dollar_icon_48.png │ │ │ │ ├── cur_euro_icon_16.png │ │ │ │ ├── cur_euro_icon_24.png │ │ │ │ ├── cur_euro_icon_32.png │ │ │ │ ├── cur_euro_icon_48.png │ │ │ │ ├── cur_yen_icon_16.png │ │ │ │ ├── cur_yen_icon_24.png │ │ │ │ ├── cur_yen_icon_32.png │ │ │ │ ├── cur_yen_icon_48.png │ │ │ │ ├── cursor_H_split_icon_16.png │ │ │ │ ├── cursor_H_split_icon_24.png │ │ │ │ ├── cursor_H_split_icon_32.png │ │ │ │ ├── cursor_H_split_icon_48.png │ │ │ │ ├── cursor_V_split_icon_16.png │ │ │ │ ├── cursor_V_split_icon_24.png │ │ │ │ ├── cursor_V_split_icon_32.png │ │ │ │ ├── cursor_V_split_icon_48.png │ │ │ │ ├── cursor_arrow_icon_16.png │ │ │ │ ├── cursor_arrow_icon_24.png │ │ │ │ ├── cursor_arrow_icon_32.png │ │ │ │ ├── cursor_arrow_icon_48.png │ │ │ │ ├── cursor_drag_arrow_2_icon_16.png │ │ │ │ ├── cursor_drag_arrow_2_icon_24.png │ │ │ │ ├── cursor_drag_arrow_2_icon_32.png │ │ │ │ ├── cursor_drag_arrow_2_icon_48.png │ │ │ │ ├── cursor_drag_arrow_icon_16.png │ │ │ │ ├── cursor_drag_arrow_icon_24.png │ │ │ │ ├── cursor_drag_arrow_icon_32.png │ │ │ │ ├── cursor_drag_arrow_icon_48.png │ │ │ │ ├── cursor_drag_hand_icon_16.png │ │ │ │ ├── cursor_drag_hand_icon_24.png │ │ │ │ ├── cursor_drag_hand_icon_32.png │ │ │ │ ├── cursor_drag_hand_icon_48.png │ │ │ │ ├── cursor_hand_icon_16.png │ │ │ │ ├── cursor_hand_icon_24.png │ │ │ │ ├── cursor_hand_icon_32.png │ │ │ │ ├── cursor_hand_icon_48.png │ │ │ │ ├── dashboard_icon_16.png │ │ │ │ ├── dashboard_icon_24.png │ │ │ │ ├── dashboard_icon_32.png │ │ │ │ ├── dashboard_icon_48.png │ │ │ │ ├── db_icon_16.png │ │ │ │ ├── db_icon_24.png │ │ │ │ ├── db_icon_32.png │ │ │ │ ├── db_icon_48.png │ │ │ │ ├── delete_icon_16.png │ │ │ │ ├── delete_icon_24.png │ │ │ │ ├── delete_icon_32.png │ │ │ │ ├── delete_icon_48.png │ │ │ │ ├── delete_server_icon_16.png │ │ │ │ ├── delete_server_icon_24.png │ │ │ │ ├── delete_server_icon_32.png │ │ │ │ ├── delete_server_icon_48.png │ │ │ │ ├── disconnected_icon_16.png │ │ │ │ ├── disconnected_icon_24.png │ │ │ │ ├── disconnected_icon_32.png │ │ │ │ ├── disconnected_icon_48.png │ │ │ │ ├── doc_delete_icon_16.png │ │ │ │ ├── doc_delete_icon_24.png │ │ │ │ ├── doc_delete_icon_32.png │ │ │ │ ├── doc_delete_icon_48.png │ │ │ │ ├── doc_edit_icon_16.png │ │ │ │ ├── doc_edit_icon_24.png │ │ │ │ ├── doc_edit_icon_32.png │ │ │ │ ├── doc_edit_icon_48.png │ │ │ │ ├── doc_empty_icon_16.png │ │ │ │ ├── doc_empty_icon_24.png │ │ │ │ ├── doc_empty_icon_32.png │ │ │ │ ├── doc_empty_icon_48.png │ │ │ │ ├── doc_export_icon_16.png │ │ │ │ ├── doc_export_icon_24.png │ │ │ │ ├── doc_export_icon_32.png │ │ │ │ ├── doc_export_icon_48.png │ │ │ │ ├── doc_import_icon_16.png │ │ │ │ ├── doc_import_icon_24.png │ │ │ │ ├── doc_import_icon_32.png │ │ │ │ ├── doc_import_icon_48.png │ │ │ │ ├── doc_lines_icon_16.png │ │ │ │ ├── doc_lines_icon_24.png │ │ │ │ ├── doc_lines_icon_32.png │ │ │ │ ├── doc_lines_icon_48.png │ │ │ │ ├── doc_lines_stright_icon_16.png │ │ │ │ ├── doc_lines_stright_icon_24.png │ │ │ │ ├── doc_lines_stright_icon_32.png │ │ │ │ ├── doc_lines_stright_icon_48.png │ │ │ │ ├── doc_minus_icon_16.png │ │ │ │ ├── doc_minus_icon_24.png │ │ │ │ ├── doc_minus_icon_32.png │ │ │ │ ├── doc_minus_icon_48.png │ │ │ │ ├── doc_new_icon_16.png │ │ │ │ ├── doc_new_icon_24.png │ │ │ │ ├── doc_new_icon_32.png │ │ │ │ ├── doc_new_icon_48.png │ │ │ │ ├── doc_plus_icon_16.png │ │ │ │ ├── doc_plus_icon_24.png │ │ │ │ ├── doc_plus_icon_32.png │ │ │ │ ├── doc_plus_icon_48.png │ │ │ │ ├── document_icon_16.png │ │ │ │ ├── document_icon_24.png │ │ │ │ ├── document_icon_32.png │ │ │ │ ├── document_icon_48.png │ │ │ │ ├── download_icon_16.png │ │ │ │ ├── download_icon_24.png │ │ │ │ ├── download_icon_32.png │ │ │ │ ├── download_icon_48.png │ │ │ │ ├── eject_icon_16.png │ │ │ │ ├── eject_icon_24.png │ │ │ │ ├── eject_icon_32.png │ │ │ │ ├── eject_icon_48.png │ │ │ │ ├── emotion_sad_icon_16.png │ │ │ │ ├── emotion_sad_icon_24.png │ │ │ │ ├── emotion_sad_icon_32.png │ │ │ │ ├── emotion_sad_icon_48.png │ │ │ │ ├── emotion_smile_icon_16.png │ │ │ │ ├── emotion_smile_icon_24.png │ │ │ │ ├── emotion_smile_icon_32.png │ │ │ │ ├── emotion_smile_icon_48.png │ │ │ │ ├── expand_icon_16.png │ │ │ │ ├── expand_icon_24.png │ │ │ │ ├── expand_icon_32.png │ │ │ │ ├── expand_icon_48.png │ │ │ │ ├── export_icon_16.png │ │ │ │ ├── export_icon_24.png │ │ │ │ ├── export_icon_32.png │ │ │ │ ├── export_icon_48.png │ │ │ │ ├── eye_icon_16.png │ │ │ │ ├── eye_icon_24.png │ │ │ │ ├── eye_icon_32.png │ │ │ │ ├── eye_icon_48.png │ │ │ │ ├── eye_inv_icon_16.png │ │ │ │ ├── eye_inv_icon_24.png │ │ │ │ ├── eye_inv_icon_32.png │ │ │ │ ├── eye_inv_icon_48.png │ │ │ │ ├── facebook_icon_16.png │ │ │ │ ├── facebook_icon_24.png │ │ │ │ ├── facebook_icon_32.png │ │ │ │ ├── facebook_icon_48.png │ │ │ │ ├── fastforward_next_icon_16.png │ │ │ │ ├── fastforward_next_icon_24.png │ │ │ │ ├── fastforward_next_icon_32.png │ │ │ │ ├── fastforward_next_icon_48.png │ │ │ │ ├── fill_icon_16.png │ │ │ │ ├── fill_icon_24.png │ │ │ │ ├── fill_icon_32.png │ │ │ │ ├── fill_icon_48.png │ │ │ │ ├── filter_icon_16.png │ │ │ │ ├── filter_icon_24.png │ │ │ │ ├── filter_icon_32.png │ │ │ │ ├── filter_icon_48.png │ │ │ │ ├── fire_icon_16.png │ │ │ │ ├── fire_icon_24.png │ │ │ │ ├── fire_icon_32.png │ │ │ │ ├── fire_icon_48.png │ │ │ │ ├── flag_2_icon_16.png │ │ │ │ ├── flag_2_icon_24.png │ │ │ │ ├── flag_2_icon_32.png │ │ │ │ ├── flag_2_icon_48.png │ │ │ │ ├── flag_icon_16.png │ │ │ │ ├── flag_icon_24.png │ │ │ │ ├── flag_icon_32.png │ │ │ │ ├── flag_icon_48.png │ │ │ │ ├── folder_arrow_icon_16.png │ │ │ │ ├── folder_arrow_icon_24.png │ │ │ │ ├── folder_arrow_icon_32.png │ │ │ │ ├── folder_arrow_icon_48.png │ │ │ │ ├── folder_delete_icon_16.png │ │ │ │ ├── folder_delete_icon_24.png │ │ │ │ ├── folder_delete_icon_32.png │ │ │ │ ├── folder_delete_icon_48.png │ │ │ │ ├── folder_icon_16.png │ │ │ │ ├── folder_icon_24.png │ │ │ │ ├── folder_icon_32.png │ │ │ │ ├── folder_icon_48.png │ │ │ │ ├── folder_minus_icon_16.png │ │ │ │ ├── folder_minus_icon_24.png │ │ │ │ ├── folder_minus_icon_32.png │ │ │ │ ├── folder_minus_icon_48.png │ │ │ │ ├── folder_open_icon_16.png │ │ │ │ ├── folder_open_icon_24.png │ │ │ │ ├── folder_open_icon_32.png │ │ │ │ ├── folder_open_icon_48.png │ │ │ │ ├── folder_plus_icon_16.png │ │ │ │ ├── folder_plus_icon_24.png │ │ │ │ ├── folder_plus_icon_32.png │ │ │ │ ├── folder_plus_icon_48.png │ │ │ │ ├── font_bold_icon_16.png │ │ │ │ ├── font_bold_icon_24.png │ │ │ │ ├── font_bold_icon_32.png │ │ │ │ ├── font_bold_icon_48.png │ │ │ │ ├── font_italic_icon_16.png │ │ │ │ ├── font_italic_icon_24.png │ │ │ │ ├── font_italic_icon_32.png │ │ │ │ ├── font_italic_icon_48.png │ │ │ │ ├── font_size_icon_16.png │ │ │ │ ├── font_size_icon_24.png │ │ │ │ ├── font_size_icon_32.png │ │ │ │ ├── font_size_icon_48.png │ │ │ │ ├── font_strokethrough_icon_16.png │ │ │ │ ├── font_strokethrough_icon_24.png │ │ │ │ ├── font_strokethrough_icon_32.png │ │ │ │ ├── font_strokethrough_icon_48.png │ │ │ │ ├── font_underline_icon_16.png │ │ │ │ ├── font_underline_icon_24.png │ │ │ │ ├── font_underline_icon_32.png │ │ │ │ ├── font_underline_icon_48.png │ │ │ │ ├── game_pad_icon_16.png │ │ │ │ ├── game_pad_icon_24.png │ │ │ │ ├── game_pad_icon_32.png │ │ │ │ ├── game_pad_icon_48.png │ │ │ │ ├── glasses_icon_16.png │ │ │ │ ├── glasses_icon_24.png │ │ │ │ ├── glasses_icon_32.png │ │ │ │ ├── glasses_icon_48.png │ │ │ │ ├── globe_1_icon_16.png │ │ │ │ ├── globe_1_icon_24.png │ │ │ │ ├── globe_1_icon_32.png │ │ │ │ ├── globe_1_icon_48.png │ │ │ │ ├── globe_2_icon_16.png │ │ │ │ ├── globe_2_icon_24.png │ │ │ │ ├── globe_2_icon_32.png │ │ │ │ ├── globe_2_icon_48.png │ │ │ │ ├── globe_3_icon_16.png │ │ │ │ ├── globe_3_icon_24.png │ │ │ │ ├── globe_3_icon_32.png │ │ │ │ ├── globe_3_icon_48.png │ │ │ │ ├── google_icon_16.png │ │ │ │ ├── google_icon_24.png │ │ │ │ ├── google_icon_32.png │ │ │ │ ├── google_icon_48.png │ │ │ │ ├── hand_1_icon_16.png │ │ │ │ ├── hand_1_icon_24.png │ │ │ │ ├── hand_1_icon_32.png │ │ │ │ ├── hand_1_icon_48.png │ │ │ │ ├── hand_2_icon_16.png │ │ │ │ ├── hand_2_icon_24.png │ │ │ │ ├── hand_2_icon_32.png │ │ │ │ ├── hand_2_icon_48.png │ │ │ │ ├── hand_contra_icon_16.png │ │ │ │ ├── hand_contra_icon_24.png │ │ │ │ ├── hand_contra_icon_32.png │ │ │ │ ├── hand_contra_icon_48.png │ │ │ │ ├── hand_pro_icon_16.png │ │ │ │ ├── hand_pro_icon_24.png │ │ │ │ ├── hand_pro_icon_32.png │ │ │ │ ├── hand_pro_icon_48.png │ │ │ │ ├── hanger_icon_16.png │ │ │ │ ├── hanger_icon_24.png │ │ │ │ ├── hanger_icon_32.png │ │ │ │ ├── hanger_icon_48.png │ │ │ │ ├── headphones_icon_16.png │ │ │ │ ├── headphones_icon_24.png │ │ │ │ ├── headphones_icon_32.png │ │ │ │ ├── headphones_icon_48.png │ │ │ │ ├── heart_empty_icon_16.png │ │ │ │ ├── heart_empty_icon_24.png │ │ │ │ ├── heart_empty_icon_32.png │ │ │ │ ├── heart_empty_icon_48.png │ │ │ │ ├── heart_icon_16.png │ │ │ │ ├── heart_icon_24.png │ │ │ │ ├── heart_icon_32.png │ │ │ │ ├── heart_icon_48.png │ │ │ │ ├── home_icon_16.png │ │ │ │ ├── home_icon_24.png │ │ │ │ ├── home_icon_32.png │ │ │ │ ├── home_icon_48.png │ │ │ │ ├── image_text_icon_16.png │ │ │ │ ├── image_text_icon_24.png │ │ │ │ ├── image_text_icon_32.png │ │ │ │ ├── image_text_icon_48.png │ │ │ │ ├── import_icon_16.png │ │ │ │ ├── import_icon_24.png │ │ │ │ ├── import_icon_32.png │ │ │ │ ├── import_icon_48.png │ │ │ │ ├── inbox_icon_16.png │ │ │ │ ├── inbox_icon_24.png │ │ │ │ ├── inbox_icon_32.png │ │ │ │ ├── inbox_icon_48.png │ │ │ │ ├── indent_decrease_icon_16.png │ │ │ │ ├── indent_decrease_icon_24.png │ │ │ │ ├── indent_decrease_icon_32.png │ │ │ │ ├── indent_decrease_icon_48.png │ │ │ │ ├── indent_increase_icon_16.png │ │ │ │ ├── indent_increase_icon_24.png │ │ │ │ ├── indent_increase_icon_32.png │ │ │ │ ├── indent_increase_icon_48.png │ │ │ │ ├── info_icon_16.png │ │ │ │ ├── info_icon_24.png │ │ │ │ ├── info_icon_32.png │ │ │ │ ├── info_icon_48.png │ │ │ │ ├── inject_icon_16.png │ │ │ │ ├── inject_icon_24.png │ │ │ │ ├── inject_icon_32.png │ │ │ │ ├── inject_icon_48.png │ │ │ │ ├── invisible_light_icon_16.png │ │ │ │ ├── invisible_light_icon_24.png │ │ │ │ ├── invisible_light_icon_32.png │ │ │ │ ├── invisible_light_icon_48.png │ │ │ │ ├── invisible_revert_icon_16.png │ │ │ │ ├── invisible_revert_icon_24.png │ │ │ │ ├── invisible_revert_icon_32.png │ │ │ │ ├── invisible_revert_icon_48.png │ │ │ │ ├── iphone_icon_16.png │ │ │ │ ├── iphone_icon_24.png │ │ │ │ ├── iphone_icon_32.png │ │ │ │ ├── iphone_icon_48.png │ │ │ │ ├── key_icon_16.png │ │ │ │ ├── key_icon_24.png │ │ │ │ ├── key_icon_32.png │ │ │ │ ├── key_icon_48.png │ │ │ │ ├── layers_1_icon_16.png │ │ │ │ ├── layers_1_icon_24.png │ │ │ │ ├── layers_1_icon_32.png │ │ │ │ ├── layers_1_icon_48.png │ │ │ │ ├── layers_2_icon_16.png │ │ │ │ ├── layers_2_icon_24.png │ │ │ │ ├── layers_2_icon_32.png │ │ │ │ ├── layers_2_icon_48.png │ │ │ │ ├── lightbulb_icon_16.png │ │ │ │ ├── lightbulb_icon_24.png │ │ │ │ ├── lightbulb_icon_32.png │ │ │ │ ├── lightbulb_icon_48.png │ │ │ │ ├── lighting_icon_16.png │ │ │ │ ├── lighting_icon_24.png │ │ │ │ ├── lighting_icon_32.png │ │ │ │ ├── lighting_icon_48.png │ │ │ │ ├── link_icon_16.png │ │ │ │ ├── link_icon_24.png │ │ │ │ ├── link_icon_32.png │ │ │ │ ├── link_icon_48.png │ │ │ │ ├── list_bullets_icon_16.png │ │ │ │ ├── list_bullets_icon_24.png │ │ │ │ ├── list_bullets_icon_32.png │ │ │ │ ├── list_bullets_icon_48.png │ │ │ │ ├── list_num_icon_16.png │ │ │ │ ├── list_num_icon_24.png │ │ │ │ ├── list_num_icon_32.png │ │ │ │ ├── list_num_icon_48.png │ │ │ │ ├── loading_throbber_icon_16.png │ │ │ │ ├── loading_throbber_icon_24.png │ │ │ │ ├── loading_throbber_icon_32.png │ │ │ │ ├── loading_throbber_icon_48.png │ │ │ │ ├── lock_open_icon_16.png │ │ │ │ ├── lock_open_icon_24.png │ │ │ │ ├── lock_open_icon_32.png │ │ │ │ ├── lock_open_icon_48.png │ │ │ │ ├── magic_wand_2_icon_16.png │ │ │ │ ├── magic_wand_2_icon_24.png │ │ │ │ ├── magic_wand_2_icon_32.png │ │ │ │ ├── magic_wand_2_icon_48.png │ │ │ │ ├── magic_wand_icon_16.png │ │ │ │ ├── magic_wand_icon_24.png │ │ │ │ ├── magic_wand_icon_32.png │ │ │ │ ├── magic_wand_icon_48.png │ │ │ │ ├── mail_2_icon_16.png │ │ │ │ ├── mail_2_icon_24.png │ │ │ │ ├── mail_2_icon_32.png │ │ │ │ ├── mail_2_icon_48.png │ │ │ │ ├── mail_icon_16.png │ │ │ │ ├── mail_icon_24.png │ │ │ │ ├── mail_icon_32.png │ │ │ │ ├── mail_icon_48.png │ │ │ │ ├── message_attention_icon_16.png │ │ │ │ ├── message_attention_icon_24.png │ │ │ │ ├── message_attention_icon_32.png │ │ │ │ ├── message_attention_icon_48.png │ │ │ │ ├── mic_icon_16.png │ │ │ │ ├── mic_icon_24.png │ │ │ │ ├── mic_icon_32.png │ │ │ │ ├── mic_icon_48.png │ │ │ │ ├── microphone_icon_16.png │ │ │ │ ├── microphone_icon_24.png │ │ │ │ ├── microphone_icon_32.png │ │ │ │ ├── microphone_icon_48.png │ │ │ │ ├── money_icon_16.png │ │ │ │ ├── money_icon_24.png │ │ │ │ ├── money_icon_32.png │ │ │ │ ├── money_icon_48.png │ │ │ │ ├── monitor_icon_16.png │ │ │ │ ├── monitor_icon_24.png │ │ │ │ ├── monitor_icon_32.png │ │ │ │ ├── monitor_icon_48.png │ │ │ │ ├── movie_icon_16.png │ │ │ │ ├── movie_icon_24.png │ │ │ │ ├── movie_icon_32.png │ │ │ │ ├── movie_icon_48.png │ │ │ │ ├── music_icon_16.png │ │ │ │ ├── music_icon_24.png │ │ │ │ ├── music_icon_32.png │ │ │ │ ├── music_icon_48.png │ │ │ │ ├── music_square_icon_16.png │ │ │ │ ├── music_square_icon_24.png │ │ │ │ ├── music_square_icon_32.png │ │ │ │ ├── music_square_icon_48.png │ │ │ │ ├── net_comp_icon_16.png │ │ │ │ ├── net_comp_icon_24.png │ │ │ │ ├── net_comp_icon_32.png │ │ │ │ ├── net_comp_icon_48.png │ │ │ │ ├── network_icon_16.png │ │ │ │ ├── network_icon_24.png │ │ │ │ ├── network_icon_32.png │ │ │ │ ├── network_icon_48.png │ │ │ │ ├── not_connected_icon_16.png │ │ │ │ ├── not_connected_icon_24.png │ │ │ │ ├── not_connected_icon_32.png │ │ │ │ ├── not_connected_icon_48.png │ │ │ │ ├── notepad_2_icon_16.png │ │ │ │ ├── notepad_2_icon_24.png │ │ │ │ ├── notepad_2_icon_32.png │ │ │ │ ├── notepad_2_icon_48.png │ │ │ │ ├── notepad_icon_16.png │ │ │ │ ├── notepad_icon_24.png │ │ │ │ ├── notepad_icon_32.png │ │ │ │ ├── notepad_icon_48.png │ │ │ │ ├── off_icon_16.png │ │ │ │ ├── off_icon_24.png │ │ │ │ ├── off_icon_32.png │ │ │ │ ├── off_icon_48.png │ │ │ │ ├── on-off_icon_16.png │ │ │ │ ├── on-off_icon_24.png │ │ │ │ ├── on-off_icon_32.png │ │ │ │ ├── on-off_icon_48.png │ │ │ │ ├── on_icon_16.png │ │ │ │ ├── on_icon_24.png │ │ │ │ ├── on_icon_32.png │ │ │ │ ├── on_icon_48.png │ │ │ │ ├── openid_icon_16.png │ │ │ │ ├── openid_icon_24.png │ │ │ │ ├── openid_icon_32.png │ │ │ │ ├── openid_icon_48.png │ │ │ │ ├── padlock_closed_icon_16.png │ │ │ │ ├── padlock_closed_icon_24.png │ │ │ │ ├── padlock_closed_icon_32.png │ │ │ │ ├── padlock_closed_icon_48.png │ │ │ │ ├── padlock_open_icon_16.png │ │ │ │ ├── padlock_open_icon_24.png │ │ │ │ ├── padlock_open_icon_32.png │ │ │ │ ├── padlock_open_icon_48.png │ │ │ │ ├── page_layout_icon_16.png │ │ │ │ ├── page_layout_icon_24.png │ │ │ │ ├── page_layout_icon_32.png │ │ │ │ ├── page_layout_icon_48.png │ │ │ │ ├── paper_airplane_icon_16.png │ │ │ │ ├── paper_airplane_icon_24.png │ │ │ │ ├── paper_airplane_icon_32.png │ │ │ │ ├── paper_airplane_icon_48.png │ │ │ │ ├── paragraph_icon_16.png │ │ │ │ ├── paragraph_icon_24.png │ │ │ │ ├── paragraph_icon_32.png │ │ │ │ ├── paragraph_icon_48.png │ │ │ │ ├── pencil_icon_16.png │ │ │ │ ├── pencil_icon_24.png │ │ │ │ ├── pencil_icon_32.png │ │ │ │ ├── pencil_icon_48.png │ │ │ │ ├── phone_1_icon_16.png │ │ │ │ ├── phone_1_icon_24.png │ │ │ │ ├── phone_1_icon_32.png │ │ │ │ ├── phone_1_icon_48.png │ │ │ │ ├── phone_2_icon_16.png │ │ │ │ ├── phone_2_icon_24.png │ │ │ │ ├── phone_2_icon_32.png │ │ │ │ ├── phone_2_icon_48.png │ │ │ │ ├── phone_icon_16.png │ │ │ │ ├── phone_icon_24.png │ │ │ │ ├── phone_icon_32.png │ │ │ │ ├── phone_icon_48.png │ │ │ │ ├── phone_touch_icon_16.png │ │ │ │ ├── phone_touch_icon_24.png │ │ │ │ ├── phone_touch_icon_32.png │ │ │ │ ├── phone_touch_icon_48.png │ │ │ │ ├── photo_icon_16.png │ │ │ │ ├── photo_icon_24.png │ │ │ │ ├── photo_icon_32.png │ │ │ │ ├── photo_icon_48.png │ │ │ │ ├── picture_icon_16.png │ │ │ │ ├── picture_icon_24.png │ │ │ │ ├── picture_icon_32.png │ │ │ │ ├── picture_icon_48.png │ │ │ │ ├── pin_2_icon_16.png │ │ │ │ ├── pin_2_icon_24.png │ │ │ │ ├── pin_2_icon_32.png │ │ │ │ ├── pin_2_icon_48.png │ │ │ │ ├── pin_icon_16.png │ │ │ │ ├── pin_icon_24.png │ │ │ │ ├── pin_icon_32.png │ │ │ │ ├── pin_icon_48.png │ │ │ │ ├── pin_map_down_icon_16.png │ │ │ │ ├── pin_map_down_icon_24.png │ │ │ │ ├── pin_map_down_icon_32.png │ │ │ │ ├── pin_map_down_icon_48.png │ │ │ │ ├── pin_map_icon_16.png │ │ │ │ ├── pin_map_icon_24.png │ │ │ │ ├── pin_map_icon_32.png │ │ │ │ ├── pin_map_icon_48.png │ │ │ │ ├── pin_map_left_icon_16.png │ │ │ │ ├── pin_map_left_icon_24.png │ │ │ │ ├── pin_map_left_icon_32.png │ │ │ │ ├── pin_map_left_icon_48.png │ │ │ │ ├── pin_map_right_icon_16.png │ │ │ │ ├── pin_map_right_icon_24.png │ │ │ │ ├── pin_map_right_icon_32.png │ │ │ │ ├── pin_map_right_icon_48.png │ │ │ │ ├── pin_map_top_icon_16.png │ │ │ │ ├── pin_map_top_icon_24.png │ │ │ │ ├── pin_map_top_icon_32.png │ │ │ │ ├── pin_map_top_icon_48.png │ │ │ │ ├── pin_sq_down_icon_16.png │ │ │ │ ├── pin_sq_down_icon_24.png │ │ │ │ ├── pin_sq_down_icon_32.png │ │ │ │ ├── pin_sq_down_icon_48.png │ │ │ │ ├── pin_sq_left_icon_16.png │ │ │ │ ├── pin_sq_left_icon_24.png │ │ │ │ ├── pin_sq_left_icon_32.png │ │ │ │ ├── pin_sq_left_icon_48.png │ │ │ │ ├── pin_sq_right_icon_16.png │ │ │ │ ├── pin_sq_right_icon_24.png │ │ │ │ ├── pin_sq_right_icon_32.png │ │ │ │ ├── pin_sq_right_icon_48.png │ │ │ │ ├── pin_sq_top_icon_16.png │ │ │ │ ├── pin_sq_top_icon_24.png │ │ │ │ ├── pin_sq_top_icon_32.png │ │ │ │ ├── pin_sq_top_icon_48.png │ │ │ │ ├── playback_ff_icon_16.png │ │ │ │ ├── playback_ff_icon_24.png │ │ │ │ ├── playback_ff_icon_32.png │ │ │ │ ├── playback_ff_icon_48.png │ │ │ │ ├── playback_next_icon_16.png │ │ │ │ ├── playback_next_icon_24.png │ │ │ │ ├── playback_next_icon_32.png │ │ │ │ ├── playback_next_icon_48.png │ │ │ │ ├── playback_pause_icon_16.png │ │ │ │ ├── playback_pause_icon_24.png │ │ │ │ ├── playback_pause_icon_32.png │ │ │ │ ├── playback_pause_icon_48.png │ │ │ │ ├── playback_play_icon_16.png │ │ │ │ ├── playback_play_icon_24.png │ │ │ │ ├── playback_play_icon_32.png │ │ │ │ ├── playback_play_icon_48.png │ │ │ │ ├── playback_prev_icon_16.png │ │ │ │ ├── playback_prev_icon_24.png │ │ │ │ ├── playback_prev_icon_32.png │ │ │ │ ├── playback_prev_icon_48.png │ │ │ │ ├── playback_rec_icon_16.png │ │ │ │ ├── playback_rec_icon_24.png │ │ │ │ ├── playback_rec_icon_32.png │ │ │ │ ├── playback_rec_icon_48.png │ │ │ │ ├── playback_reload_icon_16.png │ │ │ │ ├── playback_reload_icon_24.png │ │ │ │ ├── playback_reload_icon_32.png │ │ │ │ ├── playback_reload_icon_48.png │ │ │ │ ├── playback_rew_icon_16.png │ │ │ │ ├── playback_rew_icon_24.png │ │ │ │ ├── playback_rew_icon_32.png │ │ │ │ ├── playback_rew_icon_48.png │ │ │ │ ├── playback_stop_icon_16.png │ │ │ │ ├── playback_stop_icon_24.png │ │ │ │ ├── playback_stop_icon_32.png │ │ │ │ ├── playback_stop_icon_48.png │ │ │ │ ├── podcast_icon_16.png │ │ │ │ ├── podcast_icon_24.png │ │ │ │ ├── podcast_icon_32.png │ │ │ │ ├── podcast_icon_48.png │ │ │ │ ├── preso_icon_16.png │ │ │ │ ├── preso_icon_24.png │ │ │ │ ├── preso_icon_32.png │ │ │ │ ├── preso_icon_48.png │ │ │ │ ├── print_icon_16.png │ │ │ │ ├── print_icon_24.png │ │ │ │ ├── print_icon_32.png │ │ │ │ ├── print_icon_48.png │ │ │ │ ├── push_pin_icon_16.png │ │ │ │ ├── push_pin_icon_24.png │ │ │ │ ├── push_pin_icon_32.png │ │ │ │ ├── push_pin_icon_48.png │ │ │ │ ├── redo_icon_16.png │ │ │ │ ├── redo_icon_24.png │ │ │ │ ├── redo_icon_32.png │ │ │ │ ├── redo_icon_48.png │ │ │ │ ├── refresh_icon_16.png │ │ │ │ ├── refresh_icon_24.png │ │ │ │ ├── refresh_icon_32.png │ │ │ │ ├── refresh_icon_48.png │ │ │ │ ├── reload_icon_16.png │ │ │ │ ├── reload_icon_24.png │ │ │ │ ├── reload_icon_32.png │ │ │ │ ├── reload_icon_48.png │ │ │ │ ├── rewind_previous_icon_16.png │ │ │ │ ├── rewind_previous_icon_24.png │ │ │ │ ├── rewind_previous_icon_32.png │ │ │ │ ├── rewind_previous_icon_48.png │ │ │ │ ├── rnd_br_down_icon_16.png │ │ │ │ ├── rnd_br_down_icon_24.png │ │ │ │ ├── rnd_br_down_icon_32.png │ │ │ │ ├── rnd_br_down_icon_48.png │ │ │ │ ├── rnd_br_first_icon_16.png │ │ │ │ ├── rnd_br_first_icon_24.png │ │ │ │ ├── rnd_br_first_icon_32.png │ │ │ │ ├── rnd_br_first_icon_48.png │ │ │ │ ├── rnd_br_last_icon_16.png │ │ │ │ ├── rnd_br_last_icon_24.png │ │ │ │ ├── rnd_br_last_icon_32.png │ │ │ │ ├── rnd_br_last_icon_48.png │ │ │ │ ├── rnd_br_next_icon_16.png │ │ │ │ ├── rnd_br_next_icon_24.png │ │ │ │ ├── rnd_br_next_icon_32.png │ │ │ │ ├── rnd_br_next_icon_48.png │ │ │ │ ├── rnd_br_prev_icon_16.png │ │ │ │ ├── rnd_br_prev_icon_24.png │ │ │ │ ├── rnd_br_prev_icon_32.png │ │ │ │ ├── rnd_br_prev_icon_48.png │ │ │ │ ├── rnd_br_up_icon_16.png │ │ │ │ ├── rnd_br_up_icon_24.png │ │ │ │ ├── rnd_br_up_icon_32.png │ │ │ │ ├── rnd_br_up_icon_48.png │ │ │ │ ├── round_and_up_icon_16.png │ │ │ │ ├── round_and_up_icon_24.png │ │ │ │ ├── round_and_up_icon_32.png │ │ │ │ ├── round_and_up_icon_48.png │ │ │ │ ├── round_arrow_left_icon_16.png │ │ │ │ ├── round_arrow_left_icon_24.png │ │ │ │ ├── round_arrow_left_icon_32.png │ │ │ │ ├── round_arrow_left_icon_48.png │ │ │ │ ├── round_arrow_right_icon_16.png │ │ │ │ ├── round_arrow_right_icon_24.png │ │ │ │ ├── round_arrow_right_icon_32.png │ │ │ │ ├── round_arrow_right_icon_48.png │ │ │ │ ├── round_checkmark_icon_16.png │ │ │ │ ├── round_checkmark_icon_24.png │ │ │ │ ├── round_checkmark_icon_32.png │ │ │ │ ├── round_checkmark_icon_48.png │ │ │ │ ├── round_delete_icon_16.png │ │ │ │ ├── round_delete_icon_24.png │ │ │ │ ├── round_delete_icon_32.png │ │ │ │ ├── round_delete_icon_48.png │ │ │ │ ├── round_icon_16.png │ │ │ │ ├── round_icon_24.png │ │ │ │ ├── round_icon_32.png │ │ │ │ ├── round_icon_48.png │ │ │ │ ├── round_minus_icon_16.png │ │ │ │ ├── round_minus_icon_24.png │ │ │ │ ├── round_minus_icon_32.png │ │ │ │ ├── round_minus_icon_48.png │ │ │ │ ├── round_plus_icon_16.png │ │ │ │ ├── round_plus_icon_24.png │ │ │ │ ├── round_plus_icon_32.png │ │ │ │ ├── round_plus_icon_48.png │ │ │ │ ├── rss_icon_16.png │ │ │ │ ├── rss_icon_24.png │ │ │ │ ├── rss_icon_32.png │ │ │ │ ├── rss_icon_48.png │ │ │ │ ├── rss_sq_icon_16.png │ │ │ │ ├── rss_sq_icon_24.png │ │ │ │ ├── rss_sq_icon_32.png │ │ │ │ ├── rss_sq_icon_48.png │ │ │ │ ├── sand_icon_16.png │ │ │ │ ├── sand_icon_24.png │ │ │ │ ├── sand_icon_32.png │ │ │ │ ├── sand_icon_48.png │ │ │ │ ├── sat_dish_icon_16.png │ │ │ │ ├── sat_dish_icon_24.png │ │ │ │ ├── sat_dish_icon_32.png │ │ │ │ ├── sat_dish_icon_48.png │ │ │ │ ├── save_icon_16.png │ │ │ │ ├── save_icon_24.png │ │ │ │ ├── save_icon_32.png │ │ │ │ ├── save_icon_48.png │ │ │ │ ├── server_icon_16.png │ │ │ │ ├── server_icon_24.png │ │ │ │ ├── server_icon_32.png │ │ │ │ ├── server_icon_48.png │ │ │ │ ├── shapes_icon_16.png │ │ │ │ ├── shapes_icon_24.png │ │ │ │ ├── shapes_icon_32.png │ │ │ │ ├── shapes_icon_48.png │ │ │ │ ├── share_2_icon_16.png │ │ │ │ ├── share_2_icon_24.png │ │ │ │ ├── share_2_icon_32.png │ │ │ │ ├── share_2_icon_48.png │ │ │ │ ├── share_icon_16.png │ │ │ │ ├── share_icon_24.png │ │ │ │ ├── share_icon_32.png │ │ │ │ ├── share_icon_48.png │ │ │ │ ├── shield_2_icon_16.png │ │ │ │ ├── shield_2_icon_24.png │ │ │ │ ├── shield_2_icon_32.png │ │ │ │ ├── shield_2_icon_48.png │ │ │ │ ├── shield_icon_16.png │ │ │ │ ├── shield_icon_24.png │ │ │ │ ├── shield_icon_32.png │ │ │ │ ├── shield_icon_48.png │ │ │ │ ├── shop_cart_icon_16.png │ │ │ │ ├── shop_cart_icon_24.png │ │ │ │ ├── shop_cart_icon_32.png │ │ │ │ ├── shop_cart_icon_48.png │ │ │ │ ├── shopping_bag_dollar_icon_16.png │ │ │ │ ├── shopping_bag_dollar_icon_24.png │ │ │ │ ├── shopping_bag_dollar_icon_32.png │ │ │ │ ├── shopping_bag_dollar_icon_48.png │ │ │ │ ├── shopping_bag_icon_16.png │ │ │ │ ├── shopping_bag_icon_24.png │ │ │ │ ├── shopping_bag_icon_32.png │ │ │ │ ├── shopping_bag_icon_48.png │ │ │ │ ├── sound_high_icon_16.png │ │ │ │ ├── sound_high_icon_24.png │ │ │ │ ├── sound_high_icon_32.png │ │ │ │ ├── sound_high_icon_48.png │ │ │ │ ├── sound_low_icon_16.png │ │ │ │ ├── sound_low_icon_24.png │ │ │ │ ├── sound_low_icon_32.png │ │ │ │ ├── sound_low_icon_48.png │ │ │ │ ├── sound_mute_icon_16.png │ │ │ │ ├── sound_mute_icon_24.png │ │ │ │ ├── sound_mute_icon_32.png │ │ │ │ ├── sound_mute_icon_48.png │ │ │ │ ├── spechbubble_2_icon_16.png │ │ │ │ ├── spechbubble_2_icon_24.png │ │ │ │ ├── spechbubble_2_icon_32.png │ │ │ │ ├── spechbubble_2_icon_48.png │ │ │ │ ├── spechbubble_icon_16.png │ │ │ │ ├── spechbubble_icon_24.png │ │ │ │ ├── spechbubble_icon_32.png │ │ │ │ ├── spechbubble_icon_48.png │ │ │ │ ├── spechbubble_sq_icon_16.png │ │ │ │ ├── spechbubble_sq_icon_24.png │ │ │ │ ├── spechbubble_sq_icon_32.png │ │ │ │ ├── spechbubble_sq_icon_48.png │ │ │ │ ├── spechbubble_sq_line_icon_16.png │ │ │ │ ├── spechbubble_sq_line_icon_24.png │ │ │ │ ├── spechbubble_sq_line_icon_32.png │ │ │ │ ├── spechbubble_sq_line_icon_48.png │ │ │ │ ├── sq_br_down_icon_16.png │ │ │ │ ├── sq_br_down_icon_24.png │ │ │ │ ├── sq_br_down_icon_32.png │ │ │ │ ├── sq_br_down_icon_48.png │ │ │ │ ├── sq_br_first_icon_16.png │ │ │ │ ├── sq_br_first_icon_24.png │ │ │ │ ├── sq_br_first_icon_32.png │ │ │ │ ├── sq_br_first_icon_48.png │ │ │ │ ├── sq_br_last_icon_16.png │ │ │ │ ├── sq_br_last_icon_24.png │ │ │ │ ├── sq_br_last_icon_32.png │ │ │ │ ├── sq_br_last_icon_48.png │ │ │ │ ├── sq_br_next_icon_16.png │ │ │ │ ├── sq_br_next_icon_24.png │ │ │ │ ├── sq_br_next_icon_32.png │ │ │ │ ├── sq_br_next_icon_48.png │ │ │ │ ├── sq_br_prev_icon_16.png │ │ │ │ ├── sq_br_prev_icon_24.png │ │ │ │ ├── sq_br_prev_icon_32.png │ │ │ │ ├── sq_br_prev_icon_48.png │ │ │ │ ├── sq_br_up_icon_16.png │ │ │ │ ├── sq_br_up_icon_24.png │ │ │ │ ├── sq_br_up_icon_32.png │ │ │ │ ├── sq_br_up_icon_48.png │ │ │ │ ├── sq_down_icon_16.png │ │ │ │ ├── sq_down_icon_24.png │ │ │ │ ├── sq_down_icon_32.png │ │ │ │ ├── sq_down_icon_48.png │ │ │ │ ├── sq_minus_icon_16.png │ │ │ │ ├── sq_minus_icon_24.png │ │ │ │ ├── sq_minus_icon_32.png │ │ │ │ ├── sq_minus_icon_48.png │ │ │ │ ├── sq_next_icon_16.png │ │ │ │ ├── sq_next_icon_24.png │ │ │ │ ├── sq_next_icon_32.png │ │ │ │ ├── sq_next_icon_48.png │ │ │ │ ├── sq_plus_icon_16.png │ │ │ │ ├── sq_plus_icon_24.png │ │ │ │ ├── sq_plus_icon_32.png │ │ │ │ ├── sq_plus_icon_48.png │ │ │ │ ├── sq_prev_icon_16.png │ │ │ │ ├── sq_prev_icon_24.png │ │ │ │ ├── sq_prev_icon_32.png │ │ │ │ ├── sq_prev_icon_48.png │ │ │ │ ├── sq_up_icon_16.png │ │ │ │ ├── sq_up_icon_24.png │ │ │ │ ├── sq_up_icon_32.png │ │ │ │ ├── sq_up_icon_48.png │ │ │ │ ├── square_shape_icon_16.png │ │ │ │ ├── square_shape_icon_24.png │ │ │ │ ├── square_shape_icon_32.png │ │ │ │ ├── square_shape_icon_48.png │ │ │ │ ├── stairs_down_icon_16.png │ │ │ │ ├── stairs_down_icon_24.png │ │ │ │ ├── stairs_down_icon_32.png │ │ │ │ ├── stairs_down_icon_48.png │ │ │ │ ├── stairs_up_icon_16.png │ │ │ │ ├── stairs_up_icon_24.png │ │ │ │ ├── stairs_up_icon_32.png │ │ │ │ ├── stairs_up_icon_48.png │ │ │ │ ├── star_fav_empty_icon_16.png │ │ │ │ ├── star_fav_empty_icon_24.png │ │ │ │ ├── star_fav_empty_icon_32.png │ │ │ │ ├── star_fav_empty_icon_48.png │ │ │ │ ├── star_fav_icon_16.png │ │ │ │ ├── star_fav_icon_24.png │ │ │ │ ├── star_fav_icon_32.png │ │ │ │ ├── star_fav_icon_48.png │ │ │ │ ├── star_icon_16.png │ │ │ │ ├── star_icon_24.png │ │ │ │ ├── star_icon_32.png │ │ │ │ ├── star_icon_48.png │ │ │ │ ├── stop_watch_icon_16.png │ │ │ │ ├── stop_watch_icon_24.png │ │ │ │ ├── stop_watch_icon_32.png │ │ │ │ ├── stop_watch_icon_48.png │ │ │ │ ├── sun_icon_16.png │ │ │ │ ├── sun_icon_24.png │ │ │ │ ├── sun_icon_32.png │ │ │ │ ├── sun_icon_48.png │ │ │ │ ├── tag_icon_16.png │ │ │ │ ├── tag_icon_24.png │ │ │ │ ├── tag_icon_32.png │ │ │ │ ├── tag_icon_48.png │ │ │ │ ├── tape_icon_16.png │ │ │ │ ├── tape_icon_24.png │ │ │ │ ├── tape_icon_32.png │ │ │ │ ├── tape_icon_48.png │ │ │ │ ├── target_icon_16.png │ │ │ │ ├── target_icon_24.png │ │ │ │ ├── target_icon_32.png │ │ │ │ ├── target_icon_48.png │ │ │ │ ├── text_curstor_icon_16.png │ │ │ │ ├── text_curstor_icon_24.png │ │ │ │ ├── text_curstor_icon_32.png │ │ │ │ ├── text_curstor_icon_48.png │ │ │ │ ├── text_letter_t_icon_16.png │ │ │ │ ├── text_letter_t_icon_24.png │ │ │ │ ├── text_letter_t_icon_32.png │ │ │ │ ├── text_letter_t_icon_48.png │ │ │ │ ├── top_right_expand_icon_16.png │ │ │ │ ├── top_right_expand_icon_24.png │ │ │ │ ├── top_right_expand_icon_32.png │ │ │ │ ├── top_right_expand_icon_48.png │ │ │ │ ├── track_icon_16.png │ │ │ │ ├── track_icon_24.png │ │ │ │ ├── track_icon_32.png │ │ │ │ ├── track_icon_48.png │ │ │ │ ├── trash_icon_16.png │ │ │ │ ├── trash_icon_24.png │ │ │ │ ├── trash_icon_32.png │ │ │ │ ├── trash_icon_48.png │ │ │ │ ├── twitter_2_icon_16.png │ │ │ │ ├── twitter_2_icon_24.png │ │ │ │ ├── twitter_2_icon_32.png │ │ │ │ ├── twitter_2_icon_48.png │ │ │ │ ├── twitter_icon_16.png │ │ │ │ ├── twitter_icon_24.png │ │ │ │ ├── twitter_icon_32.png │ │ │ │ ├── twitter_icon_48.png │ │ │ │ ├── undo_icon_16.png │ │ │ │ ├── undo_icon_24.png │ │ │ │ ├── undo_icon_32.png │ │ │ │ ├── undo_icon_48.png │ │ │ │ ├── user_icon_16.png │ │ │ │ ├── user_icon_24.png │ │ │ │ ├── user_icon_32.png │ │ │ │ ├── user_icon_48.png │ │ │ │ ├── users_icon_16.png │ │ │ │ ├── users_icon_24.png │ │ │ │ ├── users_icon_32.png │ │ │ │ ├── users_icon_48.png │ │ │ │ ├── vault_icon_16.png │ │ │ │ ├── vault_icon_24.png │ │ │ │ ├── vault_icon_32.png │ │ │ │ ├── vault_icon_48.png │ │ │ │ ├── wallet_icon_16.png │ │ │ │ ├── wallet_icon_24.png │ │ │ │ ├── wallet_icon_32.png │ │ │ │ ├── wallet_icon_48.png │ │ │ │ ├── wifi_router_icon_16.png │ │ │ │ ├── wifi_router_icon_24.png │ │ │ │ ├── wifi_router_icon_32.png │ │ │ │ ├── wifi_router_icon_48.png │ │ │ │ ├── wireless_signal_icon_16.png │ │ │ │ ├── wireless_signal_icon_24.png │ │ │ │ ├── wireless_signal_icon_32.png │ │ │ │ ├── wireless_signal_icon_48.png │ │ │ │ ├── wrench_icon_16.png │ │ │ │ ├── wrench_icon_24.png │ │ │ │ ├── wrench_icon_32.png │ │ │ │ ├── wrench_icon_48.png │ │ │ │ ├── wrench_plus_2_icon_16.png │ │ │ │ ├── wrench_plus_2_icon_24.png │ │ │ │ ├── wrench_plus_2_icon_32.png │ │ │ │ ├── wrench_plus_2_icon_48.png │ │ │ │ ├── wrench_plus_icon_16.png │ │ │ │ ├── wrench_plus_icon_24.png │ │ │ │ ├── wrench_plus_icon_32.png │ │ │ │ ├── wrench_plus_icon_48.png │ │ │ │ ├── youtube_icon_16.png │ │ │ │ ├── youtube_icon_24.png │ │ │ │ ├── youtube_icon_32.png │ │ │ │ ├── youtube_icon_48.png │ │ │ │ ├── zoom_icon_16.png │ │ │ │ ├── zoom_icon_24.png │ │ │ │ ├── zoom_icon_32.png │ │ │ │ └── zoom_icon_48.png │ │ │ ├── nebulalogo.png │ │ │ ├── qttoolkit.qrc │ │ │ └── stylesheet.qss │ ├── resources.qrc │ ├── stdneb.cc │ ├── stdneb.h │ └── surfacegenerator │ │ ├── CMakeLists.txt │ │ ├── code │ │ ├── main.cc │ │ ├── surfacegeneratorapp.cc │ │ ├── surfacegeneratorapp.h │ │ ├── surfacegeneratorwindow.cc │ │ └── surfacegeneratorwindow.h │ │ └── ui │ │ ├── makesurfacewidget.ui │ │ └── surfacegeneratorwidget.ui ├── render │ ├── CMakeLists.txt │ ├── algorithm │ │ ├── algorithmbase.cc │ │ ├── algorithmbase.h │ │ ├── algorithmhandler.cc │ │ ├── algorithmhandler.h │ │ ├── algorithmprotocol.nidl │ │ ├── algorithms.h │ │ ├── aoalgorithm.cc │ │ ├── aoalgorithm.h │ │ ├── cs │ │ │ ├── aoalgorithm_cs.cc │ │ │ └── aoalgorithm_cs.h │ │ ├── godrayalgorithm.cc │ │ ├── godrayalgorithm.h │ │ ├── ssralgorithm.cc │ │ ├── ssralgorithm.h │ │ ├── tonemappingalgorithm.cc │ │ ├── tonemappingalgorithm.h │ │ ├── volumetriclightalgorithm.cc │ │ └── volumetriclightalgorithm.h │ ├── animation │ │ ├── animeventhandlerbase.cc │ │ ├── animeventhandlerbase.h │ │ ├── animeventinfo.h │ │ ├── animeventserver.cc │ │ ├── animeventserver.h │ │ ├── animjob.cc │ │ ├── animjob.h │ │ ├── animjobenqueuemode.h │ │ ├── animsequencer.cc │ │ ├── animsequencer.h │ │ ├── playclipjob.cc │ │ └── playclipjob.h │ ├── apprender │ │ ├── renderapplication.cc │ │ ├── renderapplication.h │ │ ├── viewerapplication.cc │ │ └── viewerapplication.h │ ├── billboards │ │ ├── billboardnode.cc │ │ ├── billboardnode.h │ │ ├── billboardnodeinstance.cc │ │ └── billboardnodeinstance.h │ ├── characters │ │ ├── base │ │ │ ├── skinnedmeshdrawinfobase.h │ │ │ ├── skinnedmeshrendererbase.cc │ │ │ └── skinnedmeshrendererbase.h │ │ ├── character.cc │ │ ├── character.h │ │ ├── characteranimationcontroller.cc │ │ ├── characteranimationcontroller.h │ │ ├── characteranimationlibrary.cc │ │ ├── characteranimationlibrary.h │ │ ├── characterinstance.cc │ │ ├── characterinstance.h │ │ ├── characterjoint.cc │ │ ├── characterjoint.h │ │ ├── characterjointmask.cc │ │ ├── characterjointmask.h │ │ ├── characternode.cc │ │ ├── characternode.h │ │ ├── characternodeinstance.cc │ │ ├── characternodeinstance.h │ │ ├── characters.dox │ │ ├── characterserver.cc │ │ ├── characterserver.h │ │ ├── characterskeleton.cc │ │ ├── characterskeleton.h │ │ ├── characterskeletoninstance.cc │ │ ├── characterskeletoninstance.h │ │ ├── characterskin.cc │ │ ├── characterskin.h │ │ ├── characterskinlibrary.cc │ │ ├── characterskinlibrary.h │ │ ├── characterskinlist.cc │ │ ├── characterskinlist.h │ │ ├── characterskinnode.cc │ │ ├── characterskinnode.h │ │ ├── characterskinnodeinstance.cc │ │ ├── characterskinnodeinstance.h │ │ ├── characterskinset.cc │ │ ├── characterskinset.h │ │ ├── charactervariationlibrary.cc │ │ ├── charactervariationlibrary.h │ │ ├── charactervariationset.cc │ │ ├── charactervariationset.h │ │ ├── charjointcomponents.h │ │ ├── charjointinfo.h │ │ ├── gpuskinnedmeshrenderer.cc │ │ ├── gpuskinnedmeshrenderer.h │ │ ├── jobs │ │ │ └── charevalskeletonjob.cc │ │ ├── skinnedmeshdrawinfo.h │ │ ├── skinnedmeshrenderer.cc │ │ ├── skinnedmeshrenderer.h │ │ └── skinningtechnique.h │ ├── coreanimation │ │ ├── animclip.cc │ │ ├── animclip.h │ │ ├── animcurve.h │ │ ├── animevent.h │ │ ├── animeventemitter.cc │ │ ├── animeventemitter.h │ │ ├── animkeybuffer.cc │ │ ├── animkeybuffer.h │ │ ├── animresource.cc │ │ ├── animresource.h │ │ ├── animsamplebuffer.cc │ │ ├── animsamplebuffer.h │ │ ├── animsamplemixinfo.h │ │ ├── animutil.cc │ │ ├── animutil.h │ │ ├── coreanimation.dox │ │ ├── curvetype.cc │ │ ├── curvetype.h │ │ ├── infinitytype.cc │ │ ├── infinitytype.h │ │ ├── jobs │ │ │ ├── animjobsample.cc │ │ │ ├── animjobsamplemix.cc │ │ │ └── animjobutil.h │ │ ├── managedanimresource.cc │ │ ├── managedanimresource.h │ │ ├── naxfileformatstructs.h │ │ ├── sampletype.cc │ │ ├── sampletype.h │ │ ├── streamanimationloader.cc │ │ └── streamanimationloader.h │ ├── coregraphics │ │ ├── adapter.cc │ │ ├── adapter.h │ │ ├── adapterinfo.h │ │ ├── antialiasquality.cc │ │ ├── antialiasquality.h │ │ ├── base │ │ │ ├── bufferlockbase.cc │ │ │ ├── bufferlockbase.h │ │ │ ├── constantbufferbase.cc │ │ │ ├── constantbufferbase.h │ │ │ ├── depthstenciltargetbase.cc │ │ │ ├── depthstenciltargetbase.h │ │ │ ├── displaydevicebase.cc │ │ │ ├── displaydevicebase.h │ │ │ ├── feedbackbufferbase.cc │ │ │ ├── feedbackbufferbase.h │ │ │ ├── indexbufferbase.cc │ │ │ ├── indexbufferbase.h │ │ │ ├── memoryindexbufferloaderbase.cc │ │ │ ├── memoryindexbufferloaderbase.h │ │ │ ├── memoryvertexbufferloaderbase.cc │ │ │ ├── memoryvertexbufferloaderbase.h │ │ │ ├── meshbase.cc │ │ │ ├── meshbase.h │ │ │ ├── mouserenderdevicebase.cc │ │ │ ├── mouserenderdevicebase.h │ │ │ ├── multiplerendertargetbase.cc │ │ │ ├── multiplerendertargetbase.h │ │ │ ├── renderdevicebase.cc │ │ │ ├── renderdevicebase.h │ │ │ ├── rendertargetbase.cc │ │ │ ├── rendertargetbase.h │ │ │ ├── rendertargetcubebase.cc │ │ │ ├── rendertargetcubebase.h │ │ │ ├── resourcebase.cc │ │ │ ├── resourcebase.h │ │ │ ├── shaderbase.cc │ │ │ ├── shaderbase.h │ │ │ ├── shaderinstancebase.cc │ │ │ ├── shaderinstancebase.h │ │ │ ├── shaderreadwritebufferbase.cc │ │ │ ├── shaderreadwritebufferbase.h │ │ │ ├── shaderreadwritetexturebase.cc │ │ │ ├── shaderreadwritetexturebase.h │ │ │ ├── shaderserverbase.cc │ │ │ ├── shaderserverbase.h │ │ │ ├── shadervariablebase.cc │ │ │ ├── shadervariablebase.h │ │ │ ├── shadervariableinstancebase.cc │ │ │ ├── shadervariableinstancebase.h │ │ │ ├── shadervariationbase.cc │ │ │ ├── shadervariationbase.h │ │ │ ├── shaperendererbase.cc │ │ │ ├── shaperendererbase.h │ │ │ ├── streamtexturesaverbase.cc │ │ │ ├── streamtexturesaverbase.h │ │ │ ├── textrendererbase.cc │ │ │ ├── textrendererbase.h │ │ │ ├── texturebase.cc │ │ │ ├── texturebase.h │ │ │ ├── transformdevicebase.cc │ │ │ ├── transformdevicebase.h │ │ │ ├── vertexbufferbase.cc │ │ │ ├── vertexbufferbase.h │ │ │ ├── vertexcomponentbase.h │ │ │ ├── vertexlayoutbase.cc │ │ │ ├── vertexlayoutbase.h │ │ │ ├── vertexlayoutserverbase.cc │ │ │ └── vertexlayoutserverbase.h │ │ ├── bufferlock.cc │ │ ├── bufferlock.h │ │ ├── config.h │ │ ├── constantbuffer.cc │ │ ├── constantbuffer.h │ │ ├── coregraphics.dox │ │ ├── d3d11 │ │ │ ├── d3d11depthstenciltarget.cc │ │ │ ├── d3d11depthstenciltarget.h │ │ │ ├── d3d11displaydevice.cc │ │ │ ├── d3d11displaydevice.h │ │ │ ├── d3d11indexbuffer.cc │ │ │ ├── d3d11indexbuffer.h │ │ │ ├── d3d11memoryindexbufferloader.cc │ │ │ ├── d3d11memoryindexbufferloader.h │ │ │ ├── d3d11memorytextureloader.cc │ │ │ ├── d3d11memorytextureloader.h │ │ │ ├── d3d11memoryvertexbufferloader.cc │ │ │ ├── d3d11memoryvertexbufferloader.h │ │ │ ├── d3d11multiplerendertarget.cc │ │ │ ├── d3d11multiplerendertarget.h │ │ │ ├── d3d11renderdevice.cc │ │ │ ├── d3d11renderdevice.h │ │ │ ├── d3d11rendertarget.cc │ │ │ ├── d3d11rendertarget.h │ │ │ ├── d3d11rendertargetcube.cc │ │ │ ├── d3d11rendertargetcube.h │ │ │ ├── d3d11shader.cc │ │ │ ├── d3d11shader.h │ │ │ ├── d3d11shaderinstance.cc │ │ │ ├── d3d11shaderinstance.h │ │ │ ├── d3d11shaderserver.cc │ │ │ ├── d3d11shaderserver.h │ │ │ ├── d3d11shadervariable.cc │ │ │ ├── d3d11shadervariable.h │ │ │ ├── d3d11shadervariation.cc │ │ │ ├── d3d11shadervariation.h │ │ │ ├── d3d11shaperenderer.cc │ │ │ ├── d3d11shaperenderer.h │ │ │ ├── d3d11streammeshloader.cc │ │ │ ├── d3d11streammeshloader.h │ │ │ ├── d3d11streamshaderloader.cc │ │ │ ├── d3d11streamshaderloader.h │ │ │ ├── d3d11streamtextureloader.cc │ │ │ ├── d3d11streamtextureloader.h │ │ │ ├── d3d11streamtexturesaver.cc │ │ │ ├── d3d11streamtexturesaver.h │ │ │ ├── d3d11textrenderer.cc │ │ │ ├── d3d11textrenderer.h │ │ │ ├── d3d11texture.cc │ │ │ ├── d3d11texture.h │ │ │ ├── d3d11transformdevice.cc │ │ │ ├── d3d11transformdevice.h │ │ │ ├── d3d11types.cc │ │ │ ├── d3d11types.h │ │ │ ├── d3d11vertexbuffer.cc │ │ │ ├── d3d11vertexbuffer.h │ │ │ ├── d3d11vertexlayout.cc │ │ │ ├── d3d11vertexlayout.h │ │ │ ├── d3d11vertexlayoutserver.cc │ │ │ └── d3d11vertexlayoutserver.h │ │ ├── d3d9 │ │ │ ├── d3d9displaydevice.cc │ │ │ ├── d3d9displaydevice.h │ │ │ ├── d3d9indexbuffer.cc │ │ │ ├── d3d9indexbuffer.h │ │ │ ├── d3d9memoryindexbufferloader.cc │ │ │ ├── d3d9memoryindexbufferloader.h │ │ │ ├── d3d9memorytextureloader.cc │ │ │ ├── d3d9memorytextureloader.h │ │ │ ├── d3d9memoryvertexbufferloader.cc │ │ │ ├── d3d9memoryvertexbufferloader.h │ │ │ ├── d3d9renderdevice.cc │ │ │ ├── d3d9renderdevice.h │ │ │ ├── d3d9rendertarget.cc │ │ │ ├── d3d9rendertarget.h │ │ │ ├── d3d9shader.cc │ │ │ ├── d3d9shader.h │ │ │ ├── d3d9shaderinstance.cc │ │ │ ├── d3d9shaderinstance.h │ │ │ ├── d3d9shaderserver.cc │ │ │ ├── d3d9shaderserver.h │ │ │ ├── d3d9shadervariable.cc │ │ │ ├── d3d9shadervariable.h │ │ │ ├── d3d9shadervariation.cc │ │ │ ├── d3d9shadervariation.h │ │ │ ├── d3d9shaperenderer.cc │ │ │ ├── d3d9shaperenderer.h │ │ │ ├── d3d9streammeshloader.cc │ │ │ ├── d3d9streammeshloader.h │ │ │ ├── d3d9streamshaderloader.cc │ │ │ ├── d3d9streamshaderloader.h │ │ │ ├── d3d9streamtextureloader.cc │ │ │ ├── d3d9streamtextureloader.h │ │ │ ├── d3d9streamtexturesaver.cc │ │ │ ├── d3d9streamtexturesaver.h │ │ │ ├── d3d9textrenderer.cc │ │ │ ├── d3d9textrenderer.h │ │ │ ├── d3d9texture.cc │ │ │ ├── d3d9texture.h │ │ │ ├── d3d9transformdevice.cc │ │ │ ├── d3d9transformdevice.h │ │ │ ├── d3d9types.cc │ │ │ ├── d3d9types.h │ │ │ ├── d3d9vertexbuffer.cc │ │ │ ├── d3d9vertexbuffer.h │ │ │ ├── d3d9vertexlayout.cc │ │ │ ├── d3d9vertexlayout.h │ │ │ └── direct3d9.dox │ │ ├── debug │ │ │ ├── displaypagehandler.cc │ │ │ ├── displaypagehandler.h │ │ │ ├── meshpagehandler.cc │ │ │ ├── meshpagehandler.h │ │ │ ├── shaderpagehandler.cc │ │ │ ├── shaderpagehandler.h │ │ │ ├── texturepagehandler.cc │ │ │ └── texturepagehandler.h │ │ ├── depthstenciltarget.cc │ │ ├── depthstenciltarget.h │ │ ├── displaydevice.cc │ │ ├── displaydevice.h │ │ ├── displayevent.h │ │ ├── displayeventhandler.cc │ │ ├── displayeventhandler.h │ │ ├── displaymode.h │ │ ├── feedbackbuffer.cc │ │ ├── feedbackbuffer.h │ │ ├── framebatchtype.h │ │ ├── glfw │ │ │ ├── glfwdisplaydevice.cc │ │ │ └── glfwdisplaydevice.h │ │ ├── imagefileformat.cc │ │ ├── imagefileformat.h │ │ ├── indexbuffer.cc │ │ ├── indexbuffer.h │ │ ├── indextype.h │ │ ├── legacy │ │ │ ├── nvx2fileformatstructs.h │ │ │ ├── nvx2streamreader.cc │ │ │ └── nvx2streamreader.h │ │ ├── memoryindexbufferloader.cc │ │ ├── memoryindexbufferloader.h │ │ ├── memorymeshloader.cc │ │ ├── memorymeshloader.h │ │ ├── memorytextureloader.cc │ │ ├── memorytextureloader.h │ │ ├── memoryvertexbufferloader.cc │ │ ├── memoryvertexbufferloader.h │ │ ├── mesh.cc │ │ ├── mesh.h │ │ ├── mousepointer.h │ │ ├── mouserenderdevice.cc │ │ ├── mouserenderdevice.h │ │ ├── multiplerendertarget.cc │ │ ├── multiplerendertarget.h │ │ ├── nvx3fileformatstructs.h │ │ ├── nvx3streamreader.cc │ │ ├── nvx3streamreader.h │ │ ├── ogl4 │ │ │ ├── ogl4bufferlock.cc │ │ │ ├── ogl4bufferlock.h │ │ │ ├── ogl4depthstenciltarget.cc │ │ │ ├── ogl4depthstenciltarget.h │ │ │ ├── ogl4displaydevice.cc │ │ │ ├── ogl4displaydevice.h │ │ │ ├── ogl4feedbackbuffer.cc │ │ │ ├── ogl4feedbackbuffer.h │ │ │ ├── ogl4indexbuffer.cc │ │ │ ├── ogl4indexbuffer.h │ │ │ ├── ogl4memoryindexbufferloader.cc │ │ │ ├── ogl4memoryindexbufferloader.h │ │ │ ├── ogl4memorytextureloader.cc │ │ │ ├── ogl4memorytextureloader.h │ │ │ ├── ogl4memoryvertexbufferloader.cc │ │ │ ├── ogl4memoryvertexbufferloader.h │ │ │ ├── ogl4multiplerendertarget.cc │ │ │ ├── ogl4multiplerendertarget.h │ │ │ ├── ogl4renderdevice.cc │ │ │ ├── ogl4renderdevice.h │ │ │ ├── ogl4rendertarget.cc │ │ │ ├── ogl4rendertarget.h │ │ │ ├── ogl4rendertargetcube.cc │ │ │ ├── ogl4rendertargetcube.h │ │ │ ├── ogl4shader.cc │ │ │ ├── ogl4shader.h │ │ │ ├── ogl4shaderimage.cc │ │ │ ├── ogl4shaderimage.h │ │ │ ├── ogl4shaderinstance.cc │ │ │ ├── ogl4shaderinstance.h │ │ │ ├── ogl4shaderprogram.cc │ │ │ ├── ogl4shaderprogram.h │ │ │ ├── ogl4shaderserver.cc │ │ │ ├── ogl4shaderserver.h │ │ │ ├── ogl4shaderstoragebuffer.cc │ │ │ ├── ogl4shaderstoragebuffer.h │ │ │ ├── ogl4shadervariable.cc │ │ │ ├── ogl4shadervariable.h │ │ │ ├── ogl4shadervariableinstance.cc │ │ │ ├── ogl4shadervariableinstance.h │ │ │ ├── ogl4shaperenderer.cc │ │ │ ├── ogl4shaperenderer.h │ │ │ ├── ogl4streammeshloader.cc │ │ │ ├── ogl4streammeshloader.h │ │ │ ├── ogl4streamshaderloader.cc │ │ │ ├── ogl4streamshaderloader.h │ │ │ ├── ogl4streamtextureloader.cc │ │ │ ├── ogl4streamtextureloader.h │ │ │ ├── ogl4streamtexturesaver.cc │ │ │ ├── ogl4streamtexturesaver.h │ │ │ ├── ogl4textrenderer.cc │ │ │ ├── ogl4textrenderer.h │ │ │ ├── ogl4texture.cc │ │ │ ├── ogl4texture.h │ │ │ ├── ogl4transformdevice.cc │ │ │ ├── ogl4transformdevice.h │ │ │ ├── ogl4types.cc │ │ │ ├── ogl4types.h │ │ │ ├── ogl4uniformbuffer.cc │ │ │ ├── ogl4uniformbuffer.h │ │ │ ├── ogl4vertexbuffer.cc │ │ │ ├── ogl4vertexbuffer.h │ │ │ ├── ogl4vertexlayout.cc │ │ │ ├── ogl4vertexlayout.h │ │ │ ├── ogl4vertexlayoutserver.cc │ │ │ ├── ogl4vertexlayoutserver.h │ │ │ ├── win32gldisplaydevice.cc │ │ │ └── win32gldisplaydevice.h │ │ ├── pixelformat.cc │ │ ├── pixelformat.h │ │ ├── primitivegroup.h │ │ ├── primitivetopology.cc │ │ ├── primitivetopology.h │ │ ├── renderdevice.cc │ │ ├── renderdevice.h │ │ ├── renderevent.h │ │ ├── rendereventhandler.cc │ │ ├── rendereventhandler.h │ │ ├── rendershape.cc │ │ ├── rendershape.h │ │ ├── rendertarget.cc │ │ ├── rendertarget.h │ │ ├── rendertargetcube.cc │ │ ├── rendertargetcube.h │ │ ├── shader.cc │ │ ├── shader.h │ │ ├── shaderfeature.cc │ │ ├── shaderfeature.h │ │ ├── shaderidentifier.cc │ │ ├── shaderidentifier.h │ │ ├── shaderinstance.cc │ │ ├── shaderinstance.h │ │ ├── shaderreadwritebuffer.cc │ │ ├── shaderreadwritebuffer.h │ │ ├── shaderreadwritetexture.cc │ │ ├── shaderreadwritetexture.h │ │ ├── shadersemantics.h │ │ ├── shaderserver.cc │ │ ├── shaderserver.h │ │ ├── shadervariable.cc │ │ ├── shadervariable.h │ │ ├── shadervariableinstance.cc │ │ ├── shadervariableinstance.h │ │ ├── shadervariation.cc │ │ ├── shadervariation.h │ │ ├── shaperenderer.cc │ │ ├── shaperenderer.h │ │ ├── streammeshloader.cc │ │ ├── streammeshloader.h │ │ ├── streamshaderloader.cc │ │ ├── streamshaderloader.h │ │ ├── streamtextureloader.cc │ │ ├── streamtextureloader.h │ │ ├── streamtexturesaver.cc │ │ ├── streamtexturesaver.h │ │ ├── textelement.cc │ │ ├── textelement.h │ │ ├── textrenderer.cc │ │ ├── textrenderer.h │ │ ├── texture.cc │ │ ├── texture.h │ │ ├── threadsafedisplayeventhandler.cc │ │ ├── threadsafedisplayeventhandler.h │ │ ├── threadsaferendereventhandler.cc │ │ ├── threadsaferendereventhandler.h │ │ ├── transformdevice.cc │ │ ├── transformdevice.h │ │ ├── vertexbuffer.cc │ │ ├── vertexbuffer.h │ │ ├── vertexcomponent.h │ │ ├── vertexlayout.cc │ │ ├── vertexlayout.h │ │ ├── vertexlayoutserver.cc │ │ ├── vertexlayoutserver.h │ │ └── win32 │ │ │ ├── win32displaydevice.cc │ │ │ └── win32displaydevice.h │ ├── debugrender │ │ ├── debuggraphicshandler.cc │ │ ├── debuggraphicshandler.h │ │ ├── debugrender.h │ │ ├── debugrenderprotocol.nidl │ │ ├── debugshaperenderer.cc │ │ ├── debugshaperenderer.h │ │ ├── debugtextrenderer.cc │ │ ├── debugtextrenderer.h │ │ ├── renderconsolehandler.cc │ │ └── renderconsolehandler.h │ ├── environment │ │ ├── base │ │ │ ├── environmentmodulebase.cc │ │ │ └── environmentmodulebase.h │ │ ├── environmentserver.cc │ │ ├── environmentserver.h │ │ └── modules │ │ │ ├── aomodule.cc │ │ │ ├── aomodule.h │ │ │ ├── godraymodule.cc │ │ │ └── godraymodule.h │ ├── events │ │ ├── event.h │ │ ├── posix │ │ │ ├── posixevent.cc │ │ │ └── posixevent.h │ │ └── win32 │ │ │ ├── win32event.cc │ │ │ └── win32event.h │ ├── frame │ │ ├── batchgroup.cc │ │ ├── batchgroup.h │ │ ├── frame.dox │ │ ├── framealgorithm.cc │ │ ├── framealgorithm.h │ │ ├── framebatch.cc │ │ ├── framebatch.h │ │ ├── framecompute.cc │ │ ├── framecompute.h │ │ ├── frameexternal.cc │ │ ├── frameexternal.h │ │ ├── framegui.cc │ │ ├── framegui.h │ │ ├── framelights.cc │ │ ├── framelights.h │ │ ├── framepass.cc │ │ ├── framepass.h │ │ ├── framepassbase.cc │ │ ├── framepassbase.h │ │ ├── frameposteffect.cc │ │ ├── frameposteffect.h │ │ ├── framerendertargetblit.cc │ │ ├── framerendertargetblit.h │ │ ├── frameserver.cc │ │ ├── frameserver.h │ │ ├── frameshader.cc │ │ ├── frameshader.h │ │ ├── frameshaderloader.cc │ │ ├── frameshaderloader.h │ │ ├── frameshapes.cc │ │ ├── frameshapes.h │ │ ├── frametexclear.cc │ │ ├── frametexclear.h │ │ ├── frametext.cc │ │ ├── frametext.h │ │ ├── lightingmode.cc │ │ ├── lightingmode.h │ │ ├── sortingmode.cc │ │ └── sortingmode.h │ ├── graphics │ │ ├── abstractlightentity.cc │ │ ├── abstractlightentity.h │ │ ├── billboardentity.cc │ │ ├── billboardentity.h │ │ ├── cameraentity.cc │ │ ├── cameraentity.h │ │ ├── camerasettings.cc │ │ ├── camerasettings.h │ │ ├── debug │ │ │ ├── graphicspagehandler.cc │ │ │ └── graphicspagehandler.h │ │ ├── display.cc │ │ ├── display.h │ │ ├── displaysettings.cc │ │ ├── displaysettings.h │ │ ├── globallightentity.cc │ │ ├── globallightentity.h │ │ ├── graphicsentity.cc │ │ ├── graphicsentity.h │ │ ├── graphicsentitytype.h │ │ ├── graphicshandler.cc │ │ ├── graphicshandler.h │ │ ├── graphicsinterface.cc │ │ ├── graphicsinterface.h │ │ ├── graphicsprotocol.cc │ │ ├── graphicsprotocol.h │ │ ├── graphicsprotocol.nidl │ │ ├── graphicsserver.cc │ │ ├── graphicsserver.h │ │ ├── handlers │ │ │ ├── billboardentityhandler.cc │ │ │ ├── cameraentityhandler.cc │ │ │ ├── graphicsentityhandler.cc │ │ │ ├── modelentityhandler.cc │ │ │ └── staticgraphicshandler.cc │ │ ├── lightprobeentity.cc │ │ ├── lightprobeentity.h │ │ ├── meshentity.cc │ │ ├── meshentity.h │ │ ├── modelentity.cc │ │ ├── modelentity.h │ │ ├── mouserenderer.cc │ │ ├── mouserenderer.h │ │ ├── pointlightentity.cc │ │ ├── pointlightentity.h │ │ ├── reloadmodelentity.cc │ │ ├── reloadmodelentity.h │ │ ├── spotlightentity.cc │ │ ├── spotlightentity.h │ │ ├── stage.cc │ │ ├── stage.h │ │ ├── stagebuilders.h │ │ ├── view.cc │ │ └── view.h │ ├── image │ │ ├── bitmapimage.cc │ │ ├── bitmapimage.h │ │ ├── ddsimage.cc │ │ ├── ddsimage.h │ │ ├── imagebase.cc │ │ ├── imagebase.h │ │ ├── imagefactory.cc │ │ ├── imagefactory.h │ │ ├── jpegimage.cc │ │ ├── jpegimage.h │ │ ├── pngimage.cc │ │ └── pngimage.h │ ├── input │ │ ├── base │ │ │ ├── gamepadbase.cc │ │ │ ├── gamepadbase.h │ │ │ ├── inputserverbase.cc │ │ │ ├── inputserverbase.h │ │ │ ├── keyboardbase.cc │ │ │ ├── keyboardbase.h │ │ │ ├── mousebase.cc │ │ │ └── mousebase.h │ │ ├── char.h │ │ ├── gamepad.cc │ │ ├── gamepad.h │ │ ├── glfw │ │ │ ├── glfwinputdisplayeventhandler.cc │ │ │ ├── glfwinputdisplayeventhandler.h │ │ │ ├── glfwinputserver.cc │ │ │ └── glfwinputserver.h │ │ ├── input.dox │ │ ├── inputevent.h │ │ ├── inputhandler.cc │ │ ├── inputhandler.h │ │ ├── inputpriority.h │ │ ├── inputserver.cc │ │ ├── inputserver.h │ │ ├── key.cc │ │ ├── key.h │ │ ├── keyboard.cc │ │ ├── keyboard.h │ │ ├── mouse.cc │ │ ├── mouse.h │ │ ├── mousebutton.cc │ │ ├── mousebutton.h │ │ ├── win32 │ │ │ ├── win32inputdisplayeventhandler.cc │ │ │ ├── win32inputdisplayeventhandler.h │ │ │ ├── win32inputserver.cc │ │ │ ├── win32inputserver.h │ │ │ ├── win32mouse.cc │ │ │ └── win32mouse.h │ │ └── xinput │ │ │ ├── xinputgamepad.cc │ │ │ └── xinputgamepad.h │ ├── instancing │ │ ├── base │ │ │ ├── instancerendererbase.cc │ │ │ ├── instancerendererbase.h │ │ │ ├── instanceserverbase.cc │ │ │ └── instanceserverbase.h │ │ ├── d3d11 │ │ │ ├── d3d11instancerenderer.cc │ │ │ ├── d3d11instancerenderer.h │ │ │ ├── d3d11instanceserver.cc │ │ │ └── d3d11instanceserver.h │ │ ├── instancerenderer.cc │ │ ├── instancerenderer.h │ │ ├── instanceserver.cc │ │ ├── instanceserver.h │ │ └── ogl4 │ │ │ ├── ogl4instancerenderer.cc │ │ │ ├── ogl4instancerenderer.h │ │ │ ├── ogl4instanceserver.cc │ │ │ └── ogl4instanceserver.h │ ├── jobs │ │ └── CMakeLists.txt │ ├── lighting │ │ ├── base │ │ │ ├── lightserverbase.cc │ │ │ ├── lightserverbase.h │ │ │ ├── shadowserverbase.cc │ │ │ └── shadowserverbase.h │ │ ├── csmutil.cc │ │ ├── csmutil.h │ │ ├── environmentprobe.cc │ │ ├── environmentprobe.h │ │ ├── handlers │ │ │ ├── abstractlightentityhandler.cc │ │ │ ├── globallightentityhandler.cc │ │ │ ├── pointlightentityhandler.cc │ │ │ └── spotlightentityhandler.cc │ │ ├── lighting.dox │ │ ├── lightprepass │ │ │ ├── lightprepassserver.cc │ │ │ └── lightprepassserver.h │ │ ├── lightserver.cc │ │ ├── lightserver.h │ │ ├── lighttype.cc │ │ ├── lighttype.h │ │ ├── pssmutil.cc │ │ ├── pssmutil.h │ │ ├── shadowserver.cc │ │ ├── shadowserver.h │ │ ├── sm30 │ │ │ ├── sm30lightserver.cc │ │ │ ├── sm30lightserver.h │ │ │ ├── sm30shadowserver.cc │ │ │ └── sm30shadowserver.h │ │ └── sm50 │ │ │ ├── sm50lightserver.cc │ │ │ ├── sm50lightserver.h │ │ │ ├── sm50shadowserver.cc │ │ │ └── sm50shadowserver.h │ ├── materials │ │ ├── managedsurface.cc │ │ ├── managedsurface.h │ │ ├── material.cc │ │ ├── material.h │ │ ├── materialfeature.cc │ │ ├── materialfeature.h │ │ ├── materialinstance.cc │ │ ├── materialinstance.h │ │ ├── materialloader.cc │ │ ├── materialloader.h │ │ ├── materialpalette.cc │ │ ├── materialpalette.h │ │ ├── materialserver.cc │ │ ├── materialserver.h │ │ ├── materialtype.cc │ │ ├── materialtype.h │ │ ├── materialvariable.cc │ │ ├── materialvariable.h │ │ ├── materialvariableinstance.cc │ │ ├── materialvariableinstance.h │ │ ├── streamsurfaceloader.cc │ │ ├── streamsurfaceloader.h │ │ ├── streamsurfacesaver.cc │ │ ├── streamsurfacesaver.h │ │ ├── surface.cc │ │ ├── surface.h │ │ ├── surfaceconstant.cc │ │ ├── surfaceconstant.h │ │ ├── surfaceconstantinstance.cc │ │ ├── surfaceconstantinstance.h │ │ ├── surfaceinstance.cc │ │ ├── surfaceinstance.h │ │ ├── surfacename.cc │ │ └── surfacename.h │ ├── models │ │ ├── framebatchtype.cc │ │ ├── managedmodel.cc │ │ ├── managedmodel.h │ │ ├── model.cc │ │ ├── model.h │ │ ├── modelinstance.cc │ │ ├── modelinstance.h │ │ ├── modelnode.cc │ │ ├── modelnode.h │ │ ├── modelnodeinstance.cc │ │ ├── modelnodeinstance.h │ │ ├── models.dox │ │ ├── modelserver.cc │ │ ├── modelserver.h │ │ ├── nodes │ │ │ ├── animatornode.cc │ │ │ ├── animatornode.h │ │ │ ├── animatornodeinstance.cc │ │ │ ├── animatornodeinstance.h │ │ │ ├── animkey.h │ │ │ ├── animkeyarray.h │ │ │ ├── animlooptype.h │ │ │ ├── lightnode.cc │ │ │ ├── lightnode.h │ │ │ ├── meshnode.cc │ │ │ ├── meshnode.h │ │ │ ├── meshnodeinstance.cc │ │ │ ├── meshnodeinstance.h │ │ │ ├── shapenode.cc │ │ │ ├── shapenode.h │ │ │ ├── shapenodeinstance.cc │ │ │ ├── shapenodeinstance.h │ │ │ ├── statenode.cc │ │ │ ├── statenode.h │ │ │ ├── statenodeinstance.cc │ │ │ ├── statenodeinstance.h │ │ │ ├── transformnode.cc │ │ │ ├── transformnode.h │ │ │ ├── transformnodeinstance.cc │ │ │ └── transformnodeinstance.h │ │ ├── streammodelloader.cc │ │ ├── streammodelloader.h │ │ ├── visresolvecontainer.h │ │ ├── visresolver.cc │ │ └── visresolver.h │ ├── particles │ │ ├── base │ │ │ ├── particlerendererbase.cc │ │ │ ├── particlerendererbase.h │ │ │ ├── particlerenderinfobase.h │ │ │ ├── particlesysteminstancebase.cc │ │ │ └── particlesysteminstancebase.h │ │ ├── d3d11 │ │ │ ├── d3d11particlerenderer.cc │ │ │ ├── d3d11particlerenderer.h │ │ │ ├── d3d11particlesysteminstance.cc │ │ │ └── d3d11particlesysteminstance.h │ │ ├── d3d9 │ │ │ ├── d3d9particlerenderer.cc │ │ │ ├── d3d9particlerenderer.h │ │ │ ├── d3d9particlesysteminstance.cc │ │ │ └── d3d9particlesysteminstance.h │ │ ├── emitterattrs.cc │ │ ├── emitterattrs.h │ │ ├── emittermesh.cc │ │ ├── emittermesh.h │ │ ├── envelopecurve.cc │ │ ├── envelopecurve.h │ │ ├── envelopesamplebuffer.cc │ │ ├── envelopesamplebuffer.h │ │ ├── jobs │ │ │ └── particlejob.cc │ │ ├── ogl4 │ │ │ ├── ogl4particlerenderer.cc │ │ │ ├── ogl4particlerenderer.h │ │ │ ├── ogl4particlesysteminstance.cc │ │ │ └── ogl4particlesysteminstance.h │ │ ├── particle.h │ │ ├── particlerenderer.cc │ │ ├── particlerenderer.h │ │ ├── particlerenderinfo.h │ │ ├── particleserver.cc │ │ ├── particleserver.h │ │ ├── particlesystem.cc │ │ ├── particlesystem.h │ │ ├── particlesysteminstance.cc │ │ ├── particlesysteminstance.h │ │ ├── particlesystemnode.cc │ │ ├── particlesystemnode.h │ │ ├── particlesystemnodeinstance.cc │ │ ├── particlesystemnodeinstance.h │ │ └── particlesystemstate.h │ ├── physics │ │ ├── CMakeLists.txt │ │ ├── base │ │ │ ├── basebody.cc │ │ │ ├── basebody.h │ │ │ ├── basecharacter.cc │ │ │ ├── basecharacter.h │ │ │ ├── basecollider.cc │ │ │ ├── basecollider.h │ │ │ ├── basecontact.cc │ │ │ ├── basecontact.h │ │ │ ├── basecontactlistener.cc │ │ │ ├── basecontactlistener.h │ │ │ ├── basecontroller.cc │ │ │ ├── basecontroller.h │ │ │ ├── basejoint.cc │ │ │ ├── basejoint.h │ │ │ ├── basematerial.cc │ │ │ ├── basematerial.h │ │ │ ├── baseprobe.cc │ │ │ ├── baseprobe.h │ │ │ ├── basescene.cc │ │ │ ├── basescene.h │ │ │ ├── basestatic.cc │ │ │ ├── basestatic.h │ │ │ ├── basevehicle.cc │ │ │ ├── basevehicle.h │ │ │ ├── basevisualdebuggerserver.cc │ │ │ ├── basevisualdebuggerserver.h │ │ │ ├── physicsserverbase.cc │ │ │ └── physicsserverbase.h │ │ ├── bullet │ │ │ ├── bulletbody.cc │ │ │ ├── bulletbody.h │ │ │ ├── bulletcharacter.cc │ │ │ ├── bulletcharacter.h │ │ │ ├── bulletcollider.cc │ │ │ ├── bulletcollider.h │ │ │ ├── bullethinge.cc │ │ │ ├── bullethinge.h │ │ │ ├── bulletjoint.cc │ │ │ ├── bulletjoint.h │ │ │ ├── bulletphysicsmesh.cc │ │ │ ├── bulletphysicsmesh.h │ │ │ ├── bulletphysicsserver.cc │ │ │ ├── bulletphysicsserver.h │ │ │ ├── bulletpointtopoint.cc │ │ │ ├── bulletpointtopoint.h │ │ │ ├── bulletprobe.cc │ │ │ ├── bulletprobe.h │ │ │ ├── bulletscene.cc │ │ │ ├── bulletscene.h │ │ │ ├── bulletslider.cc │ │ │ ├── bulletslider.h │ │ │ ├── bulletstatic.cc │ │ │ ├── bulletstatic.h │ │ │ ├── bulletuniversaljoint.cc │ │ │ ├── bulletuniversaljoint.h │ │ │ ├── conversion.h │ │ │ ├── debugdrawer.cc │ │ │ ├── debugdrawer.h │ │ │ ├── nebulamotionstate.h │ │ │ └── raycallbacks.h │ │ ├── character.cc │ │ ├── character.h │ │ ├── collider.cc │ │ ├── collider.h │ │ ├── contact.cc │ │ ├── contact.h │ │ ├── contactlistener.cc │ │ ├── contactlistener.h │ │ ├── controller.cc │ │ ├── controller.h │ │ ├── filterset.cc │ │ ├── filterset.h │ │ ├── havok │ │ │ ├── __n3_wiki_havok_page_draft.txt │ │ │ ├── conversion.h │ │ │ ├── havokbody.cc │ │ │ ├── havokbody.h │ │ │ ├── havokchainjoint.cc │ │ │ ├── havokchainjoint.h │ │ │ ├── havokcharacterbase.cc │ │ │ ├── havokcharacterbase.h │ │ │ ├── havokcharacterphantom.cc │ │ │ ├── havokcharacterphantom.h │ │ │ ├── havokcharacterrigidbody.cc │ │ │ ├── havokcharacterrigidbody.h │ │ │ ├── havokcollider.cc │ │ │ ├── havokcollider.h │ │ │ ├── havokcontact.cc │ │ │ ├── havokcontact.h │ │ │ ├── havokcontactlistener.cc │ │ │ ├── havokcontactlistener.h │ │ │ ├── havokdebugdrawer.cc │ │ │ ├── havokdebugdrawer.h │ │ │ ├── havokhinge.cc │ │ │ ├── havokhinge.h │ │ │ ├── havokjoint.cc │ │ │ ├── havokjoint.h │ │ │ ├── havokphysicsmesh.cc │ │ │ ├── havokphysicsmesh.h │ │ │ ├── havokphysicsserver.cc │ │ │ ├── havokphysicsserver.h │ │ │ ├── havokpointtopoint.cc │ │ │ ├── havokpointtopoint.h │ │ │ ├── havokprobe.cc │ │ │ ├── havokprobe.h │ │ │ ├── havokragdolljoint.cc │ │ │ ├── havokragdolljoint.h │ │ │ ├── havokscene.cc │ │ │ ├── havokscene.h │ │ │ ├── havokslider.cc │ │ │ ├── havokslider.h │ │ │ ├── havokstatic.cc │ │ │ ├── havokstatic.h │ │ │ ├── havokuniversaljoint.cc │ │ │ ├── havokuniversaljoint.h │ │ │ ├── havokutil.cc │ │ │ ├── havokutil.h │ │ │ ├── havokvisualdebuggerserver.cc │ │ │ └── havokvisualdebuggerserver.h │ │ ├── joint.cc │ │ ├── joint.h │ │ ├── joints.h │ │ ├── joints │ │ │ ├── basechainjoint.cc │ │ │ ├── basechainjoint.h │ │ │ ├── basehinge.cc │ │ │ ├── basehinge.h │ │ │ ├── basepointtopoint.cc │ │ │ ├── basepointtopoint.h │ │ │ ├── baseragdolljoint.cc │ │ │ ├── baseragdolljoint.h │ │ │ ├── baseslider.cc │ │ │ ├── baseslider.h │ │ │ ├── baseuniversaljoint.cc │ │ │ ├── baseuniversaljoint.h │ │ │ ├── chainjoint.cc │ │ │ ├── chainjoint.h │ │ │ ├── hingejoint.cc │ │ │ ├── hingejoint.h │ │ │ ├── pointtopointjoint.cc │ │ │ ├── pointtopointjoint.h │ │ │ ├── ragdolljoint.cc │ │ │ ├── ragdolljoint.h │ │ │ ├── sliderjoint.cc │ │ │ ├── sliderjoint.h │ │ │ ├── universaljoint.cc │ │ │ └── universaljoint.h │ │ ├── material.cc │ │ ├── material.h │ │ ├── materialtable.cc │ │ ├── materialtable.h │ │ ├── model │ │ │ ├── physicsmodel.cc │ │ │ ├── physicsmodel.h │ │ │ ├── templates.cc │ │ │ └── templates.h │ │ ├── physicsbody.cc │ │ ├── physicsbody.h │ │ ├── physicsobject.cc │ │ ├── physicsobject.h │ │ ├── physicsprobe.cc │ │ ├── physicsprobe.h │ │ ├── physicsserver.cc │ │ ├── physicsserver.h │ │ ├── physx │ │ │ ├── physxbody.cc │ │ │ ├── physxbody.h │ │ │ ├── physxcharacter.cc │ │ │ ├── physxcharacter.h │ │ │ ├── physxcollider.cc │ │ │ ├── physxcollider.h │ │ │ ├── physxcontact.cc │ │ │ ├── physxcontact.h │ │ │ ├── physxcontactlistener.cc │ │ │ ├── physxcontactlistener.h │ │ │ ├── physxcontroller.cc │ │ │ ├── physxcontroller.h │ │ │ ├── physxhinge.cc │ │ │ ├── physxhinge.h │ │ │ ├── physxjoint.cc │ │ │ ├── physxjoint.h │ │ │ ├── physxmaterial.cc │ │ │ ├── physxmaterial.h │ │ │ ├── physxphysicsmesh.cc │ │ │ ├── physxphysicsmesh.h │ │ │ ├── physxphysicsserver.cc │ │ │ ├── physxphysicsserver.h │ │ │ ├── physxpointtopoint.cc │ │ │ ├── physxpointtopoint.h │ │ │ ├── physxprobe.cc │ │ │ ├── physxprobe.h │ │ │ ├── physxscene.cc │ │ │ ├── physxscene.h │ │ │ ├── physxslider.cc │ │ │ ├── physxslider.h │ │ │ ├── physxstatic.cc │ │ │ ├── physxstatic.h │ │ │ ├── physxuniversaljoint.cc │ │ │ ├── physxuniversaljoint.h │ │ │ ├── physxutils.h │ │ │ ├── physxvehicle.cc │ │ │ ├── physxvehicle.h │ │ │ ├── physxvisualdebuggerserver.cc │ │ │ └── physxvisualdebuggerserver.h │ │ ├── resource │ │ │ ├── managedphysicsmesh.cc │ │ │ ├── managedphysicsmesh.h │ │ │ ├── managedphysicsmodel.cc │ │ │ ├── managedphysicsmodel.h │ │ │ ├── physicsmesh.cc │ │ │ ├── physicsmesh.h │ │ │ ├── physicsmeshbase.cc │ │ │ ├── physicsmeshbase.h │ │ │ ├── streamphysicsmeshloader.cc │ │ │ ├── streamphysicsmeshloader.h │ │ │ ├── streamphysicsmodelloader.cc │ │ │ └── streamphysicsmodelloader.h │ │ ├── scene.cc │ │ ├── scene.h │ │ ├── staticobject.cc │ │ ├── staticobject.h │ │ ├── userdata.h │ │ ├── util │ │ │ ├── areaimpulse.cc │ │ │ ├── areaimpulse.h │ │ │ ├── explosionareaimpulse.cc │ │ │ ├── explosionareaimpulse.h │ │ │ ├── mousegripper.cc │ │ │ └── mousegripper.h │ │ ├── vehicle.cc │ │ ├── vehicle.h │ │ ├── visualdebuggerserver.cc │ │ └── visualdebuggerserver.h │ ├── picking │ │ ├── pickingserver.cc │ │ └── pickingserver.h │ ├── render_classregistry.h │ ├── rendermodules │ │ ├── rendermodule.cc │ │ ├── rendermodule.h │ │ └── rt │ │ │ ├── rtplugin.cc │ │ │ ├── rtplugin.h │ │ │ ├── rtpluginregistry.cc │ │ │ └── rtpluginregistry.h │ ├── renderutil │ │ ├── drawfullscreenquad.cc │ │ ├── drawfullscreenquad.h │ │ ├── drawquad.cc │ │ ├── drawquad.h │ │ ├── freecamerautil.cc │ │ ├── freecamerautil.h │ │ ├── mayacamerautil.cc │ │ ├── mayacamerautil.h │ │ ├── mouserayutil.cc │ │ ├── mouserayutil.h │ │ ├── nodelookuputil.cc │ │ ├── nodelookuputil.h │ │ └── renderutil.dox │ ├── resources │ │ ├── d3d11streaming │ │ │ ├── d3d11texturecreator.cc │ │ │ ├── d3d11texturecreator.h │ │ │ ├── d3d11textureinfo.cc │ │ │ ├── d3d11textureinfo.h │ │ │ ├── d3d11texturestreamer.cc │ │ │ └── d3d11texturestreamer.h │ │ ├── d3d9streaming │ │ │ ├── d3d9texturecreator.cc │ │ │ ├── d3d9texturecreator.h │ │ │ ├── d3d9textureinfo.cc │ │ │ ├── d3d9textureinfo.h │ │ │ ├── d3d9texturestreamer.cc │ │ │ └── d3d9texturestreamer.h │ │ ├── managedmesh.cc │ │ ├── managedmesh.h │ │ ├── managedresource.cc │ │ ├── managedresource.h │ │ ├── managedtexture.cc │ │ ├── managedtexture.h │ │ ├── ogl4streaming │ │ │ ├── ogl4texturecreator.cc │ │ │ ├── ogl4texturecreator.h │ │ │ ├── ogl4textureinfo.cc │ │ │ ├── ogl4textureinfo.h │ │ │ ├── ogl4texturestreamer.cc │ │ │ └── ogl4texturestreamer.h │ │ ├── resource.cc │ │ ├── resource.h │ │ ├── resourceallocator.cc │ │ ├── resourceallocator.h │ │ ├── resourcedictionary.cc │ │ ├── resourcedictionary.h │ │ ├── resourceid.h │ │ ├── resourceloader.cc │ │ ├── resourceloader.h │ │ ├── resourcelump.cc │ │ ├── resourcelump.h │ │ ├── resourcemanager.cc │ │ ├── resourcemanager.h │ │ ├── resourcemapper.cc │ │ ├── resourcemapper.h │ │ ├── resources.dox │ │ ├── resourcesaver.cc │ │ ├── resourcesaver.h │ │ ├── simpleresourcemapper.cc │ │ ├── simpleresourcemapper.h │ │ ├── streaming │ │ │ ├── loadingresource.cc │ │ │ ├── loadingresource.h │ │ │ ├── poolloadingresource.cc │ │ │ ├── poolloadingresource.h │ │ │ ├── poolresourcemapper.cc │ │ │ ├── poolresourcemapper.h │ │ │ ├── poolscheduler.cc │ │ │ ├── poolscheduler.h │ │ │ ├── resourcecreator.cc │ │ │ ├── resourcecreator.h │ │ │ ├── resourcedictionaryreader.cc │ │ │ ├── resourcedictionaryreader.h │ │ │ ├── resourceinfo.cc │ │ │ ├── resourceinfo.h │ │ │ ├── resourcepool.cc │ │ │ ├── resourcepool.h │ │ │ ├── resourcerequestinfo.cc │ │ │ ├── resourcerequestinfo.h │ │ │ ├── resourcescheduler.cc │ │ │ ├── resourcescheduler.h │ │ │ ├── resourceslot.cc │ │ │ ├── resourceslot.h │ │ │ ├── streamingresourcemapper.cc │ │ │ ├── streamingresourcemapper.h │ │ │ ├── streamingtexturepagehandler.cc │ │ │ ├── streamingtexturepagehandler.h │ │ │ ├── texturecreator.cc │ │ │ ├── texturecreator.h │ │ │ ├── textureinfo.h │ │ │ ├── texturepoolmapperscheduler.cc │ │ │ ├── texturepoolmapperscheduler.h │ │ │ ├── texturerequestinfo.h │ │ │ ├── texturestreamer.cc │ │ │ └── texturestreamer.h │ │ ├── streamresourceloader.cc │ │ └── streamresourceloader.h │ ├── stdneb.cc │ ├── stdneb.h │ └── visibility │ │ ├── handler │ │ ├── visibilityboxhandler.cc │ │ ├── visibilityclusterhandler.cc │ │ └── visibilityhandler.cc │ │ ├── jobs │ │ ├── visibilityboxsystemjob.cc │ │ └── visibilityquadtreejob.cc │ │ ├── observercontext.cc │ │ ├── observercontext.h │ │ ├── visibilitychecker.cc │ │ ├── visibilitychecker.h │ │ ├── visibilitycontainer.cc │ │ ├── visibilitycontainer.h │ │ ├── visibilitycontext.cc │ │ ├── visibilitycontext.h │ │ ├── visibilityprotocol.nidl │ │ ├── visibilityquery.cc │ │ ├── visibilityquery.h │ │ └── visibilitysystems │ │ ├── visibilitybox.cc │ │ ├── visibilitybox.h │ │ ├── visibilityboxsystem.cc │ │ ├── visibilityboxsystem.h │ │ ├── visibilitycell.cc │ │ ├── visibilitycell.h │ │ ├── visibilitycluster.cc │ │ ├── visibilitycluster.h │ │ ├── visibilityclustersystem.cc │ │ ├── visibilityclustersystem.h │ │ ├── visibilityquadtree.cc │ │ ├── visibilityquadtree.h │ │ ├── visibilitysystembase.cc │ │ └── visibilitysystembase.h ├── res │ ├── nebula.ico │ └── nebula.rc ├── tests │ ├── CMakeLists.txt │ ├── faudiotestsimple │ │ ├── CMakeLists.txt │ │ ├── faudioapplication.cc │ │ ├── faudioapplication.h │ │ └── faudiotestsimple.cc │ ├── forestviewer │ │ ├── CMakeLists.txt │ │ ├── forestviewer.cc │ │ ├── forestviewerapplication.cc │ │ └── forestviewerapplication.h │ ├── havok_helloworld │ │ ├── CMakeLists.txt │ │ ├── havokhelloworldapplication.cc │ │ ├── havokhelloworldapplication.h │ │ ├── havokhelloworldmain.cc │ │ ├── havokhelloworldstate.cc │ │ └── havokhelloworldstate.h │ ├── havok_load_asset │ │ ├── CMakeLists.txt │ │ ├── havokloadassetapplication.cc │ │ ├── havokloadassetapplication.h │ │ ├── havokloadassetmain.cc │ │ ├── havokloadassetstate.cc │ │ └── havokloadassetstate.h │ ├── havok_player_test │ │ ├── CMakeLists.txt │ │ ├── havokplayertestapplication.cc │ │ ├── havokplayertestapplication.h │ │ ├── havokplayertestmain.cc │ │ ├── havokplayerteststate.cc │ │ └── havokplayerteststate.h │ ├── inputtest │ │ ├── CMakeLists.txt │ │ └── inputtest.cc │ ├── jobstest │ │ ├── CMakeLists.txt │ │ ├── jobstest.cc │ │ ├── jobstestapplication.cc │ │ ├── jobstestapplication.h │ │ ├── testdata.h │ │ └── win360jobs │ │ │ ├── win360_testjob.cc │ │ │ └── win360_transform.cc │ ├── mathtest │ │ ├── CMakeLists.txt │ │ ├── float4test.cc │ │ ├── float4test.h │ │ ├── main.cc │ │ ├── mathtestutil.h │ │ ├── matrix44test.cc │ │ ├── matrix44test.h │ │ ├── planetest.cc │ │ ├── planetest.h │ │ ├── pointtest.cc │ │ ├── pointtest.h │ │ ├── quaterniontest.cc │ │ ├── quaterniontest.h │ │ ├── scalartest.cc │ │ ├── scalartest.h │ │ ├── stackalignment.h │ │ ├── vectortest.cc │ │ └── vectortest.h │ ├── multiplayerconnectiontest │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── multiplayerconnectiontest.cc │ │ ├── multiplayerconnectiontest.h │ │ ├── multiplayertestnotificationhandler.cc │ │ └── multiplayertestnotificationhandler.h │ ├── spumathtest │ │ ├── CMakeLists.txt │ │ ├── job │ │ │ ├── float4test.cc │ │ │ ├── float4test.h │ │ │ ├── jobspumathtest.cc │ │ │ ├── mathtestutil.h │ │ │ ├── matrix44test.cc │ │ │ ├── matrix44test.h │ │ │ ├── planetest.cc │ │ │ ├── planetest.h │ │ │ ├── pointtest.cc │ │ │ ├── pointtest.h │ │ │ ├── quaterniontest.cc │ │ │ ├── quaterniontest.h │ │ │ ├── stackalignment.h │ │ │ ├── stackdebug.cc │ │ │ ├── stackdebug.h │ │ │ ├── testcase.cc │ │ │ ├── testcase.h │ │ │ ├── testrunner.cc │ │ │ ├── testrunner.h │ │ │ ├── vectortest.cc │ │ │ └── vectortest.h │ │ ├── spumathtest.cc │ │ ├── spumathtestapplication.cc │ │ └── spumathtestapplication.h │ ├── stdneb.cc │ ├── stdneb.h │ ├── stresstestvieweropenclose │ │ ├── CMakeLists.txt │ │ └── stresstestvieweropenclose.cc │ ├── testaddon │ │ ├── CMakeLists.txt │ │ ├── databasetest.cc │ │ ├── databasetest.h │ │ ├── datasettest.cc │ │ ├── datasettest.h │ │ ├── dbattrs.cc │ │ ├── dbattrs.h │ │ └── main.cc │ ├── testbase │ │ ├── CMakeLists.txt │ │ ├── stackdebug.cc │ │ ├── stackdebug.h │ │ ├── test.dox │ │ ├── testcase.cc │ │ ├── testcase.h │ │ ├── testrunner.cc │ │ └── testrunner.h │ ├── testfoundation │ │ ├── CMakeLists.txt │ │ ├── arraytest.cc │ │ ├── arraytest.h │ │ ├── binaryreaderwritertest.cc │ │ ├── binaryreaderwritertest.h │ │ ├── bxmlreadertest.cc │ │ ├── bxmlreadertest.h │ │ ├── cmdlineargstest.cc │ │ ├── cmdlineargstest.h │ │ ├── delegatetabletest.cc │ │ ├── delegatetabletest.h │ │ ├── delegatetest.cc │ │ ├── delegatetest.h │ │ ├── dictionarytest.cc │ │ ├── dictionarytest.h │ │ ├── excelxmlreadertest.cc │ │ ├── excelxmlreadertest.h │ │ ├── fileservertest.cc │ │ ├── fileservertest.h │ │ ├── fixedarraytest.cc │ │ ├── fixedarraytest.h │ │ ├── fixedtabletest.cc │ │ ├── fixedtabletest.h │ │ ├── float4test.cc │ │ ├── float4test.h │ │ ├── guidtest.cc │ │ ├── guidtest.h │ │ ├── hashtabletest.cc │ │ ├── hashtabletest.h │ │ ├── httpclienttest.cc │ │ ├── httpclienttest.h │ │ ├── iointerfacetest.cc │ │ ├── iointerfacetest.h │ │ ├── listtest.cc │ │ ├── listtest.h │ │ ├── luaservertest.cc │ │ ├── luaservertest.h │ │ ├── main.cc │ │ ├── matrix44test.cc │ │ ├── matrix44test.h │ │ ├── mediatypetest.cc │ │ ├── mediatypetest.h │ │ ├── memorypooltest.cc │ │ ├── memorypooltest.h │ │ ├── memorystreamtest.cc │ │ ├── memorystreamtest.h │ │ ├── messagereaderwritertest.cc │ │ ├── messagereaderwritertest.h │ │ ├── queuetest.cc │ │ ├── queuetest.h │ │ ├── ringbuffertest.cc │ │ ├── ringbuffertest.h │ │ ├── runlengthcodectest.cc │ │ ├── runlengthcodectest.h │ │ ├── simpletreetest.cc │ │ ├── simpletreetest.h │ │ ├── stacktest.cc │ │ ├── stacktest.h │ │ ├── streamservertest.cc │ │ ├── streamservertest.h │ │ ├── stringtest.cc │ │ ├── stringtest.h │ │ ├── textreaderwritertest.cc │ │ ├── textreaderwritertest.h │ │ ├── threadtest.cc │ │ ├── threadtest.h │ │ ├── uritest.cc │ │ ├── uritest.h │ │ ├── varianttest.cc │ │ ├── varianttest.h │ │ ├── xmlreaderwritertest.cc │ │ ├── xmlreaderwritertest.h │ │ ├── zipfstest.cc │ │ └── zipfstest.h │ ├── testrender │ │ ├── CMakeLists.txt │ │ ├── animsamplemixtest.cc │ │ ├── animsamplemixtest.h │ │ ├── animsequencertest.cc │ │ ├── animsequencertest.h │ │ ├── attributecontainertest.cc │ │ ├── attributecontainertest.h │ │ ├── attributetabletest.cc │ │ ├── attributetabletest.h │ │ ├── coregraphicstest.cc │ │ ├── coregraphicstest.h │ │ ├── loadanimationtest.cc │ │ ├── loadanimationtest.h │ │ ├── loadmeshtest.cc │ │ ├── loadmeshtest.h │ │ ├── loadtexturetest.cc │ │ ├── loadtexturetest.h │ │ ├── main.cc │ │ ├── modelloadsavetest.cc │ │ ├── modelloadsavetest.h │ │ ├── n2modelloadertest.cc │ │ ├── n2modelloadertest.h │ │ ├── shadertest.cc │ │ ├── shadertest.h │ │ ├── simplemeshmappertest.cc │ │ ├── simplemeshmappertest.h │ │ ├── simpletexturemappertest.cc │ │ ├── simpletexturemappertest.h │ │ ├── testattrs.cc │ │ └── testattrs.h │ ├── testscript │ │ ├── CMakeLists.txt │ │ ├── scripttestapplication.cc │ │ ├── scripttestapplication.h │ │ └── testscript.cc │ ├── testtoolkit │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── meshbuildertest.cc │ │ ├── meshbuildertest.h │ │ ├── meshbuildervertextest.cc │ │ └── meshbuildervertextest.h │ ├── testwin32 │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── win32registrytest.cc │ │ └── win32registrytest.h │ ├── viewerstresstest │ │ ├── CMakeLists.txt │ │ ├── viewerstresstest.cc │ │ ├── viewerstresstestapplication.cc │ │ └── viewerstresstestapplication.h │ ├── zipstresstest │ │ ├── CMakeLists.txt │ │ ├── zipstresstest.cc │ │ ├── zipstresstestapplication.cc │ │ └── zipstresstestapplication.h │ └── ziptest │ │ ├── CMakeLists.txt │ │ ├── ziptest.cc │ │ ├── ziptestapplication.cc │ │ └── ziptestapplication.h └── toolkit │ ├── CMakeLists.txt │ ├── animconverter3 │ ├── CMakeLists.txt │ ├── animconverter3.cc │ ├── animconverterapp.cc │ └── animconverterapp.h │ ├── archiver3 │ ├── CMakeLists.txt │ ├── archiver3.cc │ ├── archiverapp.cc │ └── archiverapp.h │ ├── assetbatcher │ ├── CMakeLists.txt │ ├── assetbatcher.cc │ ├── assetbatcherapp.cc │ └── assetbatcherapp.h │ ├── audiobatcher3 │ ├── CMakeLists.txt │ ├── audiobatcher3.cc │ ├── audiobatcherapp.cc │ └── audiobatcherapp.h │ ├── binaryxmlconverter │ ├── CMakeLists.txt │ ├── binaryxmlconverter3.cc │ ├── binaryxmlconverterapp.cc │ └── binaryxmlconverterapp.h │ ├── buildclassregistryheader │ ├── CMakeLists.txt │ └── buildclassregistryheader.cc │ ├── buildresdict3 │ ├── CMakeLists.txt │ ├── buildresdict3.cc │ ├── resourcedictionaryapp.cc │ └── resourcedictionaryapp.h │ ├── charxmltodb3 │ ├── CMakeLists.txt │ ├── attributes.cc │ ├── attributes.h │ ├── charxmltodb.cc │ ├── charxmltodbapplication.cc │ └── charxmltodbapplication.h │ ├── convertfbxtonax3 │ ├── CMakeLists.txt │ ├── convertfbxtonax3.cc │ ├── convertfbxtonax3app.cc │ ├── convertfbxtonax3app.h │ ├── fbx_reader.cc │ ├── fbx_reader.h │ ├── modelbuilder.cc │ ├── modelbuilder.h │ ├── modelbuildersaver.cc │ ├── modelbuildersaver.h │ └── nax3_writer.h │ ├── countlines3 │ ├── CMakeLists.txt │ ├── countlines3.cc │ ├── countlinesapp.cc │ └── countlinesapp.h │ ├── distributedjobservice │ ├── CMakeLists.txt │ ├── distributedjobservice.cc │ ├── distributedjobserviceapp.cc │ └── distributedjobserviceapp.h │ ├── distributedtesttool │ ├── CMakeLists.txt │ ├── distributedtesttool.cc │ ├── distributedtesttoolapp.cc │ └── distributedtesttoolapp.h │ ├── distributedtools │ ├── distributedjobs │ │ ├── distributedappjob.cc │ │ ├── distributedappjob.h │ │ ├── distributedcreateemptyfilejob.cc │ │ ├── distributedcreateemptyfilejob.h │ │ ├── distributeddeletedirectorycontentjob.cc │ │ ├── distributeddeletedirectorycontentjob.h │ │ ├── distributedjob.cc │ │ └── distributedjob.h │ ├── distributedjobscheduler.cc │ ├── distributedjobscheduler.h │ ├── distributedtoolkitapp.cc │ ├── distributedtoolkitapp.h │ ├── remotejobservice.cc │ ├── remotejobservice.h │ ├── shareddircontrol.cc │ ├── shareddircontrol.h │ ├── shareddircreator.cc │ ├── shareddircreator.h │ ├── shareddirfilesystem.cc │ ├── shareddirfilesystem.h │ ├── shareddirftp.cc │ └── shareddirftp.h │ ├── editorfeatures │ ├── CMakeLists.txt │ ├── editorbasegamefeature.cc │ ├── editorbasegamefeature.h │ ├── editorblueprintmanager.cc │ └── editorblueprintmanager.h │ ├── fbxbatcher3 │ ├── CMakeLists.txt │ ├── fbxbatcher3.cc │ ├── fbxbatcher3app.cc │ └── fbxbatcher3app.h │ ├── gamebatcher │ ├── CMakeLists.txt │ ├── gamebatcher.cc │ ├── gamebatcherapp.cc │ └── gamebatcherapp.h │ ├── gamebatcher3 │ ├── CMakeLists.txt │ ├── gamebatcher3.cc │ ├── gamebatcher3app.cc │ └── gamebatcher3app.h │ ├── genrandtable │ ├── CMakeLists.txt │ ├── genrandtable.cc │ ├── genrandtableapplication.cc │ └── genrandtableapplication.h │ ├── guibatcher3 │ ├── CMakeLists.txt │ ├── guibatcher3.cc │ ├── guibatcher3app.cc │ └── guibatcher3app.h │ ├── idlcompiler │ ├── CMakeLists.txt │ ├── idlc.cc │ ├── idlcompiler.cc │ ├── idlcompiler.h │ └── stdneb.cc │ ├── levelviewer │ ├── CMakeLists.txt │ ├── NV.ico │ ├── gamestates │ │ ├── reloadstate.cc │ │ ├── reloadstate.h │ │ ├── viewergamestate.cc │ │ └── viewergamestate.h │ ├── levelviewer.cc │ ├── levelviewer.rc │ ├── levelviewerapplication.cc │ ├── levelviewerapplication.h │ ├── levelviewerfactorymanager.cc │ ├── levelviewerfactorymanager.h │ └── nidl │ │ └── levelviewercommands.nidl │ ├── modelbatcher3 │ ├── CMakeLists.txt │ ├── modelbatcher3.cc │ ├── modelbatcher3app.cc │ └── modelbatcher3app.h │ ├── n2tableconverter │ ├── CMakeLists.txt │ ├── n2tableconverter.cc │ ├── n2tableconverterapp.cc │ ├── n2tableconverterapp.h │ ├── n2xmltableconverter.cc │ └── n2xmltableconverter.h │ ├── n3viewer │ ├── CMakeLists.txt │ ├── n3viewer.cc │ ├── n3viewerapp.cc │ ├── n3viewerapp.h │ ├── n3viewerremotecommandhandler.cc │ └── n3viewerremotecommandhandler.h │ ├── nsc3 │ ├── CMakeLists.txt │ ├── nsc3.cc │ ├── shader.cc │ ├── shader.h │ ├── shaderbinding.cc │ ├── shaderbinding.h │ ├── shadercodegenerator.cc │ ├── shadercodegenerator.h │ ├── shadercompiler.cc │ ├── shadercompiler.h │ ├── shadercompilerapplication.cc │ ├── shadercompilerapplication.h │ ├── shaderfragment.cc │ ├── shaderfragment.h │ ├── shaderfragmentgroup.cc │ ├── shaderfragmentgroup.h │ ├── shaderfragmentmanager.cc │ ├── shaderfragmentmanager.h │ ├── shadernode.cc │ ├── shadernode.h │ ├── shaderparam.cc │ ├── shaderparam.h │ ├── shadersampler.cc │ ├── shadersampler.h │ ├── shadersamplermanager.cc │ ├── shadersamplermanager.h │ ├── shaderslot.cc │ └── shaderslot.h │ ├── nsh3 │ ├── CMakeLists.txt │ ├── nsh3.cc │ ├── shellapplication.cc │ └── shellapplication.h │ ├── sequenceconverter3 │ ├── CMakeLists.txt │ ├── sequenceconverter3.cc │ ├── sequenceconverterapp.cc │ └── sequenceconverterapp.h │ ├── setup │ ├── CMakeLists.txt │ ├── setup.cc │ ├── setupapplication.cc │ └── setupapplication.h │ ├── shaderbatcher │ ├── CMakeLists.txt │ ├── shaderbatcher.cc │ ├── shaderbatcherapp.cc │ └── shaderbatcherapp.h │ ├── shaderbatcher3 │ ├── CMakeLists.txt │ ├── shaderbatcher3.cc │ ├── shaderbatcherapp.cc │ └── shaderbatcherapp.h │ ├── shaderdesignerviewer │ ├── CMakeLists.txt │ ├── handlers │ │ ├── nodyhandler.cc │ │ └── nodyhandler.h │ ├── shaderdesignerviewer.cc │ ├── shaderdesignerviewerapplication.cc │ └── shaderdesignerviewerapplication.h │ ├── sm5compiler │ ├── CMakeLists.txt │ ├── shadercompiler.cc │ ├── shadercompiler.h │ └── sm5compiler.cc │ ├── stdneb.cc │ ├── stdneb.h │ ├── suiconverter3 │ ├── CMakeLists.txt │ ├── suiconverter3.cc │ ├── suiconverterapp.cc │ └── suiconverterapp.h │ ├── synctool3 │ ├── CMakeLists.txt │ ├── synctool3.cc │ ├── synctoolapp.cc │ └── synctoolapp.h │ ├── texturebatcher3 │ ├── CMakeLists.txt │ ├── texturebatcher3.cc │ ├── texturebatcherapp.cc │ └── texturebatcherapp.h │ └── toolkitutil │ ├── CMakeLists.txt │ ├── animutil │ ├── animbuilder.cc │ ├── animbuilder.h │ ├── animbuilderclip.cc │ ├── animbuilderclip.h │ ├── animbuildercurve.cc │ ├── animbuildercurve.h │ ├── animbuilderloader.cc │ ├── animbuilderloader.h │ ├── animbuildersaver.cc │ ├── animbuildersaver.h │ ├── animconverter.cc │ └── animconverter.h │ ├── applauncher.cc │ ├── applauncher.h │ ├── asset │ ├── assetexporter.cc │ └── assetexporter.h │ ├── assetfile.cc │ ├── assetfile.h │ ├── assetregistry.cc │ ├── assetregistry.h │ ├── assetupdater.cc │ ├── assetupdater.h │ ├── audioexporter.cc │ ├── audioexporter.h │ ├── base │ ├── applauncherbase.h │ ├── exporterbase.cc │ ├── exporterbase.h │ └── exporttypes.h │ ├── binarymodelwriter.cc │ ├── binarymodelwriter.h │ ├── bullet │ ├── physicsexporter.cc │ └── physicsexporter.h │ ├── converters │ ├── binaryxmlconverter.cc │ ├── binaryxmlconverter.h │ ├── n2batchconverter.cc │ ├── n2batchconverter.h │ ├── n2converter.cc │ └── n2converter.h │ ├── fbx │ ├── attic │ │ ├── character.cc │ │ ├── character.h │ │ ├── fbxanimationparser.cc │ │ ├── fbxanimationparser.h │ │ ├── fbxcharacterparser.cc │ │ ├── fbxcharacterparser.h │ │ ├── fbxexporter.cc │ │ ├── fbxexporter.h │ │ ├── fbxmodelparser.cc │ │ ├── fbxmodelparser.h │ │ ├── fbxparserbase.cc │ │ ├── fbxparserbase.h │ │ ├── fbxskeletonparser.cc │ │ ├── fbxskeletonparser.h │ │ ├── fbxskinparser.cc │ │ ├── fbxskinparser.h │ │ ├── fbxtypes.h │ │ ├── scenewriter.cc │ │ └── scenewriter.h │ ├── character │ │ ├── skinfragment.cc │ │ ├── skinfragment.h │ │ ├── skinpartitioner.cc │ │ └── skinpartitioner.h │ ├── helpers │ │ ├── animsplitterhelper.cc │ │ ├── animsplitterhelper.h │ │ ├── batchattributes.cc │ │ ├── batchattributes.h │ │ ├── skinhelper.cc │ │ └── skinhelper.h │ ├── nfbxexporter.cc │ ├── nfbxexporter.h │ ├── nfbxscenewriter.cc │ ├── nfbxscenewriter.h │ └── node │ │ ├── nfbxjointnode.cc │ │ ├── nfbxjointnode.h │ │ ├── nfbxlightnode.cc │ │ ├── nfbxlightnode.h │ │ ├── nfbxmeshnode.cc │ │ ├── nfbxmeshnode.h │ │ ├── nfbxnode.cc │ │ ├── nfbxnode.h │ │ ├── nfbxscene.cc │ │ ├── nfbxscene.h │ │ ├── nfbxtransformnode.cc │ │ └── nfbxtransformnode.h │ ├── game │ ├── gameexporter.cc │ ├── gameexporter.h │ ├── leveldbwriter.cc │ ├── leveldbwriter.h │ ├── levelexporter.cc │ ├── levelexporter.h │ ├── levelparser.cc │ ├── levelparser.h │ ├── templateexporter.cc │ └── templateexporter.h │ ├── gui │ ├── guiexporter.cc │ └── guiexporter.h │ ├── idldocument │ ├── idlarg.cc │ ├── idlarg.h │ ├── idlattribute.cc │ ├── idlattribute.h │ ├── idlattributelib.cc │ ├── idlattributelib.h │ ├── idlcodegenerator.cc │ ├── idlcodegenerator.h │ ├── idlcommand.cc │ ├── idlcommand.h │ ├── idldependency.cc │ ├── idldependency.h │ ├── idldocument.cc │ ├── idldocument.h │ ├── idllibrary.cc │ ├── idllibrary.h │ ├── idlmessage.cc │ ├── idlmessage.h │ ├── idlproperty.cc │ ├── idlproperty.h │ ├── idlprotocol.cc │ └── idlprotocol.h │ ├── logger.cc │ ├── logger.h │ ├── meshutil │ ├── meshbuilder.cc │ ├── meshbuilder.h │ ├── meshbuildergroup.cc │ ├── meshbuildergroup.h │ ├── meshbuildersaver.cc │ ├── meshbuildersaver.h │ ├── meshbuildertriangle.cc │ ├── meshbuildertriangle.h │ ├── meshbuildervertex.cc │ └── meshbuildervertex.h │ ├── modelutil │ ├── clip.cc │ ├── clip.h │ ├── clipevent.cc │ ├── clipevent.h │ ├── modelattributes.cc │ ├── modelattributes.h │ ├── modelbuilder.cc │ ├── modelbuilder.h │ ├── modelconstants.cc │ ├── modelconstants.h │ ├── modeldatabase.cc │ ├── modeldatabase.h │ ├── modelphysics.cc │ ├── modelphysics.h │ ├── take.cc │ └── take.h │ ├── modelwriter.cc │ ├── modelwriter.h │ ├── n2util │ ├── n2reflectioninfo.cc │ ├── n2reflectioninfo.h │ ├── n2sceneloader.cc │ ├── n2sceneloader.h │ ├── nvx2orderfreestreamreader.cc │ └── nvx2orderfreestreamreader.h │ ├── n3util │ ├── n3modeldata.h │ ├── n3writer.cc │ ├── n3writer.h │ ├── n3xmlexporter.cc │ ├── n3xmlexporter.h │ ├── n3xmlextractor.cc │ ├── n3xmlextractor.h │ ├── n3xmlmodifier.cc │ └── n3xmlmodifier.h │ ├── platform.cc │ ├── platform.h │ ├── posix │ ├── posixapplauncher.cc │ └── posixapplauncher.h │ ├── posteffect │ ├── posteffectexporter.cc │ ├── posteffectexporter.h │ ├── posteffectparser.cc │ └── posteffectparser.h │ ├── projectinfo.cc │ ├── projectinfo.h │ ├── rcswrapper.cc │ ├── rcswrapper.h │ ├── resourcedictionarybuilder.cc │ ├── resourcedictionarybuilder.h │ ├── scenenode.cc │ ├── scenenode.h │ ├── scenenodetree.cc │ ├── scenenodetree.h │ ├── shadercompiler.cc │ ├── shadercompiler.h │ ├── surface │ ├── surfaceexporter.cc │ └── surfaceexporter.h │ ├── texutil │ ├── cubefilterer.cc │ ├── cubefilterer.h │ ├── imageconverter.cc │ ├── imageconverter.h │ ├── nvtttextureconversionjob.cc │ ├── nvtttextureconversionjob.h │ ├── textureattrs.cc │ ├── textureattrs.h │ ├── textureattrtable.cc │ ├── textureattrtable.h │ ├── textureconversionjob.cc │ ├── textureconversionjob.h │ ├── textureconverter.cc │ ├── textureconverter.h │ ├── win32textureconversionjob.cc │ └── win32textureconversionjob.h │ ├── toolkitapp.cc │ ├── toolkitapp.h │ ├── toolkitconsolehandler.cc │ ├── toolkitconsolehandler.h │ ├── toolkitversion.cc │ ├── toolkitversion.h │ ├── win32 │ ├── win32applauncher.cc │ └── win32applauncher.h │ ├── xmlmodelwriter.cc │ └── xmlmodelwriter.h ├── data ├── cbdefault.ini ├── leveleditor │ └── scripts │ │ ├── alignement.lua │ │ ├── animpath.lua │ │ ├── cameraproperty.lua │ │ └── navigation.lua ├── levelviewer │ ├── Delicious-Bold.otf │ ├── Delicious-BoldItalic.otf │ ├── Delicious-Italic.otf │ ├── Delicious-Roman.otf │ ├── layoutlist.rml │ ├── levellist.lua │ ├── levellist.rcss │ └── levellist.rml ├── scripts │ └── vecmath.lua └── tables │ ├── anims.xml │ ├── blueprints.xml │ ├── db │ ├── AnimEventEffects.xml │ ├── _audiobanks.xml │ ├── _environment.xml │ ├── _ui_fonts.xml │ ├── _ui_layouts.xml │ ├── _ui_scripts.xml │ ├── animeventcamshake.xml │ ├── animeventsound.xml │ ├── animeventtiming.xml │ ├── animeventvibration.xml │ ├── camera.xml │ ├── freecamera.xml │ ├── lightprobe.xml │ ├── navmeshdata.xml │ ├── posteffectbubble.xml │ ├── remotecamera.xml │ └── trigger.xml │ ├── effects.xml │ ├── globals.xml │ └── materials.xml ├── doc ├── doxygen │ ├── commondoc.cfg │ ├── doxygen.css │ ├── footer.html │ ├── header.html │ ├── nebula3.cfg │ └── readme.txt ├── license.txt ├── nebula3.chm ├── nebula3 │ ├── mainpage.dox │ └── readme.txt └── readme.txt ├── libs └── cmake │ ├── FindFBX.cmake │ ├── FindFmodStudio.cmake │ └── NebulaHelpers.cmake ├── license.txt ├── projectinfo.xml ├── projects ├── CMakeLists.txt └── readme.txt └── work ├── assets ├── lighting │ ├── lightcones.psd │ ├── lightcones_debug.psd │ └── lightcube.dds ├── placeholder │ ├── box.attributes │ ├── box.constants │ ├── box.fbx │ ├── box.mb │ └── box.physics └── system │ ├── bigbox.attributes │ ├── bigbox.constants │ ├── bigbox.fbx │ ├── bigbox.mb │ ├── bigbox.physics │ ├── bigsphere.attributes │ ├── bigsphere.attributes.xml │ ├── bigsphere.constants │ ├── bigsphere.fbx │ ├── bigsphere.mb │ ├── bigsphere.physics │ ├── billboard.sur │ ├── black.dds │ ├── blue.png │ ├── blue_cube.dds │ ├── box.attributes │ ├── box.constants │ ├── box.fbx │ ├── box.mb │ ├── box.physics │ ├── colorhexagon.dds │ ├── cone.attributes │ ├── cone.constants │ ├── cone.fbx │ ├── cone.mb │ ├── cone.physics │ ├── cylinder.mb │ ├── darkgray.png │ ├── defcube.dds │ ├── displacement_test.png │ ├── emitter.attributes │ ├── emitter.constants │ ├── emitter.fbx │ ├── emitter.mb │ ├── emitter.physics │ ├── globallight.attributes │ ├── globallight.constants │ ├── globallight.fbx │ ├── globallight.physics │ ├── globallight.png │ ├── globallight.xml │ ├── globallightshape.attributes │ ├── globallightshape.constants │ ├── globallightshape.fbx │ ├── globallightshape.mb │ ├── globallightshape.physics │ ├── gray.png │ ├── green.png │ ├── green_cube.dds │ ├── grid.mb │ ├── grid.png │ ├── light.png │ ├── lightcones.psd │ ├── lightcones_debug.psd │ ├── lightcube.dds │ ├── lightprobesphere.attributes │ ├── lightprobesphere.constants │ ├── lightprobesphere.fbx │ ├── lightprobesphere.physics │ ├── lightprobesphere.sur │ ├── miptest_256.dds │ ├── miptest_512.dds │ ├── nebulalogo.png │ ├── nobump.psd │ ├── nobump.xml │ ├── noise.psd │ ├── particle_unlit.sur │ ├── placeholder.attributes │ ├── placeholder.constants │ ├── placeholder.fbx │ ├── placeholder.mb │ ├── placeholder.physics │ ├── placeholder.png │ ├── placeholder.sur │ ├── placeholder.xml │ ├── placeholder_particle.sur │ ├── plane.attributes │ ├── plane.constants │ ├── plane.fbx │ ├── plane.mb │ ├── plane.physics │ ├── pointlight.attributes │ ├── pointlight.constants │ ├── pointlight.fbx │ ├── pointlight.physics │ ├── pointlightshape.attributes │ ├── pointlightshape.constants │ ├── pointlightshape.fbx │ ├── pointlightshape.mb │ ├── pointlightshape.physics │ ├── red.png │ ├── red_cube.dds │ ├── reflectionbox.attributes │ ├── reflectionbox.constants │ ├── reflectionbox.fbx │ ├── reflectionbox.physics │ ├── shadingsphere.attributes │ ├── shadingsphere.constants │ ├── shadingsphere.fbx │ ├── shadingsphere.physics │ ├── shadowmod.dds │ ├── sky.dds │ ├── sky_irr.dds │ ├── sky_irr.xml │ ├── sky_refl.dds │ ├── sky_refl.xml │ ├── skybox.attributes │ ├── skybox.constants │ ├── skybox.fbx │ ├── skybox.physics │ ├── skybox.sur │ ├── skydome.attributes │ ├── skydome.constants │ ├── skydome.dds │ ├── skydome.fbx │ ├── skydome.mb │ ├── skydome.physics │ ├── specmap.dds │ ├── sphere.attributes │ ├── sphere.constants │ ├── sphere.fbx │ ├── sphere.mb │ ├── sphere.physics │ ├── spotlight.attributes │ ├── spotlight.constants │ ├── spotlight.dds │ ├── spotlight.fbx │ ├── spotlight.physics │ ├── spotlightshape.attributes │ ├── spotlightshape.constants │ ├── spotlightshape.fbx │ ├── spotlightshape.mb │ ├── spotlightshape.physics │ ├── sunshape.attributes │ ├── sunshape.constants │ ├── sunshape.fbx │ ├── sunshape.physics │ ├── torus.mb │ ├── triggerbox.attributes │ ├── triggerbox.constants │ ├── triggerbox.fbx │ ├── triggerbox.physics │ ├── triggersphere.attributes │ ├── triggersphere.constants │ ├── triggersphere.fbx │ ├── triggersphere.physics │ └── white.dds ├── frame └── win32 │ ├── csmshadowmapping.xml │ ├── dx11default.xml │ ├── dx9default.xml │ ├── esmshadowmapping.xml │ ├── godrays.xml │ ├── grassattributes.xml │ ├── grassheightmap.xml │ ├── horizonambientocclusion.xml │ ├── ogl4default.xml │ ├── picking.xml │ ├── reflection.xml │ └── shadowmapping.xml ├── installer ├── build.bat ├── header.bmp ├── icons │ ├── NBE.ico │ ├── NCB.ico │ ├── NLE.ico │ └── NV.ico ├── install.ico ├── n3contentsdk.aip ├── nebulalogo.ico ├── uninstall.ico └── wizard.bmp ├── materials └── base.xml ├── shaders ├── fx │ ├── animated.fx │ ├── averagelum.fx │ ├── billboard.fx │ ├── box3taphori.fx │ ├── box3tapvert.fx │ ├── brightpass.fx │ ├── copy.fx │ ├── csmblur.fx │ ├── downscale.fx │ ├── empty.fx │ ├── finalize.fx │ ├── foliage.fx │ ├── gather.fx │ ├── gatheralpha.fx │ ├── gaussianblur.fx │ ├── gui.fx │ ├── hbao.fx │ ├── hbaoblur.fx │ ├── horizontalbloom.fx │ ├── lib │ │ ├── CSM.fxh │ │ ├── boxtap.fxh │ │ ├── defaultsampler.fxh │ │ ├── geometrybase.fxh │ │ ├── interfaces.fxh │ │ ├── lightutils.fxh │ │ ├── particles.fxh │ │ ├── shared.fxh │ │ ├── skinning.fxh │ │ ├── subsurface.fxh │ │ └── util.fxh │ ├── lightmapped.fx │ ├── lights.fx │ ├── lightscatter.fx │ ├── multilayered.fx │ ├── particle.fx │ ├── picking.fx │ ├── shadow.fx │ ├── simple.fx │ ├── skinned.fx │ ├── skybox.fx │ ├── static.fx │ ├── subsurface.fx │ ├── subsurfacehorizontal.fx │ ├── subsurfacevertical.fx │ ├── sun.fx │ ├── unlit.fx │ ├── verticalbloom.fx │ ├── volumefog.fx │ └── water.fx └── gl │ ├── animated.fx │ ├── averagelum.fx │ ├── billboard.fx │ ├── blur_2d_rg16f_cs.fx │ ├── blur_2d_rg32f_cs.fx │ ├── blur_2d_rgba16f_cs.fx │ ├── blur_cube_rg16f_cs.fx │ ├── blur_cube_rg32f_cs.fx │ ├── blur_cube_rgba16f_cs.fx │ ├── box3taphori.fx │ ├── box3tapvert.fx │ ├── brightpass.fx │ ├── copy.fx │ ├── csmblur.fx │ ├── downscale.fx │ ├── emissive.fx │ ├── empty.fx │ ├── finalize.fx │ ├── finalize_simple.fx │ ├── foliage.fx │ ├── gather.fx │ ├── gatheralpha.fx │ ├── gaussianblur.fx │ ├── gaussianblur_cs_rgba16f.fx │ ├── gaussianblur_cs_rgba32f.fx │ ├── gaussianblur_cs_rgba8.fx │ ├── grid.fx │ ├── gui.fx │ ├── hbao.fx │ ├── hbao_cs.fx │ ├── hbaoblur.fx │ ├── hbaoblur_cs.fx │ ├── horizontalbloom.fx │ ├── imgui.fx │ ├── lib │ ├── CSM.fxh │ ├── blur_2d_cs.fxh │ ├── blur_cube_cs.fxh │ ├── boxtap.fxh │ ├── colorblending.fxh │ ├── defaultsamplers.fxh │ ├── geometrybase.fxh │ ├── lightmapbase.fxh │ ├── particles.fxh │ ├── shadowbase.fxh │ ├── shared.fxh │ ├── skinning.fxh │ ├── std.fxh │ ├── subsurface.fxh │ ├── techniques.fxh │ └── util.fxh │ ├── lightmapped.fx │ ├── lights.fx │ ├── lightscatter.fx │ ├── minimap.fx │ ├── multilayered.fx │ ├── particle.fx │ ├── picking.fx │ ├── placeholder.fx │ ├── reflectionprojector.fx │ ├── shadow.fx │ ├── shared.fx │ ├── silhouette.fx │ ├── simple.fx │ ├── skinned.fx │ ├── skybox.fx │ ├── sprite.fx │ ├── ssr_cs.fx │ ├── static.fx │ ├── subsurface.fx │ ├── subsurfacehorizontal.fx │ ├── subsurfacevertical.fx │ ├── text.fx │ ├── unlit.fx │ ├── verticalbloom.fx │ ├── volumefog.fx │ ├── volumelight.fx │ ├── vsdepthtoz.fx │ └── water.fx └── shady ├── projects └── test.ndp ├── supervariations ├── Default.ndv └── templates │ ├── glslheader.fxh │ ├── glsltemplate.fxh │ ├── lib │ ├── CSM.fxh │ ├── boxtap.fxh │ ├── defaultsamplers.fxh │ ├── geometrybase.fxh │ ├── particles.fxh │ ├── shadowbase.fxh │ ├── shared.fxh │ ├── skinning.fxh │ ├── std.fxh │ ├── subsurface.fxh │ ├── techniques.fxh │ └── util.fxh │ └── shaders.fxh └── variations ├── Constants ├── ConstantFloat.ndv ├── ConstantFloat2.ndv ├── ConstantFloat3.ndv └── ConstantFloat4.ndv ├── Context ├── TexCoords.ndv └── VertexColor.ndv ├── Conversion ├── Combine2.ndv ├── Combine3.ndv ├── Combine4.ndv ├── StripAlpha.ndv ├── Swizzle2.ndv ├── Swizzle3.ndv ├── Swizzle4.ndv ├── Vectorize2.ndv ├── Vectorize3.ndv └── Vectorize4.ndv ├── Math ├── Add.ndv ├── Cos.ndv ├── Divide.ndv ├── Length.ndv ├── Logn.ndv ├── Multiply.ndv ├── Normalize.ndv ├── Sin.ndv └── Subtract.ndv ├── Parameters ├── Float.ndv ├── Float2.ndv ├── Float3.ndv └── Float4.ndv ├── System ├── GlobalLightColor.ndv ├── GlobalLightDir.ndv ├── ObjectId.ndv ├── Random.ndv └── Time.ndv └── Texture ├── Sample2D.ndv ├── Sample2DFixedMip.ndv ├── Sample2DUV.ndv ├── SampleCube.ndv └── SampleCubeUV.ndv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/README.md -------------------------------------------------------------------------------- /authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/authors.txt -------------------------------------------------------------------------------- /bin/win32/idlc.toolkit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/bin/win32/idlc.toolkit.exe -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/attic/physics/joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attic/physics/joint.h -------------------------------------------------------------------------------- /code/addons/attic/physics/level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attic/physics/level.h -------------------------------------------------------------------------------- /code/addons/attic/physics/ray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attic/physics/ray.cc -------------------------------------------------------------------------------- /code/addons/attic/physics/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attic/physics/ray.h -------------------------------------------------------------------------------- /code/addons/attic/physics/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attic/physics/shape.h -------------------------------------------------------------------------------- /code/addons/attr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/attr/accessmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/accessmode.h -------------------------------------------------------------------------------- /code/addons/attr/attr.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Attr 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/addons/attr/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/attribute.h -------------------------------------------------------------------------------- /code/addons/attr/attributetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/attributetable.h -------------------------------------------------------------------------------- /code/addons/attr/attrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/attrid.cc -------------------------------------------------------------------------------- /code/addons/attr/attrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/attrid.h -------------------------------------------------------------------------------- /code/addons/attr/blobattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/blobattrid.h -------------------------------------------------------------------------------- /code/addons/attr/boolattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/boolattrid.h -------------------------------------------------------------------------------- /code/addons/attr/float4attrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/float4attrid.h -------------------------------------------------------------------------------- /code/addons/attr/floatattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/floatattrid.h -------------------------------------------------------------------------------- /code/addons/attr/guidattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/guidattrid.h -------------------------------------------------------------------------------- /code/addons/attr/intattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/intattrid.h -------------------------------------------------------------------------------- /code/addons/attr/matrix44attrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/matrix44attrid.h -------------------------------------------------------------------------------- /code/addons/attr/stringattrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/stringattrid.h -------------------------------------------------------------------------------- /code/addons/attr/valuetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/attr/valuetype.h -------------------------------------------------------------------------------- /code/addons/audio2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/audio2/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/audio2/audio2player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/audio2/audio2player.h -------------------------------------------------------------------------------- /code/addons/audio2/audio2server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/audio2/audio2server.h -------------------------------------------------------------------------------- /code/addons/audio2/fmodeventid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/audio2/fmodeventid.h -------------------------------------------------------------------------------- /code/addons/db/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/db/column.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/column.cc -------------------------------------------------------------------------------- /code/addons/db/column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/column.h -------------------------------------------------------------------------------- /code/addons/db/command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/command.cc -------------------------------------------------------------------------------- /code/addons/db/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/command.h -------------------------------------------------------------------------------- /code/addons/db/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/database.cc -------------------------------------------------------------------------------- /code/addons/db/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/database.h -------------------------------------------------------------------------------- /code/addons/db/dataset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dataset.cc -------------------------------------------------------------------------------- /code/addons/db/dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dataset.h -------------------------------------------------------------------------------- /code/addons/db/db.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Db 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/addons/db/dbfactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dbfactory.cc -------------------------------------------------------------------------------- /code/addons/db/dbfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dbfactory.h -------------------------------------------------------------------------------- /code/addons/db/dbserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dbserver.cc -------------------------------------------------------------------------------- /code/addons/db/dbserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/dbserver.h -------------------------------------------------------------------------------- /code/addons/db/filterset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/filterset.cc -------------------------------------------------------------------------------- /code/addons/db/filterset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/filterset.h -------------------------------------------------------------------------------- /code/addons/db/reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/reader.cc -------------------------------------------------------------------------------- /code/addons/db/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/reader.h -------------------------------------------------------------------------------- /code/addons/db/relation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/relation.cc -------------------------------------------------------------------------------- /code/addons/db/relation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/relation.h -------------------------------------------------------------------------------- /code/addons/db/table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/table.cc -------------------------------------------------------------------------------- /code/addons/db/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/table.h -------------------------------------------------------------------------------- /code/addons/db/valuetable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/valuetable.cc -------------------------------------------------------------------------------- /code/addons/db/valuetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/valuetable.h -------------------------------------------------------------------------------- /code/addons/db/writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/writer.cc -------------------------------------------------------------------------------- /code/addons/db/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/db/writer.h -------------------------------------------------------------------------------- /code/addons/dynui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/dynui/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/dynui/imguiaddon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/dynui/imguiaddon.cc -------------------------------------------------------------------------------- /code/addons/dynui/imguiaddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/dynui/imguiaddon.h -------------------------------------------------------------------------------- /code/addons/dynui/imguirenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/dynui/imguirenderer.h -------------------------------------------------------------------------------- /code/addons/dynui/imguirtplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/dynui/imguirtplugin.h -------------------------------------------------------------------------------- /code/addons/faudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/faudio/audiodevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/audiodevice.cc -------------------------------------------------------------------------------- /code/addons/faudio/audiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/audiodevice.h -------------------------------------------------------------------------------- /code/addons/faudio/audiohandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/audiohandler.h -------------------------------------------------------------------------------- /code/addons/faudio/audioserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/audioserver.cc -------------------------------------------------------------------------------- /code/addons/faudio/audioserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/audioserver.h -------------------------------------------------------------------------------- /code/addons/faudio/busid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/busid.h -------------------------------------------------------------------------------- /code/addons/faudio/eventid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/eventid.h -------------------------------------------------------------------------------- /code/addons/faudio/eventstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/eventstate.h -------------------------------------------------------------------------------- /code/addons/faudio/fmoderror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/fmoderror.cc -------------------------------------------------------------------------------- /code/addons/faudio/fmoderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/faudio/fmoderror.h -------------------------------------------------------------------------------- /code/addons/forest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/forest/tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/tree.cc -------------------------------------------------------------------------------- /code/addons/forest/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/tree.h -------------------------------------------------------------------------------- /code/addons/forest/treecluster.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/treecluster.cc -------------------------------------------------------------------------------- /code/addons/forest/treecluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/treecluster.h -------------------------------------------------------------------------------- /code/addons/forest/treeinstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/treeinstance.h -------------------------------------------------------------------------------- /code/addons/forest/treelod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/treelod.cc -------------------------------------------------------------------------------- /code/addons/forest/treelod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/forest/treelod.h -------------------------------------------------------------------------------- /code/addons/grid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/grid/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/grid/gridaddon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/grid/gridaddon.cc -------------------------------------------------------------------------------- /code/addons/grid/gridaddon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/grid/gridaddon.h -------------------------------------------------------------------------------- /code/addons/grid/gridrtplugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/grid/gridrtplugin.cc -------------------------------------------------------------------------------- /code/addons/grid/gridrtplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/grid/gridrtplugin.h -------------------------------------------------------------------------------- /code/addons/locale/localeserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/locale/localeserver.h -------------------------------------------------------------------------------- /code/addons/minimap/minimap.nidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/minimap/minimap.nidl -------------------------------------------------------------------------------- /code/addons/navigation/path3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/navigation/path3d.cc -------------------------------------------------------------------------------- /code/addons/navigation/path3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/navigation/path3d.h -------------------------------------------------------------------------------- /code/addons/nebula2/bbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/bbox.cc -------------------------------------------------------------------------------- /code/addons/nebula2/bxmlreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/bxmlreader.cc -------------------------------------------------------------------------------- /code/addons/nebula2/frustum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/frustum.cc -------------------------------------------------------------------------------- /code/addons/nebula2/matrix44.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/matrix44.cc -------------------------------------------------------------------------------- /code/addons/nebula2/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/string.cc -------------------------------------------------------------------------------- /code/addons/nebula2/textwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/textwriter.cc -------------------------------------------------------------------------------- /code/addons/nebula2/vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/vector.cc -------------------------------------------------------------------------------- /code/addons/nebula2/xmlreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/xmlreader.cc -------------------------------------------------------------------------------- /code/addons/nebula2/xmlwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/nebula2/xmlwriter.cc -------------------------------------------------------------------------------- /code/addons/qtfeature/qtserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/qtfeature/qtserver.cc -------------------------------------------------------------------------------- /code/addons/qtfeature/qtserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/qtfeature/qtserver.h -------------------------------------------------------------------------------- /code/addons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/readme.txt -------------------------------------------------------------------------------- /code/addons/remote/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/remote/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/remote/remotestatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/remote/remotestatus.h -------------------------------------------------------------------------------- /code/addons/scripting/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/scripting/arg.h -------------------------------------------------------------------------------- /code/addons/scripting/argsblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/scripting/argsblock.h -------------------------------------------------------------------------------- /code/addons/scripting/command.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/scripting/command.cc -------------------------------------------------------------------------------- /code/addons/scripting/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/scripting/command.h -------------------------------------------------------------------------------- /code/addons/scripting/scripting.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Scripting 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/addons/sequencer/track.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/sequencer/track.cc -------------------------------------------------------------------------------- /code/addons/sequencer/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/sequencer/track.h -------------------------------------------------------------------------------- /code/addons/sequencer/trackbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/sequencer/trackbar.cc -------------------------------------------------------------------------------- /code/addons/sequencer/trackbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/sequencer/trackbar.h -------------------------------------------------------------------------------- /code/addons/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/stdneb.cc -------------------------------------------------------------------------------- /code/addons/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/stdneb.h -------------------------------------------------------------------------------- /code/addons/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/CMakeLists.txt -------------------------------------------------------------------------------- /code/addons/ui/base/uiplugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/base/uiplugin.cc -------------------------------------------------------------------------------- /code/addons/ui/base/uiplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/base/uiplugin.h -------------------------------------------------------------------------------- /code/addons/ui/ceui/ceuilayout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/ceui/ceuilayout.cc -------------------------------------------------------------------------------- /code/addons/ui/ceui/ceuilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/ceui/ceuilayout.h -------------------------------------------------------------------------------- /code/addons/ui/ceui/ceuiserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/ceui/ceuiserver.cc -------------------------------------------------------------------------------- /code/addons/ui/ceui/ceuiserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/ceui/ceuiserver.h -------------------------------------------------------------------------------- /code/addons/ui/ceui/ceuitexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/ceui/ceuitexture.h -------------------------------------------------------------------------------- /code/addons/ui/uicommands.nidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uicommands.nidl -------------------------------------------------------------------------------- /code/addons/ui/uielement.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uielement.cc -------------------------------------------------------------------------------- /code/addons/ui/uielement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uielement.h -------------------------------------------------------------------------------- /code/addons/ui/uielementgroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uielementgroup.cc -------------------------------------------------------------------------------- /code/addons/ui/uielementgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uielementgroup.h -------------------------------------------------------------------------------- /code/addons/ui/uievent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uievent.h -------------------------------------------------------------------------------- /code/addons/ui/uieventhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uieventhandler.cc -------------------------------------------------------------------------------- /code/addons/ui/uieventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uieventhandler.h -------------------------------------------------------------------------------- /code/addons/ui/uifeatureunit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uifeatureunit.cc -------------------------------------------------------------------------------- /code/addons/ui/uifeatureunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uifeatureunit.h -------------------------------------------------------------------------------- /code/addons/ui/uiinputhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uiinputhandler.cc -------------------------------------------------------------------------------- /code/addons/ui/uiinputhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uiinputhandler.h -------------------------------------------------------------------------------- /code/addons/ui/uilayout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uilayout.cc -------------------------------------------------------------------------------- /code/addons/ui/uilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uilayout.h -------------------------------------------------------------------------------- /code/addons/ui/uirtplugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uirtplugin.cc -------------------------------------------------------------------------------- /code/addons/ui/uirtplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uirtplugin.h -------------------------------------------------------------------------------- /code/addons/ui/uiserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uiserver.cc -------------------------------------------------------------------------------- /code/addons/ui/uiserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/ui/uiserver.h -------------------------------------------------------------------------------- /code/addons/video/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/addons/video/CMakeLists.txt -------------------------------------------------------------------------------- /code/application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/CMakeLists.txt -------------------------------------------------------------------------------- /code/application/application.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/application.dox -------------------------------------------------------------------------------- /code/application/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/application.h -------------------------------------------------------------------------------- /code/application/game/entity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/entity.cc -------------------------------------------------------------------------------- /code/application/game/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/entity.h -------------------------------------------------------------------------------- /code/application/game/game.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/game.dox -------------------------------------------------------------------------------- /code/application/game/manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/manager.cc -------------------------------------------------------------------------------- /code/application/game/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/manager.h -------------------------------------------------------------------------------- /code/application/game/property.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/property.cc -------------------------------------------------------------------------------- /code/application/game/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/game/property.h -------------------------------------------------------------------------------- /code/application/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/stdneb.cc -------------------------------------------------------------------------------- /code/application/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/application/stdneb.h -------------------------------------------------------------------------------- /code/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /code/benchmarks/benchmarkbase/benchmarking.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Benchmarking 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/benchmarks/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/benchmarks/stdneb.cc -------------------------------------------------------------------------------- /code/extlibs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/CMakeLists.txt -------------------------------------------------------------------------------- /code/extlibs/Effects11/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/Effects11/Effect.h -------------------------------------------------------------------------------- /code/extlibs/Effects11/SOParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/Effects11/SOParser.h -------------------------------------------------------------------------------- /code/extlibs/Effects11/pchfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/Effects11/pchfx.h -------------------------------------------------------------------------------- /code/extlibs/SOIL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/CMakeLists.txt -------------------------------------------------------------------------------- /code/extlibs/SOIL/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/SOIL.c -------------------------------------------------------------------------------- /code/extlibs/SOIL/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/SOIL.h -------------------------------------------------------------------------------- /code/extlibs/SOIL/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/image_DXT.c -------------------------------------------------------------------------------- /code/extlibs/SOIL/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/image_DXT.h -------------------------------------------------------------------------------- /code/extlibs/SOIL/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/image_helper.c -------------------------------------------------------------------------------- /code/extlibs/SOIL/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/image_helper.h -------------------------------------------------------------------------------- /code/extlibs/SOIL/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/stb_image_aug.c -------------------------------------------------------------------------------- /code/extlibs/SOIL/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/stb_image_aug.h -------------------------------------------------------------------------------- /code/extlibs/SOIL/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/SOIL/stbi_DDS_aug.h -------------------------------------------------------------------------------- /code/extlibs/base64/README.txt: -------------------------------------------------------------------------------- 1 | Base64 C Implementation 2 | 3 | License: 4 | Public Domain -------------------------------------------------------------------------------- /code/extlibs/base64/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/base64/base64.c -------------------------------------------------------------------------------- /code/extlibs/base64/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/base64/base64.h -------------------------------------------------------------------------------- /code/extlibs/base64/copyright.txt: -------------------------------------------------------------------------------- 1 | based on 2 | https://github.com/zhicheng/base64 -------------------------------------------------------------------------------- /code/extlibs/base64/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/base64/main.c -------------------------------------------------------------------------------- /code/extlibs/bullet/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | N_SET_COMPILER_DEFAULTS() 2 | 3 | add_subdirectory(bullet/src) -------------------------------------------------------------------------------- /code/extlibs/bullet/bullet/Extras/CDTestFramework/AntTweakBar/src/TwPrecomp.cpp: -------------------------------------------------------------------------------- 1 | #include "TwPrecomp.h" 2 | -------------------------------------------------------------------------------- /code/extlibs/bullet/bullet/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/bullet/bullet/NEWS -------------------------------------------------------------------------------- /code/extlibs/bullet/bullet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/bullet/bullet/README -------------------------------------------------------------------------------- /code/extlibs/bullet/bullet/VERSION: -------------------------------------------------------------------------------- 1 | 2.81 2 | -------------------------------------------------------------------------------- /code/extlibs/cjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/cjson/CMakeLists.txt -------------------------------------------------------------------------------- /code/extlibs/libfreetype/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libfreetype/FTL.TXT -------------------------------------------------------------------------------- /code/extlibs/libfreetype/tools/docmaker/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /code/extlibs/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/README -------------------------------------------------------------------------------- /code/extlibs/libjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/cderror.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/cdjpeg.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/cdjpeg.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jaricom.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcarith.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jccolor.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jchuff.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcinit.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jconfig.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcparam.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jcsample.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jctrans.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdarith.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdct.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdinput.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdsample.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jerror.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jerror.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jidctint.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jinclude.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jpegint.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jquant1.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jquant2.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jutils.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/jversion.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdbmp.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdcolmap.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdgif.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdppm.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdrle.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdswitch.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/rdtarga.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/transupp.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/transupp.h -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrbmp.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrgif.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrjpgcom.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrppm.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrrle.c -------------------------------------------------------------------------------- /code/extlibs/libjpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libjpeg/wrtarga.c -------------------------------------------------------------------------------- /code/extlibs/libpng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/config.h -------------------------------------------------------------------------------- /code/extlibs/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/png.c -------------------------------------------------------------------------------- /code/extlibs/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/png.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngconf.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngdebug.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngerror.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngget.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pnginfo.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pnglibconf.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngmem.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngpread.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngpriv.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngread.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngrio.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngrtran.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngrutil.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngset.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngstruct.h -------------------------------------------------------------------------------- /code/extlibs/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngtest.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngtrans.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngwio.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngwrite.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngwtran.c -------------------------------------------------------------------------------- /code/extlibs/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/libpng/pngwutil.c -------------------------------------------------------------------------------- /code/extlibs/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/CMakeLists.txt -------------------------------------------------------------------------------- /code/extlibs/lua/lapi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lapi.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lapi.h -------------------------------------------------------------------------------- /code/extlibs/lua/lauxlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lauxlib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lauxlib.h -------------------------------------------------------------------------------- /code/extlibs/lua/lbaselib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lbaselib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lcode.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lcode.h -------------------------------------------------------------------------------- /code/extlibs/lua/ldblib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldblib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ldebug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldebug.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldebug.h -------------------------------------------------------------------------------- /code/extlibs/lua/ldo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldo.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldo.h -------------------------------------------------------------------------------- /code/extlibs/lua/ldump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ldump.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lfunc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lfunc.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lfunc.h -------------------------------------------------------------------------------- /code/extlibs/lua/lgc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lgc.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lgc.h -------------------------------------------------------------------------------- /code/extlibs/lua/linit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/linit.cc -------------------------------------------------------------------------------- /code/extlibs/lua/liolib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/liolib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/llex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/llex.cc -------------------------------------------------------------------------------- /code/extlibs/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/llex.h -------------------------------------------------------------------------------- /code/extlibs/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/llimits.h -------------------------------------------------------------------------------- /code/extlibs/lua/lmathlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lmathlib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lmem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lmem.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lmem.h -------------------------------------------------------------------------------- /code/extlibs/lua/loadlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/loadlib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lobject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lobject.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lobject.h -------------------------------------------------------------------------------- /code/extlibs/lua/lopcodes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lopcodes.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lopcodes.h -------------------------------------------------------------------------------- /code/extlibs/lua/loslib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/loslib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lparser.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lparser.h -------------------------------------------------------------------------------- /code/extlibs/lua/lstate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lstate.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lstate.h -------------------------------------------------------------------------------- /code/extlibs/lua/lstring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lstring.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lstring.h -------------------------------------------------------------------------------- /code/extlibs/lua/lstrlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lstrlib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ltable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ltable.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ltable.h -------------------------------------------------------------------------------- /code/extlibs/lua/ltablib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ltablib.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ltm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ltm.cc -------------------------------------------------------------------------------- /code/extlibs/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/ltm.h -------------------------------------------------------------------------------- /code/extlibs/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lua.h -------------------------------------------------------------------------------- /code/extlibs/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/luaconf.h -------------------------------------------------------------------------------- /code/extlibs/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lualib.h -------------------------------------------------------------------------------- /code/extlibs/lua/lundump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lundump.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lundump.h -------------------------------------------------------------------------------- /code/extlibs/lua/lvm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lvm.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lvm.h -------------------------------------------------------------------------------- /code/extlibs/lua/lzio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lzio.cc -------------------------------------------------------------------------------- /code/extlibs/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/lzio.h -------------------------------------------------------------------------------- /code/extlibs/lua/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/lua/print.cc -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/extern/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | ADD_SUBDIRECTORY(poshlib) 3 | -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/project/vc8/nvcore/.ignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | *.icastano.user 4 | -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/project/vc8/nvimage/.ignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | *.icastano.user 4 | -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/project/vc8/nvmath/.ignore: -------------------------------------------------------------------------------- 1 | Debug 2 | Release 3 | *.icastano.user 4 | -------------------------------------------------------------------------------- /code/extlibs/nvidia-texture-tools/src/nvtt/TaskDispatcher.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/extlibs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/readme.txt -------------------------------------------------------------------------------- /code/extlibs/sqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/sqlite3/sqlite3.c -------------------------------------------------------------------------------- /code/extlibs/sqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/sqlite3/sqlite3.h -------------------------------------------------------------------------------- /code/extlibs/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/stb/stb_truetype.h -------------------------------------------------------------------------------- /code/extlibs/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/stdneb.cc -------------------------------------------------------------------------------- /code/extlibs/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/stdneb.h -------------------------------------------------------------------------------- /code/extlibs/tinyxml/tinystr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/tinyxml/tinystr.cc -------------------------------------------------------------------------------- /code/extlibs/tinyxml/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/tinyxml/tinystr.h -------------------------------------------------------------------------------- /code/extlibs/tinyxml/tinyxml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/tinyxml/tinyxml.cc -------------------------------------------------------------------------------- /code/extlibs/tinyxml/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/tinyxml/tinyxml.h -------------------------------------------------------------------------------- /code/extlibs/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /code/extlibs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/adler32.c -------------------------------------------------------------------------------- /code/extlibs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/compress.c -------------------------------------------------------------------------------- /code/extlibs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/crc32.c -------------------------------------------------------------------------------- /code/extlibs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/crc32.h -------------------------------------------------------------------------------- /code/extlibs/zlib/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/crypt.h -------------------------------------------------------------------------------- /code/extlibs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/deflate.c -------------------------------------------------------------------------------- /code/extlibs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/deflate.h -------------------------------------------------------------------------------- /code/extlibs/zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/gzio.c -------------------------------------------------------------------------------- /code/extlibs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/infback.c -------------------------------------------------------------------------------- /code/extlibs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inffast.c -------------------------------------------------------------------------------- /code/extlibs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inffast.h -------------------------------------------------------------------------------- /code/extlibs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inffixed.h -------------------------------------------------------------------------------- /code/extlibs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inflate.c -------------------------------------------------------------------------------- /code/extlibs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inflate.h -------------------------------------------------------------------------------- /code/extlibs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inftrees.c -------------------------------------------------------------------------------- /code/extlibs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/inftrees.h -------------------------------------------------------------------------------- /code/extlibs/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/ioapi.h -------------------------------------------------------------------------------- /code/extlibs/zlib/ionebula3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/ionebula3.cc -------------------------------------------------------------------------------- /code/extlibs/zlib/ionebula3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/ionebula3.h -------------------------------------------------------------------------------- /code/extlibs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/trees.c -------------------------------------------------------------------------------- /code/extlibs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/trees.h -------------------------------------------------------------------------------- /code/extlibs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/uncompr.c -------------------------------------------------------------------------------- /code/extlibs/zlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/unzip.c -------------------------------------------------------------------------------- /code/extlibs/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/unzip.h -------------------------------------------------------------------------------- /code/extlibs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/zconf.h -------------------------------------------------------------------------------- /code/extlibs/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/zconf.in.h -------------------------------------------------------------------------------- /code/extlibs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/zlib.h -------------------------------------------------------------------------------- /code/extlibs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/zutil.c -------------------------------------------------------------------------------- /code/extlibs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/extlibs/zlib/zutil.h -------------------------------------------------------------------------------- /code/foundation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/CMakeLists.txt -------------------------------------------------------------------------------- /code/foundation/app/app.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/app/app.dox -------------------------------------------------------------------------------- /code/foundation/app/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/app/application.h -------------------------------------------------------------------------------- /code/foundation/core/base.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/base.dox -------------------------------------------------------------------------------- /code/foundation/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/config.h -------------------------------------------------------------------------------- /code/foundation/core/core.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/core.dox -------------------------------------------------------------------------------- /code/foundation/core/coreserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/coreserver.h -------------------------------------------------------------------------------- /code/foundation/core/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/debug.cc -------------------------------------------------------------------------------- /code/foundation/core/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/debug.h -------------------------------------------------------------------------------- /code/foundation/core/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/factory.cc -------------------------------------------------------------------------------- /code/foundation/core/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/factory.h -------------------------------------------------------------------------------- /code/foundation/core/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/ptr.h -------------------------------------------------------------------------------- /code/foundation/core/refcounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/refcounted.h -------------------------------------------------------------------------------- /code/foundation/core/rtti.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/rtti.cc -------------------------------------------------------------------------------- /code/foundation/core/rtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/rtti.h -------------------------------------------------------------------------------- /code/foundation/core/rttimacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/rttimacros.h -------------------------------------------------------------------------------- /code/foundation/core/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/singleton.h -------------------------------------------------------------------------------- /code/foundation/core/sysfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/sysfunc.h -------------------------------------------------------------------------------- /code/foundation/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/types.h -------------------------------------------------------------------------------- /code/foundation/core/weakptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/core/weakptr.h -------------------------------------------------------------------------------- /code/foundation/debug/debug.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/debug/debug.dox -------------------------------------------------------------------------------- /code/foundation/debug/minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/debug/minidump.h -------------------------------------------------------------------------------- /code/foundation/foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/foundation.h -------------------------------------------------------------------------------- /code/foundation/http/http.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/http.dox -------------------------------------------------------------------------------- /code/foundation/http/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/httpclient.h -------------------------------------------------------------------------------- /code/foundation/http/httpmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/httpmethod.h -------------------------------------------------------------------------------- /code/foundation/http/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/httpserver.h -------------------------------------------------------------------------------- /code/foundation/http/httpstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/httpstatus.h -------------------------------------------------------------------------------- /code/foundation/http/httpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/http/httpstream.h -------------------------------------------------------------------------------- /code/foundation/io/assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/assign.h -------------------------------------------------------------------------------- /code/foundation/io/binaryreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/binaryreader.h -------------------------------------------------------------------------------- /code/foundation/io/binarywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/binarywriter.h -------------------------------------------------------------------------------- /code/foundation/io/bxmlreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/bxmlreader.cc -------------------------------------------------------------------------------- /code/foundation/io/bxmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/bxmlreader.h -------------------------------------------------------------------------------- /code/foundation/io/console.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/console.cc -------------------------------------------------------------------------------- /code/foundation/io/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/console.h -------------------------------------------------------------------------------- /code/foundation/io/filestream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/filestream.cc -------------------------------------------------------------------------------- /code/foundation/io/filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/filestream.h -------------------------------------------------------------------------------- /code/foundation/io/filetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/filetime.h -------------------------------------------------------------------------------- /code/foundation/io/fswrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/fswrapper.h -------------------------------------------------------------------------------- /code/foundation/io/io.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/io.dox -------------------------------------------------------------------------------- /code/foundation/io/iointerface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/iointerface.cc -------------------------------------------------------------------------------- /code/foundation/io/iointerface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/iointerface.h -------------------------------------------------------------------------------- /code/foundation/io/ioserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/ioserver.cc -------------------------------------------------------------------------------- /code/foundation/io/ioserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/ioserver.h -------------------------------------------------------------------------------- /code/foundation/io/mediatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/mediatype.h -------------------------------------------------------------------------------- /code/foundation/io/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/memorystream.h -------------------------------------------------------------------------------- /code/foundation/io/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/stream.cc -------------------------------------------------------------------------------- /code/foundation/io/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/stream.h -------------------------------------------------------------------------------- /code/foundation/io/streamreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/streamreader.h -------------------------------------------------------------------------------- /code/foundation/io/streamwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/streamwriter.h -------------------------------------------------------------------------------- /code/foundation/io/textreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/textreader.cc -------------------------------------------------------------------------------- /code/foundation/io/textreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/textreader.h -------------------------------------------------------------------------------- /code/foundation/io/textwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/textwriter.cc -------------------------------------------------------------------------------- /code/foundation/io/textwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/textwriter.h -------------------------------------------------------------------------------- /code/foundation/io/uri.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/uri.cc -------------------------------------------------------------------------------- /code/foundation/io/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/uri.h -------------------------------------------------------------------------------- /code/foundation/io/xmlreader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/xmlreader.cc -------------------------------------------------------------------------------- /code/foundation/io/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/xmlreader.h -------------------------------------------------------------------------------- /code/foundation/io/xmlwriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/xmlwriter.cc -------------------------------------------------------------------------------- /code/foundation/io/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/io/xmlwriter.h -------------------------------------------------------------------------------- /code/foundation/jobs/job.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/job.cc -------------------------------------------------------------------------------- /code/foundation/jobs/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/job.h -------------------------------------------------------------------------------- /code/foundation/jobs/jobport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/jobport.cc -------------------------------------------------------------------------------- /code/foundation/jobs/jobport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/jobport.h -------------------------------------------------------------------------------- /code/foundation/jobs/jobsystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/jobsystem.cc -------------------------------------------------------------------------------- /code/foundation/jobs/jobsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/jobsystem.h -------------------------------------------------------------------------------- /code/foundation/jobs/stdjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/stdjob.h -------------------------------------------------------------------------------- /code/foundation/jobs/tp/tpjob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/tp/tpjob.cc -------------------------------------------------------------------------------- /code/foundation/jobs/tp/tpjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/jobs/tp/tpjob.h -------------------------------------------------------------------------------- /code/foundation/legacy.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/legacy.dox -------------------------------------------------------------------------------- /code/foundation/math/bbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/bbox.cc -------------------------------------------------------------------------------- /code/foundation/math/bbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/bbox.h -------------------------------------------------------------------------------- /code/foundation/math/clipstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/clipstatus.h -------------------------------------------------------------------------------- /code/foundation/math/float2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/float2.h -------------------------------------------------------------------------------- /code/foundation/math/float4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/float4.h -------------------------------------------------------------------------------- /code/foundation/math/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/frustum.h -------------------------------------------------------------------------------- /code/foundation/math/line.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/line.cc -------------------------------------------------------------------------------- /code/foundation/math/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/line.h -------------------------------------------------------------------------------- /code/foundation/math/math.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/math.dox -------------------------------------------------------------------------------- /code/foundation/math/matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/matrix44.h -------------------------------------------------------------------------------- /code/foundation/math/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/noise.h -------------------------------------------------------------------------------- /code/foundation/math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/plane.h -------------------------------------------------------------------------------- /code/foundation/math/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/point.h -------------------------------------------------------------------------------- /code/foundation/math/polar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/polar.h -------------------------------------------------------------------------------- /code/foundation/math/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/quaternion.h -------------------------------------------------------------------------------- /code/foundation/math/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/rectangle.h -------------------------------------------------------------------------------- /code/foundation/math/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/scalar.h -------------------------------------------------------------------------------- /code/foundation/math/sphere_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/sphere_.cc -------------------------------------------------------------------------------- /code/foundation/math/sphere_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/sphere_.h -------------------------------------------------------------------------------- /code/foundation/math/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/math/vector.h -------------------------------------------------------------------------------- /code/foundation/memory/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/memory/heap.h -------------------------------------------------------------------------------- /code/foundation/memory/memory.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/memory/memory.dox -------------------------------------------------------------------------------- /code/foundation/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/memory/memory.h -------------------------------------------------------------------------------- /code/foundation/messaging/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/messaging/id.h -------------------------------------------------------------------------------- /code/foundation/messaging/messaging.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Messaging 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/foundation/messaging/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/messaging/port.cc -------------------------------------------------------------------------------- /code/foundation/messaging/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/messaging/port.h -------------------------------------------------------------------------------- /code/foundation/net/debugpacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/debugpacket.h -------------------------------------------------------------------------------- /code/foundation/net/net.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/net.dox -------------------------------------------------------------------------------- /code/foundation/net/tcpclient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/tcpclient.cc -------------------------------------------------------------------------------- /code/foundation/net/tcpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/tcpclient.h -------------------------------------------------------------------------------- /code/foundation/net/tcpserver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/tcpserver.cc -------------------------------------------------------------------------------- /code/foundation/net/tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/net/tcpserver.h -------------------------------------------------------------------------------- /code/foundation/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/stdneb.cc -------------------------------------------------------------------------------- /code/foundation/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/stdneb.h -------------------------------------------------------------------------------- /code/foundation/system/appentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/system/appentry.h -------------------------------------------------------------------------------- /code/foundation/system/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/system/cpu.h -------------------------------------------------------------------------------- /code/foundation/system/system.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/system/system.dox -------------------------------------------------------------------------------- /code/foundation/threading/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/threading/event.h -------------------------------------------------------------------------------- /code/foundation/threading/threading.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Threading 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/foundation/timing/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/timing/time.h -------------------------------------------------------------------------------- /code/foundation/timing/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/timing/timer.h -------------------------------------------------------------------------------- /code/foundation/timing/timing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/timing/timing.dox -------------------------------------------------------------------------------- /code/foundation/util/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/array.h -------------------------------------------------------------------------------- /code/foundation/util/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/bitfield.h -------------------------------------------------------------------------------- /code/foundation/util/blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/blob.cc -------------------------------------------------------------------------------- /code/foundation/util/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/blob.h -------------------------------------------------------------------------------- /code/foundation/util/crc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/crc.cc -------------------------------------------------------------------------------- /code/foundation/util/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/crc.h -------------------------------------------------------------------------------- /code/foundation/util/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/delegate.h -------------------------------------------------------------------------------- /code/foundation/util/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/dictionary.h -------------------------------------------------------------------------------- /code/foundation/util/fixedarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/fixedarray.h -------------------------------------------------------------------------------- /code/foundation/util/fixedtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/fixedtable.h -------------------------------------------------------------------------------- /code/foundation/util/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/fourcc.h -------------------------------------------------------------------------------- /code/foundation/util/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/guid.h -------------------------------------------------------------------------------- /code/foundation/util/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/hashtable.h -------------------------------------------------------------------------------- /code/foundation/util/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/list.h -------------------------------------------------------------------------------- /code/foundation/util/quadtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/quadtree.h -------------------------------------------------------------------------------- /code/foundation/util/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/queue.h -------------------------------------------------------------------------------- /code/foundation/util/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/ringbuffer.h -------------------------------------------------------------------------------- /code/foundation/util/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/round.h -------------------------------------------------------------------------------- /code/foundation/util/simpletree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/simpletree.h -------------------------------------------------------------------------------- /code/foundation/util/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/stack.h -------------------------------------------------------------------------------- /code/foundation/util/string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/string.cc -------------------------------------------------------------------------------- /code/foundation/util/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/string.h -------------------------------------------------------------------------------- /code/foundation/util/stringatom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/stringatom.h -------------------------------------------------------------------------------- /code/foundation/util/util.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/util.dox -------------------------------------------------------------------------------- /code/foundation/util/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/foundation/util/variant.h -------------------------------------------------------------------------------- /code/mayaplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/mayaplugin/CMakeLists.txt -------------------------------------------------------------------------------- /code/mayaplugin/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/mayaplugin/stdneb.cc -------------------------------------------------------------------------------- /code/qttoolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/CMakeLists.txt -------------------------------------------------------------------------------- /code/qttoolkit/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/copyright.txt -------------------------------------------------------------------------------- /code/qttoolkit/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/gpl.txt -------------------------------------------------------------------------------- /code/qttoolkit/icons/FX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/FX.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/Game.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/Light.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/Play.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/Template.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/audio.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/grid.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/gui.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/open.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/save.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/saveas.png -------------------------------------------------------------------------------- /code/qttoolkit/icons/stefan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/icons/stefan.jpg -------------------------------------------------------------------------------- /code/qttoolkit/nody/core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/nody/core/config.h -------------------------------------------------------------------------------- /code/qttoolkit/nody/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/nody/stdneb.cc -------------------------------------------------------------------------------- /code/qttoolkit/nody/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/nody/stdneb.h -------------------------------------------------------------------------------- /code/qttoolkit/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/resources.qrc -------------------------------------------------------------------------------- /code/qttoolkit/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/stdneb.cc -------------------------------------------------------------------------------- /code/qttoolkit/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/qttoolkit/stdneb.h -------------------------------------------------------------------------------- /code/render/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/CMakeLists.txt -------------------------------------------------------------------------------- /code/render/animation/animjob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/animation/animjob.cc -------------------------------------------------------------------------------- /code/render/animation/animjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/animation/animjob.h -------------------------------------------------------------------------------- /code/render/characters/characters.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Characters 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/coregraphics/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/coregraphics/config.h -------------------------------------------------------------------------------- /code/render/coregraphics/coregraphics.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace CoreGraphics 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/coregraphics/d3d11/d3d11rendertargetcube.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/coregraphics/d3d11/d3d11rendertargetcube.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/coregraphics/d3d9/direct3d9.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Direct3D9 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/coregraphics/mesh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/coregraphics/mesh.cc -------------------------------------------------------------------------------- /code/render/coregraphics/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/coregraphics/mesh.h -------------------------------------------------------------------------------- /code/render/coregraphics/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/coregraphics/shader.h -------------------------------------------------------------------------------- /code/render/events/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/events/event.h -------------------------------------------------------------------------------- /code/render/frame/batchgroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/batchgroup.cc -------------------------------------------------------------------------------- /code/render/frame/batchgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/batchgroup.h -------------------------------------------------------------------------------- /code/render/frame/frame.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Frame 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/frame/framebatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framebatch.cc -------------------------------------------------------------------------------- /code/render/frame/framebatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framebatch.h -------------------------------------------------------------------------------- /code/render/frame/framecompute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framecompute.cc -------------------------------------------------------------------------------- /code/render/frame/framecompute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framecompute.h -------------------------------------------------------------------------------- /code/render/frame/framegui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framegui.cc -------------------------------------------------------------------------------- /code/render/frame/framegui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framegui.h -------------------------------------------------------------------------------- /code/render/frame/framelights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framelights.h -------------------------------------------------------------------------------- /code/render/frame/framepass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framepass.cc -------------------------------------------------------------------------------- /code/render/frame/framepass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/framepass.h -------------------------------------------------------------------------------- /code/render/frame/frameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/frameserver.h -------------------------------------------------------------------------------- /code/render/frame/frameshader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/frameshader.h -------------------------------------------------------------------------------- /code/render/frame/frameshapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/frameshapes.h -------------------------------------------------------------------------------- /code/render/frame/frametext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/frametext.cc -------------------------------------------------------------------------------- /code/render/frame/frametext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/frametext.h -------------------------------------------------------------------------------- /code/render/frame/sortingmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/frame/sortingmode.h -------------------------------------------------------------------------------- /code/render/graphics/display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/display.cc -------------------------------------------------------------------------------- /code/render/graphics/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/display.h -------------------------------------------------------------------------------- /code/render/graphics/stage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/stage.cc -------------------------------------------------------------------------------- /code/render/graphics/stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/stage.h -------------------------------------------------------------------------------- /code/render/graphics/view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/view.cc -------------------------------------------------------------------------------- /code/render/graphics/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/graphics/view.h -------------------------------------------------------------------------------- /code/render/image/bitmapimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/bitmapimage.h -------------------------------------------------------------------------------- /code/render/image/ddsimage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/ddsimage.cc -------------------------------------------------------------------------------- /code/render/image/ddsimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/ddsimage.h -------------------------------------------------------------------------------- /code/render/image/imagebase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/imagebase.cc -------------------------------------------------------------------------------- /code/render/image/imagebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/imagebase.h -------------------------------------------------------------------------------- /code/render/image/jpegimage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/jpegimage.cc -------------------------------------------------------------------------------- /code/render/image/jpegimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/jpegimage.h -------------------------------------------------------------------------------- /code/render/image/pngimage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/pngimage.cc -------------------------------------------------------------------------------- /code/render/image/pngimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/image/pngimage.h -------------------------------------------------------------------------------- /code/render/input/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/char.h -------------------------------------------------------------------------------- /code/render/input/gamepad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/gamepad.cc -------------------------------------------------------------------------------- /code/render/input/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/gamepad.h -------------------------------------------------------------------------------- /code/render/input/input.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Input 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/input/inputevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/inputevent.h -------------------------------------------------------------------------------- /code/render/input/inputserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/inputserver.h -------------------------------------------------------------------------------- /code/render/input/key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/key.cc -------------------------------------------------------------------------------- /code/render/input/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/key.h -------------------------------------------------------------------------------- /code/render/input/keyboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/keyboard.cc -------------------------------------------------------------------------------- /code/render/input/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/keyboard.h -------------------------------------------------------------------------------- /code/render/input/mouse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/mouse.cc -------------------------------------------------------------------------------- /code/render/input/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/mouse.h -------------------------------------------------------------------------------- /code/render/input/mousebutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/input/mousebutton.h -------------------------------------------------------------------------------- /code/render/jobs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/jobs/CMakeLists.txt -------------------------------------------------------------------------------- /code/render/lighting/csmutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/lighting/csmutil.cc -------------------------------------------------------------------------------- /code/render/lighting/csmutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/lighting/csmutil.h -------------------------------------------------------------------------------- /code/render/lighting/lighting.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Lighting 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/lighting/pssmutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/lighting/pssmutil.h -------------------------------------------------------------------------------- /code/render/materials/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/materials/surface.h -------------------------------------------------------------------------------- /code/render/models/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/models/model.cc -------------------------------------------------------------------------------- /code/render/models/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/models/model.h -------------------------------------------------------------------------------- /code/render/models/modelnode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/models/modelnode.cc -------------------------------------------------------------------------------- /code/render/models/modelnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/models/modelnode.h -------------------------------------------------------------------------------- /code/render/models/models.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Models 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/models/nodes/lightnode.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/models/nodes/lightnode.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basecontroller.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basecontroller.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basematerial.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basematerial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basevehicle.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/base/basevehicle.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/character.h -------------------------------------------------------------------------------- /code/render/physics/collider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/collider.cc -------------------------------------------------------------------------------- /code/render/physics/collider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/collider.h -------------------------------------------------------------------------------- /code/render/physics/contact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/contact.cc -------------------------------------------------------------------------------- /code/render/physics/contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/contact.h -------------------------------------------------------------------------------- /code/render/physics/filterset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/filterset.h -------------------------------------------------------------------------------- /code/render/physics/joint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/joint.cc -------------------------------------------------------------------------------- /code/render/physics/joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/joint.h -------------------------------------------------------------------------------- /code/render/physics/joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/joints.h -------------------------------------------------------------------------------- /code/render/physics/material.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/material.h -------------------------------------------------------------------------------- /code/render/physics/physx/physxcontroller.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/physx/physxcontroller.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/physx/physxmaterial.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/physx/physxmaterial.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/physx/physxvehicle.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/physx/physxvehicle.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/render/physics/scene.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/scene.cc -------------------------------------------------------------------------------- /code/render/physics/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/scene.h -------------------------------------------------------------------------------- /code/render/physics/userdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/userdata.h -------------------------------------------------------------------------------- /code/render/physics/vehicle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/vehicle.cc -------------------------------------------------------------------------------- /code/render/physics/vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/physics/vehicle.h -------------------------------------------------------------------------------- /code/render/renderutil/renderutil.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace RenderUtil 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/resources/resources.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Resources 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/render/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/stdneb.cc -------------------------------------------------------------------------------- /code/render/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/render/stdneb.h -------------------------------------------------------------------------------- /code/res/nebula.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/res/nebula.ico -------------------------------------------------------------------------------- /code/res/nebula.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/res/nebula.rc -------------------------------------------------------------------------------- /code/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/CMakeLists.txt -------------------------------------------------------------------------------- /code/tests/jobstest/jobstest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/jobstest/jobstest.cc -------------------------------------------------------------------------------- /code/tests/jobstest/testdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/jobstest/testdata.h -------------------------------------------------------------------------------- /code/tests/mathtest/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/mathtest/main.cc -------------------------------------------------------------------------------- /code/tests/mathtest/planetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/mathtest/planetest.h -------------------------------------------------------------------------------- /code/tests/mathtest/pointtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/mathtest/pointtest.h -------------------------------------------------------------------------------- /code/tests/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/stdneb.cc -------------------------------------------------------------------------------- /code/tests/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/stdneb.h -------------------------------------------------------------------------------- /code/tests/testaddon/dbattrs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testaddon/dbattrs.cc -------------------------------------------------------------------------------- /code/tests/testaddon/dbattrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testaddon/dbattrs.h -------------------------------------------------------------------------------- /code/tests/testaddon/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testaddon/main.cc -------------------------------------------------------------------------------- /code/tests/testbase/test.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @namespace Test 3 | 4 | FIXME! 5 | */ 6 | -------------------------------------------------------------------------------- /code/tests/testbase/testcase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testbase/testcase.cc -------------------------------------------------------------------------------- /code/tests/testbase/testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testbase/testcase.h -------------------------------------------------------------------------------- /code/tests/testrender/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testrender/main.cc -------------------------------------------------------------------------------- /code/tests/testtoolkit/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testtoolkit/main.cc -------------------------------------------------------------------------------- /code/tests/testwin32/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/testwin32/main.cc -------------------------------------------------------------------------------- /code/tests/ziptest/ziptest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/tests/ziptest/ziptest.cc -------------------------------------------------------------------------------- /code/toolkit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/CMakeLists.txt -------------------------------------------------------------------------------- /code/toolkit/levelviewer/NV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/levelviewer/NV.ico -------------------------------------------------------------------------------- /code/toolkit/levelviewer/levelviewer.rc: -------------------------------------------------------------------------------- 1 | NebulaIcon ICON DISCARDABLE "NV.ico" -------------------------------------------------------------------------------- /code/toolkit/nsc3/nsc3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/nsc3.cc -------------------------------------------------------------------------------- /code/toolkit/nsc3/shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shader.cc -------------------------------------------------------------------------------- /code/toolkit/nsc3/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shader.h -------------------------------------------------------------------------------- /code/toolkit/nsc3/shadernode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shadernode.cc -------------------------------------------------------------------------------- /code/toolkit/nsc3/shadernode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shadernode.h -------------------------------------------------------------------------------- /code/toolkit/nsc3/shaderparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shaderparam.h -------------------------------------------------------------------------------- /code/toolkit/nsc3/shaderslot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shaderslot.cc -------------------------------------------------------------------------------- /code/toolkit/nsc3/shaderslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsc3/shaderslot.h -------------------------------------------------------------------------------- /code/toolkit/nsh3/nsh3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/nsh3/nsh3.cc -------------------------------------------------------------------------------- /code/toolkit/setup/setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/setup/setup.cc -------------------------------------------------------------------------------- /code/toolkit/stdneb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/stdneb.cc -------------------------------------------------------------------------------- /code/toolkit/stdneb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/code/toolkit/stdneb.h -------------------------------------------------------------------------------- /code/toolkit/toolkitutil/fbx/attic/character.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cbdefault.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/cbdefault.ini -------------------------------------------------------------------------------- /data/levelviewer/layoutlist.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/levelviewer/layoutlist.rml -------------------------------------------------------------------------------- /data/levelviewer/levellist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/levelviewer/levellist.lua -------------------------------------------------------------------------------- /data/levelviewer/levellist.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/levelviewer/levellist.rcss -------------------------------------------------------------------------------- /data/levelviewer/levellist.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/levelviewer/levellist.rml -------------------------------------------------------------------------------- /data/scripts/vecmath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/scripts/vecmath.lua -------------------------------------------------------------------------------- /data/tables/anims.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/anims.xml -------------------------------------------------------------------------------- /data/tables/blueprints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/blueprints.xml -------------------------------------------------------------------------------- /data/tables/db/_audiobanks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/_audiobanks.xml -------------------------------------------------------------------------------- /data/tables/db/_environment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/_environment.xml -------------------------------------------------------------------------------- /data/tables/db/_ui_fonts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/_ui_fonts.xml -------------------------------------------------------------------------------- /data/tables/db/_ui_layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/_ui_layouts.xml -------------------------------------------------------------------------------- /data/tables/db/_ui_scripts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/_ui_scripts.xml -------------------------------------------------------------------------------- /data/tables/db/camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/camera.xml -------------------------------------------------------------------------------- /data/tables/db/freecamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/freecamera.xml -------------------------------------------------------------------------------- /data/tables/db/lightprobe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/lightprobe.xml -------------------------------------------------------------------------------- /data/tables/db/navmeshdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/navmeshdata.xml -------------------------------------------------------------------------------- /data/tables/db/remotecamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/remotecamera.xml -------------------------------------------------------------------------------- /data/tables/db/trigger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/db/trigger.xml -------------------------------------------------------------------------------- /data/tables/effects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/effects.xml -------------------------------------------------------------------------------- /data/tables/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/globals.xml -------------------------------------------------------------------------------- /data/tables/materials.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/data/tables/materials.xml -------------------------------------------------------------------------------- /doc/doxygen/commondoc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/doxygen/commondoc.cfg -------------------------------------------------------------------------------- /doc/doxygen/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/doxygen/doxygen.css -------------------------------------------------------------------------------- /doc/doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/doxygen/footer.html -------------------------------------------------------------------------------- /doc/doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/doxygen/header.html -------------------------------------------------------------------------------- /doc/doxygen/nebula3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/doxygen/nebula3.cfg -------------------------------------------------------------------------------- /doc/doxygen/readme.txt: -------------------------------------------------------------------------------- 1 | Doxygen config files. 2 | 3 | -Floh. 4 | -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/license.txt -------------------------------------------------------------------------------- /doc/nebula3.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/nebula3.chm -------------------------------------------------------------------------------- /doc/nebula3/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/nebula3/mainpage.dox -------------------------------------------------------------------------------- /doc/nebula3/readme.txt: -------------------------------------------------------------------------------- 1 | Doc files here. 2 | -------------------------------------------------------------------------------- /doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/doc/readme.txt -------------------------------------------------------------------------------- /libs/cmake/FindFBX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/libs/cmake/FindFBX.cmake -------------------------------------------------------------------------------- /libs/cmake/FindFmodStudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/libs/cmake/FindFmodStudio.cmake -------------------------------------------------------------------------------- /libs/cmake/NebulaHelpers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/libs/cmake/NebulaHelpers.cmake -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/license.txt -------------------------------------------------------------------------------- /projectinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/projectinfo.xml -------------------------------------------------------------------------------- /projects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/projects/CMakeLists.txt -------------------------------------------------------------------------------- /projects/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/projects/readme.txt -------------------------------------------------------------------------------- /work/assets/placeholder/box.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/placeholder/box.fbx -------------------------------------------------------------------------------- /work/assets/placeholder/box.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/placeholder/box.mb -------------------------------------------------------------------------------- /work/assets/system/bigbox.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/bigbox.fbx -------------------------------------------------------------------------------- /work/assets/system/bigbox.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/bigbox.mb -------------------------------------------------------------------------------- /work/assets/system/bigsphere.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/bigsphere.mb -------------------------------------------------------------------------------- /work/assets/system/black.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/black.dds -------------------------------------------------------------------------------- /work/assets/system/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/blue.png -------------------------------------------------------------------------------- /work/assets/system/box.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/box.fbx -------------------------------------------------------------------------------- /work/assets/system/box.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/box.mb -------------------------------------------------------------------------------- /work/assets/system/box.physics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/box.physics -------------------------------------------------------------------------------- /work/assets/system/cone.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/cone.fbx -------------------------------------------------------------------------------- /work/assets/system/cone.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/cone.mb -------------------------------------------------------------------------------- /work/assets/system/cone.physics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/cone.physics -------------------------------------------------------------------------------- /work/assets/system/cylinder.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/cylinder.mb -------------------------------------------------------------------------------- /work/assets/system/darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/darkgray.png -------------------------------------------------------------------------------- /work/assets/system/defcube.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/defcube.dds -------------------------------------------------------------------------------- /work/assets/system/emitter.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/emitter.fbx -------------------------------------------------------------------------------- /work/assets/system/emitter.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/emitter.mb -------------------------------------------------------------------------------- /work/assets/system/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/gray.png -------------------------------------------------------------------------------- /work/assets/system/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/green.png -------------------------------------------------------------------------------- /work/assets/system/grid.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/grid.mb -------------------------------------------------------------------------------- /work/assets/system/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/grid.png -------------------------------------------------------------------------------- /work/assets/system/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/light.png -------------------------------------------------------------------------------- /work/assets/system/nobump.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/nobump.psd -------------------------------------------------------------------------------- /work/assets/system/nobump.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/nobump.xml -------------------------------------------------------------------------------- /work/assets/system/noise.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/noise.psd -------------------------------------------------------------------------------- /work/assets/system/plane.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/plane.fbx -------------------------------------------------------------------------------- /work/assets/system/plane.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/plane.mb -------------------------------------------------------------------------------- /work/assets/system/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/red.png -------------------------------------------------------------------------------- /work/assets/system/red_cube.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/red_cube.dds -------------------------------------------------------------------------------- /work/assets/system/sky.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sky.dds -------------------------------------------------------------------------------- /work/assets/system/sky_irr.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sky_irr.dds -------------------------------------------------------------------------------- /work/assets/system/sky_irr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sky_irr.xml -------------------------------------------------------------------------------- /work/assets/system/sky_refl.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sky_refl.dds -------------------------------------------------------------------------------- /work/assets/system/sky_refl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sky_refl.xml -------------------------------------------------------------------------------- /work/assets/system/skybox.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/skybox.fbx -------------------------------------------------------------------------------- /work/assets/system/skybox.sur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/skybox.sur -------------------------------------------------------------------------------- /work/assets/system/skydome.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/skydome.dds -------------------------------------------------------------------------------- /work/assets/system/skydome.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/skydome.fbx -------------------------------------------------------------------------------- /work/assets/system/skydome.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/skydome.mb -------------------------------------------------------------------------------- /work/assets/system/specmap.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/specmap.dds -------------------------------------------------------------------------------- /work/assets/system/sphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sphere.fbx -------------------------------------------------------------------------------- /work/assets/system/sphere.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sphere.mb -------------------------------------------------------------------------------- /work/assets/system/sunshape.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/sunshape.fbx -------------------------------------------------------------------------------- /work/assets/system/torus.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/torus.mb -------------------------------------------------------------------------------- /work/assets/system/white.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/assets/system/white.dds -------------------------------------------------------------------------------- /work/frame/win32/dx9default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/frame/win32/dx9default.xml -------------------------------------------------------------------------------- /work/frame/win32/godrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/frame/win32/godrays.xml -------------------------------------------------------------------------------- /work/frame/win32/picking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/frame/win32/picking.xml -------------------------------------------------------------------------------- /work/frame/win32/reflection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/frame/win32/reflection.xml -------------------------------------------------------------------------------- /work/installer/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/build.bat -------------------------------------------------------------------------------- /work/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/header.bmp -------------------------------------------------------------------------------- /work/installer/icons/NBE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/icons/NBE.ico -------------------------------------------------------------------------------- /work/installer/icons/NCB.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/icons/NCB.ico -------------------------------------------------------------------------------- /work/installer/icons/NLE.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/icons/NLE.ico -------------------------------------------------------------------------------- /work/installer/icons/NV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/icons/NV.ico -------------------------------------------------------------------------------- /work/installer/install.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/install.ico -------------------------------------------------------------------------------- /work/installer/n3contentsdk.aip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/n3contentsdk.aip -------------------------------------------------------------------------------- /work/installer/nebulalogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/nebulalogo.ico -------------------------------------------------------------------------------- /work/installer/uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/uninstall.ico -------------------------------------------------------------------------------- /work/installer/wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/installer/wizard.bmp -------------------------------------------------------------------------------- /work/materials/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/materials/base.xml -------------------------------------------------------------------------------- /work/shaders/fx/animated.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/animated.fx -------------------------------------------------------------------------------- /work/shaders/fx/averagelum.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/averagelum.fx -------------------------------------------------------------------------------- /work/shaders/fx/billboard.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/billboard.fx -------------------------------------------------------------------------------- /work/shaders/fx/box3taphori.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/box3taphori.fx -------------------------------------------------------------------------------- /work/shaders/fx/box3tapvert.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/box3tapvert.fx -------------------------------------------------------------------------------- /work/shaders/fx/brightpass.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/brightpass.fx -------------------------------------------------------------------------------- /work/shaders/fx/copy.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/copy.fx -------------------------------------------------------------------------------- /work/shaders/fx/csmblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/csmblur.fx -------------------------------------------------------------------------------- /work/shaders/fx/downscale.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/downscale.fx -------------------------------------------------------------------------------- /work/shaders/fx/empty.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/empty.fx -------------------------------------------------------------------------------- /work/shaders/fx/finalize.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/finalize.fx -------------------------------------------------------------------------------- /work/shaders/fx/foliage.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/foliage.fx -------------------------------------------------------------------------------- /work/shaders/fx/gather.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/gather.fx -------------------------------------------------------------------------------- /work/shaders/fx/gatheralpha.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/gatheralpha.fx -------------------------------------------------------------------------------- /work/shaders/fx/gaussianblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/gaussianblur.fx -------------------------------------------------------------------------------- /work/shaders/fx/gui.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/gui.fx -------------------------------------------------------------------------------- /work/shaders/fx/hbao.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/hbao.fx -------------------------------------------------------------------------------- /work/shaders/fx/hbaoblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/hbaoblur.fx -------------------------------------------------------------------------------- /work/shaders/fx/lib/CSM.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lib/CSM.fxh -------------------------------------------------------------------------------- /work/shaders/fx/lib/boxtap.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lib/boxtap.fxh -------------------------------------------------------------------------------- /work/shaders/fx/lib/shared.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lib/shared.fxh -------------------------------------------------------------------------------- /work/shaders/fx/lib/util.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lib/util.fxh -------------------------------------------------------------------------------- /work/shaders/fx/lightmapped.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lightmapped.fx -------------------------------------------------------------------------------- /work/shaders/fx/lights.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lights.fx -------------------------------------------------------------------------------- /work/shaders/fx/lightscatter.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/lightscatter.fx -------------------------------------------------------------------------------- /work/shaders/fx/multilayered.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/multilayered.fx -------------------------------------------------------------------------------- /work/shaders/fx/particle.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/particle.fx -------------------------------------------------------------------------------- /work/shaders/fx/picking.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/picking.fx -------------------------------------------------------------------------------- /work/shaders/fx/shadow.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/shadow.fx -------------------------------------------------------------------------------- /work/shaders/fx/simple.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/simple.fx -------------------------------------------------------------------------------- /work/shaders/fx/skinned.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/skinned.fx -------------------------------------------------------------------------------- /work/shaders/fx/skybox.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/skybox.fx -------------------------------------------------------------------------------- /work/shaders/fx/static.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/static.fx -------------------------------------------------------------------------------- /work/shaders/fx/subsurface.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/subsurface.fx -------------------------------------------------------------------------------- /work/shaders/fx/sun.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/sun.fx -------------------------------------------------------------------------------- /work/shaders/fx/unlit.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/unlit.fx -------------------------------------------------------------------------------- /work/shaders/fx/volumefog.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/volumefog.fx -------------------------------------------------------------------------------- /work/shaders/fx/water.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/fx/water.fx -------------------------------------------------------------------------------- /work/shaders/gl/animated.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/animated.fx -------------------------------------------------------------------------------- /work/shaders/gl/averagelum.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/averagelum.fx -------------------------------------------------------------------------------- /work/shaders/gl/billboard.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/billboard.fx -------------------------------------------------------------------------------- /work/shaders/gl/box3taphori.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/box3taphori.fx -------------------------------------------------------------------------------- /work/shaders/gl/box3tapvert.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/box3tapvert.fx -------------------------------------------------------------------------------- /work/shaders/gl/brightpass.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/brightpass.fx -------------------------------------------------------------------------------- /work/shaders/gl/copy.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/copy.fx -------------------------------------------------------------------------------- /work/shaders/gl/csmblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/csmblur.fx -------------------------------------------------------------------------------- /work/shaders/gl/downscale.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/downscale.fx -------------------------------------------------------------------------------- /work/shaders/gl/emissive.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/emissive.fx -------------------------------------------------------------------------------- /work/shaders/gl/empty.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/empty.fx -------------------------------------------------------------------------------- /work/shaders/gl/finalize.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/finalize.fx -------------------------------------------------------------------------------- /work/shaders/gl/foliage.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/foliage.fx -------------------------------------------------------------------------------- /work/shaders/gl/gather.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/gather.fx -------------------------------------------------------------------------------- /work/shaders/gl/gatheralpha.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/gatheralpha.fx -------------------------------------------------------------------------------- /work/shaders/gl/gaussianblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/gaussianblur.fx -------------------------------------------------------------------------------- /work/shaders/gl/grid.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/grid.fx -------------------------------------------------------------------------------- /work/shaders/gl/gui.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/gui.fx -------------------------------------------------------------------------------- /work/shaders/gl/hbao.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/hbao.fx -------------------------------------------------------------------------------- /work/shaders/gl/hbao_cs.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/hbao_cs.fx -------------------------------------------------------------------------------- /work/shaders/gl/hbaoblur.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/hbaoblur.fx -------------------------------------------------------------------------------- /work/shaders/gl/hbaoblur_cs.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/hbaoblur_cs.fx -------------------------------------------------------------------------------- /work/shaders/gl/imgui.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/imgui.fx -------------------------------------------------------------------------------- /work/shaders/gl/lib/CSM.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lib/CSM.fxh -------------------------------------------------------------------------------- /work/shaders/gl/lib/boxtap.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lib/boxtap.fxh -------------------------------------------------------------------------------- /work/shaders/gl/lib/shared.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lib/shared.fxh -------------------------------------------------------------------------------- /work/shaders/gl/lib/std.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lib/std.fxh -------------------------------------------------------------------------------- /work/shaders/gl/lib/util.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lib/util.fxh -------------------------------------------------------------------------------- /work/shaders/gl/lightmapped.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lightmapped.fx -------------------------------------------------------------------------------- /work/shaders/gl/lights.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lights.fx -------------------------------------------------------------------------------- /work/shaders/gl/lightscatter.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/lightscatter.fx -------------------------------------------------------------------------------- /work/shaders/gl/minimap.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/minimap.fx -------------------------------------------------------------------------------- /work/shaders/gl/multilayered.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/multilayered.fx -------------------------------------------------------------------------------- /work/shaders/gl/particle.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/particle.fx -------------------------------------------------------------------------------- /work/shaders/gl/picking.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/picking.fx -------------------------------------------------------------------------------- /work/shaders/gl/placeholder.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/placeholder.fx -------------------------------------------------------------------------------- /work/shaders/gl/shadow.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/shadow.fx -------------------------------------------------------------------------------- /work/shaders/gl/shared.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/shared.fx -------------------------------------------------------------------------------- /work/shaders/gl/silhouette.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/silhouette.fx -------------------------------------------------------------------------------- /work/shaders/gl/simple.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/simple.fx -------------------------------------------------------------------------------- /work/shaders/gl/skinned.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/skinned.fx -------------------------------------------------------------------------------- /work/shaders/gl/skybox.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/skybox.fx -------------------------------------------------------------------------------- /work/shaders/gl/sprite.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/sprite.fx -------------------------------------------------------------------------------- /work/shaders/gl/ssr_cs.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/ssr_cs.fx -------------------------------------------------------------------------------- /work/shaders/gl/static.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/static.fx -------------------------------------------------------------------------------- /work/shaders/gl/subsurface.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/subsurface.fx -------------------------------------------------------------------------------- /work/shaders/gl/text.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/text.fx -------------------------------------------------------------------------------- /work/shaders/gl/unlit.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/unlit.fx -------------------------------------------------------------------------------- /work/shaders/gl/volumefog.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/volumefog.fx -------------------------------------------------------------------------------- /work/shaders/gl/volumelight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/volumelight.fx -------------------------------------------------------------------------------- /work/shaders/gl/vsdepthtoz.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/vsdepthtoz.fx -------------------------------------------------------------------------------- /work/shaders/gl/water.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shaders/gl/water.fx -------------------------------------------------------------------------------- /work/shady/projects/test.ndp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gscept/nebula-trifid/HEAD/work/shady/projects/test.ndp --------------------------------------------------------------------------------