实例介绍
游戏截图: http://blog.csdn.net/niehanmin/article/details/79445124 Cocos2D-X《街机拳皇》游戏源码 说明: 拳皇是一款经典的街机格斗游戏,让我们来重温一下经典之作 游戏自带模拟器,模拟器支持2000多款游戏;如果您觉得玩一个游戏不过瘾可以去下载其他游戏rom,正所谓一机在手,玩遍所有。 源码仅供学习参考,禁止用于商业用途。
【实例截图】
【核心代码】
4744300845213322917.rar
└── Cocos2D-X《街机拳皇》游戏源码
└── 拳皇街霸
└── cocos2d-x-2.2.2
├── AUTHORS
├── build-nacl.sh
├── build-win32.bat
├── CHANGELOG
├── cocos2d-win32.vc2010.sln
├── cocos2d-win32.vc2012.sdf
├── cocos2d-win32.vc2012.sln
├── cocos2d-win32.vc2012.v12.suo
├── cocos2d-winrt.vc2012.sln
├── cocos2d-winrt.vc2013.sdf
├── cocos2d-winrt.vc2013.sln
├── cocos2d-winrt.vc2013.v12.suo
├── cocos2d-wp8.vc2012.sln
├── cocos2dx
│ ├── actions
│ │ ├── CCActionCamera.cpp
│ │ ├── CCActionCamera.h
│ │ ├── CCActionCatmullRom.cpp
│ │ ├── CCActionCatmullRom.h
│ │ ├── CCAction.cpp
│ │ ├── CCActionEase.cpp
│ │ ├── CCActionEase.h
│ │ ├── CCActionGrid3D.cpp
│ │ ├── CCActionGrid3D.h
│ │ ├── CCActionGrid.cpp
│ │ ├── CCActionGrid.h
│ │ ├── CCAction.h
│ │ ├── CCActionInstant.cpp
│ │ ├── CCActionInstant.h
│ │ ├── CCActionInterval.cpp
│ │ ├── CCActionInterval.h
│ │ ├── CCActionManager.cpp
│ │ ├── CCActionManager.h
│ │ ├── CCActionPageTurn3D.cpp
│ │ ├── CCActionPageTurn3D.h
│ │ ├── CCActionProgressTimer.cpp
│ │ ├── CCActionProgressTimer.h
│ │ ├── CCActionTiledGrid.cpp
│ │ ├── CCActionTiledGrid.h
│ │ ├── CCActionTween.cpp
│ │ └── CCActionTween.h
│ ├── Android.mk
│ ├── base_nodes
│ │ ├── CCAtlasNode.cpp
│ │ ├── CCAtlasNode.h
│ │ ├── CCGLBufferedNode.cpp
│ │ ├── CCGLBufferedNode.h
│ │ ├── CCNode.cpp
│ │ └── CCNode.h
│ ├── CCCamera.cpp
│ ├── CCCamera.h
│ ├── CCConfiguration.cpp
│ ├── CCConfiguration.h
│ ├── CCDirector.cpp
│ ├── CCDirector.h
│ ├── ccFPSImages.c
│ ├── ccFPSImages.h
│ ├── CCScheduler.cpp
│ ├── CCScheduler.h
│ ├── cocoa
│ │ ├── CCAffineTransform.cpp
│ │ ├── CCAffineTransform.h
│ │ ├── CCArray.cpp
│ │ ├── CCArray.h
│ │ ├── CCAutoreleasePool.cpp
│ │ ├── CCAutoreleasePool.h
│ │ ├── CCBool.h
│ │ ├── CCDataVisitor.cpp
│ │ ├── CCDataVisitor.h
│ │ ├── CCDictionary.cpp
│ │ ├── CCDictionary.h
│ │ ├── CCDouble.h
│ │ ├── CCFloat.h
│ │ ├── CCGeometry.cpp
│ │ ├── CCGeometry.h
│ │ ├── CCInteger.h
│ │ ├── CCNS.cpp
│ │ ├── CCNS.h
│ │ ├── CCObject.cpp
│ │ ├── CCObject.h
│ │ ├── CCSet.cpp
│ │ ├── CCSet.h
│ │ ├── CCString.cpp
│ │ ├── CCString.h
│ │ ├── CCZone.cpp
│ │ └── CCZone.h
│ ├── cocos2d.cpp
│ ├── draw_nodes
│ │ ├── CCDrawingPrimitives.cpp
│ │ ├── CCDrawingPrimitives.h
│ │ ├── CCDrawNode.cpp
│ │ └── CCDrawNode.h
│ ├── effects
│ │ ├── CCGrabber.cpp
│ │ ├── CCGrabber.h
│ │ ├── CCGrid.cpp
│ │ └── CCGrid.h
│ ├── include
│ │ ├── ccConfig.h
│ │ ├── CCEventType.h
│ │ ├── ccMacros.h
│ │ ├── CCProtocols.h
│ │ ├── ccTypeInfo.h
│ │ ├── ccTypes.h
│ │ └── cocos2d.h
│ ├── kazmath
│ │ ├── include
│ │ │ └── kazmath
│ │ │ ├── aabb.h
│ │ │ ├── GL
│ │ │ │ ├── mat4stack.h
│ │ │ │ └── matrix.h
│ │ │ ├── kazmath.h
│ │ │ ├── mat3.h
│ │ │ ├── mat4.h
│ │ │ ├── neon_matrix_impl.h
│ │ │ ├── plane.h
│ │ │ ├── quaternion.h
│ │ │ ├── ray2.h
│ │ │ ├── utility.h
│ │ │ ├── vec2.h
│ │ │ ├── vec3.h
│ │ │ └── vec4.h
│ │ └── src
│ │ ├── aabb.c
│ │ ├── ChangeLog
│ │ ├── CMakeLists.txt
│ │ ├── GL
│ │ │ ├── mat4stack.c
│ │ │ └── matrix.c
│ │ ├── mat3.c
│ │ ├── mat4.c
│ │ ├── neon_matrix_impl.c
│ │ ├── plane.c
│ │ ├── quaternion.c
│ │ ├── ray2.c
│ │ ├── utility.c
│ │ ├── vec2.c
│ │ ├── vec3.c
│ │ └── vec4.c
│ ├── keypad_dispatcher
│ │ ├── CCKeypadDelegate.cpp
│ │ ├── CCKeypadDelegate.h
│ │ ├── CCKeypadDispatcher.cpp
│ │ └── CCKeypadDispatcher.h
│ ├── label_nodes
│ │ ├── CCLabelAtlas.cpp
│ │ ├── CCLabelAtlas.h
│ │ ├── CCLabelBMFont.cpp
│ │ ├── CCLabelBMFont.h
│ │ ├── CCLabelTTF.cpp
│ │ └── CCLabelTTF.h
│ ├── layers_scenes_transitions_nodes
│ │ ├── CCLayer.cpp
│ │ ├── CCLayer.h
│ │ ├── CCScene.cpp
│ │ ├── CCScene.h
│ │ ├── CCTransition.cpp
│ │ ├── CCTransition.h
│ │ ├── CCTransitionPageTurn.cpp
│ │ ├── CCTransitionPageTurn.h
│ │ ├── CCTransitionProgress.cpp
│ │ └── CCTransitionProgress.h
│ ├── menu_nodes
│ │ ├── CCMenu.cpp
│ │ ├── CCMenu.h
│ │ ├── CCMenuItem.cpp
│ │ └── CCMenuItem.h
│ ├── misc_nodes
│ │ ├── CCClippingNode.cpp
│ │ ├── CCClippingNode.h
│ │ ├── CCMotionStreak.cpp
│ │ ├── CCMotionStreak.h
│ │ ├── CCProgressTimer.cpp
│ │ ├── CCProgressTimer.h
│ │ ├── CCRenderTexture.cpp
│ │ └── CCRenderTexture.h
│ ├── particle_nodes
│ │ ├── CCParticleBatchNode.cpp
│ │ ├── CCParticleBatchNode.h
│ │ ├── CCParticleExamples.cpp
│ │ ├── CCParticleExamples.h
│ │ ├── CCParticleSystem.cpp
│ │ ├── CCParticleSystem.h
│ │ ├── CCParticleSystemQuad.cpp
│ │ ├── CCParticleSystemQuad.h
│ │ └── firePngData.h
│ ├── platform
│ │ ├── android
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsAndroid.cpp
│ │ │ ├── CCFileUtilsAndroid.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ ├── java
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── assets
│ │ │ │ ├── build.xml
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ ├── layout
│ │ │ │ │ └── values
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── lib
│ │ │ │ ├── Cocos2dxAccelerometer.java
│ │ │ │ ├── Cocos2dxActivity.java
│ │ │ │ ├── Cocos2dxBitmap.java
│ │ │ │ ├── Cocos2dxEditBoxDialog.java
│ │ │ │ ├── Cocos2dxEditText.java
│ │ │ │ ├── Cocos2dxETCLoader.java
│ │ │ │ ├── Cocos2dxGLSurfaceView.java
│ │ │ │ ├── Cocos2dxHandler.java
│ │ │ │ ├── Cocos2dxHelper.java
│ │ │ │ ├── Cocos2dxLocalStorage.java
│ │ │ │ ├── Cocos2dxMusic.java
│ │ │ │ ├── Cocos2dxRenderer.java
│ │ │ │ ├── Cocos2dxSound.java
│ │ │ │ ├── Cocos2dxTextInputWraper.java
│ │ │ │ └── Cocos2dxTypefaces.java
│ │ │ └── jni
│ │ │ ├── DPIJni.cpp
│ │ │ ├── DPIJni.h
│ │ │ ├── IMEJni.cpp
│ │ │ ├── IMEJni.h
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxAccelerometer.cpp
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.cpp
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxBitmap.h
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.cpp
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxHelper.h
│ │ │ ├── Java_org_cocos2dx_lib_Cocos2dxRenderer.cpp
│ │ │ ├── JniHelper.cpp
│ │ │ ├── JniHelper.h
│ │ │ └── TouchesJni.cpp
│ │ ├── blackberry
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsBlackberry.cpp
│ │ │ ├── CCFileUtilsBlackberry.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ └── CCStdC.h
│ │ ├── CCAccelerometerDelegate.h
│ │ ├── CCApplicationProtocol.h
│ │ ├── CCCommon.h
│ │ ├── CCDevice.h
│ │ ├── CCEGLViewProtocol.cpp
│ │ ├── CCEGLViewProtocol.h
│ │ ├── CCFileUtils.cpp
│ │ ├── CCFileUtils.h
│ │ ├── CCImageCommon_cpp.h
│ │ ├── CCImageCommonWebp.cpp
│ │ ├── CCImage.h
│ │ ├── CCPlatformConfig.h
│ │ ├── CCPlatformMacros.h
│ │ ├── CCSAXParser.cpp
│ │ ├── CCSAXParser.h
│ │ ├── CCThread.cpp
│ │ ├── CCThread.h
│ │ ├── emscripten
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsEmscripten.cpp
│ │ │ ├── CCFileUtilsEmscripten.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ └── CCStdC.h
│ │ ├── ios
│ │ │ ├── AccelerometerDelegateWrapper.h
│ │ │ ├── AccelerometerDelegateWrapper.mm
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCAccelerometer.mm
│ │ │ ├── CCApplication.h
│ │ │ ├── CCApplication.mm
│ │ │ ├── CCCommon.mm
│ │ │ ├── CCDevice.mm
│ │ │ ├── CCDirectorCaller.h
│ │ │ ├── CCDirectorCaller.mm
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCEGLView.mm
│ │ │ ├── CCES2Renderer.h
│ │ │ ├── CCES2Renderer.m
│ │ │ ├── CCESRenderer.h
│ │ │ ├── CCFileUtilsIOS.h
│ │ │ ├── CCFileUtilsIOS.mm
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.mm
│ │ │ ├── CCLock.cpp
│ │ │ ├── CCLock.h
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ ├── CCThread.mm
│ │ │ ├── EAGLView.h
│ │ │ ├── EAGLView.mm
│ │ │ ├── OpenGL_Internal.h
│ │ │ └── Simulation
│ │ │ ├── AccelerometerSimulation.h
│ │ │ └── AccelerometerSimulation.m
│ │ ├── linux
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsLinux.cpp
│ │ │ ├── CCFileUtilsLinux.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.cpp
│ │ │ └── CCStdC.h
│ │ ├── mac
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.h
│ │ │ ├── CCApplication.mm
│ │ │ ├── CCCommon.mm
│ │ │ ├── CCDevice.mm
│ │ │ ├── CCDirectorCaller.h
│ │ │ ├── CCDirectorCaller.mm
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCEGLView.mm
│ │ │ ├── CCEventDispatcher.h
│ │ │ ├── CCEventDispatcher.mm
│ │ │ ├── CCFileUtilsMac.h
│ │ │ ├── CCFileUtilsMac.mm
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.mm
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ ├── CCThread.mm
│ │ │ ├── CCWindow.h
│ │ │ ├── CCWindow.m
│ │ │ ├── EAGLView.h
│ │ │ └── EAGLView.mm
│ │ ├── marmalade
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsMarmalade.cpp
│ │ │ ├── CCFileUtilsMarmalade.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ └── CCStdC.h
│ │ ├── nacl
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsNaCl.cpp
│ │ │ ├── CCFileUtilsNaCl.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCInstance.cpp
│ │ │ ├── CCInstance.h
│ │ │ ├── CCModule.h
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ └── memory.h
│ │ ├── platform.cpp
│ │ ├── platform.h
│ │ ├── third_party
│ │ │ ├── android
│ │ │ │ └── prebuilt
│ │ │ │ ├── libcurl
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── curl
│ │ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ │ ├── curl.h
│ │ │ │ │ │ ├── curlrules.h
│ │ │ │ │ │ ├── curlver.h
│ │ │ │ │ │ ├── easy.h
│ │ │ │ │ │ ├── mprintf.h
│ │ │ │ │ │ ├── multi.h
│ │ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ │ ├── typecheck-gcc.h
│ │ │ │ │ │ └── types.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libcurl.a
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ └── libcurl.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libcurl.a
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── jconfig.h
│ │ │ │ │ │ ├── jerror.h
│ │ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ │ └── jpeglib.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libjpeg.a
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ └── libjpeg.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libjpeg.a
│ │ │ │ ├── libpng
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── pngconf.h
│ │ │ │ │ │ ├── png.h
│ │ │ │ │ │ └── pngusr.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libpng.a
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ └── libpng.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libpng.a
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ │ ├── tiff.h
│ │ │ │ │ │ ├── tiffio.h
│ │ │ │ │ │ └── tiffvers.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libtiff.a
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ └── libtiff.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libtiff.a
│ │ │ │ └── libwebp
│ │ │ │ ├── Android.mk
│ │ │ │ ├── include
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ └── types.h
│ │ │ │ └── libs
│ │ │ │ ├── armeabi
│ │ │ │ │ └── libwebp.a
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libwebp.a
│ │ │ │ └── x86
│ │ │ │ └── libwebp.a
│ │ │ ├── blackberry
│ │ │ │ ├── include
│ │ │ │ │ ├── libtiff
│ │ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ │ ├── tiff.h
│ │ │ │ │ │ ├── tiffio.h
│ │ │ │ │ │ └── tiffvers.h
│ │ │ │ │ └── libwebp
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ └── types.h
│ │ │ │ └── libraries
│ │ │ │ ├── armle-v7
│ │ │ │ │ ├── libtiff.a
│ │ │ │ │ └── libwebp.a
│ │ │ │ └── x86
│ │ │ │ ├── libtiff.a
│ │ │ │ └── libwebp.a
│ │ │ ├── emscripten
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ └── jpeglib.h
│ │ │ │ ├── libpng
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ └── png.h
│ │ │ │ ├── libraries
│ │ │ │ │ ├── build.sh
│ │ │ │ │ ├── libjpeg.a
│ │ │ │ │ ├── libpng.a
│ │ │ │ │ ├── libtiff.a
│ │ │ │ │ ├── libtiffxx.a
│ │ │ │ │ ├── libwebp.a
│ │ │ │ │ ├── libxml2.a
│ │ │ │ │ ├── libz.a
│ │ │ │ │ └── README
│ │ │ │ ├── libtiff
│ │ │ │ │ └── include
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ ├── tiffio.hxx
│ │ │ │ │ └── tiffvers.h
│ │ │ │ ├── libwebp
│ │ │ │ │ └── webp
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ └── types.h
│ │ │ │ ├── libxml2
│ │ │ │ │ └── libxml
│ │ │ │ │ ├── c14n.h
│ │ │ │ │ ├── catalog.h
│ │ │ │ │ ├── chvalid.h
│ │ │ │ │ ├── debugXML.h
│ │ │ │ │ ├── dict.h
│ │ │ │ │ ├── DOCBparser.h
│ │ │ │ │ ├── encoding.h
│ │ │ │ │ ├── entities.h
│ │ │ │ │ ├── globals.h
│ │ │ │ │ ├── hash.h
│ │ │ │ │ ├── HTMLparser.h
│ │ │ │ │ ├── HTMLtree.h
│ │ │ │ │ ├── list.h
│ │ │ │ │ ├── nanoftp.h
│ │ │ │ │ ├── nanohttp.h
│ │ │ │ │ ├── parser.h
│ │ │ │ │ ├── parserInternals.h
│ │ │ │ │ ├── pattern.h
│ │ │ │ │ ├── relaxng.h
│ │ │ │ │ ├── SAX2.h
│ │ │ │ │ ├── SAX.h
│ │ │ │ │ ├── schemasInternals.h
│ │ │ │ │ ├── schematron.h
│ │ │ │ │ ├── threads.h
│ │ │ │ │ ├── tree.h
│ │ │ │ │ ├── uri.h
│ │ │ │ │ ├── valid.h
│ │ │ │ │ ├── xinclude.h
│ │ │ │ │ ├── xlink.h
│ │ │ │ │ ├── xmlautomata.h
│ │ │ │ │ ├── xmlerror.h
│ │ │ │ │ ├── xmlexports.h
│ │ │ │ │ ├── xmlIO.h
│ │ │ │ │ ├── xmlmemory.h
│ │ │ │ │ ├── xmlmodule.h
│ │ │ │ │ ├── xmlreader.h
│ │ │ │ │ ├── xmlregexp.h
│ │ │ │ │ ├── xmlsave.h
│ │ │ │ │ ├── xmlschemas.h
│ │ │ │ │ ├── xmlschemastypes.h
│ │ │ │ │ ├── xmlstring.h
│ │ │ │ │ ├── xmlunicode.h
│ │ │ │ │ ├── xmlversion.h
│ │ │ │ │ ├── xmlwriter.h
│ │ │ │ │ ├── xpath.h
│ │ │ │ │ ├── xpathInternals.h
│ │ │ │ │ └── xpointer.h
│ │ │ │ └── libz
│ │ │ │ ├── zconf.h
│ │ │ │ └── zlib.h
│ │ │ ├── ios
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ ├── libraries
│ │ │ │ │ ├── libcurl.a
│ │ │ │ │ └── libwebp.a
│ │ │ │ └── webp
│ │ │ │ ├── decode.h
│ │ │ │ ├── encode.h
│ │ │ │ └── types.h
│ │ │ ├── linux
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ ├── include64
│ │ │ │ │ └── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ └── stdcheaders.h
│ │ │ │ ├── libfreetype2
│ │ │ │ │ ├── freetype
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ ├── ftconfig.h
│ │ │ │ │ │ │ ├── ftheader.h
│ │ │ │ │ │ │ ├── ftmodule.h
│ │ │ │ │ │ │ ├── ftoption.h
│ │ │ │ │ │ │ └── ftstdlib.h
│ │ │ │ │ │ ├── freetype.h
│ │ │ │ │ │ ├── ftadvanc.h
│ │ │ │ │ │ ├── ftbbox.h
│ │ │ │ │ │ ├── ftbdf.h
│ │ │ │ │ │ ├── ftbitmap.h
│ │ │ │ │ │ ├── ftbzip2.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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── cderror.h
│ │ │ │ │ ├── cdjpeg.h
│ │ │ │ │ ├── jchuff.h
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jdct.h
│ │ │ │ │ ├── jdhuff.h
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jinclude.h
│ │ │ │ │ ├── jmemsys.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ ├── jpegint.h
│ │ │ │ │ ├── jpeglib.h
│ │ │ │ │ ├── jversion.h
│ │ │ │ │ └── transupp.h
│ │ │ │ ├── libpng
│ │ │ │ │ ├── cexcept.h
│ │ │ │ │ ├── config.h
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ ├── PngFile.h
│ │ │ │ │ ├── png.h
│ │ │ │ │ ├── pngpriv.h
│ │ │ │ │ ├── readpng2.h
│ │ │ │ │ ├── readpng.h
│ │ │ │ │ ├── resource.h
│ │ │ │ │ └── writepng.h
│ │ │ │ ├── libraries
│ │ │ │ │ ├── lib64
│ │ │ │ │ │ ├── libcurl.a
│ │ │ │ │ │ ├── libfreetype.a
│ │ │ │ │ │ ├── libjpeg.a
│ │ │ │ │ │ ├── libpng.a
│ │ │ │ │ │ ├── libtiff.a
│ │ │ │ │ │ └── libwebp.a
│ │ │ │ │ ├── libcurl.a
│ │ │ │ │ ├── libfreetype.a
│ │ │ │ │ ├── libjpeg.a
│ │ │ │ │ ├── libpng15.a
│ │ │ │ │ ├── libpng.a
│ │ │ │ │ ├── libtiff.a
│ │ │ │ │ └── libwebp.a
│ │ │ │ ├── libtiff
│ │ │ │ │ └── include
│ │ │ │ │ ├── t4.h
│ │ │ │ │ ├── tif_config.h
│ │ │ │ │ ├── tif_config.vc.h
│ │ │ │ │ ├── tif_config.wince.h
│ │ │ │ │ ├── tif_dir.h
│ │ │ │ │ ├── tif_fax3.h
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiffconf.vc.h
│ │ │ │ │ ├── tiffconf.wince.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ ├── tiffiop.h
│ │ │ │ │ ├── tiffvers.h
│ │ │ │ │ ├── tif_predict.h
│ │ │ │ │ └── uvcode.h
│ │ │ │ └── libwebp
│ │ │ │ ├── decode.h
│ │ │ │ ├── encode.h
│ │ │ │ └── types.h
│ │ │ ├── mac
│ │ │ │ ├── libraries
│ │ │ │ │ └── libwebp.a
│ │ │ │ └── webp
│ │ │ │ ├── decode.h
│ │ │ │ ├── encode.h
│ │ │ │ └── types.h
│ │ │ ├── marmalade
│ │ │ │ ├── freetype
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── 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
│ │ │ │ │ └── src
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── aflatin2.c
│ │ │ │ │ │ ├── aflatin2.h
│ │ │ │ │ │ ├── aflatin.c
│ │ │ │ │ │ ├── aflatin.h
│ │ │ │ │ │ ├── afloader.c
│ │ │ │ │ │ ├── afloader.h
│ │ │ │ │ │ ├── afmodule.c
│ │ │ │ │ │ ├── afmodule.h
│ │ │ │ │ │ ├── afpic.c
│ │ │ │ │ │ ├── afpic.h
│ │ │ │ │ │ ├── aftypes.h
│ │ │ │ │ │ ├── afwarp.c
│ │ │ │ │ │ ├── afwarp.h
│ │ │ │ │ │ ├── autofit.c
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── bdf
│ │ │ │ │ │ ├── bdf.c
│ │ │ │ │ │ ├── bdfdrivr.c
│ │ │ │ │ │ ├── bdfdrivr.h
│ │ │ │ │ │ ├── bdferror.h
│ │ │ │ │ │ ├── bdf.h
│ │ │ │ │ │ ├── bdflib.c
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ └── type1cid.c
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── gxvmort0.c
│ │ │ │ │ │ ├── gxvmort1.c
│ │ │ │ │ │ ├── gxvmort2.c
│ │ │ │ │ │ ├── gxvmort4.c
│ │ │ │ │ │ ├── gxvmort5.c
│ │ │ │ │ │ ├── gxvmort.c
│ │ │ │ │ │ ├── gxvmort.h
│ │ │ │ │ │ ├── gxvmorx0.c
│ │ │ │ │ │ ├── gxvmorx1.c
│ │ │ │ │ │ ├── gxvmorx2.c
│ │ │ │ │ │ ├── gxvmorx4.c
│ │ │ │ │ │ ├── gxvmorx5.c
│ │ │ │ │ │ ├── gxvmorx.c
│ │ │ │ │ │ ├── gxvmorx.h
│ │ │ │ │ │ ├── gxvopbd.c
│ │ │ │ │ │ ├── gxvprop.c
│ │ │ │ │ │ ├── gxvtrak.c
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── zconf.h
│ │ │ │ │ │ ├── zlib.h
│ │ │ │ │ │ ├── zutil.c
│ │ │ │ │ │ └── zutil.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── lzw
│ │ │ │ │ │ ├── ftlzw.c
│ │ │ │ │ │ ├── ftzopen.c
│ │ │ │ │ │ ├── ftzopen.h
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── otvalid
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── pcf
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── pcf.c
│ │ │ │ │ │ ├── pcfdrivr.c
│ │ │ │ │ │ ├── pcfdrivr.h
│ │ │ │ │ │ ├── pcferror.h
│ │ │ │ │ │ ├── pcf.h
│ │ │ │ │ │ ├── pcfread.c
│ │ │ │ │ │ ├── pcfread.h
│ │ │ │ │ │ ├── pcfutil.c
│ │ │ │ │ │ ├── pcfutil.h
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── pfr
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── psaux
│ │ │ │ │ │ ├── afmparse.c
│ │ │ │ │ │ ├── afmparse.h
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── psaux.c
│ │ │ │ │ │ ├── psauxerr.h
│ │ │ │ │ │ ├── psauxmod.c
│ │ │ │ │ │ ├── psauxmod.h
│ │ │ │ │ │ ├── psconv.c
│ │ │ │ │ │ ├── psconv.h
│ │ │ │ │ │ ├── psobjs.c
│ │ │ │ │ │ ├── psobjs.h
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── t1cmap.c
│ │ │ │ │ │ ├── t1cmap.h
│ │ │ │ │ │ ├── t1decode.c
│ │ │ │ │ │ └── t1decode.h
│ │ │ │ │ ├── pshinter
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── pshalgo.c
│ │ │ │ │ │ ├── pshalgo.h
│ │ │ │ │ │ ├── pshglob.c
│ │ │ │ │ │ ├── pshglob.h
│ │ │ │ │ │ ├── pshinter.c
│ │ │ │ │ │ ├── pshmod.c
│ │ │ │ │ │ ├── pshmod.h
│ │ │ │ │ │ ├── pshnterr.h
│ │ │ │ │ │ ├── pshpic.c
│ │ │ │ │ │ ├── pshpic.h
│ │ │ │ │ │ ├── pshrec.c
│ │ │ │ │ │ ├── pshrec.h
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── psnames
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── psmodule.c
│ │ │ │ │ │ ├── psmodule.h
│ │ │ │ │ │ ├── psnamerr.h
│ │ │ │ │ │ ├── psnames.c
│ │ │ │ │ │ ├── pspic.c
│ │ │ │ │ │ ├── pspic.h
│ │ │ │ │ │ ├── pstables.h
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── raster
│ │ │ │ │ │ ├── ftmisc.h
│ │ │ │ │ │ ├── ftraster.c
│ │ │ │ │ │ ├── ftraster.h
│ │ │ │ │ │ ├── ftrend1.c
│ │ │ │ │ │ ├── ftrend1.h
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── raster.c
│ │ │ │ │ │ ├── rasterrs.h
│ │ │ │ │ │ ├── rastpic.c
│ │ │ │ │ │ ├── rastpic.h
│ │ │ │ │ │ └── rules.mk
│ │ │ │ │ ├── sfnt
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── sfdriver.c
│ │ │ │ │ │ ├── sfdriver.h
│ │ │ │ │ │ ├── sferrors.h
│ │ │ │ │ │ ├── sfnt.c
│ │ │ │ │ │ ├── sfntpic.c
│ │ │ │ │ │ ├── sfntpic.h
│ │ │ │ │ │ ├── sfobjs.c
│ │ │ │ │ │ ├── sfobjs.h
│ │ │ │ │ │ ├── ttbdf.c
│ │ │ │ │ │ ├── ttbdf.h
│ │ │ │ │ │ ├── ttcmap.c
│ │ │ │ │ │ ├── ttcmapc.h
│ │ │ │ │ │ ├── ttcmap.h
│ │ │ │ │ │ ├── ttkern.c
│ │ │ │ │ │ ├── ttkern.h
│ │ │ │ │ │ ├── ttload.c
│ │ │ │ │ │ ├── ttload.h
│ │ │ │ │ │ ├── ttmtx.c
│ │ │ │ │ │ ├── ttmtx.h
│ │ │ │ │ │ ├── ttpost.c
│ │ │ │ │ │ ├── ttpost.h
│ │ │ │ │ │ ├── ttsbit0.c
│ │ │ │ │ │ ├── ttsbit.c
│ │ │ │ │ │ └── ttsbit.h
│ │ │ │ │ ├── smooth
│ │ │ │ │ │ ├── ftgrays.c
│ │ │ │ │ │ ├── ftgrays.h
│ │ │ │ │ │ ├── ftsmerrs.h
│ │ │ │ │ │ ├── ftsmooth.c
│ │ │ │ │ │ ├── ftsmooth.h
│ │ │ │ │ │ ├── ftspic.c
│ │ │ │ │ │ ├── ftspic.h
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ └── smooth.c
│ │ │ │ │ ├── tools
│ │ │ │ │ │ ├── apinames.c
│ │ │ │ │ │ ├── chktrcmp.py
│ │ │ │ │ │ ├── cordic.py
│ │ │ │ │ │ ├── docmaker
│ │ │ │ │ │ │ ├── content.py
│ │ │ │ │ │ │ ├── docbeauty.py
│ │ │ │ │ │ │ ├── docmaker.py
│ │ │ │ │ │ │ ├── formatter.py
│ │ │ │ │ │ │ ├── sources.py
│ │ │ │ │ │ │ ├── tohtml.py
│ │ │ │ │ │ │ └── utils.py
│ │ │ │ │ │ ├── ftrandom
│ │ │ │ │ │ │ ├── ftrandom.c
│ │ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ │ └── README
│ │ │ │ │ │ ├── glnames.py
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── test_afm.c
│ │ │ │ │ │ ├── test_bbox.c
│ │ │ │ │ │ └── test_trig.c
│ │ │ │ │ ├── truetype
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── Jamfile
│ │ │ │ │ │ ├── module.mk
│ │ │ │ │ │ ├── rules.mk
│ │ │ │ │ │ ├── t42drivr.c
│ │ │ │ │ │ ├── t42drivr.h
│ │ │ │ │ │ ├── t42error.h
│ │ │ │ │ │ ├── t42objs.c
│ │ │ │ │ │ ├── t42objs.h
│ │ │ │ │ │ ├── t42parse.c
│ │ │ │ │ │ ├── t42parse.h
│ │ │ │ │ │ ├── t42types.h
│ │ │ │ │ │ └── type42.c
│ │ │ │ │ └── winfonts
│ │ │ │ │ ├── fnterrs.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── winfnt.c
│ │ │ │ │ └── winfnt.h
│ │ │ │ ├── freetype.mkf
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── headers
│ │ │ │ │ │ ├── t4.h
│ │ │ │ │ │ ├── tif_config.h
│ │ │ │ │ │ ├── tif_dir.h
│ │ │ │ │ │ ├── tif_fax3.h
│ │ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ │ ├── tiff.h
│ │ │ │ │ │ ├── tiffio.h
│ │ │ │ │ │ ├── tiffio.hxx
│ │ │ │ │ │ ├── tiffiop.h
│ │ │ │ │ │ ├── tiffvers.h
│ │ │ │ │ │ ├── tif_predict.h
│ │ │ │ │ │ ├── tif_stream.cxx
│ │ │ │ │ │ └── uvcode.h
│ │ │ │ │ └── source
│ │ │ │ │ ├── tif_aux.c
│ │ │ │ │ ├── tif_close.c
│ │ │ │ │ ├── tif_codec.c
│ │ │ │ │ ├── tif_color.c
│ │ │ │ │ ├── tif_compress.c
│ │ │ │ │ ├── tif_dir.c
│ │ │ │ │ ├── tif_dirinfo.c
│ │ │ │ │ ├── tif_dirread.c
│ │ │ │ │ ├── tif_dirwrite.c
│ │ │ │ │ ├── tif_dumpmode.c
│ │ │ │ │ ├── tif_error.c
│ │ │ │ │ ├── tif_extension.c
│ │ │ │ │ ├── tif_fax3.c
│ │ │ │ │ ├── tif_fax3sm.c
│ │ │ │ │ ├── tif_flush.c
│ │ │ │ │ ├── tif_getimage.c
│ │ │ │ │ ├── tif_jbig.c
│ │ │ │ │ ├── tif_jpeg_12.c
│ │ │ │ │ ├── tif_jpeg.c
│ │ │ │ │ ├── tif_luv.c
│ │ │ │ │ ├── tif_lzma.c
│ │ │ │ │ ├── tif_lzw.c
│ │ │ │ │ ├── tif_next.c
│ │ │ │ │ ├── tif_ojpeg.c
│ │ │ │ │ ├── tif_open.c
│ │ │ │ │ ├── tif_packbits.c
│ │ │ │ │ ├── tif_pixarlog.c
│ │ │ │ │ ├── tif_predict.c
│ │ │ │ │ ├── tif_print.c
│ │ │ │ │ ├── tif_read.c
│ │ │ │ │ ├── tif_stream.c
│ │ │ │ │ ├── tif_strip.c
│ │ │ │ │ ├── tif_swab.c
│ │ │ │ │ ├── tif_thunder.c
│ │ │ │ │ ├── tif_tile.c
│ │ │ │ │ ├── tif_unix.c
│ │ │ │ │ ├── tif_version.c
│ │ │ │ │ ├── tif_warning.c
│ │ │ │ │ ├── tif_win32.c
│ │ │ │ │ ├── tif_write.c
│ │ │ │ │ └── tif_zip.c
│ │ │ │ ├── libtiff.mkf
│ │ │ │ ├── libwebp
│ │ │ │ │ ├── dec
│ │ │ │ │ │ ├── alpha.c
│ │ │ │ │ │ ├── buffer.c
│ │ │ │ │ │ ├── decode_vp8.h
│ │ │ │ │ │ ├── frame.c
│ │ │ │ │ │ ├── idec.c
│ │ │ │ │ │ ├── io.c
│ │ │ │ │ │ ├── layer.c
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── quant.c
│ │ │ │ │ │ ├── tree.c
│ │ │ │ │ │ ├── vp8.c
│ │ │ │ │ │ ├── vp8i.h
│ │ │ │ │ │ ├── vp8l.c
│ │ │ │ │ │ ├── vp8li.h
│ │ │ │ │ │ ├── webp.c
│ │ │ │ │ │ └── webpi.h
│ │ │ │ │ ├── dsp
│ │ │ │ │ │ ├── cpu.c
│ │ │ │ │ │ ├── dec.c
│ │ │ │ │ │ ├── dec_neon.c
│ │ │ │ │ │ ├── dec_sse2.c
│ │ │ │ │ │ ├── dsp.h
│ │ │ │ │ │ ├── enc.c
│ │ │ │ │ │ ├── enc_sse2.c
│ │ │ │ │ │ ├── lossless.c
│ │ │ │ │ │ ├── lossless.h
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── upsampling.c
│ │ │ │ │ │ ├── upsampling_sse2.c
│ │ │ │ │ │ ├── yuv.c
│ │ │ │ │ │ └── yuv.h
│ │ │ │ │ ├── enc
│ │ │ │ │ │ ├── alpha.c
│ │ │ │ │ │ ├── analysis.c
│ │ │ │ │ │ ├── backward_references.c
│ │ │ │ │ │ ├── backward_references.h
│ │ │ │ │ │ ├── config.c
│ │ │ │ │ │ ├── cost.c
│ │ │ │ │ │ ├── cost.h
│ │ │ │ │ │ ├── filter.c
│ │ │ │ │ │ ├── frame.c
│ │ │ │ │ │ ├── histogram.c
│ │ │ │ │ │ ├── histogram.h
│ │ │ │ │ │ ├── iterator.c
│ │ │ │ │ │ ├── layer.c
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── picture.c
│ │ │ │ │ │ ├── quant.c
│ │ │ │ │ │ ├── syntax.c
│ │ │ │ │ │ ├── tree.c
│ │ │ │ │ │ ├── vp8enci.h
│ │ │ │ │ │ ├── vp8l.c
│ │ │ │ │ │ ├── vp8li.h
│ │ │ │ │ │ └── webpenc.c
│ │ │ │ │ ├── mux
│ │ │ │ │ │ ├── demux.c
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── muxedit.c
│ │ │ │ │ │ ├── muxi.h
│ │ │ │ │ │ ├── muxinternal.c
│ │ │ │ │ │ └── muxread.c
│ │ │ │ │ ├── utils
│ │ │ │ │ │ ├── bit_reader.c
│ │ │ │ │ │ ├── bit_reader.h
│ │ │ │ │ │ ├── bit_writer.c
│ │ │ │ │ │ ├── bit_writer.h
│ │ │ │ │ │ ├── color_cache.c
│ │ │ │ │ │ ├── color_cache.h
│ │ │ │ │ │ ├── filters.c
│ │ │ │ │ │ ├── filters.h
│ │ │ │ │ │ ├── huffman.c
│ │ │ │ │ │ ├── huffman_encode.c
│ │ │ │ │ │ ├── huffman_encode.h
│ │ │ │ │ │ ├── huffman.h
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── quant_levels.c
│ │ │ │ │ │ ├── quant_levels.h
│ │ │ │ │ │ ├── rescaler.c
│ │ │ │ │ │ ├── rescaler.h
│ │ │ │ │ │ ├── thread.c
│ │ │ │ │ │ ├── thread.h
│ │ │ │ │ │ ├── utils.c
│ │ │ │ │ │ └── utils.h
│ │ │ │ │ └── webp
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ ├── format_constants.h
│ │ │ │ │ ├── mux.h
│ │ │ │ │ └── types.h
│ │ │ │ └── libwebp.mkf
│ │ │ ├── tizen
│ │ │ │ ├── prebuilt
│ │ │ │ │ └── libwebp
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── decode.h
│ │ │ │ │ │ ├── encode.h
│ │ │ │ │ │ └── types.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armv7l
│ │ │ │ │ │ └── libwebp.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libwebp.a
│ │ │ │ └── rootstraps
│ │ │ │ ├── tizen-device-2.2.native
│ │ │ │ │ ├── lib
│ │ │ │ │ │ ├── libexpat.so
│ │ │ │ │ │ ├── libexpat.so.1.5.2
│ │ │ │ │ │ ├── libz.so
│ │ │ │ │ │ └── libz.so.1.2.5
│ │ │ │ │ └── usr
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── curl
│ │ │ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ │ │ ├── curl.h
│ │ │ │ │ │ │ ├── curlrules.h
│ │ │ │ │ │ │ ├── curlver.h
│ │ │ │ │ │ │ ├── easy.h
│ │ │ │ │ │ │ ├── mprintf.h
│ │ │ │ │ │ │ ├── multi.h
│ │ │ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ │ │ ├── fontconfig
│ │ │ │ │ │ │ ├── fcfreetype.h
│ │ │ │ │ │ │ ├── fcprivate.h
│ │ │ │ │ │ │ └── fontconfig.h
│ │ │ │ │ │ ├── freetype2
│ │ │ │ │ │ │ └── freetype
│ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ ├── ftconfig-32.h
│ │ │ │ │ │ │ │ ├── ftconfig.h
│ │ │ │ │ │ │ │ ├── ftheader.h
│ │ │ │ │ │ │ │ ├── ftmodule.h
│ │ │ │ │ │ │ │ ├── ftoption.h
│ │ │ │ │ │ │ │ └── ftstdlib.h
│ │ │ │ │ │ │ ├── freetype.h
│ │ │ │ │ │ │ ├── ftadvanc.h
│ │ │ │ │ │ │ ├── ftbbox.h
│ │ │ │ │ │ │ ├── ftbdf.h
│ │ │ │ │ │ │ ├── ftbitmap.h
│ │ │ │ │ │ │ ├── ftbzip2.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
│ │ │ │ │ │ │ ├── t1tables.h
│ │ │ │ │ │ │ ├── ttnameid.h
│ │ │ │ │ │ │ ├── tttables.h
│ │ │ │ │ │ │ ├── tttags.h
│ │ │ │ │ │ │ └── ttunpat.h
│ │ │ │ │ │ ├── ft2build.h
│ │ │ │ │ │ ├── jconfig.h
│ │ │ │ │ │ ├── jerror.h
│ │ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ │ ├── jpeglib.h
│ │ │ │ │ │ ├── pngconf.h
│ │ │ │ │ │ ├── png.h
│ │ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ │ ├── tiff.h
│ │ │ │ │ │ ├── tiffio.h
│ │ │ │ │ │ ├── tiffio.hxx
│ │ │ │ │ │ ├── tiffvers.h
│ │ │ │ │ │ ├── zconf.h
│ │ │ │ │ │ └── zlib.h
│ │ │ │ │ └── lib
│ │ │ │ │ ├── libcares.so
│ │ │ │ │ ├── libcares.so.2.0.0
│ │ │ │ │ ├── libcrypto.so
│ │ │ │ │ ├── libcrypto.so.1.0.0
│ │ │ │ │ ├── libcurl.so
│ │ │ │ │ ├── libcurl.so.4.3.0
│ │ │ │ │ ├── libfontconfig.so
│ │ │ │ │ ├── libfontconfig.so.1.5.0
│ │ │ │ │ ├── libfreetype.so
│ │ │ │ │ ├── libfreetype.so.6.8.1
│ │ │ │ │ ├── libidn.so
│ │ │ │ │ ├── libidn.so.11.5.44
│ │ │ │ │ ├── libjpeg.so
│ │ │ │ │ ├── libjpeg.so.8.0.2
│ │ │ │ │ ├── libpng.so
│ │ │ │ │ ├── libpng.so.3.50.0
│ │ │ │ │ ├── libssl.so
│ │ │ │ │ ├── libssl.so.1.0.0
│ │ │ │ │ ├── libtiff.so
│ │ │ │ │ └── libtiff.so.5.1.0
│ │ │ │ └── tizen-emulator-2.2.native
│ │ │ │ ├── lib
│ │ │ │ │ ├── libexpat.so
│ │ │ │ │ ├── libexpat.so.1.5.2
│ │ │ │ │ ├── libz.so
│ │ │ │ │ └── libz.so.1.2.5
│ │ │ │ └── usr
│ │ │ │ ├── include
│ │ │ │ │ ├── curl
│ │ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ │ ├── curl.h
│ │ │ │ │ │ ├── curlrules.h
│ │ │ │ │ │ ├── curlver.h
│ │ │ │ │ │ ├── easy.h
│ │ │ │ │ │ ├── mprintf.h
│ │ │ │ │ │ ├── multi.h
│ │ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ │ ├── typecheck-gcc.h
│ │ │ │ │ │ └── types.h
│ │ │ │ │ ├── fontconfig
│ │ │ │ │ │ ├── fcfreetype.h
│ │ │ │ │ │ ├── fcprivate.h
│ │ │ │ │ │ └── fontconfig.h
│ │ │ │ │ ├── freetype2
│ │ │ │ │ │ └── freetype
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ ├── ftconfig-32.h
│ │ │ │ │ │ │ ├── ftconfig.h
│ │ │ │ │ │ │ ├── ftheader.h
│ │ │ │ │ │ │ ├── ftmodule.h
│ │ │ │ │ │ │ ├── ftoption.h
│ │ │ │ │ │ │ └── ftstdlib.h
│ │ │ │ │ │ ├── freetype.h
│ │ │ │ │ │ ├── ftadvanc.h
│ │ │ │ │ │ ├── ftbbox.h
│ │ │ │ │ │ ├── ftbdf.h
│ │ │ │ │ │ ├── ftbitmap.h
│ │ │ │ │ │ ├── ftbzip2.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
│ │ │ │ │ │ ├── t1tables.h
│ │ │ │ │ │ ├── ttnameid.h
│ │ │ │ │ │ ├── tttables.h
│ │ │ │ │ │ ├── tttags.h
│ │ │ │ │ │ └── ttunpat.h
│ │ │ │ │ ├── ft2build.h
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ ├── jpeglib.h
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ ├── png.h
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ ├── tiffio.hxx
│ │ │ │ │ ├── tiffvers.h
│ │ │ │ │ ├── zconf.h
│ │ │ │ │ └── zlib.h
│ │ │ │ └── lib
│ │ │ │ ├── libcares.so
│ │ │ │ ├── libcares.so.2.0.0
│ │ │ │ ├── libcrypto.so
│ │ │ │ ├── libcrypto.so.1.0.0
│ │ │ │ ├── libcurl.so
│ │ │ │ ├── libcurl.so.4.3.0
│ │ │ │ ├── libfontconfig.so
│ │ │ │ ├── libfontconfig.so.1.5.0
│ │ │ │ ├── libfreetype.so
│ │ │ │ ├── libfreetype.so.6.8.1
│ │ │ │ ├── libidn.so
│ │ │ │ ├── libidn.so.11.5.44
│ │ │ │ ├── libjpeg.so
│ │ │ │ ├── libjpeg.so.8.0.2
│ │ │ │ ├── libpng.so
│ │ │ │ ├── libpng.so.3.50.0
│ │ │ │ ├── libssl.so
│ │ │ │ ├── libssl.so.1.0.0
│ │ │ │ ├── libtiff.so
│ │ │ │ └── libtiff.so.5.1.0
│ │ │ ├── win32
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ ├── iconv
│ │ │ │ │ └── iconv.h
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jconfig_linux.h
│ │ │ │ │ ├── jconfig_win.h
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ └── jpeglib.h
│ │ │ │ ├── libpng
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ └── png.h
│ │ │ │ ├── libraries
│ │ │ │ │ ├── glew32.dll
│ │ │ │ │ ├── glew32.lib
│ │ │ │ │ ├── iconv.dll
│ │ │ │ │ ├── libcurl.dll
│ │ │ │ │ ├── libcurl_imp.lib
│ │ │ │ │ ├── libiconv.lib
│ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ ├── libpng.lib
│ │ │ │ │ ├── libtiff.dll
│ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ ├── libwebp.lib
│ │ │ │ │ ├── libzlib.lib
│ │ │ │ │ ├── pthreadVCE2.dll
│ │ │ │ │ ├── pthreadVCE2.lib
│ │ │ │ │ └── zlib1.dll
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ └── tiffvers.h
│ │ │ │ ├── libwebp
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ └── types.h
│ │ │ │ ├── OGLES
│ │ │ │ │ └── GL
│ │ │ │ │ ├── glew.h
│ │ │ │ │ ├── glxew.h
│ │ │ │ │ └── wglew.h
│ │ │ │ ├── pthread
│ │ │ │ │ ├── pthread.h
│ │ │ │ │ ├── sched.h
│ │ │ │ │ └── semaphore.h
│ │ │ │ ├── third_party_versions.txt
│ │ │ │ └── zlib
│ │ │ │ ├── zconf.h
│ │ │ │ └── zlib.h
│ │ │ ├── winrt
│ │ │ │ ├── angleproject
│ │ │ │ │ ├── AUTHORS
│ │ │ │ │ ├── build
│ │ │ │ │ │ ├── all.gyp
│ │ │ │ │ │ ├── common.gypi
│ │ │ │ │ │ └── gyp_angle
│ │ │ │ │ ├── codereview.settings
│ │ │ │ │ ├── CONTRIBUTORS
│ │ │ │ │ ├── DEPS
│ │ │ │ │ ├── extensions
│ │ │ │ │ │ ├── ANGLE_depth_texture.txt
│ │ │ │ │ │ ├── ANGLE_framebuffer_blit.txt
│ │ │ │ │ │ ├── ANGLE_framebuffer_multisample.txt
│ │ │ │ │ │ ├── ANGLE_instanced_arrays.txt
│ │ │ │ │ │ ├── ANGLE_pack_reverse_row_order.txt
│ │ │ │ │ │ ├── ANGLE_program_binary.txt
│ │ │ │ │ │ ├── ANGLE_texture_compression_dxt.txt
│ │ │ │ │ │ ├── ANGLE_texture_usage.txt
│ │ │ │ │ │ ├── ANGLE_timer_query.txt
│ │ │ │ │ │ ├── ANGLE_translated_shader_source.txt
│ │ │ │ │ │ ├── EGL_ANGLE_d3d_share_handle_client_buffer.txt
│ │ │ │ │ │ ├── EGL_ANGLE_direct3d_display.txt
│ │ │ │ │ │ ├── EGL_ANGLE_query_surface_pointer.txt
│ │ │ │ │ │ ├── EGL_ANGLE_software_display.txt
│ │ │ │ │ │ ├── EGL_ANGLE_surface_d3d_texture_2d_share_handle.txt
│ │ │ │ │ │ ├── EGL_EXT_create_context_robustness.txt
│ │ │ │ │ │ ├── EXT_draw_buffers.txt
│ │ │ │ │ │ ├── EXT_robustness.txt
│ │ │ │ │ │ └── EXT_texture_storage.txt
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── EGL
│ │ │ │ │ │ │ ├── eglext.h
│ │ │ │ │ │ │ ├── egl.h
│ │ │ │ │ │ │ └── eglplatform.h
│ │ │ │ │ │ ├── GLES2
│ │ │ │ │ │ │ ├── gl2ext.h
│ │ │ │ │ │ │ ├── gl2.h
│ │ │ │ │ │ │ └── gl2platform.h
│ │ │ │ │ │ ├── GLSLANG
│ │ │ │ │ │ │ └── ShaderLang.h
│ │ │ │ │ │ └── KHR
│ │ │ │ │ │ └── khrplatform.h
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.chromium
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── samples
│ │ │ │ │ │ ├── angle
│ │ │ │ │ │ │ └── Simple_Instancing
│ │ │ │ │ │ │ ├── Simple_Instancing.c
│ │ │ │ │ │ │ ├── Simple_Instancing.vcxproj
│ │ │ │ │ │ │ └── Simple_Instancing_winrt
│ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ ├── Direct3DBase.cpp
│ │ │ │ │ │ │ ├── Direct3DBase.h
│ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ ├── Package_2013.appxmanifest
│ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ ├── Simple_Instancing.cpp
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt_2013.vcxproj
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt.cpp
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt.h
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt_TemporaryKey.pfx
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt.vcxproj
│ │ │ │ │ │ │ ├── Simple_Instancing_winrt.vcxproj.filters
│ │ │ │ │ │ │ ├── SimplePixelShader.hlsl
│ │ │ │ │ │ │ └── SimpleVertexShader.hlsl
│ │ │ │ │ │ ├── Asteroids
│ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ ├── Asteroids_2013.sln
│ │ │ │ │ │ │ ├── Asteroids_2013.vcxproj
│ │ │ │ │ │ │ ├── Asteroids_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── Asteroids.cpp
│ │ │ │ │ │ │ ├── Asteroids.h
│ │ │ │ │ │ │ ├── Asteroids.sln
│ │ │ │ │ │ │ ├── Asteroids_TemporaryKey.pfx
│ │ │ │ │ │ │ ├── Asteroids.vcxproj
│ │ │ │ │ │ │ ├── Asteroids.vcxproj.filters
│ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ ├── d3dcompiler_46.dll
│ │ │ │ │ │ │ ├── Direct3DBase.cpp
│ │ │ │ │ │ │ ├── Direct3DBase.h
│ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ ├── dlls
│ │ │ │ │ │ │ │ ├── ARM
│ │ │ │ │ │ │ │ │ └── D3Dcompiler_46.dll
│ │ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ │ ├── D3Dcompiler_46.dll
│ │ │ │ │ │ │ │ └── d3dcompiler_47.dll
│ │ │ │ │ │ │ ├── glm
│ │ │ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ │ │ ├── core
│ │ │ │ │ │ │ │ │ ├── _detail.hpp
│ │ │ │ │ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ │ │ │ │ ├── _fixes.hpp
│ │ │ │ │ │ │ │ │ ├── func_common.hpp
│ │ │ │ │ │ │ │ │ ├── func_common.inl
│ │ │ │ │ │ │ │ │ ├── func_exponential.hpp
│ │ │ │ │ │ │ │ │ ├── func_exponential.inl
│ │ │ │ │ │ │ │ │ ├── func_geometric.hpp
│ │ │ │ │ │ │ │ │ ├── func_geometric.inl
│ │ │ │ │ │ │ │ │ ├── func_integer.hpp
│ │ │ │ │ │ │ │ │ ├── func_integer.inl
│ │ │ │ │ │ │ │ │ ├── func_matrix.hpp
│ │ │ │ │ │ │ │ │ ├── func_matrix.inl
│ │ │ │ │ │ │ │ │ ├── func_noise.hpp
│ │ │ │ │ │ │ │ │ ├── func_noise.inl
│ │ │ │ │ │ │ │ │ ├── func_packing.hpp
│ │ │ │ │ │ │ │ │ ├── func_packing.inl
│ │ │ │ │ │ │ │ │ ├── func_trigonometric.hpp
│ │ │ │ │ │ │ │ │ ├── func_trigonometric.inl
│ │ │ │ │ │ │ │ │ ├── func_vector_relational.hpp
│ │ │ │ │ │ │ │ │ ├── func_vector_relational.inl
│ │ │ │ │ │ │ │ │ ├── hint.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_common.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_common.inl
│ │ │ │ │ │ │ │ │ ├── intrinsic_exponential.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_exponential.inl
│ │ │ │ │ │ │ │ │ ├── intrinsic_geometric.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_geometric.inl
│ │ │ │ │ │ │ │ │ ├── intrinsic_matrix.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_matrix.inl
│ │ │ │ │ │ │ │ │ ├── intrinsic_trigonometric.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_trigonometric.inl
│ │ │ │ │ │ │ │ │ ├── intrinsic_vector_relational.hpp
│ │ │ │ │ │ │ │ │ ├── intrinsic_vector_relational.inl
│ │ │ │ │ │ │ │ │ ├── setup.hpp
│ │ │ │ │ │ │ │ │ ├── _swizzle_func.hpp
│ │ │ │ │ │ │ │ │ ├── _swizzle.hpp
│ │ │ │ │ │ │ │ │ ├── type_float.hpp
│ │ │ │ │ │ │ │ │ ├── type_gentype.hpp
│ │ │ │ │ │ │ │ │ ├── type_gentype.inl
│ │ │ │ │ │ │ │ │ ├── type_half.hpp
│ │ │ │ │ │ │ │ │ ├── type_half.inl
│ │ │ │ │ │ │ │ │ ├── type.hpp
│ │ │ │ │ │ │ │ │ ├── type_int.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat2x2.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat2x2.inl
│ │ │ │ │ │ │ │ │ ├── type_mat2x3.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat2x3.inl
│ │ │ │ │ │ │ │ │ ├── type_mat2x4.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat2x4.inl
│ │ │ │ │ │ │ │ │ ├── type_mat3x2.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat3x2.inl
│ │ │ │ │ │ │ │ │ ├── type_mat3x3.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat3x3.inl
│ │ │ │ │ │ │ │ │ ├── type_mat3x4.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat3x4.inl
│ │ │ │ │ │ │ │ │ ├── type_mat4x2.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat4x2.inl
│ │ │ │ │ │ │ │ │ ├── type_mat4x3.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat4x3.inl
│ │ │ │ │ │ │ │ │ ├── type_mat4x4.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat4x4.inl
│ │ │ │ │ │ │ │ │ ├── type_mat.hpp
│ │ │ │ │ │ │ │ │ ├── type_mat.inl
│ │ │ │ │ │ │ │ │ ├── type_size.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec1.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec1.inl
│ │ │ │ │ │ │ │ │ ├── type_vec2.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec2.inl
│ │ │ │ │ │ │ │ │ ├── type_vec3.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec3.inl
│ │ │ │ │ │ │ │ │ ├── type_vec4.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec4.inl
│ │ │ │ │ │ │ │ │ ├── type_vec.hpp
│ │ │ │ │ │ │ │ │ ├── type_vec.inl
│ │ │ │ │ │ │ │ │ └── _vectorize.hpp
│ │ │ │ │ │ │ │ ├── ext.hpp
│ │ │ │ │ │ │ │ ├── glm.hpp
│ │ │ │ │ │ │ │ ├── gtc
│ │ │ │ │ │ │ │ │ ├── constants.hpp
│ │ │ │ │ │ │ │ │ ├── constants.inl
│ │ │ │ │ │ │ │ │ ├── epsilon.hpp
│ │ │ │ │ │ │ │ │ ├── epsilon.inl
│ │ │ │ │ │ │ │ │ ├── half_float.hpp
│ │ │ │ │ │ │ │ │ ├── half_float.inl
│ │ │ │ │ │ │ │ │ ├── matrix_access.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_access.inl
│ │ │ │ │ │ │ │ │ ├── matrix_integer.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_inverse.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_inverse.inl
│ │ │ │ │ │ │ │ │ ├── matrix_transform.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_transform.inl
│ │ │ │ │ │ │ │ │ ├── noise.hpp
│ │ │ │ │ │ │ │ │ ├── noise.inl
│ │ │ │ │ │ │ │ │ ├── quaternion.hpp
│ │ │ │ │ │ │ │ │ ├── quaternion.inl
│ │ │ │ │ │ │ │ │ ├── random.hpp
│ │ │ │ │ │ │ │ │ ├── random.inl
│ │ │ │ │ │ │ │ │ ├── reciprocal.hpp
│ │ │ │ │ │ │ │ │ ├── reciprocal.inl
│ │ │ │ │ │ │ │ │ ├── swizzle.hpp
│ │ │ │ │ │ │ │ │ ├── swizzle.inl
│ │ │ │ │ │ │ │ │ ├── type_precision.hpp
│ │ │ │ │ │ │ │ │ ├── type_precision.inl
│ │ │ │ │ │ │ │ │ ├── type_ptr.hpp
│ │ │ │ │ │ │ │ │ ├── type_ptr.inl
│ │ │ │ │ │ │ │ │ ├── ulp.hpp
│ │ │ │ │ │ │ │ │ └── ulp.inl
│ │ │ │ │ │ │ │ ├── gtx
│ │ │ │ │ │ │ │ │ ├── associated_min_max.hpp
│ │ │ │ │ │ │ │ │ ├── associated_min_max.inl
│ │ │ │ │ │ │ │ │ ├── bit.hpp
│ │ │ │ │ │ │ │ │ ├── bit.inl
│ │ │ │ │ │ │ │ │ ├── closest_point.hpp
│ │ │ │ │ │ │ │ │ ├── closest_point.inl
│ │ │ │ │ │ │ │ │ ├── color_cast.hpp
│ │ │ │ │ │ │ │ │ ├── color_cast.inl
│ │ │ │ │ │ │ │ │ ├── color_space.hpp
│ │ │ │ │ │ │ │ │ ├── color_space.inl
│ │ │ │ │ │ │ │ │ ├── color_space_YCoCg.hpp
│ │ │ │ │ │ │ │ │ ├── color_space_YCoCg.inl
│ │ │ │ │ │ │ │ │ ├── compatibility.hpp
│ │ │ │ │ │ │ │ │ ├── compatibility.inl
│ │ │ │ │ │ │ │ │ ├── component_wise.hpp
│ │ │ │ │ │ │ │ │ ├── component_wise.inl
│ │ │ │ │ │ │ │ │ ├── constants.hpp
│ │ │ │ │ │ │ │ │ ├── epsilon.hpp
│ │ │ │ │ │ │ │ │ ├── euler_angles.hpp
│ │ │ │ │ │ │ │ │ ├── euler_angles.inl
│ │ │ │ │ │ │ │ │ ├── extend.hpp
│ │ │ │ │ │ │ │ │ ├── extend.inl
│ │ │ │ │ │ │ │ │ ├── extented_min_max.hpp
│ │ │ │ │ │ │ │ │ ├── extented_min_max.inl
│ │ │ │ │ │ │ │ │ ├── fast_exponential.hpp
│ │ │ │ │ │ │ │ │ ├── fast_exponential.inl
│ │ │ │ │ │ │ │ │ ├── fast_square_root.hpp
│ │ │ │ │ │ │ │ │ ├── fast_square_root.inl
│ │ │ │ │ │ │ │ │ ├── fast_trigonometry.hpp
│ │ │ │ │ │ │ │ │ ├── fast_trigonometry.inl
│ │ │ │ │ │ │ │ │ ├── gradient_paint.hpp
│ │ │ │ │ │ │ │ │ ├── gradient_paint.inl
│ │ │ │ │ │ │ │ │ ├── handed_coordinate_space.hpp
│ │ │ │ │ │ │ │ │ ├── handed_coordinate_space.inl
│ │ │ │ │ │ │ │ │ ├── inertia.hpp
│ │ │ │ │ │ │ │ │ ├── inertia.inl
│ │ │ │ │ │ │ │ │ ├── int_10_10_10_2.hpp
│ │ │ │ │ │ │ │ │ ├── int_10_10_10_2.inl
│ │ │ │ │ │ │ │ │ ├── integer.hpp
│ │ │ │ │ │ │ │ │ ├── integer.inl
│ │ │ │ │ │ │ │ │ ├── intersect.hpp
│ │ │ │ │ │ │ │ │ ├── intersect.inl
│ │ │ │ │ │ │ │ │ ├── log_base.hpp
│ │ │ │ │ │ │ │ │ ├── log_base.inl
│ │ │ │ │ │ │ │ │ ├── matrix_cross_product.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_cross_product.inl
│ │ │ │ │ │ │ │ │ ├── matrix_interpolation.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_interpolation.inl
│ │ │ │ │ │ │ │ │ ├── matrix_major_storage.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_major_storage.inl
│ │ │ │ │ │ │ │ │ ├── matrix_operation.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_operation.inl
│ │ │ │ │ │ │ │ │ ├── matrix_query.hpp
│ │ │ │ │ │ │ │ │ ├── matrix_query.inl
│ │ │ │ │ │ │ │ │ ├── mixed_product.hpp
│ │ │ │ │ │ │ │ │ ├── mixed_product.inl
│ │ │ │ │ │ │ │ │ ├── multiple.hpp
│ │ │ │ │ │ │ │ │ ├── multiple.inl
│ │ │ │ │ │ │ │ │ ├── noise.hpp
│ │ │ │ │ │ │ │ │ ├── normal.hpp
│ │ │ │ │ │ │ │ │ ├── normal.inl
│ │ │ │ │ │ │ │ │ ├── normalize_dot.hpp
│ │ │ │ │ │ │ │ │ ├── normalize_dot.inl
│ │ │ │ │ │ │ │ │ ├── norm.hpp
│ │ │ │ │ │ │ │ │ ├── norm.inl
│ │ │ │ │ │ │ │ │ ├── number_precision.hpp
│ │ │ │ │ │ │ │ │ ├── number_precision.inl
│ │ │ │ │ │ │ │ │ ├── ocl_type.hpp
│ │ │ │ │ │ │ │ │ ├── ocl_type.inl
│ │ │ │ │ │ │ │ │ ├── optimum_pow.hpp
│ │ │ │ │ │ │ │ │ ├── optimum_pow.inl
│ │ │ │ │ │ │ │ │ ├── orthonormalize.hpp
│ │ │ │ │ │ │ │ │ ├── orthonormalize.inl
│ │ │ │ │ │ │ │ │ ├── perpendicular.hpp
│ │ │ │ │ │ │ │ │ ├── perpendicular.inl
│ │ │ │ │ │ │ │ │ ├── polar_coordinates.hpp
│ │ │ │ │ │ │ │ │ ├── polar_coordinates.inl
│ │ │ │ │ │ │ │ │ ├── projection.hpp
│ │ │ │ │ │ │ │ │ ├── projection.inl
│ │ │ │ │ │ │ │ │ ├── quaternion.hpp
│ │ │ │ │ │ │ │ │ ├── quaternion.inl
│ │ │ │ │ │ │ │ │ ├── random.hpp
│ │ │ │ │ │ │ │ │ ├── raw_data.hpp
│ │ │ │ │ │ │ │ │ ├── raw_data.inl
│ │ │ │ │ │ │ │ │ ├── reciprocal.hpp
│ │ │ │ │ │ │ │ │ ├── rotate_vector.hpp
│ │ │ │ │ │ │ │ │ ├── rotate_vector.inl
│ │ │ │ │ │ │ │ │ ├── simd_mat4.hpp
│ │ │ │ │ │ │ │ │ ├── simd_mat4.inl
│ │ │ │ │ │ │ │ │ ├── simd_vec4.hpp
│ │ │ │ │ │ │ │ │ ├── simd_vec4.inl
│ │ │ │ │ │ │ │ │ ├── spline.hpp
│ │ │ │ │ │ │ │ │ ├── spline.inl
│ │ │ │ │ │ │ │ │ ├── std_based_type.hpp
│ │ │ │ │ │ │ │ │ ├── std_based_type.inl
│ │ │ │ │ │ │ │ │ ├── string_cast.hpp
│ │ │ │ │ │ │ │ │ ├── string_cast.inl
│ │ │ │ │ │ │ │ │ ├── transform2.hpp
│ │ │ │ │ │ │ │ │ ├── transform2.inl
│ │ │ │ │ │ │ │ │ ├── transform.hpp
│ │ │ │ │ │ │ │ │ ├── transform.inl
│ │ │ │ │ │ │ │ │ ├── ulp.hpp
│ │ │ │ │ │ │ │ │ ├── unsigned_int.hpp
│ │ │ │ │ │ │ │ │ ├── unsigned_int.inl
│ │ │ │ │ │ │ │ │ ├── vec1.hpp
│ │ │ │ │ │ │ │ │ ├── vec1.inl
│ │ │ │ │ │ │ │ │ ├── vector_access.hpp
│ │ │ │ │ │ │ │ │ ├── vector_access.inl
│ │ │ │ │ │ │ │ │ ├── vector_angle.hpp
│ │ │ │ │ │ │ │ │ ├── vector_angle.inl
│ │ │ │ │ │ │ │ │ ├── vector_query.hpp
│ │ │ │ │ │ │ │ │ ├── vector_query.inl
│ │ │ │ │ │ │ │ │ ├── verbose_operator.hpp
│ │ │ │ │ │ │ │ │ ├── verbose_operator.inl
│ │ │ │ │ │ │ │ │ ├── wrap.hpp
│ │ │ │ │ │ │ │ │ └── wrap.inl
│ │ │ │ │ │ │ │ └── virtrev
│ │ │ │ │ │ │ │ └── xstream.hpp
│ │ │ │ │ │ │ ├── Package_2013.appxmanifest
│ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ ├── SimplePixelShader.hlsl
│ │ │ │ │ │ │ ├── SimpleVertexShader.hlsl
│ │ │ │ │ │ │ └── src
│ │ │ │ │ │ │ ├── engine
│ │ │ │ │ │ │ │ ├── dj.cc
│ │ │ │ │ │ │ │ ├── dj.h
│ │ │ │ │ │ │ │ ├── interactive.cc
│ │ │ │ │ │ │ │ ├── interactive.h
│ │ │ │ │ │ │ │ ├── logger.h
│ │ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ │ │ ├── manager.cc
│ │ │ │ │ │ │ │ ├── manager.h
│ │ │ │ │ │ │ │ ├── model.cc
│ │ │ │ │ │ │ │ ├── model.h
│ │ │ │ │ │ │ │ ├── objector.cc
│ │ │ │ │ │ │ │ ├── objector.h
│ │ │ │ │ │ │ │ ├── scriber.cc
│ │ │ │ │ │ │ │ ├── scriber.h
│ │ │ │ │ │ │ │ ├── shadower.cc
│ │ │ │ │ │ │ │ ├── shadower.h
│ │ │ │ │ │ │ │ ├── teges.cc
│ │ │ │ │ │ │ │ ├── teges_gameinterface.cc
│ │ │ │ │ │ │ │ ├── teges.h
│ │ │ │ │ │ │ │ ├── teges_loop.cc
│ │ │ │ │ │ │ │ ├── teges_object.cc
│ │ │ │ │ │ │ │ ├── teges_object.h
│ │ │ │ │ │ │ │ ├── texturer.cc
│ │ │ │ │ │ │ │ └── texturer.h
│ │ │ │ │ │ │ ├── game
│ │ │ │ │ │ │ │ ├── block.cc
│ │ │ │ │ │ │ │ ├── block.h
│ │ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ │ │ ├── menu.cc
│ │ │ │ │ │ │ │ ├── menu.h
│ │ │ │ │ │ │ │ ├── osd.cc
│ │ │ │ │ │ │ │ ├── osd.h
│ │ │ │ │ │ │ │ ├── playground.cc
│ │ │ │ │ │ │ │ ├── playground.h
│ │ │ │ │ │ │ │ ├── tegris.cc
│ │ │ │ │ │ │ │ └── tegris.h
│ │ │ │ │ │ │ ├── main.cc
│ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ │ └── res
│ │ │ │ │ │ │ ├── brick_bump.jpg
│ │ │ │ │ │ │ ├── brick.jpg
│ │ │ │ │ │ │ ├── brick_normal.jpg
│ │ │ │ │ │ │ ├── fall_big_i.ogg
│ │ │ │ │ │ │ ├── fall_big.ogg
│ │ │ │ │ │ │ ├── fall_medium.ogg
│ │ │ │ │ │ │ ├── fall_tiny.ogg
│ │ │ │ │ │ │ ├── metal_bump.jpg
│ │ │ │ │ │ │ ├── metal.jpg
│ │ │ │ │ │ │ ├── metal_normal.jpg
│ │ │ │ │ │ │ ├── parallax.frag
│ │ │ │ │ │ │ ├── parallax.vert
│ │ │ │ │ │ │ ├── psychofrog.frag
│ │ │ │ │ │ │ ├── psychofrog.vert
│ │ │ │ │ │ │ ├── rotate.ogg
│ │ │ │ │ │ │ ├── rustedpanels_bump.jpg
│ │ │ │ │ │ │ ├── rustedpanels.jpg
│ │ │ │ │ │ │ ├── rustedpanels_normal.jpg
│ │ │ │ │ │ │ ├── truss_bump.jpg
│ │ │ │ │ │ │ ├── truss.jpg
│ │ │ │ │ │ │ ├── truss_normal.jpg
│ │ │ │ │ │ │ └── vera.ttf
│ │ │ │ │ │ ├── build_samples.gyp
│ │ │ │ │ │ ├── d3dcompiler
│ │ │ │ │ │ │ ├── ARM
│ │ │ │ │ │ │ │ └── D3Dcompiler_46.dll
│ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ └── D3Dcompiler_46.dll
│ │ │ │ │ │ ├── gles2_book
│ │ │ │ │ │ │ ├── Common
│ │ │ │ │ │ │ │ ├── esShader.c
│ │ │ │ │ │ │ │ ├── esShader_winrt.cpp
│ │ │ │ │ │ │ │ ├── esShapes.c
│ │ │ │ │ │ │ │ ├── esShapes_winrt.cpp
│ │ │ │ │ │ │ │ ├── esTransform.c
│ │ │ │ │ │ │ │ ├── esTransform_winrt.cpp
│ │ │ │ │ │ │ │ ├── esUtil.c
│ │ │ │ │ │ │ │ ├── esUtil.h
│ │ │ │ │ │ │ │ ├── esUtil_phone.vcxproj
│ │ │ │ │ │ │ │ ├── esUtil_phone.vcxproj.filters
│ │ │ │ │ │ │ │ ├── esUtil.vcxproj
│ │ │ │ │ │ │ │ ├── esUtil.vcxproj.filters
│ │ │ │ │ │ │ │ ├── esUtil_win.h
│ │ │ │ │ │ │ │ ├── esUtil_winrt_2013.vcxproj
│ │ │ │ │ │ │ │ ├── esUtil_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ │ ├── esUtil_winrt.cpp
│ │ │ │ │ │ │ │ ├── esUtil_winrt.vcxproj
│ │ │ │ │ │ │ │ ├── esUtil_winrt.vcxproj.filters
│ │ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ │ ├── Win32
│ │ │ │ │ │ │ │ │ ├── esUtil_TGA.c
│ │ │ │ │ │ │ │ │ ├── esUtil_TGA_winrt.cpp
│ │ │ │ │ │ │ │ │ ├── esUtil_win32.c
│ │ │ │ │ │ │ │ │ └── esUtil_win32_winrt.cpp
│ │ │ │ │ │ │ │ └── WinRT
│ │ │ │ │ │ │ │ └── vs2013
│ │ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ │ └── Debug
│ │ │ │ │ │ │ │ └── esUtil_winrt.tlog
│ │ │ │ │ │ │ ├── Hello_Triangle
│ │ │ │ │ │ │ │ ├── Hello_Triangle.c
│ │ │ │ │ │ │ │ └── Hello_Triangle.vcxproj
│ │ │ │ │ │ │ ├── MipMap2D
│ │ │ │ │ │ │ │ ├── MipMap2D.c
│ │ │ │ │ │ │ │ └── MipMap2D.vcxproj
│ │ │ │ │ │ │ ├── MultipleRenderTargets
│ │ │ │ │ │ │ │ ├── MultipleRenderTargets.c
│ │ │ │ │ │ │ │ └── MultipleRenderTargets.vcxproj
│ │ │ │ │ │ │ ├── MultiTexture
│ │ │ │ │ │ │ │ ├── basemap.tga
│ │ │ │ │ │ │ │ ├── lightmap.tga
│ │ │ │ │ │ │ │ ├── MultiTexture.c
│ │ │ │ │ │ │ │ └── MultiTexture.vcxproj
│ │ │ │ │ │ │ ├── ParticleSystem
│ │ │ │ │ │ │ │ ├── ParticleSystem.c
│ │ │ │ │ │ │ │ ├── ParticleSystem.vcxproj
│ │ │ │ │ │ │ │ └── smoke.tga
│ │ │ │ │ │ │ ├── PostSubBuffer
│ │ │ │ │ │ │ │ ├── PostSubBuffer.c
│ │ │ │ │ │ │ │ └── PostSubBuffer.vcxproj
│ │ │ │ │ │ │ ├── Simple_Texture2D
│ │ │ │ │ │ │ │ ├── Simple_Texture2D.c
│ │ │ │ │ │ │ │ └── Simple_Texture2D.vcxproj
│ │ │ │ │ │ │ ├── Simple_TextureCubemap
│ │ │ │ │ │ │ │ ├── Simple_TextureCubemap.c
│ │ │ │ │ │ │ │ └── Simple_TextureCubemap.vcxproj
│ │ │ │ │ │ │ ├── Simple_VertexShader
│ │ │ │ │ │ │ │ ├── Simple_VertexShader.c
│ │ │ │ │ │ │ │ └── Simple_VertexShader.vcxproj
│ │ │ │ │ │ │ ├── Stencil_Test
│ │ │ │ │ │ │ │ ├── Stencil_Test.c
│ │ │ │ │ │ │ │ └── Stencil_Test.vcxproj
│ │ │ │ │ │ │ └── TextureWrap
│ │ │ │ │ │ │ ├── TextureWrap.c
│ │ │ │ │ │ │ └── TextureWrap.vcxproj
│ │ │ │ │ │ ├── RotatingCube
│ │ │ │ │ │ │ ├── RotatingCubeWinRT
│ │ │ │ │ │ │ │ ├── RotatingCubeWinRT
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.cpp
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT_TemporaryKey.pfx
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.vcxproj
│ │ │ │ │ │ │ │ │ └── RotatingCubeWinRT.vcxproj.filters
│ │ │ │ │ │ │ │ └── RotatingCubeWinRT.sln
│ │ │ │ │ │ │ ├── RotatingCubeWinRT_2013
│ │ │ │ │ │ │ │ ├── RotatingCubeWinRT
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.cpp
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT_TemporaryKey.pfx
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRT.vcxproj
│ │ │ │ │ │ │ │ │ └── RotatingCubeWinRT.vcxproj.filters
│ │ │ │ │ │ │ │ └── RotatingCubeWinRT.sln
│ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml
│ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── App.xaml
│ │ │ │ │ │ │ │ │ ├── App.xaml.cpp
│ │ │ │ │ │ │ │ │ ├── App.xaml.h
│ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── Common
│ │ │ │ │ │ │ │ │ │ └── StandardStyles.xaml
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml.cpp
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml.h
│ │ │ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ │ │ │ ├── App.g.h
│ │ │ │ │ │ │ │ │ │ ├── App.g.hpp
│ │ │ │ │ │ │ │ │ │ ├── App.xaml
│ │ │ │ │ │ │ │ │ │ ├── Common
│ │ │ │ │ │ │ │ │ │ │ ├── StandardStyles.g.h
│ │ │ │ │ │ │ │ │ │ │ ├── StandardStyles.g.hpp
│ │ │ │ │ │ │ │ │ │ │ └── StandardStyles.xaml
│ │ │ │ │ │ │ │ │ │ ├── DirectXPage.g.h
│ │ │ │ │ │ │ │ │ │ ├── DirectXPage.g.hpp
│ │ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml
│ │ │ │ │ │ │ │ │ │ ├── XamlLibMetadataProvider.g.cpp
│ │ │ │ │ │ │ │ │ │ ├── XamlTypeInfo.g.cpp
│ │ │ │ │ │ │ │ │ │ ├── XamlTypeInfo.g.h
│ │ │ │ │ │ │ │ │ │ └── XamlTypeInfo.Impl.g.cpp
│ │ │ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml_TemporaryKey.pfx
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml.vcxproj
│ │ │ │ │ │ │ │ │ └── RotatingCubeWinRTXaml.vcxproj.filters
│ │ │ │ │ │ │ │ └── RotatingCubeWinRTXaml.sln
│ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml_2013
│ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── App.xaml
│ │ │ │ │ │ │ │ │ ├── App.xaml.cpp
│ │ │ │ │ │ │ │ │ ├── App.xaml.h
│ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ ├── Logo.png
│ │ │ │ │ │ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ │ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ │ │ │ │ │ └── StoreLogo.png
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── Common
│ │ │ │ │ │ │ │ │ │ └── StandardStyles.xaml
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml.cpp
│ │ │ │ │ │ │ │ │ ├── DirectXPage.xaml.h
│ │ │ │ │ │ │ │ │ ├── Package.appxmanifest
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml_TemporaryKey.pfx
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWinRTXaml.vcxproj
│ │ │ │ │ │ │ │ │ └── RotatingCubeWinRTXaml.vcxproj.filters
│ │ │ │ │ │ │ │ └── RotatingCubeWinRTXaml.sln
│ │ │ │ │ │ │ ├── RotatingCubeWP8
│ │ │ │ │ │ │ │ ├── RotatingCubeWP8
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ │ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ │ │ │ │ │ └── Tiles
│ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ │ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ │ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8.cpp
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8.vcxproj
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8.vcxproj.filters
│ │ │ │ │ │ │ │ │ └── WMAppManifest.xml
│ │ │ │ │ │ │ │ └── RotatingCubeWP8.sln
│ │ │ │ │ │ │ ├── RotatingCubeWP8Xaml
│ │ │ │ │ │ │ │ ├── RotatingCubeWP8Xaml
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8Xaml
│ │ │ │ │ │ │ │ │ │ ├── App.xaml
│ │ │ │ │ │ │ │ │ │ ├── App.xaml.cs
│ │ │ │ │ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ │ │ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ │ │ │ │ │ │ └── Tiles
│ │ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ │ │ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ │ │ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ │ │ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ │ │ │ │ │ │ ├── LocalizedStrings.cs
│ │ │ │ │ │ │ │ │ │ ├── MainPage.xaml
│ │ │ │ │ │ │ │ │ │ ├── MainPage.xaml.cs
│ │ │ │ │ │ │ │ │ │ ├── Properties
│ │ │ │ │ │ │ │ │ │ │ ├── AppManifest.xml
│ │ │ │ │ │ │ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ │ │ │ │ │ │ └── WMAppManifest.xml
│ │ │ │ │ │ │ │ │ │ ├── Resources
│ │ │ │ │ │ │ │ │ │ │ ├── AppResources.Designer.cs
│ │ │ │ │ │ │ │ │ │ │ └── AppResources.resx
│ │ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8Xaml.csproj
│ │ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8Xaml.csproj.user
│ │ │ │ │ │ │ │ │ │ └── SplashScreenImage.jpg
│ │ │ │ │ │ │ │ │ └── RotatingCubeWP8XamlComponent
│ │ │ │ │ │ │ │ │ ├── AngleBase.cpp
│ │ │ │ │ │ │ │ │ ├── AngleBase.h
│ │ │ │ │ │ │ │ │ ├── BasicTimer.h
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.cpp
│ │ │ │ │ │ │ │ │ ├── CubeRenderer.h
│ │ │ │ │ │ │ │ │ ├── Direct3DContentProviderBase.cpp
│ │ │ │ │ │ │ │ │ ├── Direct3DContentProviderBase.h
│ │ │ │ │ │ │ │ │ ├── Direct3DContentProvider.cpp
│ │ │ │ │ │ │ │ │ ├── Direct3DContentProvider.h
│ │ │ │ │ │ │ │ │ ├── Direct3DInterop.cpp
│ │ │ │ │ │ │ │ │ ├── Direct3DInterop.h
│ │ │ │ │ │ │ │ │ ├── DirectXHelper.h
│ │ │ │ │ │ │ │ │ ├── pch.cpp
│ │ │ │ │ │ │ │ │ ├── pch.h
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8XamlComponent.cpp
│ │ │ │ │ │ │ │ │ ├── RotatingCubeWP8XamlComponent.h
│ │ │ │ │ │ │ │ │ └── RotatingCubeWP8XamlComponent.vcxproj
│ │ │ │ │ │ │ │ └── RotatingCubeWP8Xaml.sln
│ │ │ │ │ │ │ ├── shader.frag
│ │ │ │ │ │ │ ├── shader.h
│ │ │ │ │ │ │ ├── shader.vert
│ │ │ │ │ │ │ └── winrtcompiler.bat
│ │ │ │ │ │ ├── samples.sln
│ │ │ │ │ │ ├── samples_winrt_2013.sln
│ │ │ │ │ │ ├── samples_winrt.sln
│ │ │ │ │ │ └── translator
│ │ │ │ │ │ ├── essl_to_glsl.vcproj
│ │ │ │ │ │ ├── essl_to_hlsl.vcxproj
│ │ │ │ │ │ ├── essl_to_hlsl.vcxproj.filters
│ │ │ │ │ │ ├── essl_to_hlsl_winrt
│ │ │ │ │ │ │ └── essl_to_hlsl_winrt.sln
│ │ │ │ │ │ ├── essl_to_hlsl_winrt.vcxproj
│ │ │ │ │ │ ├── essl_to_hlsl_winrt.vcxproj.filters
│ │ │ │ │ │ └── translator.cpp
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── ANGLE_phone.sln
│ │ │ │ │ │ ├── ANGLE.sln
│ │ │ │ │ │ ├── ANGLE_winrt_2013.sln
│ │ │ │ │ │ ├── ANGLE_winrt.sln
│ │ │ │ │ │ ├── build_angle.gyp
│ │ │ │ │ │ ├── build_angle.gypi
│ │ │ │ │ │ ├── common
│ │ │ │ │ │ │ ├── angleutils.h
│ │ │ │ │ │ │ ├── debug.cpp
│ │ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ │ ├── event_tracer.cpp
│ │ │ │ │ │ │ ├── event_tracer.h
│ │ │ │ │ │ │ ├── RefCountObject.cpp
│ │ │ │ │ │ │ ├── RefCountObject.h
│ │ │ │ │ │ │ ├── system.h
│ │ │ │ │ │ │ ├── version.h
│ │ │ │ │ │ │ ├── winrtangle.cpp
│ │ │ │ │ │ │ ├── winrtangle.h
│ │ │ │ │ │ │ ├── winrtangleutils.cpp
│ │ │ │ │ │ │ ├── winrtangleutils.h
│ │ │ │ │ │ │ ├── winrtplatform.h
│ │ │ │ │ │ │ ├── winrtutils.cpp
│ │ │ │ │ │ │ └── winrtutils.h
│ │ │ │ │ │ ├── compiler
│ │ │ │ │ │ │ ├── 64bit-lexer-safety.patch
│ │ │ │ │ │ │ ├── BaseTypes.h
│ │ │ │ │ │ │ ├── BuiltInFunctionEmulator.cpp
│ │ │ │ │ │ │ ├── BuiltInFunctionEmulator.h
│ │ │ │ │ │ │ ├── CodeGenGLSL.cpp
│ │ │ │ │ │ │ ├── CodeGenHLSL.cpp
│ │ │ │ │ │ │ ├── Common.h
│ │ │ │ │ │ │ ├── Compiler.cpp
│ │ │ │ │ │ │ ├── ConstantUnion.h
│ │ │ │ │ │ │ ├── debug.cpp
│ │ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ │ ├── depgraph
│ │ │ │ │ │ │ │ ├── DependencyGraphBuilder.cpp
│ │ │ │ │ │ │ │ ├── DependencyGraphBuilder.h
│ │ │ │ │ │ │ │ ├── DependencyGraph.cpp
│ │ │ │ │ │ │ │ ├── DependencyGraph.h
│ │ │ │ │ │ │ │ ├── DependencyGraphOutput.cpp
│ │ │ │ │ │ │ │ ├── DependencyGraphOutput.h
│ │ │ │ │ │ │ │ └── DependencyGraphTraverse.cpp
│ │ │ │ │ │ │ ├── DetectCallDepth.cpp
│ │ │ │ │ │ │ ├── DetectCallDepth.h
│ │ │ │ │ │ │ ├── DetectDiscontinuity.cpp
│ │ │ │ │ │ │ ├── DetectDiscontinuity.h
│ │ │ │ │ │ │ ├── DetectRecursion.cpp
│ │ │ │ │ │ │ ├── DetectRecursion.h
│ │ │ │ │ │ │ ├── Diagnostics.cpp
│ │ │ │ │ │ │ ├── Diagnostics.h
│ │ │ │ │ │ │ ├── DirectiveHandler.cpp
│ │ │ │ │ │ │ ├── DirectiveHandler.h
│ │ │ │ │ │ │ ├── ExtensionBehavior.h
│ │ │ │ │ │ │ ├── ForLoopUnroll.cpp
│ │ │ │ │ │ │ ├── ForLoopUnroll.h
│ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ ├── generate_parser.sh
│ │ │ │ │ │ │ ├── glslang.h
│ │ │ │ │ │ │ ├── glslang.l
│ │ │ │ │ │ │ ├── glslang_lex.cpp
│ │ │ │ │ │ │ ├── glslang_tab.cpp
│ │ │ │ │ │ │ ├── glslang_tab.h
│ │ │ │ │ │ │ ├── glslang.y
│ │ │ │ │ │ │ ├── HashNames.h
│ │ │ │ │ │ │ ├── InfoSink.cpp
│ │ │ │ │ │ │ ├── InfoSink.h
│ │ │ │ │ │ │ ├── Initialize.cpp
│ │ │ │ │ │ │ ├── InitializeDll.cpp
│ │ │ │ │ │ │ ├── InitializeDll.h
│ │ │ │ │ │ │ ├── InitializeGlobals.h
│ │ │ │ │ │ │ ├── InitializeGLPosition.cpp
│ │ │ │ │ │ │ ├── InitializeGLPosition.h
│ │ │ │ │ │ │ ├── Initialize.h
│ │ │ │ │ │ │ ├── InitializeParseContext.cpp
│ │ │ │ │ │ │ ├── InitializeParseContext.h
│ │ │ │ │ │ │ ├── Intermediate.cpp
│ │ │ │ │ │ │ ├── intermediate.h
│ │ │ │ │ │ │ ├── intermOut.cpp
│ │ │ │ │ │ │ ├── IntermTraverse.cpp
│ │ │ │ │ │ │ ├── localintermediate.h
│ │ │ │ │ │ │ ├── MapLongVariableNames.cpp
│ │ │ │ │ │ │ ├── MapLongVariableNames.h
│ │ │ │ │ │ │ ├── MMap.h
│ │ │ │ │ │ │ ├── osinclude.h
│ │ │ │ │ │ │ ├── ossource_posix.cpp
│ │ │ │ │ │ │ ├── ossource_win.cpp
│ │ │ │ │ │ │ ├── OutputESSL.cpp
│ │ │ │ │ │ │ ├── OutputESSL.h
│ │ │ │ │ │ │ ├── OutputGLSLBase.cpp
│ │ │ │ │ │ │ ├── OutputGLSLBase.h
│ │ │ │ │ │ │ ├── OutputGLSL.cpp
│ │ │ │ │ │ │ ├── OutputGLSL.h
│ │ │ │ │ │ │ ├── OutputHLSL.cpp
│ │ │ │ │ │ │ ├── OutputHLSL.h
│ │ │ │ │ │ │ ├── parseConst.cpp
│ │ │ │ │ │ │ ├── ParseHelper.cpp
│ │ │ │ │ │ │ ├── ParseHelper.h
│ │ │ │ │ │ │ ├── PoolAlloc.cpp
│ │ │ │ │ │ │ ├── PoolAlloc.h
│ │ │ │ │ │ │ ├── Pragma.h
│ │ │ │ │ │ │ ├── preprocessor
│ │ │ │ │ │ │ │ ├── 64bit-tokenizer-safety.patch
│ │ │ │ │ │ │ │ ├── DiagnosticsBase.cpp
│ │ │ │ │ │ │ │ ├── DiagnosticsBase.h
│ │ │ │ │ │ │ │ ├── DirectiveHandlerBase.cpp
│ │ │ │ │ │ │ │ ├── DirectiveHandlerBase.h
│ │ │ │ │ │ │ │ ├── DirectiveParser.cpp
│ │ │ │ │ │ │ │ ├── DirectiveParser.h
│ │ │ │ │ │ │ │ ├── ExpressionParser.cpp
│ │ │ │ │ │ │ │ ├── ExpressionParser.h
│ │ │ │ │ │ │ │ ├── ExpressionParser.y
│ │ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ │ ├── generate_parser.sh
│ │ │ │ │ │ │ │ ├── Input.cpp
│ │ │ │ │ │ │ │ ├── Input.h
│ │ │ │ │ │ │ │ ├── length_limits.h
│ │ │ │ │ │ │ │ ├── Lexer.cpp
│ │ │ │ │ │ │ │ ├── Lexer.h
│ │ │ │ │ │ │ │ ├── Macro.cpp
│ │ │ │ │ │ │ │ ├── MacroExpander.cpp
│ │ │ │ │ │ │ │ ├── MacroExpander.h
│ │ │ │ │ │ │ │ ├── Macro.h
│ │ │ │ │ │ │ │ ├── numeric_lex.h
│ │ │ │ │ │ │ │ ├── pp_utils.h
│ │ │ │ │ │ │ │ ├── Preprocessor.cpp
│ │ │ │ │ │ │ │ ├── Preprocessor.h
│ │ │ │ │ │ │ │ ├── preprocessor_phone.vcxproj
│ │ │ │ │ │ │ │ ├── preprocessor_phone.vcxproj.filters
│ │ │ │ │ │ │ │ ├── preprocessor.vcxproj
│ │ │ │ │ │ │ │ ├── preprocessor.vcxproj.filters
│ │ │ │ │ │ │ │ ├── preprocessor_winrt_2013.vcxproj
│ │ │ │ │ │ │ │ ├── preprocessor_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ │ ├── preprocessor_winrt.vcxproj
│ │ │ │ │ │ │ │ ├── preprocessor_winrt.vcxproj.filters
│ │ │ │ │ │ │ │ ├── SourceLocation.h
│ │ │ │ │ │ │ │ ├── Token.cpp
│ │ │ │ │ │ │ │ ├── Token.h
│ │ │ │ │ │ │ │ ├── Tokenizer.cpp
│ │ │ │ │ │ │ │ ├── Tokenizer.h
│ │ │ │ │ │ │ │ ├── Tokenizer.l
│ │ │ │ │ │ │ │ └── WinRT
│ │ │ │ │ │ │ │ └── vs2013
│ │ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ │ └── Debug
│ │ │ │ │ │ │ │ └── preproce.e7b1d854.tlog
│ │ │ │ │ │ │ ├── QualifierAlive.cpp
│ │ │ │ │ │ │ ├── QualifierAlive.h
│ │ │ │ │ │ │ ├── RemoveTree.cpp
│ │ │ │ │ │ │ ├── RemoveTree.h
│ │ │ │ │ │ │ ├── RenameFunction.h
│ │ │ │ │ │ │ ├── SearchSymbol.cpp
│ │ │ │ │ │ │ ├── SearchSymbol.h
│ │ │ │ │ │ │ ├── ShaderLang.cpp
│ │ │ │ │ │ │ ├── ShHandle.h
│ │ │ │ │ │ │ ├── SymbolTable.cpp
│ │ │ │ │ │ │ ├── SymbolTable.h
│ │ │ │ │ │ │ ├── timing
│ │ │ │ │ │ │ │ ├── RestrictFragmentShaderTiming.cpp
│ │ │ │ │ │ │ │ ├── RestrictFragmentShaderTiming.h
│ │ │ │ │ │ │ │ ├── RestrictVertexShaderTiming.cpp
│ │ │ │ │ │ │ │ └── RestrictVertexShaderTiming.h
│ │ │ │ │ │ │ ├── translator_common_phone.vcxproj
│ │ │ │ │ │ │ ├── translator_common_phone.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_common.vcxproj
│ │ │ │ │ │ │ ├── translator_common.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_common_winrt_2013.vcxproj
│ │ │ │ │ │ │ ├── translator_common_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_common_winrt.vcxproj
│ │ │ │ │ │ │ ├── translator_common_winrt.vcxproj.filters
│ │ │ │ │ │ │ ├── TranslatorESSL.cpp
│ │ │ │ │ │ │ ├── TranslatorESSL.h
│ │ │ │ │ │ │ ├── TranslatorGLSL.cpp
│ │ │ │ │ │ │ ├── TranslatorGLSL.h
│ │ │ │ │ │ │ ├── TranslatorHLSL.cpp
│ │ │ │ │ │ │ ├── TranslatorHLSL.h
│ │ │ │ │ │ │ ├── translator_hlsl_phone.vcxproj
│ │ │ │ │ │ │ ├── translator_hlsl_phone.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_hlsl.vcxproj
│ │ │ │ │ │ │ ├── translator_hlsl.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_hlsl_winrt_2013.vcxproj
│ │ │ │ │ │ │ ├── translator_hlsl_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── translator_hlsl_winrt.vcxproj
│ │ │ │ │ │ │ ├── translator_hlsl_winrt.vcxproj.filters
│ │ │ │ │ │ │ ├── Types.h
│ │ │ │ │ │ │ ├── UnfoldShortCircuit.cpp
│ │ │ │ │ │ │ ├── UnfoldShortCircuit.h
│ │ │ │ │ │ │ ├── Uniform.cpp
│ │ │ │ │ │ │ ├── Uniform.h
│ │ │ │ │ │ │ ├── util.cpp
│ │ │ │ │ │ │ ├── util.h
│ │ │ │ │ │ │ ├── ValidateLimitations.cpp
│ │ │ │ │ │ │ ├── ValidateLimitations.h
│ │ │ │ │ │ │ ├── VariableInfo.cpp
│ │ │ │ │ │ │ ├── VariableInfo.h
│ │ │ │ │ │ │ ├── VariablePacker.cpp
│ │ │ │ │ │ │ ├── VariablePacker.h
│ │ │ │ │ │ │ ├── VersionGLSL.cpp
│ │ │ │ │ │ │ ├── VersionGLSL.h
│ │ │ │ │ │ │ └── WinRT
│ │ │ │ │ │ │ └── vs2013
│ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ └── Debug
│ │ │ │ │ │ │ ├── translat.3681e22c.tlog
│ │ │ │ │ │ │ └── translat.f7cc3484.tlog
│ │ │ │ │ │ ├── libEGL
│ │ │ │ │ │ │ ├── Config.cpp
│ │ │ │ │ │ │ ├── Config.h
│ │ │ │ │ │ │ ├── Display.cpp
│ │ │ │ │ │ │ ├── Display.h
│ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ ├── libEGL.cpp
│ │ │ │ │ │ │ ├── libEGL.def
│ │ │ │ │ │ │ ├── libEGL_phone.def
│ │ │ │ │ │ │ ├── libEGL_phone.vcxproj
│ │ │ │ │ │ │ ├── libEGL_phone.vcxproj.filters
│ │ │ │ │ │ │ ├── libEGL.rc
│ │ │ │ │ │ │ ├── libEGL.vcxproj
│ │ │ │ │ │ │ ├── libEGL.vcxproj.filters
│ │ │ │ │ │ │ ├── libEGL_winrt_2013.vcxproj
│ │ │ │ │ │ │ ├── libEGL_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── libEGL_winrt.def
│ │ │ │ │ │ │ ├── libEGL_winrt.vcxproj
│ │ │ │ │ │ │ ├── libEGL_winrt.vcxproj.filters
│ │ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ │ ├── main.h
│ │ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ │ ├── Surface.cpp
│ │ │ │ │ │ │ ├── Surface.h
│ │ │ │ │ │ │ ├── TLSWinrt.cpp
│ │ │ │ │ │ │ ├── TLSWinrt.h
│ │ │ │ │ │ │ └── WinRT
│ │ │ │ │ │ │ └── vs2013
│ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ └── Debug
│ │ │ │ │ │ │ └── libEGL_winrt.tlog
│ │ │ │ │ │ ├── libGLESv2
│ │ │ │ │ │ │ ├── angletypes.h
│ │ │ │ │ │ │ ├── BinaryStream.h
│ │ │ │ │ │ │ ├── Buffer.cpp
│ │ │ │ │ │ │ ├── Buffer.h
│ │ │ │ │ │ │ ├── constants.h
│ │ │ │ │ │ │ ├── Context.cpp
│ │ │ │ │ │ │ ├── Context.h
│ │ │ │ │ │ │ ├── Fence.cpp
│ │ │ │ │ │ │ ├── Fence.h
│ │ │ │ │ │ │ ├── Float16ToFloat32.cpp
│ │ │ │ │ │ │ ├── Float16ToFloat32.py
│ │ │ │ │ │ │ ├── Framebuffer.cpp
│ │ │ │ │ │ │ ├── Framebuffer.h
│ │ │ │ │ │ │ ├── Generated Files
│ │ │ │ │ │ │ ├── HandleAllocator.cpp
│ │ │ │ │ │ │ ├── HandleAllocator.h
│ │ │ │ │ │ │ ├── libGLESv2.cpp
│ │ │ │ │ │ │ ├── libGLESv2.def
│ │ │ │ │ │ │ ├── libGLESv2_phone.def
│ │ │ │ │ │ │ ├── libGLESv2_phone.vcxproj
│ │ │ │ │ │ │ ├── libGLESv2_phone.vcxproj.filters
│ │ │ │ │ │ │ ├── libGLESv2.rc
│ │ │ │ │ │ │ ├── libGLESv2.vcxproj
│ │ │ │ │ │ │ ├── libGLESv2.vcxproj.filters
│ │ │ │ │ │ │ ├── libGLESv2_winrt_2013.vcxproj
│ │ │ │ │ │ │ ├── libGLESv2_winrt_2013.vcxproj.filters
│ │ │ │ │ │ │ ├── libGLESv2_winrt.def
│ │ │ │ │ │ │ ├── libGLESv2_winrt.vcxproj
│ │ │ │ │ │ │ ├── libGLESv2_winrt.vcxproj.filters
│ │ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ │ ├── main.h
│ │ │ │ │ │ │ ├── mathutil.h
│ │ │ │ │ │ │ ├── precompiled.cpp
│ │ │ │ │ │ │ ├── precompiled.h
│ │ │ │ │ │ │ ├── ProgramBinary.cpp
│ │ │ │ │ │ │ ├── ProgramBinary.h
│ │ │ │ │ │ │ ├── Program.cpp
│ │ │ │ │ │ │ ├── Program.h
│ │ │ │ │ │ │ ├── Query.cpp
│ │ │ │ │ │ │ ├── Query.h
│ │ │ │ │ │ │ ├── Renderbuffer.cpp
│ │ │ │ │ │ │ ├── Renderbuffer.h
│ │ │ │ │ │ │ ├── renderer
│ │ │ │ │ │ │ │ ├── Blit.cpp
│ │ │ │ │ │ │ │ ├── Blit.h
│ │ │ │ │ │ │ │ ├── BufferStorage11.cpp
│ │ │ │ │ │ │ │ ├── BufferStorage11.h
│ │ │ │ │ │ │ │ ├── BufferStorage9.cpp
│ │ │ │ │ │ │ │ ├── BufferStorage9.h
│ │ │ │ │ │ │ │ ├── BufferStorage.cpp
│ │ │ │ │ │ │ │ ├── BufferStorage.h
│ │ │ │ │ │ │ │ ├── Fence11.cpp
│ │ │ │ │ │ │ │ ├── Fence11.h
│ │ │ │ │ │ │ │ ├── Fence9.cpp
│ │ │ │ │ │ │ │ ├── Fence9.h
│ │ │ │ │ │ │ │ ├── FenceImpl.h
│ │ │ │ │ │ │ │ ├── generatemip.h
│ │ │ │ │ │ │ │ ├── Image11.cpp
│ │ │ │ │ │ │ │ ├── Image11.h
│ │ │ │ │ │ │ │ ├── Image9.cpp
│ │ │ │ │ │ │ │ ├── Image9.h
│ │ │ │ │ │ │ │ ├── Image.cpp
│ │ │ │ │ │ │ │ ├── Image.h
│ │ │ │ │ │ │ │ ├── ImageSSE2.cpp
│ │ │ │ │ │ │ │ ├── IndexBuffer11.cpp
│ │ │ │ │ │ │ │ ├── IndexBuffer11.h
│ │ │ │ │ │ │ │ ├── IndexBuffer9.cpp
│ │ │ │ │ │ │ │ ├── IndexBuffer9.h
│ │ │ │ │ │ │ │ ├── IndexBuffer.cpp
│ │ │ │ │ │ │ │ ├── IndexBuffer.h
│ │ │ │ │ │ │ │ ├── IndexDataManager.cpp
│ │ │ │ │ │ │ │ ├── IndexDataManager.h
│ │ │ │ │ │ │ │ ├── IndexRangeCache.cpp
│ │ │ │ │ │ │ │ ├── IndexRangeCache.h
│ │ │ │ │ │ │ │ ├── InputLayoutCache.cpp
│ │ │ │ │ │ │ │ ├── InputLayoutCache.h
│ │ │ │ │ │ │ │ ├── Query11.cpp
│ │ │ │ │ │ │ │ ├── Query11.h
│ │ │ │ │ │ │ │ ├── Query9.cpp
│ │ │ │ │ │ │ │ ├── Query9.h
│ │ │ │ │ │ │ │ ├── QueryImpl.h
│ │ │ │ │ │ │ │ ├── Renderer11.cpp
│ │ │ │ │ │ │ │ ├── Renderer11.h
│ │ │ │ │ │ │ │ ├── renderer11_utils.cpp
│ │ │ │ │ │ │ │ ├── renderer11_utils.h
│ │ │ │ │ │ │ │ ├── Renderer9.cpp
│ │ │ │ │ │ │ │ ├── Renderer9.h
│ │ │ │ │ │ │ │ ├── renderer9_utils.cpp
│ │ │ │ │ │ │ │ ├── renderer9_utils.h
│ │ │ │ │ │ │ │ ├── Renderer.cpp
│ │ │ │ │ │ │ │ ├── Renderer.h
│ │ │ │ │ │ │ │ ├── RenderStateCache.cpp
│ │ │ │ │ │ │ │ ├── RenderStateCache.h
│ │ │ │ │ │ │ │ ├── RenderTarget11.cpp
│ │ │ │ │ │ │ │ ├── RenderTarget11.h
│ │ │ │ │ │ │ │ ├── RenderTarget9.cpp
│ │ │ │ │ │ │ │ ├── RenderTarget9.h
│ │ │ │ │ │ │ │ ├── RenderTarget.h
│ │ │ │ │ │ │ │ ├── ShaderCache.h
│ │ │ │ │ │ │ │ ├── ShaderExecutable11.cpp
│ │ │ │ │ │ │ │ ├── ShaderExecutable11.h
│ │ │ │ │ │ │ │ ├── ShaderExecutable9.cpp
│ │ │ │ │ │ │ │ ├── ShaderExecutable9.h
│ │ │ │ │ │ │ │ ├── ShaderExecutable.h
│ │ │ │ │ │ │ │ ├── shaders
│ │ │ │ │ │ │ │ │ ├── Blit.ps
│ │ │ │ │ │ │ │ │ ├── Blit.vs
│ │ │ │ │ │ │ │ │ ├── Clear11.hlsl
│ │ │ │ │ │ │ │ │ ├── compiled
│ │ │ │ │ │ │ │ │ │ ├── clear11vs.h
│ │ │ │ │ │ │ │ │ │ ├── clearmultiple11ps.h
│ │ │ │ │ │ │ │ │ │ ├── clearsingle11ps.h
│ │ │ │ │ │ │ │ │ │ ├── componentmaskps.h
│ │ │ │ │ │ │ │ │ │ ├── flipyvs.h
│ │ │ │ │ │ │ │ │ │ ├── luminanceps.h
│ │ │ │ │ │ │ │ │ │ ├── passthrough11vs.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughlum11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughlumalpha11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughrgb11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughrgba11ps.h
│ │ │ │ │ │ │ │ │ │ ├── standardvs.h
│ │ │ │ │ │ │ │ │ │ └── winrt
│ │ │ │ │ │ │ │ │ │ ├── clear11vs.h
│ │ │ │ │ │ │ │ │ │ ├── clearmultiple11ps.h
│ │ │ │ │ │ │ │ │ │ ├── clearsingle11ps.h
│ │ │ │ │ │ │ │ │ │ ├── componentmaskps.h
│ │ │ │ │ │ │ │ │ │ ├── flipyvs.h
│ │ │ │ │ │ │ │ │ │ ├── luminanceps.h
│ │ │ │ │ │ │ │ │ │ ├── passthrough11vs.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughlum11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughlumalpha11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughrgb11ps.h
│ │ │ │ │ │ │ │ │ │ ├── passthroughrgba11ps.h
│ │ │ │ │ │ │ │ │ │ └── standardvs.h
│ │ │ │ │ │ │ │ │ ├── generate_shaders.bat
│ │ │ │ │ │ │ │ │ └── Passthrough11.hlsl
│ │ │ │ │ │ │ │ ├── SwapChain11.cpp
│ │ │ │ │ │ │ │ ├── SwapChain11.h
│ │ │ │ │ │ │ │ ├── SwapChain9.cpp
│ │ │ │ │ │ │ │ ├── SwapChain9.h
│ │ │ │ │ │ │ │ ├── SwapChain.h
│ │ │ │ │ │ │ │ ├── TextureStorage11.cpp
│ │ │ │ │ │ │ │ ├── TextureStorage11.h
│ │ │ │ │ │ │ │ ├── TextureStorage9.cpp
│ │ │ │ │ │ │ │ ├── TextureStorage9.h
│ │ │ │ │ │ │ │ ├── TextureStorage.cpp
│ │ │ │ │ │ │ │ ├── TextureStorage.h
│ │ │ │ │ │ │ │ ├── VertexBuffer11.cpp
│ │ │ │ │ │ │ │ ├── VertexBuffer11.h
│ │ │ │ │ │ │ │ ├── VertexBuffer9.cpp
│ │ │ │ │ │ │ │ ├── VertexBuffer9.h
│ │ │ │ │ │ │ │ ├── VertexBuffer.cpp
│ │ │ │ │ │ │ │ ├── VertexBuffer.h
│ │ │ │ │ │ │ │ ├── vertexconversion.h
│ │ │ │ │ │ │ │ ├── VertexDataManager.cpp
│ │ │ │ │ │ │ │ ├── VertexDataManager.h
│ │ │ │ │ │ │ │ ├── VertexDeclarationCache.cpp
│ │ │ │ │ │ │ │ └── VertexDeclarationCache.h
│ │ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ │ ├── ResourceManager.cpp
│ │ │ │ │ │ │ ├── ResourceManager.h
│ │ │ │ │ │ │ ├── Shader.cpp
│ │ │ │ │ │ │ ├── Shader.h
│ │ │ │ │ │ │ ├── Texture.cpp
│ │ │ │ │ │ │ ├── Texture.h
│ │ │ │ │ │ │ ├── TLSWinrt.cpp
│ │ │ │ │ │ │ ├── TLSWinrt.h
│ │ │ │ │ │ │ ├── Uniform.cpp
│ │ │ │ │ │ │ ├── Uniform.h
│ │ │ │ │ │ │ ├── utilities.cpp
│ │ │ │ │ │ │ ├── utilities.h
│ │ │ │ │ │ │ └── WinRT
│ │ │ │ │ │ │ └── vs2013
│ │ │ │ │ │ │ └── Win32
│ │ │ │ │ │ │ └── Debug
│ │ │ │ │ │ │ └── libGLESv2_winrt.tlog
│ │ │ │ │ │ ├── third_party
│ │ │ │ │ │ │ ├── compiler
│ │ │ │ │ │ │ │ ├── ArrayBoundsClamper.cpp
│ │ │ │ │ │ │ │ ├── ArrayBoundsClamper.h
│ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ └── README.angle
│ │ │ │ │ │ │ ├── murmurhash
│ │ │ │ │ │ │ │ ├── LICENSE
│ │ │ │ │ │ │ │ ├── MurmurHash3.cpp
│ │ │ │ │ │ │ │ └── MurmurHash3.h
│ │ │ │ │ │ │ ├── trace_event
│ │ │ │ │ │ │ │ └── trace_event.h
│ │ │ │ │ │ │ └── winrt
│ │ │ │ │ │ │ ├── ThreadEmulation
│ │ │ │ │ │ │ │ ├── Microsoft Permissive License.rtf
│ │ │ │ │ │ │ │ ├── ThreadEmulation.cpp
│ │ │ │ │ │ │ │ └── ThreadEmulation.h
│ │ │ │ │ │ │ └── threadutils.h
│ │ │ │ │ │ └── winrtcompiler
│ │ │ │ │ │ ├── bin
│ │ │ │ │ │ │ └── D3Dcompiler_46.dll
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── shader.frag
│ │ │ │ │ │ ├── shader.vert
│ │ │ │ │ │ ├── winrtcompiler.bat
│ │ │ │ │ │ ├── winrtcompiler.sln
│ │ │ │ │ │ ├── winrtcompiler.vcxproj
│ │ │ │ │ │ └── winrtcompiler.vcxproj.filters
│ │ │ │ │ └── tests
│ │ │ │ │ ├── build_tests.gyp
│ │ │ │ │ ├── compiler_tests
│ │ │ │ │ │ ├── ExpressionLimit_test.cpp
│ │ │ │ │ │ └── VariablePacker_test.cpp
│ │ │ │ │ └── preprocessor_tests
│ │ │ │ │ ├── char_test.cpp
│ │ │ │ │ ├── comment_test.cpp
│ │ │ │ │ ├── define_test.cpp
│ │ │ │ │ ├── error_test.cpp
│ │ │ │ │ ├── extension_test.cpp
│ │ │ │ │ ├── identifier_test.cpp
│ │ │ │ │ ├── if_test.cpp
│ │ │ │ │ ├── input_test.cpp
│ │ │ │ │ ├── location_test.cpp
│ │ │ │ │ ├── MockDiagnostics.h
│ │ │ │ │ ├── MockDirectiveHandler.h
│ │ │ │ │ ├── number_test.cpp
│ │ │ │ │ ├── operator_test.cpp
│ │ │ │ │ ├── pragma_test.cpp
│ │ │ │ │ ├── PreprocessorTest.cpp
│ │ │ │ │ ├── PreprocessorTest.h
│ │ │ │ │ ├── space_test.cpp
│ │ │ │ │ ├── token_test.cpp
│ │ │ │ │ └── version_test.cpp
│ │ │ │ ├── freetype
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── freetype
│ │ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ │ ├── ftconfig.h
│ │ │ │ │ │ │ │ ├── ftheader.h
│ │ │ │ │ │ │ │ ├── ftmodule.h
│ │ │ │ │ │ │ │ ├── ftoption.h
│ │ │ │ │ │ │ │ └── ftstdlib.h
│ │ │ │ │ │ │ ├── freetype.h
│ │ │ │ │ │ │ ├── ftadvanc.h
│ │ │ │ │ │ │ ├── ftautoh.h
│ │ │ │ │ │ │ ├── ftbbox.h
│ │ │ │ │ │ │ ├── ftbdf.h
│ │ │ │ │ │ │ ├── ftbitmap.h
│ │ │ │ │ │ │ ├── ftbzip2.h
│ │ │ │ │ │ │ ├── ftcache.h
│ │ │ │ │ │ │ ├── ftcffdrv.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
│ │ │ │ │ │ │ ├── ftttdrv.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
│ │ │ │ │ │ │ │ ├── psaux.h
│ │ │ │ │ │ │ │ ├── pshints.h
│ │ │ │ │ │ │ │ ├── services
│ │ │ │ │ │ │ │ │ ├── svbdf.h
│ │ │ │ │ │ │ │ │ ├── svcid.h
│ │ │ │ │ │ │ │ │ ├── svgldict.h
│ │ │ │ │ │ │ │ │ ├── svgxval.h
│ │ │ │ │ │ │ │ │ ├── svkern.h
│ │ │ │ │ │ │ │ │ ├── svmm.h
│ │ │ │ │ │ │ │ │ ├── svotval.h
│ │ │ │ │ │ │ │ │ ├── svpfr.h
│ │ │ │ │ │ │ │ │ ├── svpostnm.h
│ │ │ │ │ │ │ │ │ ├── svprop.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
│ │ │ │ │ ├── proj.winrt
│ │ │ │ │ │ ├── freetype_2013.sln
│ │ │ │ │ │ ├── freetype_2013.vcxproj
│ │ │ │ │ │ ├── freetype_2013.vcxproj.filters
│ │ │ │ │ │ ├── freetype.sln
│ │ │ │ │ │ ├── freetype.vcxproj
│ │ │ │ │ │ └── freetype.vcxproj.filters
│ │ │ │ │ ├── proj.wp8
│ │ │ │ │ │ ├── freetype.sln
│ │ │ │ │ │ ├── freetype.vcxproj
│ │ │ │ │ │ └── freetype.vcxproj.filters
│ │ │ │ │ └── README.txt
│ │ │ │ ├── libjpeg
│ │ │ │ │ ├── jconfig.h
│ │ │ │ │ ├── jconfig_linux.h
│ │ │ │ │ ├── jconfig_win.h
│ │ │ │ │ ├── jerror.h
│ │ │ │ │ ├── jmorecfg.h
│ │ │ │ │ ├── jpeglib.h
│ │ │ │ │ ├── libjpeg_2013.sln
│ │ │ │ │ ├── libjpeg_2013.vcxproj
│ │ │ │ │ ├── libjpeg_2013.vcxproj.filters
│ │ │ │ │ ├── libjpeg.sln
│ │ │ │ │ ├── libjpeg.vcxproj
│ │ │ │ │ ├── libjpeg.vcxproj.filters
│ │ │ │ │ └── README.txt
│ │ │ │ ├── libpng
│ │ │ │ │ ├── libpng_2013.sln
│ │ │ │ │ ├── libpng_2013.vcxproj
│ │ │ │ │ ├── libpng_2013.vcxproj.filters
│ │ │ │ │ ├── libpng.sln
│ │ │ │ │ ├── libpng.vcxproj
│ │ │ │ │ ├── libpng.vcxproj.filters
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ ├── png.h
│ │ │ │ │ └── README.txt
│ │ │ │ ├── libraries
│ │ │ │ │ ├── vs2012
│ │ │ │ │ │ ├── ARM
│ │ │ │ │ │ │ ├── D3Dcompiler_46.dll
│ │ │ │ │ │ │ ├── Debug
│ │ │ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ │ │ └── Release
│ │ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ │ └── Win32
│ │ │ │ │ │ ├── D3Dcompiler_46.dll
│ │ │ │ │ │ ├── Debug
│ │ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ │ └── Release
│ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ └── vs2013
│ │ │ │ │ ├── ARM
│ │ │ │ │ │ ├── Debug
│ │ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ │ └── Release
│ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ └── Win32
│ │ │ │ │ ├── Debug
│ │ │ │ │ │ ├── freetype.lib
│ │ │ │ │ │ ├── freetype.pri
│ │ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ │ ├── libpng.lib
│ │ │ │ │ │ ├── libpng.pri
│ │ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ │ ├── zlib.lib
│ │ │ │ │ │ └── zlib.pri
│ │ │ │ │ └── Release
│ │ │ │ │ ├── freetype.lib
│ │ │ │ │ ├── freetype.pri
│ │ │ │ │ ├── libjpeg.lib
│ │ │ │ │ ├── libjpeg.pri
│ │ │ │ │ ├── libpng.lib
│ │ │ │ │ ├── libpng.pri
│ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ ├── libtiff.pri
│ │ │ │ │ ├── zlib.lib
│ │ │ │ │ └── zlib.pri
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── libtiff_2013.sln
│ │ │ │ │ ├── libtiff_2013.vcxproj
│ │ │ │ │ ├── libtiff_2013.vcxproj.filters
│ │ │ │ │ ├── libtiff.sln
│ │ │ │ │ ├── libtiff.vcxproj
│ │ │ │ │ ├── libtiff.vcxproj.filters
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── tif_config.h
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ └── tiffvers.h
│ │ │ │ ├── libwebp
│ │ │ │ │ ├── decode.h
│ │ │ │ │ ├── encode.h
│ │ │ │ │ └── types.h
│ │ │ │ ├── third_party_libs_2012
│ │ │ │ │ └── third_party_libs_2012.sln
│ │ │ │ ├── third_party_libs_2013
│ │ │ │ │ └── third_party_libs_2013.sln
│ │ │ │ ├── third_party_versions.txt
│ │ │ │ └── zlib
│ │ │ │ ├── README.txt
│ │ │ │ ├── zconf.h
│ │ │ │ ├── zlib_2013.sln
│ │ │ │ ├── zlib_2013.vcxproj
│ │ │ │ ├── zlib_2013.vcxproj.filters
│ │ │ │ ├── zlib.h
│ │ │ │ ├── zlib.sln
│ │ │ │ ├── zlib.vcxproj
│ │ │ │ └── zlib.vcxproj.filters
│ │ │ └── wp8
│ │ │ ├── freetype
│ │ │ │ ├── include
│ │ │ │ │ ├── freetype
│ │ │ │ │ │ ├── config
│ │ │ │ │ │ │ ├── ftconfig.h
│ │ │ │ │ │ │ ├── ftheader.h
│ │ │ │ │ │ │ ├── ftmodule.h
│ │ │ │ │ │ │ ├── ftoption.h
│ │ │ │ │ │ │ └── ftstdlib.h
│ │ │ │ │ │ ├── freetype.h
│ │ │ │ │ │ ├── ftadvanc.h
│ │ │ │ │ │ ├── ftautoh.h
│ │ │ │ │ │ ├── ftbbox.h
│ │ │ │ │ │ ├── ftbdf.h
│ │ │ │ │ │ ├── ftbitmap.h
│ │ │ │ │ │ ├── ftbzip2.h
│ │ │ │ │ │ ├── ftcache.h
│ │ │ │ │ │ ├── ftcffdrv.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
│ │ │ │ │ │ ├── ftttdrv.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
│ │ │ │ │ │ │ ├── psaux.h
│ │ │ │ │ │ │ ├── pshints.h
│ │ │ │ │ │ │ ├── services
│ │ │ │ │ │ │ │ ├── svbdf.h
│ │ │ │ │ │ │ │ ├── svcid.h
│ │ │ │ │ │ │ │ ├── svgldict.h
│ │ │ │ │ │ │ │ ├── svgxval.h
│ │ │ │ │ │ │ │ ├── svkern.h
│ │ │ │ │ │ │ │ ├── svmm.h
│ │ │ │ │ │ │ │ ├── svotval.h
│ │ │ │ │ │ │ │ ├── svpfr.h
│ │ │ │ │ │ │ │ ├── svpostnm.h
│ │ │ │ │ │ │ │ ├── svprop.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
│ │ │ │ ├── proj.wp8
│ │ │ │ │ ├── freetype.sln
│ │ │ │ │ ├── freetype.vcxproj
│ │ │ │ │ └── freetype.vcxproj.filters
│ │ │ │ └── README.txt
│ │ │ ├── libcurl
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ ├── dllmain.cpp
│ │ │ │ ├── lib
│ │ │ │ │ ├── amigaos.c
│ │ │ │ │ ├── amigaos.h
│ │ │ │ │ ├── arpa_telnet.h
│ │ │ │ │ ├── asyn-ares.c
│ │ │ │ │ ├── asyn.h
│ │ │ │ │ ├── asyn-thread.c
│ │ │ │ │ ├── axtls.c
│ │ │ │ │ ├── axtls.h
│ │ │ │ │ ├── base64.c
│ │ │ │ │ ├── bundles.c
│ │ │ │ │ ├── bundles.h
│ │ │ │ │ ├── config-amigaos.h
│ │ │ │ │ ├── config-dos.h
│ │ │ │ │ ├── config-mac.h
│ │ │ │ │ ├── config-os400.h
│ │ │ │ │ ├── config-riscos.h
│ │ │ │ │ ├── config-symbian.h
│ │ │ │ │ ├── config-tpf.h
│ │ │ │ │ ├── config-vxworks.h
│ │ │ │ │ ├── config-win32ce.h
│ │ │ │ │ ├── config-win32.h
│ │ │ │ │ ├── conncache.c
│ │ │ │ │ ├── conncache.h
│ │ │ │ │ ├── connect.c
│ │ │ │ │ ├── connect.h
│ │ │ │ │ ├── content_encoding.c
│ │ │ │ │ ├── content_encoding.h
│ │ │ │ │ ├── cookie.c
│ │ │ │ │ ├── cookie.h
│ │ │ │ │ ├── curl_addrinfo.c
│ │ │ │ │ ├── curl_addrinfo.h
│ │ │ │ │ ├── curl_base64.h
│ │ │ │ │ ├── curl_config.h.in
│ │ │ │ │ ├── curl_darwinssl.c
│ │ │ │ │ ├── curl_darwinssl.h
│ │ │ │ │ ├── curl_fnmatch.c
│ │ │ │ │ ├── curl_fnmatch.h
│ │ │ │ │ ├── curl_gethostname.c
│ │ │ │ │ ├── curl_gethostname.h
│ │ │ │ │ ├── curl_gssapi.c
│ │ │ │ │ ├── curl_gssapi.h
│ │ │ │ │ ├── curl_hmac.h
│ │ │ │ │ ├── curl_ldap.h
│ │ │ │ │ ├── curl_md4.h
│ │ │ │ │ ├── curl_md5.h
│ │ │ │ │ ├── curl_memory.h
│ │ │ │ │ ├── curl_memrchr.c
│ │ │ │ │ ├── curl_memrchr.h
│ │ │ │ │ ├── curl_multibyte.c
│ │ │ │ │ ├── curl_multibyte.h
│ │ │ │ │ ├── curl_ntlm.c
│ │ │ │ │ ├── curl_ntlm_core.c
│ │ │ │ │ ├── curl_ntlm_core.h
│ │ │ │ │ ├── curl_ntlm.h
│ │ │ │ │ ├── curl_ntlm_msgs.c
│ │ │ │ │ ├── curl_ntlm_msgs.h
│ │ │ │ │ ├── curl_ntlm_wb.c
│ │ │ │ │ ├── curl_ntlm_wb.h
│ │ │ │ │ ├── curl_rtmp.c
│ │ │ │ │ ├── curl_rtmp.h
│ │ │ │ │ ├── curl_sasl.c
│ │ │ │ │ ├── curl_sasl.h
│ │ │ │ │ ├── curl_schannel.c
│ │ │ │ │ ├── curl_schannel.h
│ │ │ │ │ ├── curl_sec.h
│ │ │ │ │ ├── curl_setup.h
│ │ │ │ │ ├── curl_setup_once.h
│ │ │ │ │ ├── curl_sspi.c
│ │ │ │ │ ├── curl_sspi.h
│ │ │ │ │ ├── curl_threads.c
│ │ │ │ │ ├── curl_threads.h
│ │ │ │ │ ├── curlx.h
│ │ │ │ │ ├── cyassl.c
│ │ │ │ │ ├── cyassl.h
│ │ │ │ │ ├── dict.c
│ │ │ │ │ ├── dict.h
│ │ │ │ │ ├── dotdot.c
│ │ │ │ │ ├── dotdot.h
│ │ │ │ │ ├── easy.c
│ │ │ │ │ ├── easyif.h
│ │ │ │ │ ├── escape.c
│ │ │ │ │ ├── escape.h
│ │ │ │ │ ├── file.c
│ │ │ │ │ ├── file.h
│ │ │ │ │ ├── fileinfo.c
│ │ │ │ │ ├── fileinfo.h
│ │ │ │ │ ├── formdata.c
│ │ │ │ │ ├── formdata.h
│ │ │ │ │ ├── ftp.c
│ │ │ │ │ ├── ftp.h
│ │ │ │ │ ├── ftplistparser.c
│ │ │ │ │ ├── ftplistparser.h
│ │ │ │ │ ├── getenv.c
│ │ │ │ │ ├── getinfo.c
│ │ │ │ │ ├── getinfo.h
│ │ │ │ │ ├── gopher.c
│ │ │ │ │ ├── gopher.h
│ │ │ │ │ ├── gskit.c
│ │ │ │ │ ├── gskit.h
│ │ │ │ │ ├── gtls.c
│ │ │ │ │ ├── gtls.h
│ │ │ │ │ ├── hash.c
│ │ │ │ │ ├── hash.h
│ │ │ │ │ ├── hmac.c
│ │ │ │ │ ├── hostasyn.c
│ │ │ │ │ ├── hostcheck.c
│ │ │ │ │ ├── hostcheck.h
│ │ │ │ │ ├── hostip4.c
│ │ │ │ │ ├── hostip6.c
│ │ │ │ │ ├── hostip.c
│ │ │ │ │ ├── hostip.h
│ │ │ │ │ ├── hostsyn.c
│ │ │ │ │ ├── http2.c
│ │ │ │ │ ├── http2.h
│ │ │ │ │ ├── http.c
│ │ │ │ │ ├── http_chunks.c
│ │ │ │ │ ├── http_chunks.h
│ │ │ │ │ ├── http_digest.c
│ │ │ │ │ ├── http_digest.h
│ │ │ │ │ ├── http.h
│ │ │ │ │ ├── http_negotiate.c
│ │ │ │ │ ├── http_negotiate.h
│ │ │ │ │ ├── http_negotiate_sspi.c
│ │ │ │ │ ├── http_proxy.c
│ │ │ │ │ ├── http_proxy.h
│ │ │ │ │ ├── idn_win32.c
│ │ │ │ │ ├── if2ip.c
│ │ │ │ │ ├── if2ip.h
│ │ │ │ │ ├── imap.c
│ │ │ │ │ ├── imap.h
│ │ │ │ │ ├── inet_ntop.c
│ │ │ │ │ ├── inet_ntop.h
│ │ │ │ │ ├── inet_pton.c
│ │ │ │ │ ├── inet_pton.h
│ │ │ │ │ ├── krb5.c
│ │ │ │ │ ├── ldap.c
│ │ │ │ │ ├── llist.c
│ │ │ │ │ ├── llist.h
│ │ │ │ │ ├── md4.c
│ │ │ │ │ ├── md5.c
│ │ │ │ │ ├── memdebug.c
│ │ │ │ │ ├── memdebug.h
│ │ │ │ │ ├── mprintf.c
│ │ │ │ │ ├── multi.c
│ │ │ │ │ ├── multihandle.h
│ │ │ │ │ ├── multiif.h
│ │ │ │ │ ├── netrc.c
│ │ │ │ │ ├── netrc.h
│ │ │ │ │ ├── non-ascii.c
│ │ │ │ │ ├── non-ascii.h
│ │ │ │ │ ├── nonblock.c
│ │ │ │ │ ├── nonblock.h
│ │ │ │ │ ├── nss.c
│ │ │ │ │ ├── nssg.h
│ │ │ │ │ ├── nwlib.c
│ │ │ │ │ ├── nwos.c
│ │ │ │ │ ├── openldap.c
│ │ │ │ │ ├── parsedate.c
│ │ │ │ │ ├── parsedate.h
│ │ │ │ │ ├── pingpong.c
│ │ │ │ │ ├── pingpong.h
│ │ │ │ │ ├── pipeline.c
│ │ │ │ │ ├── pipeline.h
│ │ │ │ │ ├── polarssl.c
│ │ │ │ │ ├── polarssl.h
│ │ │ │ │ ├── polarssl_threadlock.c
│ │ │ │ │ ├── polarssl_threadlock.h
│ │ │ │ │ ├── pop3.c
│ │ │ │ │ ├── pop3.h
│ │ │ │ │ ├── progress.c
│ │ │ │ │ ├── progress.h
│ │ │ │ │ ├── qssl.c
│ │ │ │ │ ├── qssl.h
│ │ │ │ │ ├── rawstr.c
│ │ │ │ │ ├── rawstr.h
│ │ │ │ │ ├── rtsp.c
│ │ │ │ │ ├── rtsp.h
│ │ │ │ │ ├── security.c
│ │ │ │ │ ├── select.c
│ │ │ │ │ ├── select.h
│ │ │ │ │ ├── sendf.c
│ │ │ │ │ ├── sendf.h
│ │ │ │ │ ├── setup-os400.h
│ │ │ │ │ ├── setup-vms.h
│ │ │ │ │ ├── share.c
│ │ │ │ │ ├── share.h
│ │ │ │ │ ├── sigpipe.h
│ │ │ │ │ ├── slist.c
│ │ │ │ │ ├── slist.h
│ │ │ │ │ ├── smtp.c
│ │ │ │ │ ├── smtp.h
│ │ │ │ │ ├── sockaddr.h
│ │ │ │ │ ├── socks.c
│ │ │ │ │ ├── socks_gssapi.c
│ │ │ │ │ ├── socks.h
│ │ │ │ │ ├── socks_sspi.c
│ │ │ │ │ ├── speedcheck.c
│ │ │ │ │ ├── speedcheck.h
│ │ │ │ │ ├── splay.c
│ │ │ │ │ ├── splay.h
│ │ │ │ │ ├── ssh.c
│ │ │ │ │ ├── ssh.h
│ │ │ │ │ ├── sslgen.c
│ │ │ │ │ ├── sslgen.h
│ │ │ │ │ ├── ssluse.c
│ │ │ │ │ ├── ssluse.h
│ │ │ │ │ ├── strdup.c
│ │ │ │ │ ├── strdup.h
│ │ │ │ │ ├── strequal.c
│ │ │ │ │ ├── strequal.h
│ │ │ │ │ ├── strerror.c
│ │ │ │ │ ├── strerror.h
│ │ │ │ │ ├── strtok.c
│ │ │ │ │ ├── strtok.h
│ │ │ │ │ ├── strtoofft.c
│ │ │ │ │ ├── strtoofft.h
│ │ │ │ │ ├── telnet.c
│ │ │ │ │ ├── telnet.h
│ │ │ │ │ ├── tftp.c
│ │ │ │ │ ├── tftp.h
│ │ │ │ │ ├── timeval.c
│ │ │ │ │ ├── timeval.h
│ │ │ │ │ ├── transfer.c
│ │ │ │ │ ├── transfer.h
│ │ │ │ │ ├── url.c
│ │ │ │ │ ├── urldata.h
│ │ │ │ │ ├── url.h
│ │ │ │ │ ├── version.c
│ │ │ │ │ ├── warnless.c
│ │ │ │ │ ├── warnless.h
│ │ │ │ │ ├── wildcard.c
│ │ │ │ │ ├── wildcard.h
│ │ │ │ │ ├── x509asn1.c
│ │ │ │ │ └── x509asn1.h
│ │ │ │ ├── libcurl.cpp
│ │ │ │ ├── libcurl.h
│ │ │ │ ├── libcurl.vcxproj
│ │ │ │ └── libcurl.vcxproj.filters
│ │ │ ├── libjpeg
│ │ │ │ ├── jconfig.h
│ │ │ │ ├── jconfig_linux.h
│ │ │ │ ├── jconfig_win.h
│ │ │ │ ├── jerror.h
│ │ │ │ ├── jmorecfg.h
│ │ │ │ ├── jpeglib.h
│ │ │ │ ├── libjpeg.sln
│ │ │ │ ├── libjpeg.vcxproj
│ │ │ │ ├── libjpeg.vcxproj.filters
│ │ │ │ └── README.txt
│ │ │ ├── libpng
│ │ │ │ ├── libpng.sln
│ │ │ │ ├── libpng.vcxproj
│ │ │ │ ├── libpng.vcxproj.filters
│ │ │ │ ├── pngconf.h
│ │ │ │ ├── png.h
│ │ │ │ └── README.txt
│ │ │ ├── libraries
│ │ │ │ ├── arm
│ │ │ │ │ ├── freetype.lib
│ │ │ │ │ ├── LibJPEG.lib
│ │ │ │ │ ├── LibPNG.lib
│ │ │ │ │ ├── libtiff.lib
│ │ │ │ │ └── zlib.lib
│ │ │ │ └── x86
│ │ │ │ ├── freetype.lib
│ │ │ │ ├── LibJPEG.lib
│ │ │ │ ├── LibPNG.lib
│ │ │ │ ├── libtiff.lib
│ │ │ │ └── zlib.lib
│ │ │ ├── libtiff
│ │ │ │ ├── libtiff.sln
│ │ │ │ ├── libtiff.vcxproj
│ │ │ │ ├── libtiff.vcxproj.filters
│ │ │ │ ├── README.txt
│ │ │ │ ├── tif_config.h
│ │ │ │ ├── tiffconf.h
│ │ │ │ ├── tiff.h
│ │ │ │ ├── tiffio.h
│ │ │ │ └── tiffvers.h
│ │ │ ├── libwebp
│ │ │ │ ├── decode.h
│ │ │ │ ├── encode.h
│ │ │ │ └── types.h
│ │ │ ├── third_party_libs_2012
│ │ │ │ └── third_party_libs_2012.sln
│ │ │ ├── third_party_libs_2013
│ │ │ │ └── third_party_libs_2013.sln
│ │ │ ├── third_party_versions.txt
│ │ │ └── zlib
│ │ │ ├── README.txt
│ │ │ ├── zconf.h
│ │ │ ├── zlib.h
│ │ │ ├── zlib.sln
│ │ │ ├── zlib.vcxproj
│ │ │ └── zlib.vcxproj.filters
│ │ ├── tizen
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsTizen.cpp
│ │ │ ├── CCFileUtilsTizen.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCOspApplication.cpp
│ │ │ ├── CCOspApplication.h
│ │ │ ├── CCOspForm.cpp
│ │ │ ├── CCOspForm.h
│ │ │ ├── CCPlatformDefine.h
│ │ │ └── CCStdC.h
│ │ ├── win32
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsWin32.cpp
│ │ │ ├── CCFileUtilsWin32.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.cpp
│ │ │ ├── CCStdC.h
│ │ │ └── compat
│ │ │ └── stdint.h
│ │ ├── winrt
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCDevice.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtilsWinRT.cpp
│ │ │ ├── CCFileUtilsWinRT.h
│ │ │ ├── CCFreeTypeFont.cpp
│ │ │ ├── CCFreeTypeFont.h
│ │ │ ├── CCGL_Angle.h
│ │ │ ├── CCGL_gl2dx.h
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCPrecompiledShaders.cpp
│ │ │ ├── CCPrecompiledShaders.h
│ │ │ ├── CCPThreadWinRT.cpp
│ │ │ ├── CCPThreadWinRT.h
│ │ │ ├── CCStdC.cpp
│ │ │ ├── CCStdC.h
│ │ │ ├── CCWinRTUtils.cpp
│ │ │ ├── CCWinRTUtils.h
│ │ │ ├── compat
│ │ │ │ └── stdint.h
│ │ │ ├── DirectXBase.cpp
│ │ │ ├── DirectXBase.h
│ │ │ ├── DirectXHelper.h
│ │ │ ├── sha1.cpp
│ │ │ └── sha1.h
│ │ ├── wp8
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── Direct3DBase.cpp
│ │ │ ├── Direct3DBase.h
│ │ │ ├── DirectXBase.cpp
│ │ │ ├── DirectXBase.h
│ │ │ ├── ModalLayer.cpp
│ │ │ ├── ModalLayer.h
│ │ │ ├── WP8Keyboard.cpp
│ │ │ └── WP8Keyboard.h
│ │ └── wp8-xaml
│ │ ├── Cocos2dRenderer.cpp
│ │ ├── Cocos2dRenderer.h
│ │ ├── Direct3DContentProviderBase.cpp
│ │ ├── Direct3DContentProviderBase.h
│ │ ├── Direct3DContentProvider.cpp
│ │ ├── Direct3DContentProvider.h
│ │ ├── Direct3DInterop.cpp
│ │ ├── Direct3DInterop.h
│ │ ├── DirectXBase.cpp
│ │ ├── DirectXBase.h
│ │ ├── DirectXHelper.h
│ │ ├── InputEvent.cpp
│ │ ├── InputEvent.h
│ │ └── InputEventTypes.h
│ ├── proj.blackberry
│ ├── proj.emscripten
│ │ ├── cocos2dx.mk
│ │ └── Makefile
│ ├── proj.ios
│ │ ├── cocos2dx-Prefix.pch
│ │ └── cocos2dx.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.linux
│ │ ├── cocos2dx.mk
│ │ └── Makefile
│ ├── proj.mac
│ │ ├── cocos2dx-Prefix.pch
│ │ └── cocos2dx.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.marmalade
│ │ ├── cocos2dx.mkf
│ │ └── cocos2dx_public.defines.txt
│ ├── proj.nacl
│ │ ├── cocos2dx.mk
│ │ └── Makefile
│ ├── proj.tizen
│ │ └── src
│ │ └── placeholder.txt
│ ├── proj.win32
│ │ ├── cocos2d.vcxproj
│ │ ├── cocos2d.vcxproj.filters
│ │ ├── cocos2d.vcxproj.user
│ │ └── Debug.win32
│ │ ├── aabb.obj
│ │ ├── base64.obj
│ │ ├── CCAccelerometer.obj
│ │ ├── CCActionCamera.obj
│ │ ├── CCActionCatmullRom.obj
│ │ ├── CCActionEase.obj
│ │ ├── CCActionGrid3D.obj
│ │ ├── CCActionGrid.obj
│ │ ├── CCActionInstant.obj
│ │ ├── CCActionInterval.obj
│ │ ├── CCActionManager.obj
│ │ ├── CCAction.obj
│ │ ├── CCActionPageTurn3D.obj
│ │ ├── CCActionProgressTimer.obj
│ │ ├── CCActionTiledGrid.obj
│ │ ├── CCActionTween.obj
│ │ ├── CCAffineTransform.obj
│ │ ├── CCAnimationCache.obj
│ │ ├── CCAnimation.obj
│ │ ├── CCApplication.obj
│ │ ├── CCArray.obj
│ │ ├── CCAtlasNode.obj
│ │ ├── CCAutoreleasePool.obj
│ │ ├── CCCamera.obj
│ │ ├── ccCArray.obj
│ │ ├── CCClippingNode.obj
│ │ ├── CCCommon.obj
│ │ ├── CCComponentContainer.obj
│ │ ├── CCComponent.obj
│ │ ├── CCConfiguration.obj
│ │ ├── CCDataVisitor.obj
│ │ ├── CCDevice.obj
│ │ ├── CCDictionary.obj
│ │ ├── CCDirector.obj
│ │ ├── CCDrawingPrimitives.obj
│ │ ├── CCDrawNode.obj
│ │ ├── CCEGLView.obj
│ │ ├── CCEGLViewProtocol.obj
│ │ ├── CCFileUtils.obj
│ │ ├── CCFileUtilsWin32.obj
│ │ ├── ccFPSImages.obj
│ │ ├── CCGeometry.obj
│ │ ├── CCGLProgram.obj
│ │ ├── ccGLStateCache.obj
│ │ ├── CCGrabber.obj
│ │ ├── CCGrid.obj
│ │ ├── CCImageCommonWebp.obj
│ │ ├── CCImage.obj
│ │ ├── CCIMEDispatcher.obj
│ │ ├── CCKeypadDelegate.obj
│ │ ├── CCKeypadDispatcher.obj
│ │ ├── CCLabelAtlas.obj
│ │ ├── CCLabelBMFont.obj
│ │ ├── CCLabelTTF.obj
│ │ ├── CCLayer.obj
│ │ ├── CCMenuItem.obj
│ │ ├── CCMenu.obj
│ │ ├── CCMotionStreak.obj
│ │ ├── CCNode.obj
│ │ ├── CCNotificationCenter.obj
│ │ ├── CCNS.obj
│ │ ├── CCObject.obj
│ │ ├── CCParallaxNode.obj
│ │ ├── CCParticleBatchNode.obj
│ │ ├── CCParticleExamples.obj
│ │ ├── CCParticleSystem.obj
│ │ ├── CCParticleSystemQuad.obj
│ │ ├── CCPointExtension.obj
│ │ ├── CCProfiling.obj
│ │ ├── CCProgressTimer.obj
│ │ ├── CCRenderTexture.obj
│ │ ├── CCSAXParser.obj
│ │ ├── CCScene.obj
│ │ ├── CCScheduler.obj
│ │ ├── CCScriptSupport.obj
│ │ ├── CCSet.obj
│ │ ├── CCShaderCache.obj
│ │ ├── ccShaders.obj
│ │ ├── CCSpriteBatchNode.obj
│ │ ├── CCSpriteFrameCache.obj
│ │ ├── CCSpriteFrame.obj
│ │ ├── CCSprite.obj
│ │ ├── CCStdC.obj
│ │ ├── CCString.obj
│ │ ├── CCTextFieldTTF.obj
│ │ ├── CCTexture2D.obj
│ │ ├── CCTextureAtlas.obj
│ │ ├── CCTextureCache.obj
│ │ ├── CCTextureETC.obj
│ │ ├── CCTexturePVR.obj
│ │ ├── CCThread.obj
│ │ ├── CCTileMapAtlas.obj
│ │ ├── CCTMXLayer.obj
│ │ ├── CCTMXObjectGroup.obj
│ │ ├── CCTMXTiledMap.obj
│ │ ├── CCTMXXMLParser.obj
│ │ ├── CCTouchDispatcher.obj
│ │ ├── CCTouchHandler.obj
│ │ ├── CCTouch.obj
│ │ ├── CCTransition.obj
│ │ ├── CCTransitionPageTurn.obj
│ │ ├── CCTransitionProgress.obj
│ │ ├── CCUserDefault.obj
│ │ ├── ccUTF8.obj
│ │ ├── ccUtils.obj
│ │ ├── CCVertex.obj
│ │ ├── CCZone.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── cocos2d.log
│ │ ├── cocos2d.obj
│ │ ├── ioapi.obj
│ │ ├── libcocos2d.lastbuildstate
│ │ ├── libcocos2d.tlog
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── libcocos2d.lastbuildstate
│ │ │ ├── libcocos2d.write.1u.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ └── link.write.1.tlog
│ │ ├── libcocos2d.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link-rc.read.1.tlog
│ │ ├── link-rc.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── mat3.obj
│ │ ├── mat4.obj
│ │ ├── mat4stack.obj
│ │ ├── matrix.obj
│ │ ├── neon_matrix_impl.obj
│ │ ├── plane.obj
│ │ ├── platform.obj
│ │ ├── quaternion.obj
│ │ ├── ray2.obj
│ │ ├── TGAlib.obj
│ │ ├── tinyxml2.obj
│ │ ├── TransformUtils.obj
│ │ ├── unzip.obj
│ │ ├── utility.obj
│ │ ├── vc110.idb
│ │ ├── vc110.pdb
│ │ ├── vc120.idb
│ │ ├── vc120.pdb
│ │ ├── vec2.obj
│ │ ├── vec3.obj
│ │ ├── vec4.obj
│ │ └── ZipUtils.obj
│ ├── proj.winrt
│ │ ├── cocos2d_2013.sln
│ │ ├── cocos2d_2013.vcxproj
│ │ ├── cocos2d_2013.vcxproj.filters
│ │ ├── cocos2d.sln
│ │ ├── cocos2d.vcxproj
│ │ ├── cocos2d.vcxproj.filters
│ │ ├── Generated Files
│ │ └── Win32
│ │ └── Debug
│ │ └── libcocos2d.tlog
│ ├── proj.wp8
│ │ ├── libcocos2d.sln
│ │ ├── libcocos2d.vcxproj
│ │ └── libcocos2d.vcxproj.filters
│ ├── script_support
│ │ ├── CCScriptSupport.cpp
│ │ └── CCScriptSupport.h
│ ├── shaders
│ │ ├── CCGLProgram.cpp
│ │ ├── CCGLProgram.h
│ │ ├── ccGLStateCache.cpp
│ │ ├── ccGLStateCache.h
│ │ ├── CCShaderCache.cpp
│ │ ├── CCShaderCache.h
│ │ ├── ccShaderEx_SwitchMask_frag.h
│ │ ├── ccShader_PositionColor_frag.h
│ │ ├── ccShader_PositionColorLengthTexture_frag.h
│ │ ├── ccShader_PositionColorLengthTexture_vert.h
│ │ ├── ccShader_PositionColor_vert.h
│ │ ├── ccShader_PositionTextureA8Color_frag.h
│ │ ├── ccShader_PositionTextureA8Color_vert.h
│ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h
│ │ ├── ccShader_PositionTextureColor_frag.h
│ │ ├── ccShader_PositionTextureColor_vert.h
│ │ ├── ccShader_PositionTexture_frag.h
│ │ ├── ccShader_PositionTexture_uColor_frag.h
│ │ ├── ccShader_PositionTexture_uColor_vert.h
│ │ ├── ccShader_PositionTexture_vert.h
│ │ ├── ccShader_Position_uColor_frag.h
│ │ ├── ccShader_Position_uColor_vert.h
│ │ ├── ccShaders.cpp
│ │ ├── ccShaders.h
│ │ └── precompiled
│ │ ├── winrt
│ │ │ └── precompiledshaders.h
│ │ └── wp8
│ │ └── precompiledshaders.h
│ ├── sprite_nodes
│ │ ├── CCAnimationCache.cpp
│ │ ├── CCAnimationCache.h
│ │ ├── CCAnimation.cpp
│ │ ├── CCAnimation.h
│ │ ├── CCSpriteBatchNode.cpp
│ │ ├── CCSpriteBatchNode.h
│ │ ├── CCSprite.cpp
│ │ ├── CCSpriteFrameCache.cpp
│ │ ├── CCSpriteFrameCache.h
│ │ ├── CCSpriteFrame.cpp
│ │ ├── CCSpriteFrame.h
│ │ └── CCSprite.h
│ ├── support
│ │ ├── base64.cpp
│ │ ├── base64.h
│ │ ├── CCNotificationCenter.cpp
│ │ ├── CCNotificationCenter.h
│ │ ├── CCPointExtension.cpp
│ │ ├── CCPointExtension.h
│ │ ├── CCProfiling.cpp
│ │ ├── CCProfiling.h
│ │ ├── ccUTF8.cpp
│ │ ├── ccUTF8.h
│ │ ├── ccUtils.cpp
│ │ ├── ccUtils.h
│ │ ├── CCVertex.cpp
│ │ ├── CCVertex.h
│ │ ├── component
│ │ │ ├── CCComponentContainer.cpp
│ │ │ ├── CCComponentContainer.h
│ │ │ ├── CCComponent.cpp
│ │ │ └── CCComponent.h
│ │ ├── data_support
│ │ │ ├── ccCArray.cpp
│ │ │ ├── ccCArray.h
│ │ │ ├── uthash.h
│ │ │ └── utlist.h
│ │ ├── image_support
│ │ │ ├── TGAlib.cpp
│ │ │ └── TGAlib.h
│ │ ├── tinyxml2
│ │ │ ├── tinyxml2.cpp
│ │ │ └── tinyxml2.h
│ │ ├── TransformUtils.cpp
│ │ ├── TransformUtils.h
│ │ ├── user_default
│ │ │ ├── CCUserDefaultAndroid.cpp
│ │ │ ├── CCUserDefault.cpp
│ │ │ ├── CCUserDefault.h
│ │ │ └── CCUserDefault.mm
│ │ └── zip_support
│ │ ├── ioapi.cpp
│ │ ├── ioapi.h
│ │ ├── unzip.cpp
│ │ ├── unzip.h
│ │ ├── ZipUtils.cpp
│ │ └── ZipUtils.h
│ ├── text_input_node
│ │ ├── CCIMEDelegate.h
│ │ ├── CCIMEDispatcher.cpp
│ │ ├── CCIMEDispatcher.h
│ │ ├── CCTextFieldTTF.cpp
│ │ └── CCTextFieldTTF.h
│ ├── textures
│ │ ├── CCTexture2D.cpp
│ │ ├── CCTexture2D.h
│ │ ├── CCTextureAtlas.cpp
│ │ ├── CCTextureAtlas.h
│ │ ├── CCTextureCache.cpp
│ │ ├── CCTextureCache.h
│ │ ├── CCTextureETC.cpp
│ │ ├── CCTextureETC.h
│ │ ├── CCTexturePVR.cpp
│ │ └── CCTexturePVR.h
│ ├── tilemap_parallax_nodes
│ │ ├── CCParallaxNode.cpp
│ │ ├── CCParallaxNode.h
│ │ ├── CCTileMapAtlas.cpp
│ │ ├── CCTileMapAtlas.h
│ │ ├── CCTMXLayer.cpp
│ │ ├── CCTMXLayer.h
│ │ ├── CCTMXObjectGroup.cpp
│ │ ├── CCTMXObjectGroup.h
│ │ ├── CCTMXTiledMap.cpp
│ │ ├── CCTMXTiledMap.h
│ │ ├── CCTMXXMLParser.cpp
│ │ └── CCTMXXMLParser.h
│ └── touch_dispatcher
│ ├── CCTouch.cpp
│ ├── CCTouchDelegateProtocol.h
│ ├── CCTouchDispatcher.cpp
│ ├── CCTouchDispatcher.h
│ ├── CCTouch.h
│ ├── CCTouchHandler.cpp
│ └── CCTouchHandler.h
├── CocosDenshion
│ ├── android
│ │ ├── Android.mk
│ │ ├── jni
│ │ │ ├── SimpleAudioEngineJni.cpp
│ │ │ └── SimpleAudioEngineJni.h
│ │ ├── opensl
│ │ │ ├── android
│ │ │ │ ├── asset_manager.h
│ │ │ │ └── asset_manager_jni.h
│ │ │ ├── OpenSLEngine.cpp
│ │ │ ├── OpenSLEngine.h
│ │ │ ├── SimpleAudioEngineOpenSL.cpp
│ │ │ ├── SimpleAudioEngineOpenSL.h
│ │ │ └── SLES
│ │ │ ├── OpenSLES_AndroidConfiguration.h
│ │ │ ├── OpenSLES_Android.h
│ │ │ ├── OpenSLES.h
│ │ │ └── OpenSLES_Platform.h
│ │ └── SimpleAudioEngine.cpp
│ ├── blackberry
│ │ └── SimpleAudioEngine.cpp
│ ├── emscripten
│ │ └── SimpleAudioEngine.cpp
│ ├── include
│ │ ├── Export.h
│ │ └── SimpleAudioEngine.h
│ ├── ios
│ │ ├── CDAudioManager.h
│ │ ├── CDAudioManager.m
│ │ ├── CDConfig.h
│ │ ├── CDOpenALSupport.h
│ │ ├── CDOpenALSupport.m
│ │ ├── CocosDenshion.h
│ │ ├── CocosDenshion.m
│ │ ├── SimpleAudioEngine.mm
│ │ ├── SimpleAudioEngine_objc.h
│ │ └── SimpleAudioEngine_objc.m
│ ├── linux
│ │ ├── AudioPlayer.h
│ │ ├── FmodAudioPlayer.cpp
│ │ ├── FmodAudioPlayer.h
│ │ ├── SimpleAudioEngineFMOD.cpp
│ │ └── SimpleAudioEngineOpenAL.cpp
│ ├── mac
│ │ ├── CDAudioManager.h
│ │ ├── CDAudioManager.m
│ │ ├── CDConfig.h
│ │ ├── CDOpenALSupport.h
│ │ ├── CDOpenALSupport.m
│ │ ├── CDXMacOSXSupport.h
│ │ ├── CDXMacOSXSupport.mm
│ │ ├── CocosDenshion.h
│ │ ├── CocosDenshion.m
│ │ ├── SimpleAudioEngine.mm
│ │ ├── SimpleAudioEngine_objc.h
│ │ └── SimpleAudioEngine_objc.m
│ ├── marmalade
│ │ └── SimpleAudioEngine.cpp
│ ├── proj.blackberry
│ ├── proj.emscripten
│ │ └── Makefile
│ ├── proj.ios
│ │ └── CocosDenshion.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.linux
│ │ └── Makefile
│ ├── proj.marmalade
│ │ └── CocosDenshion.mkf
│ ├── proj.nacl
│ │ └── Makefile
│ ├── proj.tizen
│ │ └── src
│ │ └── placeholder.txt
│ ├── proj.win32
│ │ ├── CocosDenshion.vcxproj
│ │ ├── CocosDenshion.vcxproj.filters
│ │ ├── CocosDenshion.vcxproj.user
│ │ └── Debug.win32
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── CocosDenshion.log
│ │ ├── libCocosDenshion.lastbuildstate
│ │ ├── libCocosDenshion.tlog
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── libCocosDenshion.lastbuildstate
│ │ │ ├── libCocosDenshion.write.1u.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ └── link.write.1.tlog
│ │ ├── libCocosDenshion.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link-rc.read.1.tlog
│ │ ├── link-rc.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── MciPlayer.obj
│ │ ├── SimpleAudioEngine.obj
│ │ ├── vc110.idb
│ │ ├── vc110.pdb
│ │ ├── vc120.idb
│ │ └── vc120.pdb
│ ├── proj.winrt
│ │ ├── CocosDenshion_2013.sln
│ │ ├── CocosDenshion_2013.vcxproj
│ │ ├── CocosDenshion_2013.vcxproj.filters
│ │ ├── CocosDenshion.sln
│ │ ├── CocosDenshion.vcxproj
│ │ ├── CocosDenshion.vcxproj.filters
│ │ ├── Generated Files
│ │ ├── pch.cpp
│ │ ├── pch.h
│ │ └── Win32
│ │ └── Debug
│ │ └── CocosDenshion.tlog
│ ├── proj.wp8
│ │ ├── CocosDenshion.sln
│ │ ├── CocosDenshion.vcxproj
│ │ ├── CocosDenshion.vcxproj.filters
│ │ ├── pch.cpp
│ │ └── pch.h
│ ├── third_party
│ │ ├── blackberry
│ │ │ ├── include
│ │ │ │ ├── ogg
│ │ │ │ │ ├── ogg.h
│ │ │ │ │ └── os_types.h
│ │ │ │ └── vorbis
│ │ │ │ ├── codec.h
│ │ │ │ ├── vorbisenc.h
│ │ │ │ └── vorbisfile.h
│ │ │ └── libraries
│ │ │ ├── armle-v7
│ │ │ │ └── libvorbis.a
│ │ │ └── x86
│ │ │ └── libvorbis.a
│ │ └── fmod
│ │ ├── api
│ │ │ ├── inc
│ │ │ │ ├── fmod_codec.h
│ │ │ │ ├── fmod_dsp.h
│ │ │ │ ├── fmod_errors.h
│ │ │ │ ├── fmod.h
│ │ │ │ ├── fmod.hpp
│ │ │ │ ├── fmodlinux.h
│ │ │ │ ├── fmod_memoryinfo.h
│ │ │ │ └── fmod_output.h
│ │ │ └── lib
│ │ │ ├── libfmodex-4.36.01.so
│ │ │ ├── libfmodexL-4.36.01.so
│ │ │ ├── libfmodexL.so
│ │ │ └── libfmodex.so
│ │ ├── lib64
│ │ │ ├── api
│ │ │ │ ├── inc
│ │ │ │ │ ├── fmod_codec.h
│ │ │ │ │ ├── fmod_dsp.h
│ │ │ │ │ ├── fmod_errors.h
│ │ │ │ │ ├── fmod.h
│ │ │ │ │ ├── fmod.hpp
│ │ │ │ │ ├── fmodlinux.h
│ │ │ │ │ ├── fmod_memoryinfo.h
│ │ │ │ │ └── fmod_output.h
│ │ │ │ └── lib
│ │ │ │ ├── libfmodex64-4.38.00.so
│ │ │ │ ├── libfmodex64.so
│ │ │ │ ├── libfmodexL64-4.38.00.so
│ │ │ │ └── libfmodexL64.so
│ │ │ └── Makefile
│ │ └── Makefile
│ ├── tizen
│ │ ├── OspPlayer.cpp
│ │ ├── OspPlayer.h
│ │ └── SimpleAudioEngine.cpp
│ ├── win32
│ │ ├── MciPlayer.cpp
│ │ ├── MciPlayer.h
│ │ └── SimpleAudioEngine.cpp
│ ├── winrt
│ │ ├── Audio.cpp
│ │ ├── Audio.h
│ │ ├── MediaStreamer.cpp
│ │ ├── MediaStreamer.h
│ │ └── SimpleAudioEngine.cpp
│ └── wp8
│ ├── Audio.cpp
│ ├── Audio.h
│ ├── MediaStreamer.cpp
│ ├── MediaStreamer.h
│ └── SimpleAudioEngine.cpp
├── document
│ ├── cocos2dx_portrait.png
│ ├── doxygen.config
│ ├── Groups.h
│ └── MainPage.h
├── Emscripten.TODO
├── extensions
│ ├── Android.mk
│ ├── AssetsManager
│ │ ├── AssetsManager.cpp
│ │ └── AssetsManager.h
│ ├── CCBReader
│ │ ├── CCBAnimationManager.cpp
│ │ ├── CCBAnimationManager.h
│ │ ├── CCBFileLoader.cpp
│ │ ├── CCBFileLoader.h
│ │ ├── CCBKeyframe.cpp
│ │ ├── CCBKeyframe.h
│ │ ├── CCBMemberVariableAssigner.h
│ │ ├── CCBReader.cpp
│ │ ├── CCBReader.h
│ │ ├── CCBSelectorResolver.h
│ │ ├── CCBSequence.cpp
│ │ ├── CCBSequence.h
│ │ ├── CCBSequenceProperty.cpp
│ │ ├── CCBSequenceProperty.h
│ │ ├── CCBValue.cpp
│ │ ├── CCBValue.h
│ │ ├── CCControlButtonLoader.cpp
│ │ ├── CCControlButtonLoader.h
│ │ ├── CCControlLoader.cpp
│ │ ├── CCControlLoader.h
│ │ ├── CCData.cpp
│ │ ├── CCData.h
│ │ ├── CCLabelBMFontLoader.cpp
│ │ ├── CCLabelBMFontLoader.h
│ │ ├── CCLabelTTFLoader.cpp
│ │ ├── CCLabelTTFLoader.h
│ │ ├── CCLayerColorLoader.cpp
│ │ ├── CCLayerColorLoader.h
│ │ ├── CCLayerGradientLoader.cpp
│ │ ├── CCLayerGradientLoader.h
│ │ ├── CCLayerLoader.cpp
│ │ ├── CCLayerLoader.h
│ │ ├── CCMenuItemImageLoader.cpp
│ │ ├── CCMenuItemImageLoader.h
│ │ ├── CCMenuItemLoader.cpp
│ │ ├── CCMenuItemLoader.h
│ │ ├── CCMenuLoader.h
│ │ ├── CCNode+CCBRelativePositioning.cpp
│ │ ├── CCNode+CCBRelativePositioning.h
│ │ ├── CCNodeLoader.cpp
│ │ ├── CCNodeLoader.h
│ │ ├── CCNodeLoaderLibrary.cpp
│ │ ├── CCNodeLoaderLibrary.h
│ │ ├── CCNodeLoaderListener.h
│ │ ├── CCParticleSystemQuadLoader.cpp
│ │ ├── CCParticleSystemQuadLoader.h
│ │ ├── CCScale9SpriteLoader.cpp
│ │ ├── CCScale9SpriteLoader.h
│ │ ├── CCScrollViewLoader.cpp
│ │ ├── CCScrollViewLoader.h
│ │ ├── CCSpriteLoader.cpp
│ │ └── CCSpriteLoader.h
│ ├── cocos-ext.h
│ ├── CocoStudio
│ │ ├── Action
│ │ │ ├── CCActionEaseEx.cpp
│ │ │ ├── CCActionEaseEx.h
│ │ │ ├── CCActionFrame.cpp
│ │ │ ├── CCActionFrameEasing.cpp
│ │ │ ├── CCActionFrameEasing.h
│ │ │ ├── CCActionFrame.h
│ │ │ ├── CCActionManager.cpp
│ │ │ ├── CCActionManager.h
│ │ │ ├── CCActionNode.cpp
│ │ │ ├── CCActionNode.h
│ │ │ ├── CCActionObject.cpp
│ │ │ └── CCActionObject.h
│ │ ├── Armature
│ │ │ ├── animation
│ │ │ │ ├── CCArmatureAnimation.cpp
│ │ │ │ ├── CCArmatureAnimation.h
│ │ │ │ ├── CCProcessBase.cpp
│ │ │ │ ├── CCProcessBase.h
│ │ │ │ ├── CCTween.cpp
│ │ │ │ └── CCTween.h
│ │ │ ├── CCArmature.cpp
│ │ │ ├── CCArmature.h
│ │ │ ├── CCBone.cpp
│ │ │ ├── CCBone.h
│ │ │ ├── datas
│ │ │ │ ├── CCDatas.cpp
│ │ │ │ └── CCDatas.h
│ │ │ ├── display
│ │ │ │ ├── CCBatchNode.cpp
│ │ │ │ ├── CCBatchNode.h
│ │ │ │ ├── CCDecorativeDisplay.cpp
│ │ │ │ ├── CCDecorativeDisplay.h
│ │ │ │ ├── CCDisplayFactory.cpp
│ │ │ │ ├── CCDisplayFactory.h
│ │ │ │ ├── CCDisplayManager.cpp
│ │ │ │ ├── CCDisplayManager.h
│ │ │ │ ├── CCSkin.cpp
│ │ │ │ └── CCSkin.h
│ │ │ ├── external_tool
│ │ │ │ └── sigslot.h
│ │ │ ├── physics
│ │ │ │ ├── CCColliderDetector.cpp
│ │ │ │ └── CCColliderDetector.h
│ │ │ └── utils
│ │ │ ├── CCArmatureDataManager.cpp
│ │ │ ├── CCArmatureDataManager.h
│ │ │ ├── CCArmatureDefine.cpp
│ │ │ ├── CCArmatureDefine.h
│ │ │ ├── CCDataReaderHelper.cpp
│ │ │ ├── CCDataReaderHelper.h
│ │ │ ├── CCSpriteFrameCacheHelper.cpp
│ │ │ ├── CCSpriteFrameCacheHelper.h
│ │ │ ├── CCTransformHelp.cpp
│ │ │ ├── CCTransformHelp.h
│ │ │ ├── CCTweenFunction.cpp
│ │ │ ├── CCTweenFunction.h
│ │ │ ├── CCUtilMath.cpp
│ │ │ └── CCUtilMath.h
│ │ ├── Components
│ │ │ ├── CCComAttribute.cpp
│ │ │ ├── CCComAttribute.h
│ │ │ ├── CCComAudio.cpp
│ │ │ ├── CCComAudio.h
│ │ │ ├── CCComBase.h
│ │ │ ├── CCComController.cpp
│ │ │ ├── CCComController.h
│ │ │ ├── CCComRender.cpp
│ │ │ ├── CCComRender.h
│ │ │ ├── CCInputDelegate.cpp
│ │ │ └── CCInputDelegate.h
│ │ ├── GUI
│ │ │ ├── BaseClasses
│ │ │ │ ├── UIWidget.cpp
│ │ │ │ └── UIWidget.h
│ │ │ ├── Layouts
│ │ │ │ ├── UILayout.cpp
│ │ │ │ ├── UILayoutDefine.cpp
│ │ │ │ ├── UILayoutDefine.h
│ │ │ │ ├── UILayout.h
│ │ │ │ ├── UILayoutParameter.cpp
│ │ │ │ └── UILayoutParameter.h
│ │ │ ├── System
│ │ │ │ ├── CocosGUI.cpp
│ │ │ │ ├── CocosGUI.h
│ │ │ │ ├── UIHelper.cpp
│ │ │ │ ├── UIHelper.h
│ │ │ │ ├── UITouchGroup.cpp
│ │ │ │ └── UITouchGroup.h
│ │ │ └── UIWidgets
│ │ │ ├── Compatible
│ │ │ │ └── CompatibleClasses.h
│ │ │ ├── ScrollWidget
│ │ │ │ ├── UIListView.cpp
│ │ │ │ ├── UIListView.h
│ │ │ │ ├── UIPageView.cpp
│ │ │ │ ├── UIPageView.h
│ │ │ │ ├── UIScrollInterface.h
│ │ │ │ ├── UIScrollView.cpp
│ │ │ │ └── UIScrollView.h
│ │ │ ├── UIButton.cpp
│ │ │ ├── UIButton.h
│ │ │ ├── UICheckBox.cpp
│ │ │ ├── UICheckBox.h
│ │ │ ├── UIImageView.cpp
│ │ │ ├── UIImageView.h
│ │ │ ├── UILabelAtlas.cpp
│ │ │ ├── UILabelAtlas.h
│ │ │ ├── UILabelBMFont.cpp
│ │ │ ├── UILabelBMFont.h
│ │ │ ├── UILabel.cpp
│ │ │ ├── UILabel.h
│ │ │ ├── UILoadingBar.cpp
│ │ │ ├── UILoadingBar.h
│ │ │ ├── UISlider.cpp
│ │ │ ├── UISlider.h
│ │ │ ├── UITextField.cpp
│ │ │ └── UITextField.h
│ │ ├── Json
│ │ │ ├── DictionaryHelper.cpp
│ │ │ ├── DictionaryHelper.h
│ │ │ └── rapidjson
│ │ │ ├── document.h
│ │ │ ├── filestream.h
│ │ │ ├── internal
│ │ │ │ ├── pow10.h
│ │ │ │ ├── stack.h
│ │ │ │ └── strfunc.h
│ │ │ ├── prettywriter.h
│ │ │ ├── rapidjson.h
│ │ │ ├── reader.h
│ │ │ ├── stringbuffer.h
│ │ │ └── writer.h
│ │ ├── Reader
│ │ │ ├── GUIReader.cpp
│ │ │ ├── GUIReader.h
│ │ │ ├── SceneReader.cpp
│ │ │ └── SceneReader.h
│ │ └── Trigger
│ │ ├── ObjectFactory.cpp
│ │ ├── ObjectFactory.h
│ │ ├── TriggerBase.cpp
│ │ ├── TriggerBase.h
│ │ ├── TriggerMng.cpp
│ │ ├── TriggerMng.h
│ │ ├── TriggerObj.cpp
│ │ └── TriggerObj.h
│ ├── ExtensionMacros.h
│ ├── GUI
│ │ ├── CCControlExtension
│ │ │ ├── CCControlButton.cpp
│ │ │ ├── CCControlButton.h
│ │ │ ├── CCControlColourPicker.cpp
│ │ │ ├── CCControlColourPicker.h
│ │ │ ├── CCControl.cpp
│ │ │ ├── CCControlExtensions.h
│ │ │ ├── CCControl.h
│ │ │ ├── CCControlHuePicker.cpp
│ │ │ ├── CCControlHuePicker.h
│ │ │ ├── CCControlPotentiometer.cpp
│ │ │ ├── CCControlPotentiometer.h
│ │ │ ├── CCControlSaturationBrightnessPicker.cpp
│ │ │ ├── CCControlSaturationBrightnessPicker.h
│ │ │ ├── CCControlSlider.cpp
│ │ │ ├── CCControlSlider.h
│ │ │ ├── CCControlStepper.cpp
│ │ │ ├── CCControlStepper.h
│ │ │ ├── CCControlSwitch.cpp
│ │ │ ├── CCControlSwitch.h
│ │ │ ├── CCControlUtils.cpp
│ │ │ ├── CCControlUtils.h
│ │ │ ├── CCInvocation.cpp
│ │ │ ├── CCInvocation.h
│ │ │ ├── CCScale9Sprite.cpp
│ │ │ └── CCScale9Sprite.h
│ │ ├── CCEditBox
│ │ │ ├── CCEditBox.cpp
│ │ │ ├── CCEditBox.h
│ │ │ ├── CCEditBoxImplAndroid.cpp
│ │ │ ├── CCEditBoxImplAndroid.h
│ │ │ ├── CCEditBoxImpl.h
│ │ │ ├── CCEditBoxImplIOS.h
│ │ │ ├── CCEditBoxImplIOS.mm
│ │ │ ├── CCEditBoxImplMac.h
│ │ │ ├── CCEditBoxImplMac.mm
│ │ │ ├── CCEditBoxImplNone.cpp
│ │ │ ├── CCEditBoxImplTizen.cpp
│ │ │ ├── CCEditBoxImplTizen.h
│ │ │ ├── CCEditBoxImplWin.cpp
│ │ │ └── CCEditBoxImplWin.h
│ │ └── CCScrollView
│ │ ├── CCScrollView.cpp
│ │ ├── CCScrollView.h
│ │ ├── CCSorting.cpp
│ │ ├── CCSorting.h
│ │ ├── CCTableViewCell.cpp
│ │ ├── CCTableViewCell.h
│ │ ├── CCTableView.cpp
│ │ └── CCTableView.h
│ ├── LocalStorage
│ │ ├── LocalStorageAndroid.cpp
│ │ ├── LocalStorage.cpp
│ │ └── LocalStorage.h
│ ├── network
│ │ ├── HttpClient.cpp
│ │ ├── HttpClient.h
│ │ ├── HttpRequest.h
│ │ ├── HttpResponse.h
│ │ ├── WebSocket.cpp
│ │ └── WebSocket.h
│ ├── physics_nodes
│ │ ├── CCPhysicsDebugNode.cpp
│ │ ├── CCPhysicsDebugNode.h
│ │ ├── CCPhysicsSprite.cpp
│ │ └── CCPhysicsSprite.h
│ ├── proj.blackberry
│ ├── proj.emscripten
│ │ └── Makefile
│ ├── proj.linux
│ │ └── Makefile
│ ├── proj.marmalade
│ │ ├── cocos2dx-ext.mkf
│ │ └── cocos2dx-ext_public.defines.txt
│ ├── proj.nacl
│ │ └── Makefile
│ ├── proj.tizen
│ │ └── src
│ │ └── placeholder.txt
│ ├── proj.win32
│ │ ├── Debug.win32
│ │ │ ├── Animation.obj
│ │ │ ├── AnimationStateData.obj
│ │ │ ├── AnimationState.obj
│ │ │ ├── AssetsManager.obj
│ │ │ ├── AtlasAttachmentLoader.obj
│ │ │ ├── Atlas.obj
│ │ │ ├── AttachmentLoader.obj
│ │ │ ├── Attachment.obj
│ │ │ ├── BoneData.obj
│ │ │ ├── Bone.obj
│ │ │ ├── CCActionEaseEx.obj
│ │ │ ├── CCActionFrameEasing.obj
│ │ │ ├── CCActionFrame.obj
│ │ │ ├── CCActionManager.obj
│ │ │ ├── CCActionNode.obj
│ │ │ ├── CCActionObject.obj
│ │ │ ├── CCArmatureAnimation.obj
│ │ │ ├── CCArmatureDataManager.obj
│ │ │ ├── CCArmatureDefine.obj
│ │ │ ├── CCArmature.obj
│ │ │ ├── CCBAnimationManager.obj
│ │ │ ├── CCBatchNode.obj
│ │ │ ├── CCBFileLoader.obj
│ │ │ ├── CCBKeyframe.obj
│ │ │ ├── CCBone.obj
│ │ │ ├── CCBReader.obj
│ │ │ ├── CCBSequence.obj
│ │ │ ├── CCBSequenceProperty.obj
│ │ │ ├── CCBValue.obj
│ │ │ ├── CCColliderDetector.obj
│ │ │ ├── CCComAttribute.obj
│ │ │ ├── CCComAudio.obj
│ │ │ ├── CCComController.obj
│ │ │ ├── CCComRender.obj
│ │ │ ├── CCControlButtonLoader.obj
│ │ │ ├── CCControlButton.obj
│ │ │ ├── CCControlColourPicker.obj
│ │ │ ├── CCControlHuePicker.obj
│ │ │ ├── CCControlLoader.obj
│ │ │ ├── CCControl.obj
│ │ │ ├── CCControlPotentiometer.obj
│ │ │ ├── CCControlSaturationBrightnessPicker.obj
│ │ │ ├── CCControlSlider.obj
│ │ │ ├── CCControlStepper.obj
│ │ │ ├── CCControlSwitch.obj
│ │ │ ├── CCControlUtils.obj
│ │ │ ├── CCData.obj
│ │ │ ├── CCDataReaderHelper.obj
│ │ │ ├── CCDatas.obj
│ │ │ ├── CCDecorativeDisplay.obj
│ │ │ ├── CCDisplayFactory.obj
│ │ │ ├── CCDisplayManager.obj
│ │ │ ├── CCEditBoxImplWin.obj
│ │ │ ├── CCEditBox.obj
│ │ │ ├── CCInputDelegate.obj
│ │ │ ├── CCInvocation.obj
│ │ │ ├── CCLabelBMFontLoader.obj
│ │ │ ├── CCLabelTTFLoader.obj
│ │ │ ├── CCLayerColorLoader.obj
│ │ │ ├── CCLayerGradientLoader.obj
│ │ │ ├── CCLayerLoader.obj
│ │ │ ├── CCMenuItemImageLoader.obj
│ │ │ ├── CCMenuItemLoader.obj
│ │ │ ├── CCNode+CCBRelativePositioning.obj
│ │ │ ├── CCNodeLoaderLibrary.obj
│ │ │ ├── CCNodeLoader.obj
│ │ │ ├── CCParticleSystemQuadLoader.obj
│ │ │ ├── CCPhysicsDebugNode.obj
│ │ │ ├── CCPhysicsSprite.obj
│ │ │ ├── CCProcessBase.obj
│ │ │ ├── CCScale9SpriteLoader.obj
│ │ │ ├── CCScale9Sprite.obj
│ │ │ ├── CCScrollViewLoader.obj
│ │ │ ├── CCScrollView.obj
│ │ │ ├── CCSkeletonAnimation.obj
│ │ │ ├── CCSkeleton.obj
│ │ │ ├── CCSkin.obj
│ │ │ ├── CCSorting.obj
│ │ │ ├── CCSpriteFrameCacheHelper.obj
│ │ │ ├── CCSpriteLoader.obj
│ │ │ ├── CCTableViewCell.obj
│ │ │ ├── CCTableView.obj
│ │ │ ├── CCTransformHelp.obj
│ │ │ ├── CCTweenFunction.obj
│ │ │ ├── CCTween.obj
│ │ │ ├── CCUtilMath.obj
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── CocosGUI.obj
│ │ │ ├── DictionaryHelper.obj
│ │ │ ├── extension.obj
│ │ │ ├── GUIReader.obj
│ │ │ ├── HttpClient.obj
│ │ │ ├── Json.obj
│ │ │ ├── lib.command.1.tlog
│ │ │ ├── libExtensions.lastbuildstate
│ │ │ ├── libExtensions.log
│ │ │ ├── libExtensions.tlog
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── lib.command.1.tlog
│ │ │ │ ├── libExtensions.lastbuildstate
│ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ └── Lib-link.write.1.tlog
│ │ │ ├── Lib-link.read.1.tlog
│ │ │ ├── Lib-link.write.1.tlog
│ │ │ ├── LocalStorage.obj
│ │ │ ├── ObjectFactory.obj
│ │ │ ├── RegionAttachment.obj
│ │ │ ├── SceneReader.obj
│ │ │ ├── SkeletonData.obj
│ │ │ ├── SkeletonJson.obj
│ │ │ ├── Skeleton.obj
│ │ │ ├── Skin.obj
│ │ │ ├── SlotData.obj
│ │ │ ├── Slot.obj
│ │ │ ├── spine-cocos2dx.obj
│ │ │ ├── TriggerBase.obj
│ │ │ ├── TriggerMng.obj
│ │ │ ├── TriggerObj.obj
│ │ │ ├── UIButton.obj
│ │ │ ├── UICheckBox.obj
│ │ │ ├── UIHelper.obj
│ │ │ ├── UIImageView.obj
│ │ │ ├── UILabelAtlas.obj
│ │ │ ├── UILabelBMFont.obj
│ │ │ ├── UILabel.obj
│ │ │ ├── UILayoutDefine.obj
│ │ │ ├── UILayout.obj
│ │ │ ├── UILayoutParameter.obj
│ │ │ ├── UIListView.obj
│ │ │ ├── UILoadingBar.obj
│ │ │ ├── UIPageView.obj
│ │ │ ├── UIScrollView.obj
│ │ │ ├── UISlider.obj
│ │ │ ├── UITextField.obj
│ │ │ ├── UITouchGroup.obj
│ │ │ ├── UIWidget.obj
│ │ │ ├── vc110.idb
│ │ │ ├── vc110.pdb
│ │ │ ├── vc120.idb
│ │ │ ├── vc120.pdb
│ │ │ ├── Websocket.obj
│ │ │ └── Win32InputBox.obj
│ │ ├── libExtensions.vcxproj
│ │ ├── libExtensions.vcxproj.filters
│ │ ├── libExtensions.vcxproj.user
│ │ ├── Win32InputBox.cpp
│ │ └── Win32InputBox.h
│ ├── proj.winrt
│ │ ├── Generated Files
│ │ ├── libExtensions_2013.sln
│ │ ├── libExtensions_2013.vcxproj
│ │ ├── libExtensions_2013.vcxproj.filters
│ │ ├── libExtensions.sln
│ │ ├── libExtensions.vcxproj
│ │ ├── libExtensions.vcxproj.filters
│ │ └── Win32
│ │ └── Debug
│ │ └── libExtensions.tlog
│ ├── proj.wp8
│ │ ├── libExtensions.sln
│ │ ├── libExtensions.vcxproj
│ │ └── libExtensions.vcxproj.filters
│ └── spine
│ ├── Animation.cpp
│ ├── Animation.h
│ ├── AnimationState.cpp
│ ├── AnimationStateData.cpp
│ ├── AnimationStateData.h
│ ├── AnimationState.h
│ ├── AtlasAttachmentLoader.cpp
│ ├── AtlasAttachmentLoader.h
│ ├── Atlas.cpp
│ ├── Atlas.h
│ ├── Attachment.cpp
│ ├── Attachment.h
│ ├── AttachmentLoader.cpp
│ ├── AttachmentLoader.h
│ ├── Bone.cpp
│ ├── BoneData.cpp
│ ├── BoneData.h
│ ├── Bone.h
│ ├── CCSkeletonAnimation.cpp
│ ├── CCSkeletonAnimation.h
│ ├── CCSkeleton.cpp
│ ├── CCSkeleton.h
│ ├── extension.cpp
│ ├── extension.h
│ ├── Json.cpp
│ ├── Json.h
│ ├── RegionAttachment.cpp
│ ├── RegionAttachment.h
│ ├── Skeleton.cpp
│ ├── SkeletonData.cpp
│ ├── SkeletonData.h
│ ├── Skeleton.h
│ ├── SkeletonJson.cpp
│ ├── SkeletonJson.h
│ ├── Skin.cpp
│ ├── Skin.h
│ ├── Slot.cpp
│ ├── SlotData.cpp
│ ├── SlotData.h
│ ├── Slot.h
│ ├── spine-cocos2dx.cpp
│ ├── spine-cocos2dx.h
│ └── spine.h
├── external
│ ├── Box2D
│ │ ├── Android.mk
│ │ ├── Box2D.h
│ │ ├── Collision
│ │ │ ├── b2BroadPhase.cpp
│ │ │ ├── b2BroadPhase.h
│ │ │ ├── b2CollideCircle.cpp
│ │ │ ├── b2CollideEdge.cpp
│ │ │ ├── b2CollidePolygon.cpp
│ │ │ ├── b2Collision.cpp
│ │ │ ├── b2Collision.h
│ │ │ ├── b2Distance.cpp
│ │ │ ├── b2Distance.h
│ │ │ ├── b2DynamicTree.cpp
│ │ │ ├── b2DynamicTree.h
│ │ │ ├── b2TimeOfImpact.cpp
│ │ │ ├── b2TimeOfImpact.h
│ │ │ └── Shapes
│ │ │ ├── b2ChainShape.cpp
│ │ │ ├── b2ChainShape.h
│ │ │ ├── b2CircleShape.cpp
│ │ │ ├── b2CircleShape.h
│ │ │ ├── b2EdgeShape.cpp
│ │ │ ├── b2EdgeShape.h
│ │ │ ├── b2PolygonShape.cpp
│ │ │ ├── b2PolygonShape.h
│ │ │ └── b2Shape.h
│ │ ├── Common
│ │ │ ├── b2BlockAllocator.cpp
│ │ │ ├── b2BlockAllocator.h
│ │ │ ├── b2Draw.cpp
│ │ │ ├── b2Draw.h
│ │ │ ├── b2GrowableStack.h
│ │ │ ├── b2Math.cpp
│ │ │ ├── b2Math.h
│ │ │ ├── b2Settings.cpp
│ │ │ ├── b2Settings.h
│ │ │ ├── b2StackAllocator.cpp
│ │ │ ├── b2StackAllocator.h
│ │ │ ├── b2Timer.cpp
│ │ │ └── b2Timer.h
│ │ ├── Dynamics
│ │ │ ├── b2Body.cpp
│ │ │ ├── b2Body.h
│ │ │ ├── b2ContactManager.cpp
│ │ │ ├── b2ContactManager.h
│ │ │ ├── b2Fixture.cpp
│ │ │ ├── b2Fixture.h
│ │ │ ├── b2Island.cpp
│ │ │ ├── b2Island.h
│ │ │ ├── b2TimeStep.h
│ │ │ ├── b2WorldCallbacks.cpp
│ │ │ ├── b2WorldCallbacks.h
│ │ │ ├── b2World.cpp
│ │ │ ├── b2World.h
│ │ │ ├── Contacts
│ │ │ │ ├── b2ChainAndCircleContact.cpp
│ │ │ │ ├── b2ChainAndCircleContact.h
│ │ │ │ ├── b2ChainAndPolygonContact.cpp
│ │ │ │ ├── b2ChainAndPolygonContact.h
│ │ │ │ ├── b2CircleContact.cpp
│ │ │ │ ├── b2CircleContact.h
│ │ │ │ ├── b2Contact.cpp
│ │ │ │ ├── b2Contact.h
│ │ │ │ ├── b2ContactSolver.cpp
│ │ │ │ ├── b2ContactSolver.h
│ │ │ │ ├── b2EdgeAndCircleContact.cpp
│ │ │ │ ├── b2EdgeAndCircleContact.h
│ │ │ │ ├── b2EdgeAndPolygonContact.cpp
│ │ │ │ ├── b2EdgeAndPolygonContact.h
│ │ │ │ ├── b2PolygonAndCircleContact.cpp
│ │ │ │ ├── b2PolygonAndCircleContact.h
│ │ │ │ ├── b2PolygonContact.cpp
│ │ │ │ └── b2PolygonContact.h
│ │ │ └── Joints
│ │ │ ├── b2DistanceJoint.cpp
│ │ │ ├── b2DistanceJoint.h
│ │ │ ├── b2FrictionJoint.cpp
│ │ │ ├── b2FrictionJoint.h
│ │ │ ├── b2GearJoint.cpp
│ │ │ ├── b2GearJoint.h
│ │ │ ├── b2Joint.cpp
│ │ │ ├── b2Joint.h
│ │ │ ├── b2MouseJoint.cpp
│ │ │ ├── b2MouseJoint.h
│ │ │ ├── b2PrismaticJoint.cpp
│ │ │ ├── b2PrismaticJoint.h
│ │ │ ├── b2PulleyJoint.cpp
│ │ │ ├── b2PulleyJoint.h
│ │ │ ├── b2RevoluteJoint.cpp
│ │ │ ├── b2RevoluteJoint.h
│ │ │ ├── b2RopeJoint.cpp
│ │ │ ├── b2RopeJoint.h
│ │ │ ├── b2WeldJoint.cpp
│ │ │ ├── b2WeldJoint.h
│ │ │ ├── b2WheelJoint.cpp
│ │ │ └── b2WheelJoint.h
│ │ ├── proj.blackberry
│ │ │ └── proj.blackberry
│ │ │ ├── bar-descriptor.xml
│ │ │ ├── icon.png
│ │ │ └── main.cpp
│ │ ├── proj.emscripten
│ │ │ └── Makefile
│ │ ├── proj.linux
│ │ │ └── Makefile
│ │ ├── proj.marmalade
│ │ │ └── Box2D.mkf
│ │ ├── proj.nacl
│ │ │ └── Makefile
│ │ ├── proj.tizen
│ │ │ └── src
│ │ │ └── Box2D
│ │ │ └── placeholder.txt
│ │ ├── proj.win32
│ │ │ ├── Box2D.vcxproj
│ │ │ ├── Box2D.vcxproj.filters
│ │ │ ├── Box2D.vcxproj.user
│ │ │ └── Debug.win32
│ │ │ ├── b2BlockAllocator.obj
│ │ │ ├── b2Body.obj
│ │ │ ├── b2BroadPhase.obj
│ │ │ ├── b2ChainAndCircleContact.obj
│ │ │ ├── b2ChainAndPolygonContact.obj
│ │ │ ├── b2ChainShape.obj
│ │ │ ├── b2CircleContact.obj
│ │ │ ├── b2CircleShape.obj
│ │ │ ├── b2CollideCircle.obj
│ │ │ ├── b2CollideEdge.obj
│ │ │ ├── b2CollidePolygon.obj
│ │ │ ├── b2Collision.obj
│ │ │ ├── b2ContactManager.obj
│ │ │ ├── b2Contact.obj
│ │ │ ├── b2ContactSolver.obj
│ │ │ ├── b2DistanceJoint.obj
│ │ │ ├── b2Distance.obj
│ │ │ ├── b2Draw.obj
│ │ │ ├── b2DynamicTree.obj
│ │ │ ├── b2EdgeAndCircleContact.obj
│ │ │ ├── b2EdgeAndPolygonContact.obj
│ │ │ ├── b2EdgeShape.obj
│ │ │ ├── b2Fixture.obj
│ │ │ ├── b2FrictionJoint.obj
│ │ │ ├── b2GearJoint.obj
│ │ │ ├── b2Island.obj
│ │ │ ├── b2Joint.obj
│ │ │ ├── b2Math.obj
│ │ │ ├── b2MouseJoint.obj
│ │ │ ├── b2PolygonAndCircleContact.obj
│ │ │ ├── b2PolygonContact.obj
│ │ │ ├── b2PolygonShape.obj
│ │ │ ├── b2PrismaticJoint.obj
│ │ │ ├── b2PulleyJoint.obj
│ │ │ ├── b2RevoluteJoint.obj
│ │ │ ├── b2RopeJoint.obj
│ │ │ ├── b2Rope.obj
│ │ │ ├── b2Settings.obj
│ │ │ ├── b2StackAllocator.obj
│ │ │ ├── b2TimeOfImpact.obj
│ │ │ ├── b2Timer.obj
│ │ │ ├── b2WeldJoint.obj
│ │ │ ├── b2WheelJoint.obj
│ │ │ ├── b2WorldCallbacks.obj
│ │ │ ├── b2World.obj
│ │ │ ├── Box2D.log
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── libBox2D.Build.CppClean.log
│ │ │ ├── libBox2D.lastbuildstate
│ │ │ ├── libBox2D.tlog
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── libBox2D.lastbuildstate
│ │ │ │ ├── lib.command.1.tlog
│ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ └── Lib-link.write.1.tlog
│ │ │ ├── lib.command.1.tlog
│ │ │ ├── Lib-link.read.1.tlog
│ │ │ ├── Lib-link.write.1.tlog
│ │ │ ├── vc110.idb
│ │ │ ├── vc110.pdb
│ │ │ ├── vc120.idb
│ │ │ └── vc120.pdb
│ │ ├── proj.winrt
│ │ │ ├── Box2D_2013.sln
│ │ │ ├── Box2D_2013.vcxproj
│ │ │ ├── Box2D_2013.vcxproj.filters
│ │ │ ├── Box2D.sln
│ │ │ ├── Box2D.vcxproj
│ │ │ ├── Box2D.vcxproj.filters
│ │ │ ├── Generated Files
│ │ │ └── Win32
│ │ │ └── Debug
│ │ │ └── libBox2D.tlog
│ │ ├── proj.wp8
│ │ │ ├── Box2D.vcxproj
│ │ │ └── Box2D.vcxproj.filters
│ │ └── Rope
│ │ ├── b2Rope.cpp
│ │ └── b2Rope.h
│ ├── chipmunk
│ │ ├── Android.mk
│ │ ├── chipmunk-docs.html
│ │ ├── include
│ │ │ └── chipmunk
│ │ │ ├── chipmunk_ffi.h
│ │ │ ├── chipmunk.h
│ │ │ ├── chipmunk_private.h
│ │ │ ├── chipmunk_types.h
│ │ │ ├── chipmunk_unsafe.h
│ │ │ ├── constraints
│ │ │ │ ├── cpConstraint.h
│ │ │ │ ├── cpDampedRotarySpring.h
│ │ │ │ ├── cpDampedSpring.h
│ │ │ │ ├── cpGearJoint.h
│ │ │ │ ├── cpGrooveJoint.h
│ │ │ │ ├── cpPinJoint.h
│ │ │ │ ├── cpPivotJoint.h
│ │ │ │ ├── cpRatchetJoint.h
│ │ │ │ ├── cpRotaryLimitJoint.h
│ │ │ │ ├── cpSimpleMotor.h
│ │ │ │ ├── cpSlideJoint.h
│ │ │ │ └── util.h
│ │ │ ├── cpArbiter.h
│ │ │ ├── cpBB.h
│ │ │ ├── cpBody.h
│ │ │ ├── cpPolyShape.h
│ │ │ ├── cpShape.h
│ │ │ ├── cpSpace.h
│ │ │ ├── cpSpatialIndex.h
│ │ │ └── cpVect.h
│ │ ├── LICENSE.txt
│ │ ├── proj.blackberry
│ │ ├── proj.emscripten
│ │ │ └── Makefile
│ │ ├── proj.linux
│ │ │ └── Makefile
│ │ ├── proj.nacl
│ │ │ └── Makefile
│ │ ├── proj.tizen
│ │ │ └── src
│ │ │ └── placeholder.txt
│ │ ├── proj.win32
│ │ │ ├── chipmunk.vcxproj
│ │ │ ├── chipmunk.vcxproj.filters
│ │ │ ├── chipmunk.vcxproj.user
│ │ │ └── Debug.win32
│ │ │ ├── chipmunk.log
│ │ │ ├── chipmunk.obj
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── cpArbiter.obj
│ │ │ ├── cpArray.obj
│ │ │ ├── cpBB.obj
│ │ │ ├── cpBBTree.obj
│ │ │ ├── cpBody.obj
│ │ │ ├── cpCollision.obj
│ │ │ ├── cpConstraint.obj
│ │ │ ├── cpDampedRotarySpring.obj
│ │ │ ├── cpDampedSpring.obj
│ │ │ ├── cpGearJoint.obj
│ │ │ ├── cpGrooveJoint.obj
│ │ │ ├── cpHashSet.obj
│ │ │ ├── cpPinJoint.obj
│ │ │ ├── cpPivotJoint.obj
│ │ │ ├── cpPolyShape.obj
│ │ │ ├── cpRatchetJoint.obj
│ │ │ ├── cpRotaryLimitJoint.obj
│ │ │ ├── cpShape.obj
│ │ │ ├── cpSimpleMotor.obj
│ │ │ ├── cpSlideJoint.obj
│ │ │ ├── cpSpaceComponent.obj
│ │ │ ├── cpSpaceHash.obj
│ │ │ ├── cpSpace.obj
│ │ │ ├── cpSpaceQuery.obj
│ │ │ ├── cpSpaceStep.obj
│ │ │ ├── cpSpatialIndex.obj
│ │ │ ├── cpSweep1D.obj
│ │ │ ├── cpVect.obj
│ │ │ ├── libchipmunk.Build.CppClean.log
│ │ │ ├── libchipmunk.lastbuildstate
│ │ │ ├── libchipmunk.tlog
│ │ │ │ ├── cl.command.1.tlog
│ │ │ │ ├── CL.read.1.tlog
│ │ │ │ ├── CL.write.1.tlog
│ │ │ │ ├── libchipmunk.lastbuildstate
│ │ │ │ ├── lib.command.1.tlog
│ │ │ │ ├── Lib-link.read.1.tlog
│ │ │ │ └── Lib-link.write.1.tlog
│ │ │ ├── lib.command.1.tlog
│ │ │ ├── Lib-link.read.1.tlog
│ │ │ ├── Lib-link.write.1.tlog
│ │ │ ├── vc110.idb
│ │ │ ├── vc110.pdb
│ │ │ ├── vc120.idb
│ │ │ └── vc120.pdb
│ │ ├── proj.winrt
│ │ │ ├── chipmunk_2013.sln
│ │ │ ├── chipmunk_2013.vcxproj
│ │ │ ├── chipmunk_2013.vcxproj.filters
│ │ │ ├── chipmunk.sln
│ │ │ ├── chipmunk.vcxproj
│ │ │ ├── chipmunk.vcxproj.filters
│ │ │ ├── Generated Files
│ │ │ └── Win32
│ │ │ └── Debug
│ │ │ └── libchipmunk.tlog
│ │ ├── proj.wp8
│ │ │ ├── chipmunk.vcxproj
│ │ │ └── chipmunk.vcxproj.filters
│ │ ├── README.txt
│ │ └── src
│ │ ├── chipmunk.c
│ │ ├── CMakeLists.txt
│ │ ├── constraints
│ │ │ ├── cpConstraint.c
│ │ │ ├── cpDampedRotarySpring.c
│ │ │ ├── cpDampedSpring.c
│ │ │ ├── cpGearJoint.c
│ │ │ ├── cpGrooveJoint.c
│ │ │ ├── cpPinJoint.c
│ │ │ ├── cpPivotJoint.c
│ │ │ ├── cpRatchetJoint.c
│ │ │ ├── cpRotaryLimitJoint.c
│ │ │ ├── cpSimpleMotor.c
│ │ │ └── cpSlideJoint.c
│ │ ├── cpArbiter.c
│ │ ├── cpArray.c
│ │ ├── cpBB.c
│ │ ├── cpBBTree.c
│ │ ├── cpBody.c
│ │ ├── cpCollision.c
│ │ ├── cpHashSet.c
│ │ ├── cpPolyShape.c
│ │ ├── cpShape.c
│ │ ├── cpSpace.c
│ │ ├── cpSpaceComponent.c
│ │ ├── cpSpaceHash.c
│ │ ├── cpSpaceQuery.c
│ │ ├── cpSpaceStep.c
│ │ ├── cpSpatialIndex.c
│ │ ├── cpSweep1D.c
│ │ ├── cpVect.c
│ │ └── prime.h
│ ├── emscripten
│ │ ├── AUTHORS
│ │ ├── cmake
│ │ │ └── Platform
│ │ │ ├── Emscripten.cmake
│ │ │ └── Emscripten_unix.cmake
│ │ ├── demos
│ │ │ ├── cubescript.html
│ │ │ ├── cubescript.js
│ │ │ ├── espeak
│ │ │ │ ├── espeak-data
│ │ │ │ │ ├── en_dict
│ │ │ │ │ ├── intonations
│ │ │ │ │ ├── phondata
│ │ │ │ │ ├── phonindex
│ │ │ │ │ ├── phontab
│ │ │ │ │ └── voices
│ │ │ │ │ └── en
│ │ │ │ │ └── en-us
│ │ │ │ ├── espeak.html
│ │ │ │ ├── espeak.js
│ │ │ │ └── espeak_src.tar.bz2
│ │ │ ├── freetype.cc.js
│ │ │ ├── freetype.html
│ │ │ ├── lua.html
│ │ │ ├── lua.js
│ │ │ ├── openjpeg.cc.js
│ │ │ ├── openjpeg.html
│ │ │ ├── paper.pdf.js
│ │ │ ├── poppler.html
│ │ │ ├── poppler.yui.js
│ │ │ ├── python.cc.js
│ │ │ ├── python.html
│ │ │ ├── raytrace.cpp
│ │ │ ├── raytrace.html
│ │ │ ├── raytrace.js
│ │ │ ├── scons-embind
│ │ │ │ ├── bar.cpp
│ │ │ │ ├── foo.cpp
│ │ │ │ ├── SConstruct
│ │ │ │ └── test.js
│ │ │ ├── skywriter
│ │ │ │ ├── BespinEmbedded.css
│ │ │ │ ├── BespinEmbedded.js
│ │ │ │ ├── BespinMain.js
│ │ │ │ ├── BespinWorker.js
│ │ │ │ └── resources
│ │ │ │ └── screen_theme
│ │ │ │ ├── images
│ │ │ │ │ ├── bespin-s.png
│ │ │ │ │ ├── check-selected.png
│ │ │ │ │ ├── check-unselected.png
│ │ │ │ │ ├── lines.png
│ │ │ │ │ ├── radio-selected.png
│ │ │ │ │ ├── radio-unselected.png
│ │ │ │ │ ├── scroll-down.png
│ │ │ │ │ ├── scroll-left.png
│ │ │ │ │ ├── scroll-right.png
│ │ │ │ │ └── scroll-up.png
│ │ │ │ └── theme.less
│ │ │ ├── syntensity_lobby.j2k.js
│ │ │ └── webgl
│ │ │ ├── bullet_1_1_q1.ccsimple.js
│ │ │ ├── bullet_demo.js
│ │ │ ├── bullet_glue.js
│ │ │ ├── bullet.js
│ │ │ ├── cube1.jpg
│ │ │ ├── cube2.jpg
│ │ │ ├── cube3.jpg
│ │ │ ├── cube4.jpg
│ │ │ ├── cube5.jpg
│ │ │ ├── CubicVR_Core.fs
│ │ │ ├── CubicVR_Core.vs
│ │ │ ├── CubicVR.js
│ │ │ ├── demo.html
│ │ │ ├── demo_old.html
│ │ │ ├── doit.sh
│ │ │ ├── glge.js
│ │ │ ├── glge_math.js
│ │ │ ├── HelloWorld_old.cpp
│ │ │ ├── README.txt
│ │ │ ├── scene.xml
│ │ │ └── server.sh
│ │ ├── docs
│ │ │ ├── emscripten_switch_logo.eps
│ │ │ ├── emscripten_switch_logo.jpg
│ │ │ ├── emscripten_switch_logo.svg
│ │ │ ├── graph.png
│ │ │ ├── paper.pdf
│ │ │ └── paper.tex
│ │ ├── em++
│ │ ├── emar
│ │ ├── emar.bat
│ │ ├── em++.bat
│ │ ├── emcc
│ │ ├── emcc.bat
│ │ ├── emcc.py
│ │ ├── em-config
│ │ ├── em-config.bat
│ │ ├── emconfigure
│ │ ├── emconfigure.bat
│ │ ├── emlibtool
│ │ ├── emlibtool.bat
│ │ ├── emmake
│ │ ├── emmake.bat
│ │ ├── emranlib
│ │ ├── emranlib.bat
│ │ ├── emscons
│ │ ├── emscripten.py
│ │ ├── LICENSE
│ │ ├── patches
│ │ │ ├── README
│ │ │ └── series
│ │ ├── README.markdown
│ │ ├── scons-tools
│ │ │ ├── closure.py
│ │ │ ├── emscripten.py
│ │ │ └── llvm.py
│ │ ├── src
│ │ │ ├── analyzer.js
│ │ │ ├── compiler.html
│ │ │ ├── compiler.js
│ │ │ ├── corruptionCheck.js
│ │ │ ├── determinstic.js
│ │ │ ├── embind
│ │ │ │ ├── embind.js
│ │ │ │ └── emval.js
│ │ │ ├── experimental
│ │ │ │ ├── allow_loopvars_from_memsetcpy_inasm.diff
│ │ │ │ ├── batching.diff
│ │ │ │ ├── functypeopt.diff
│ │ │ │ ├── multiple_heaps.diff
│ │ │ │ ├── noncallgraphprofiling.diff
│ │ │ │ ├── optimize_memcpy_for_ta1.diff
│ │ │ │ ├── remove__label__s.diff
│ │ │ │ ├── renderer_cache_hash.diff
│ │ │ │ ├── sdl_key_forwarding.diff
│ │ │ │ ├── simplifyGeneratedFunctionsDetection.diff
│ │ │ │ └── stringCache.diff
│ │ │ ├── fastLong.js
│ │ │ ├── framework.js
│ │ │ ├── gl-matrix.js
│ │ │ ├── headless.js
│ │ │ ├── intertyper.js
│ │ │ ├── jsifier.js
│ │ │ ├── library_browser.js
│ │ │ ├── library_egl.js
│ │ │ ├── library_gc.js
│ │ │ ├── library_glfw.js
│ │ │ ├── library_gl.js
│ │ │ ├── library_glut.js
│ │ │ ├── library_jansson.js
│ │ │ ├── library.js
│ │ │ ├── library_openal.js
│ │ │ ├── library_sdl.js
│ │ │ ├── library_strtok_r.c
│ │ │ ├── library_xlib.js
│ │ │ ├── long.js
│ │ │ ├── modules.js
│ │ │ ├── parseTools.js
│ │ │ ├── postamble.js
│ │ │ ├── postamble_sharedlib.js
│ │ │ ├── preamble.js
│ │ │ ├── preamble_sharedlib.js
│ │ │ ├── relooper
│ │ │ │ ├── doit.sh
│ │ │ │ ├── emscripten
│ │ │ │ │ ├── glue.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── fuzzer.py
│ │ │ │ ├── ministring.h
│ │ │ │ ├── paper.pdf
│ │ │ │ ├── README.markdown
│ │ │ │ ├── Relooper.cpp
│ │ │ │ ├── Relooper.h
│ │ │ │ ├── test2.c
│ │ │ │ ├── test2.txt
│ │ │ │ ├── test3.c
│ │ │ │ ├── test3.txt
│ │ │ │ ├── test4.cpp
│ │ │ │ ├── test4.txt
│ │ │ │ ├── test5.cpp
│ │ │ │ ├── test5.txt
│ │ │ │ ├── test6.cpp
│ │ │ │ ├── test6.txt
│ │ │ │ ├── test.cpp
│ │ │ │ ├── test_dead.cpp
│ │ │ │ ├── test_dead.txt
│ │ │ │ ├── test_debug.cpp
│ │ │ │ ├── test_debug.txt
│ │ │ │ ├── test_fuzz1.cpp
│ │ │ │ ├── test_fuzz1.txt
│ │ │ │ ├── test_fuzz2.cpp
│ │ │ │ ├── test_fuzz2.txt
│ │ │ │ ├── test_fuzz3.cpp
│ │ │ │ ├── test_fuzz3.txt
│ │ │ │ ├── test_fuzz4.cpp
│ │ │ │ ├── test_fuzz4.txt
│ │ │ │ ├── test_fuzz5.cpp
│ │ │ │ ├── test_fuzz5.txt
│ │ │ │ ├── test_fuzz6.cpp
│ │ │ │ ├── test_fuzz6.txt
│ │ │ │ ├── test_inf.cpp
│ │ │ │ ├── test_inf.txt
│ │ │ │ ├── testit.sh
│ │ │ │ ├── test.txt
│ │ │ │ └── updateit.sh
│ │ │ ├── runtime.js
│ │ │ ├── settings.js
│ │ │ ├── shell.html
│ │ │ ├── shell.js
│ │ │ ├── shell_sharedlib.js
│ │ │ └── utility.js
│ │ ├── system
│ │ │ ├── include
│ │ │ │ ├── AL
│ │ │ │ │ ├── alc.h
│ │ │ │ │ └── al.h
│ │ │ │ ├── bsd
│ │ │ │ │ ├── float.h
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ └── sys
│ │ │ │ │ ├── mman.h
│ │ │ │ │ └── utsname.h
│ │ │ │ ├── dlfcn.h
│ │ │ │ ├── EGL
│ │ │ │ │ ├── eglext.h
│ │ │ │ │ ├── egl.h
│ │ │ │ │ └── eglplatform.h
│ │ │ │ ├── emscripten
│ │ │ │ │ ├── bind.h
│ │ │ │ │ ├── emscripten.h
│ │ │ │ │ ├── val.h
│ │ │ │ │ └── wire.h
│ │ │ │ ├── err.h
│ │ │ │ ├── execinfo.h
│ │ │ │ ├── features.h
│ │ │ │ ├── gc.h
│ │ │ │ ├── gfx
│ │ │ │ │ ├── pngconf.h
│ │ │ │ │ ├── png.h
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ └── tiffvers.h
│ │ │ │ ├── GL
│ │ │ │ │ ├── freeglut_std.h
│ │ │ │ │ ├── glew.h
│ │ │ │ │ ├── glext.h
│ │ │ │ │ ├── glfw.h
│ │ │ │ │ ├── gl.h
│ │ │ │ │ ├── glu.h
│ │ │ │ │ └── glut.h
│ │ │ │ ├── GLES
│ │ │ │ │ ├── glext.h
│ │ │ │ │ ├── gl.h
│ │ │ │ │ └── glplatform.h
│ │ │ │ ├── GLES2
│ │ │ │ │ ├── gl2ext.h
│ │ │ │ │ ├── gl2.h
│ │ │ │ │ └── gl2platform.h
│ │ │ │ ├── jansson_config.h
│ │ │ │ ├── jansson.h
│ │ │ │ ├── KHR
│ │ │ │ │ └── khrplatform.h
│ │ │ │ ├── libc
│ │ │ │ │ ├── alloca.h
│ │ │ │ │ ├── _ansi.h
│ │ │ │ │ ├── argz.h
│ │ │ │ │ ├── ar.h
│ │ │ │ │ ├── assert.h
│ │ │ │ │ ├── complex.h
│ │ │ │ │ ├── ctype.h
│ │ │ │ │ ├── dirent.h
│ │ │ │ │ ├── endian.h
│ │ │ │ │ ├── envlock.h
│ │ │ │ │ ├── envz.h
│ │ │ │ │ ├── errno.h
│ │ │ │ │ ├── fastmath.h
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ ├── fnmatch.h
│ │ │ │ │ ├── getopt.h
│ │ │ │ │ ├── glob.h
│ │ │ │ │ ├── grp.h
│ │ │ │ │ ├── iconv.h
│ │ │ │ │ ├── ieeefp.h
│ │ │ │ │ ├── ifaddrs.h
│ │ │ │ │ ├── inttypes.h
│ │ │ │ │ ├── iso646.h
│ │ │ │ │ ├── langinfo.h
│ │ │ │ │ ├── libgen.h
│ │ │ │ │ ├── limits.h
│ │ │ │ │ ├── locale.h
│ │ │ │ │ ├── machine
│ │ │ │ │ │ ├── ansi.h
│ │ │ │ │ │ ├── _default_types.h
│ │ │ │ │ │ ├── endian.h
│ │ │ │ │ │ ├── fastmath.h
│ │ │ │ │ │ ├── ieeefp.h
│ │ │ │ │ │ ├── malloc.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── setjmp-dj.h
│ │ │ │ │ │ ├── setjmp.h
│ │ │ │ │ │ ├── stdlib.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── time.h
│ │ │ │ │ │ ├── _types.h
│ │ │ │ │ │ └── types.h
│ │ │ │ │ ├── malloc.h
│ │ │ │ │ ├── math.h
│ │ │ │ │ ├── newlib.h
│ │ │ │ │ ├── paths.h
│ │ │ │ │ ├── process.h
│ │ │ │ │ ├── pthread.h
│ │ │ │ │ ├── pwd.h
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── reent.h
│ │ │ │ │ ├── regdef.h
│ │ │ │ │ ├── regex.h
│ │ │ │ │ ├── sched.h
│ │ │ │ │ ├── search.h
│ │ │ │ │ ├── setjmp.h
│ │ │ │ │ ├── signal.h
│ │ │ │ │ ├── stdarg.h
│ │ │ │ │ ├── stddef.h
│ │ │ │ │ ├── stdint.h
│ │ │ │ │ ├── stdio.h
│ │ │ │ │ ├── stdlib.h
│ │ │ │ │ ├── string.h
│ │ │ │ │ ├── strings.h
│ │ │ │ │ ├── sys
│ │ │ │ │ │ ├── cdefs.h
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── custom_file.h
│ │ │ │ │ │ ├── _default_fcntl.h
│ │ │ │ │ │ ├── dirent.h
│ │ │ │ │ │ ├── dir.h
│ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ ├── features.h
│ │ │ │ │ │ ├── file.h
│ │ │ │ │ │ ├── iconvnls.h
│ │ │ │ │ │ ├── lock.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── queue.h
│ │ │ │ │ │ ├── reent.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── sched.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ ├── stdio.h
│ │ │ │ │ │ ├── string.h
│ │ │ │ │ │ ├── syslimits.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── timeb.h
│ │ │ │ │ │ ├── time.h
│ │ │ │ │ │ ├── times.h
│ │ │ │ │ │ ├── ttydefaults.h
│ │ │ │ │ │ ├── _types.h
│ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ ├── unistd.h
│ │ │ │ │ │ ├── utime.h
│ │ │ │ │ │ └── wait.h
│ │ │ │ │ ├── _syslist.h
│ │ │ │ │ ├── tar.h
│ │ │ │ │ ├── termios.h
│ │ │ │ │ ├── time.h
│ │ │ │ │ ├── unctrl.h
│ │ │ │ │ ├── unistd.h
│ │ │ │ │ ├── utime.h
│ │ │ │ │ ├── utmp.h
│ │ │ │ │ ├── wchar.h
│ │ │ │ │ ├── wctype.h
│ │ │ │ │ └── wordexp.h
│ │ │ │ ├── libcxx
│ │ │ │ │ ├── algorithm
│ │ │ │ │ ├── array
│ │ │ │ │ ├── atomic
│ │ │ │ │ ├── __bit_reference
│ │ │ │ │ ├── bitset
│ │ │ │ │ ├── cassert
│ │ │ │ │ ├── ccomplex
│ │ │ │ │ ├── cctype
│ │ │ │ │ ├── cerrno
│ │ │ │ │ ├── cfenv
│ │ │ │ │ ├── cfloat
│ │ │ │ │ ├── chrono
│ │ │ │ │ ├── cinttypes
│ │ │ │ │ ├── ciso646
│ │ │ │ │ ├── climits
│ │ │ │ │ ├── clocale
│ │ │ │ │ ├── cmath
│ │ │ │ │ ├── codecvt
│ │ │ │ │ ├── complex
│ │ │ │ │ ├── complex.h
│ │ │ │ │ ├── condition_variable
│ │ │ │ │ ├── __config
│ │ │ │ │ ├── CREDITS.TXT
│ │ │ │ │ ├── csetjmp
│ │ │ │ │ ├── csignal
│ │ │ │ │ ├── cstdarg
│ │ │ │ │ ├── cstdbool
│ │ │ │ │ ├── cstddef
│ │ │ │ │ ├── cstdint
│ │ │ │ │ ├── cstdio
│ │ │ │ │ ├── cstdlib
│ │ │ │ │ ├── cstring
│ │ │ │ │ ├── ctgmath
│ │ │ │ │ ├── ctime
│ │ │ │ │ ├── cwchar
│ │ │ │ │ ├── cwctype
│ │ │ │ │ ├── __debug
│ │ │ │ │ ├── deque
│ │ │ │ │ ├── exception
│ │ │ │ │ ├── ext
│ │ │ │ │ │ ├── __hash
│ │ │ │ │ │ ├── hash_map
│ │ │ │ │ │ └── hash_set
│ │ │ │ │ ├── forward_list
│ │ │ │ │ ├── fstream
│ │ │ │ │ ├── functional
│ │ │ │ │ ├── __functional_03
│ │ │ │ │ ├── __functional_base
│ │ │ │ │ ├── __functional_base_03
│ │ │ │ │ ├── future
│ │ │ │ │ ├── __hash_table
│ │ │ │ │ ├── initializer_list
│ │ │ │ │ ├── iomanip
│ │ │ │ │ ├── ios
│ │ │ │ │ ├── iosfwd
│ │ │ │ │ ├── iostream
│ │ │ │ │ ├── istream
│ │ │ │ │ ├── iterator
│ │ │ │ │ ├── LICENSE.txt
│ │ │ │ │ ├── limits
│ │ │ │ │ ├── list
│ │ │ │ │ ├── __locale
│ │ │ │ │ ├── locale
│ │ │ │ │ ├── map
│ │ │ │ │ ├── memory
│ │ │ │ │ ├── mutex
│ │ │ │ │ ├── __mutex_base
│ │ │ │ │ ├── new
│ │ │ │ │ ├── numeric
│ │ │ │ │ ├── ostream
│ │ │ │ │ ├── queue
│ │ │ │ │ ├── random
│ │ │ │ │ ├── ratio
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── regex
│ │ │ │ │ ├── scoped_allocator
│ │ │ │ │ ├── set
│ │ │ │ │ ├── __split_buffer
│ │ │ │ │ ├── __sso_allocator
│ │ │ │ │ ├── sstream
│ │ │ │ │ ├── stack
│ │ │ │ │ ├── stdexcept
│ │ │ │ │ ├── __std_stream
│ │ │ │ │ ├── streambuf
│ │ │ │ │ ├── string
│ │ │ │ │ ├── strstream
│ │ │ │ │ ├── support
│ │ │ │ │ │ ├── solaris
│ │ │ │ │ │ │ ├── floatingpoint.h
│ │ │ │ │ │ │ ├── wchar.h
│ │ │ │ │ │ │ └── xlocale.h
│ │ │ │ │ │ └── win32
│ │ │ │ │ │ ├── limits_win32.h
│ │ │ │ │ │ ├── locale_win32.h
│ │ │ │ │ │ ├── math_win32.h
│ │ │ │ │ │ └── support.h
│ │ │ │ │ ├── system_error
│ │ │ │ │ ├── tgmath.h
│ │ │ │ │ ├── thread
│ │ │ │ │ ├── __tree
│ │ │ │ │ ├── __tuple
│ │ │ │ │ ├── tuple
│ │ │ │ │ ├── __tuple_03
│ │ │ │ │ ├── typeindex
│ │ │ │ │ ├── typeinfo
│ │ │ │ │ ├── type_traits
│ │ │ │ │ ├── __undef_min_max
│ │ │ │ │ ├── unordered_map
│ │ │ │ │ ├── unordered_set
│ │ │ │ │ ├── utility
│ │ │ │ │ ├── valarray
│ │ │ │ │ └── vector
│ │ │ │ ├── memory.h
│ │ │ │ ├── mntent.h
│ │ │ │ ├── net
│ │ │ │ │ ├── arpa
│ │ │ │ │ │ ├── inet.h
│ │ │ │ │ │ ├── nameser_compat.h
│ │ │ │ │ │ └── nameser.h
│ │ │ │ │ ├── if.h
│ │ │ │ │ ├── netinet
│ │ │ │ │ │ ├── in.h
│ │ │ │ │ │ └── tcp.h
│ │ │ │ │ └── resolv.h
│ │ │ │ ├── netdb.h
│ │ │ │ ├── nl_types.h
│ │ │ │ ├── poll.h
│ │ │ │ ├── pty.h
│ │ │ │ ├── SDL
│ │ │ │ │ ├── begin_code.h
│ │ │ │ │ ├── close_code.h
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── SDL_assert.h
│ │ │ │ │ ├── SDL_atomic.h
│ │ │ │ │ ├── SDL_audio.h
│ │ │ │ │ ├── SDL_blendmode.h
│ │ │ │ │ ├── SDL_clipboard.h
│ │ │ │ │ ├── SDL_compat.h
│ │ │ │ │ ├── SDL_config_android.h
│ │ │ │ │ ├── SDL_config.h
│ │ │ │ │ ├── SDL_config.h.in
│ │ │ │ │ ├── SDL_config_iphoneos.h
│ │ │ │ │ ├── SDL_config_macosx.h
│ │ │ │ │ ├── SDL_config_minimal.h
│ │ │ │ │ ├── SDL_config_nintendods.h
│ │ │ │ │ ├── SDL_config_pandora.h
│ │ │ │ │ ├── SDL_config_windows.h
│ │ │ │ │ ├── SDL_config_wiz.h
│ │ │ │ │ ├── SDL_copying.h
│ │ │ │ │ ├── SDL_cpuinfo.h
│ │ │ │ │ ├── SDL_endian.h
│ │ │ │ │ ├── SDL_error.h
│ │ │ │ │ ├── SDL_events.h
│ │ │ │ │ ├── SDL_gesture.h
│ │ │ │ │ ├── SDL_gfxPrimitives.h
│ │ │ │ │ ├── SDL.h
│ │ │ │ │ ├── SDL_haptic.h
│ │ │ │ │ ├── SDL_hints.h
│ │ │ │ │ ├── SDL_image.h
│ │ │ │ │ ├── SDL_input.h
│ │ │ │ │ ├── SDL_joystick.h
│ │ │ │ │ ├── SDL_keyboard.h
│ │ │ │ │ ├── SDL_keycode.h
│ │ │ │ │ ├── SDL_loadso.h
│ │ │ │ │ ├── SDL_log.h
│ │ │ │ │ ├── SDL_main.h
│ │ │ │ │ ├── SDL_mixer.h
│ │ │ │ │ ├── SDL_mouse.h
│ │ │ │ │ ├── SDL_mutex.h
│ │ │ │ │ ├── SDL_name.h
│ │ │ │ │ ├── SDL_opengles2.h
│ │ │ │ │ ├── SDL_opengles.h
│ │ │ │ │ ├── SDL_opengl.h
│ │ │ │ │ ├── SDL_pixels.h
│ │ │ │ │ ├── SDL_platform.h
│ │ │ │ │ ├── SDL_power.h
│ │ │ │ │ ├── SDL_quit.h
│ │ │ │ │ ├── SDL_rect.h
│ │ │ │ │ ├── SDL_render.h
│ │ │ │ │ ├── SDL_revision.h
│ │ │ │ │ ├── SDL_revision.h.orig
│ │ │ │ │ ├── SDL_rotozoom.h
│ │ │ │ │ ├── SDL_rwops.h
│ │ │ │ │ ├── SDL_scancode.h
│ │ │ │ │ ├── SDL_shape.h
│ │ │ │ │ ├── SDL_stdinc.h
│ │ │ │ │ ├── SDL_surface.h
│ │ │ │ │ ├── SDL_syswm.h
│ │ │ │ │ ├── SDL_thread.h
│ │ │ │ │ ├── SDL_timer.h
│ │ │ │ │ ├── SDL_touch.h
│ │ │ │ │ ├── SDL_ttf.h
│ │ │ │ │ ├── SDL_types.h
│ │ │ │ │ ├── SDL_version.h
│ │ │ │ │ └── SDL_video.h
│ │ │ │ ├── semaphore.h
│ │ │ │ ├── spawn.h
│ │ │ │ ├── stdbool.h
│ │ │ │ ├── sys
│ │ │ │ │ ├── bitypes.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── io.h
│ │ │ │ │ ├── poll.h
│ │ │ │ │ ├── select.h
│ │ │ │ │ ├── socket.h
│ │ │ │ │ ├── socketvar.h
│ │ │ │ │ ├── statvfs.h
│ │ │ │ │ ├── sysctl.h
│ │ │ │ │ ├── uio.h
│ │ │ │ │ └── un.h
│ │ │ │ ├── sysexits.h
│ │ │ │ ├── unwind.h
│ │ │ │ ├── X11
│ │ │ │ │ ├── keysymdef.h
│ │ │ │ │ ├── keysym.h
│ │ │ │ │ ├── Xatom.h
│ │ │ │ │ ├── Xfuncproto.h
│ │ │ │ │ ├── X.h
│ │ │ │ │ ├── Xlib.h
│ │ │ │ │ ├── Xosdefs.h
│ │ │ │ │ └── Xutil.h
│ │ │ │ ├── xlocale.h
│ │ │ │ ├── zconf.h
│ │ │ │ └── zlib.h
│ │ │ └── lib
│ │ │ ├── compiler-rt
│ │ │ │ ├── divdi3.c
│ │ │ │ ├── int_endianness.h
│ │ │ │ ├── int_lib.h
│ │ │ │ ├── int_math.h
│ │ │ │ ├── int_types.h
│ │ │ │ ├── int_util.h
│ │ │ │ ├── LICENSE.TXT
│ │ │ │ ├── muldi3.c
│ │ │ │ ├── readme.txt
│ │ │ │ ├── udivdi3.c
│ │ │ │ └── udivmoddi4.c
│ │ │ ├── debugging.cpp
│ │ │ ├── dlmalloc.c
│ │ │ ├── embind
│ │ │ │ └── bind.cpp
│ │ │ ├── libc
│ │ │ │ ├── gen
│ │ │ │ │ ├── err.c
│ │ │ │ │ ├── errx.c
│ │ │ │ │ ├── verr.c
│ │ │ │ │ ├── verrx.c
│ │ │ │ │ ├── vwarn.c
│ │ │ │ │ ├── vwarnx.c
│ │ │ │ │ ├── warn.c
│ │ │ │ │ └── warnx.c
│ │ │ │ ├── musl
│ │ │ │ │ ├── COPYRIGHT
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ └── src
│ │ │ │ │ ├── ctype
│ │ │ │ │ │ ├── alpha.h
│ │ │ │ │ │ ├── iswalnum.c
│ │ │ │ │ │ ├── iswalpha.c
│ │ │ │ │ │ ├── iswblank.c
│ │ │ │ │ │ ├── iswcntrl.c
│ │ │ │ │ │ ├── iswctype.c
│ │ │ │ │ │ ├── iswdigit.c
│ │ │ │ │ │ ├── iswgraph.c
│ │ │ │ │ │ ├── iswlower.c
│ │ │ │ │ │ ├── iswprint.c
│ │ │ │ │ │ ├── iswpunct.c
│ │ │ │ │ │ ├── iswspace.c
│ │ │ │ │ │ ├── iswupper.c
│ │ │ │ │ │ ├── iswxdigit.c
│ │ │ │ │ │ ├── nonspacing.h
│ │ │ │ │ │ ├── punct.h
│ │ │ │ │ │ ├── towctrans.c
│ │ │ │ │ │ ├── wcswidth.c
│ │ │ │ │ │ ├── wctrans.c
│ │ │ │ │ │ ├── wcwidth.c
│ │ │ │ │ │ └── wide.h
│ │ │ │ │ ├── internal
│ │ │ │ │ │ ├── libc.c
│ │ │ │ │ │ └── libc.h
│ │ │ │ │ ├── multibyte
│ │ │ │ │ │ ├── btowc.c
│ │ │ │ │ │ ├── internal.c
│ │ │ │ │ │ ├── internal.h
│ │ │ │ │ │ ├── mblen.c
│ │ │ │ │ │ ├── mbrlen.c
│ │ │ │ │ │ ├── mbrtowc.c
│ │ │ │ │ │ ├── mbsinit.c
│ │ │ │ │ │ ├── mbsnrtowcs.c
│ │ │ │ │ │ ├── mbsrtowcs.c
│ │ │ │ │ │ ├── mbstowcs.c
│ │ │ │ │ │ ├── mbtowc.c
│ │ │ │ │ │ ├── wcrtomb.c
│ │ │ │ │ │ ├── wcsnrtombs.c
│ │ │ │ │ │ ├── wcsrtombs.c
│ │ │ │ │ │ ├── wcstombs.c
│ │ │ │ │ │ ├── wctob.c
│ │ │ │ │ │ └── wctomb.c
│ │ │ │ │ └── string
│ │ │ │ │ ├── wcpcpy.c
│ │ │ │ │ ├── wcpncpy.c
│ │ │ │ │ ├── wcscasecmp.c
│ │ │ │ │ ├── wcscasecmp_l.c
│ │ │ │ │ ├── wcscat.c
│ │ │ │ │ ├── wcschr.c
│ │ │ │ │ ├── wcscmp.c
│ │ │ │ │ ├── wcscpy.c
│ │ │ │ │ ├── wcscspn.c
│ │ │ │ │ ├── wcsdup.c
│ │ │ │ │ ├── wcslen.c
│ │ │ │ │ ├── wcsncasecmp.c
│ │ │ │ │ ├── wcsncasecmp_l.c
│ │ │ │ │ ├── wcsncat.c
│ │ │ │ │ ├── wcsncmp.c
│ │ │ │ │ ├── wcsncpy.c
│ │ │ │ │ ├── wcsnlen.c
│ │ │ │ │ ├── wcspbrk.c
│ │ │ │ │ ├── wcsrchr.c
│ │ │ │ │ ├── wcsspn.c
│ │ │ │ │ ├── wcsstr.c
│ │ │ │ │ ├── wcstok.c
│ │ │ │ │ ├── wcswcs.c
│ │ │ │ │ ├── wmemchr.c
│ │ │ │ │ ├── wmemcmp.c
│ │ │ │ │ ├── wmemcpy.c
│ │ │ │ │ ├── wmemmove.c
│ │ │ │ │ └── wmemset.c
│ │ │ │ └── stdlib
│ │ │ │ ├── getopt_long.c
│ │ │ │ └── strtod.c
│ │ │ ├── libcextra.symbols
│ │ │ ├── libc.symbols
│ │ │ ├── libcxx
│ │ │ │ ├── algorithm.cpp
│ │ │ │ ├── bind.cpp
│ │ │ │ ├── chrono.cpp
│ │ │ │ ├── condition_variable.cpp
│ │ │ │ ├── CREDITS.TXT
│ │ │ │ ├── debug.cpp
│ │ │ │ ├── exception.cpp
│ │ │ │ ├── future.cpp
│ │ │ │ ├── hash.cpp
│ │ │ │ ├── ios.cpp
│ │ │ │ ├── iostream.cpp
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── locale.cpp
│ │ │ │ ├── memory.cpp
│ │ │ │ ├── mutex.cpp
│ │ │ │ ├── new.cpp
│ │ │ │ ├── random.cpp
│ │ │ │ ├── readme.txt
│ │ │ │ ├── regex.cpp
│ │ │ │ ├── stdexcept.cpp
│ │ │ │ ├── string.cpp
│ │ │ │ ├── strstream.cpp
│ │ │ │ ├── support
│ │ │ │ │ ├── solaris
│ │ │ │ │ │ ├── mbsnrtowcs.inc
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── wcsnrtombs.inc
│ │ │ │ │ │ └── xlocale.c
│ │ │ │ │ └── win32
│ │ │ │ │ ├── locale_win32.cpp
│ │ │ │ │ └── support.cpp
│ │ │ │ ├── symbols
│ │ │ │ ├── system_error.cpp
│ │ │ │ ├── thread.cpp
│ │ │ │ ├── typeinfo.cpp
│ │ │ │ ├── utility.cpp
│ │ │ │ └── valarray.cpp
│ │ │ ├── libcxxabi
│ │ │ │ ├── CREDITS.TXT
│ │ │ │ ├── include
│ │ │ │ │ ├── cxa_demangle.h
│ │ │ │ │ └── cxxabi.h
│ │ │ │ ├── lib
│ │ │ │ │ └── buildit
│ │ │ │ ├── LICENSE.TXT
│ │ │ │ ├── readme.txt
│ │ │ │ ├── src
│ │ │ │ │ ├── abort_message.cpp
│ │ │ │ │ ├── abort_message.h
│ │ │ │ │ ├── cxa_aux_runtime.cpp
│ │ │ │ │ ├── cxa_demangle.cpp
│ │ │ │ │ ├── cxa_exception.cpp
│ │ │ │ │ ├── cxa_exception.hpp
│ │ │ │ │ ├── cxa_exception_storage.cpp
│ │ │ │ │ ├── cxa_guard.cpp
│ │ │ │ │ ├── cxa_handlers.cpp
│ │ │ │ │ ├── cxa_handlers.hpp
│ │ │ │ │ ├── cxa_new_delete.cpp
│ │ │ │ │ ├── cxa_personality.cpp
│ │ │ │ │ ├── cxa_unexpected.cpp
│ │ │ │ │ ├── cxa_vector.cpp
│ │ │ │ │ ├── cxa_virtual.cpp
│ │ │ │ │ ├── exception.cpp
│ │ │ │ │ ├── fallback_malloc.ipp
│ │ │ │ │ ├── private_typeinfo.cpp
│ │ │ │ │ ├── private_typeinfo.h
│ │ │ │ │ ├── stdexcept.cpp
│ │ │ │ │ └── typeinfo.cpp
│ │ │ │ └── symbols
│ │ │ ├── sdl.cpp
│ │ │ └── sdl.symbols
│ │ ├── tests
│ │ │ ├── 799.cpp
│ │ │ ├── aniso.c
│ │ │ ├── aniso.png
│ │ │ ├── autoassemble.c
│ │ │ ├── bigswitch.cpp
│ │ │ ├── bloom.dds
│ │ │ ├── box2d
│ │ │ │ ├── Benchmark.cpp
│ │ │ │ ├── Box2D
│ │ │ │ │ ├── Box2DConfig.cmake
│ │ │ │ │ ├── Box2D.h
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Collision
│ │ │ │ │ │ ├── b2BroadPhase.cpp
│ │ │ │ │ │ ├── b2BroadPhase.h
│ │ │ │ │ │ ├── b2CollideCircle.cpp
│ │ │ │ │ │ ├── b2CollideEdge.cpp
│ │ │ │ │ │ ├── b2CollidePolygon.cpp
│ │ │ │ │ │ ├── b2Collision.cpp
│ │ │ │ │ │ ├── b2Collision.h
│ │ │ │ │ │ ├── b2Distance.cpp
│ │ │ │ │ │ ├── b2Distance.h
│ │ │ │ │ │ ├── b2DynamicTree.cpp
│ │ │ │ │ │ ├── b2DynamicTree.h
│ │ │ │ │ │ ├── b2TimeOfImpact.cpp
│ │ │ │ │ │ ├── b2TimeOfImpact.h
│ │ │ │ │ │ └── Shapes
│ │ │ │ │ │ ├── b2ChainShape.cpp
│ │ │ │ │ │ ├── b2ChainShape.h
│ │ │ │ │ │ ├── b2CircleShape.cpp
│ │ │ │ │ │ ├── b2CircleShape.h
│ │ │ │ │ │ ├── b2EdgeShape.cpp
│ │ │ │ │ │ ├── b2EdgeShape.h
│ │ │ │ │ │ ├── b2PolygonShape.cpp
│ │ │ │ │ │ ├── b2PolygonShape.h
│ │ │ │ │ │ └── b2Shape.h
│ │ │ │ │ ├── Common
│ │ │ │ │ │ ├── b2BlockAllocator.cpp
│ │ │ │ │ │ ├── b2BlockAllocator.h
│ │ │ │ │ │ ├── b2Draw.cpp
│ │ │ │ │ │ ├── b2Draw.h
│ │ │ │ │ │ ├── b2GrowableStack.h
│ │ │ │ │ │ ├── b2Math.cpp
│ │ │ │ │ │ ├── b2Math.h
│ │ │ │ │ │ ├── b2Settings.cpp
│ │ │ │ │ │ ├── b2Settings.h
│ │ │ │ │ │ ├── b2StackAllocator.cpp
│ │ │ │ │ │ ├── b2StackAllocator.h
│ │ │ │ │ │ ├── b2Timer.cpp
│ │ │ │ │ │ └── b2Timer.h
│ │ │ │ │ ├── Dynamics
│ │ │ │ │ │ ├── b2Body.cpp
│ │ │ │ │ │ ├── b2Body.h
│ │ │ │ │ │ ├── b2ContactManager.cpp
│ │ │ │ │ │ ├── b2ContactManager.h
│ │ │ │ │ │ ├── b2Fixture.cpp
│ │ │ │ │ │ ├── b2Fixture.h
│ │ │ │ │ │ ├── b2Island.cpp
│ │ │ │ │ │ ├── b2Island.h
│ │ │ │ │ │ ├── b2TimeStep.h
│ │ │ │ │ │ ├── b2WorldCallbacks.cpp
│ │ │ │ │ │ ├── b2WorldCallbacks.h
│ │ │ │ │ │ ├── b2World.cpp
│ │ │ │ │ │ ├── b2World.h
│ │ │ │ │ │ ├── Contacts
│ │ │ │ │ │ │ ├── b2ChainAndCircleContact.cpp
│ │ │ │ │ │ │ ├── b2ChainAndCircleContact.h
│ │ │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp
│ │ │ │ │ │ │ ├── b2ChainAndPolygonContact.h
│ │ │ │ │ │ │ ├── b2CircleContact.cpp
│ │ │ │ │ │ │ ├── b2CircleContact.h
│ │ │ │ │ │ │ ├── b2Contact.cpp
│ │ │ │ │ │ │ ├── b2Contact.h
│ │ │ │ │ │ │ ├── b2ContactSolver.cpp
│ │ │ │ │ │ │ ├── b2ContactSolver.h
│ │ │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp
│ │ │ │ │ │ │ ├── b2EdgeAndCircleContact.h
│ │ │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp
│ │ │ │ │ │ │ ├── b2EdgeAndPolygonContact.h
│ │ │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp
│ │ │ │ │ │ │ ├── b2PolygonAndCircleContact.h
│ │ │ │ │ │ │ ├── b2PolygonContact.cpp
│ │ │ │ │ │ │ └── b2PolygonContact.h
│ │ │ │ │ │ └── Joints
│ │ │ │ │ │ ├── b2DistanceJoint.cpp
│ │ │ │ │ │ ├── b2DistanceJoint.h
│ │ │ │ │ │ ├── b2FrictionJoint.cpp
│ │ │ │ │ │ ├── b2FrictionJoint.h
│ │ │ │ │ │ ├── b2GearJoint.cpp
│ │ │ │ │ │ ├── b2GearJoint.h
│ │ │ │ │ │ ├── b2Joint.cpp
│ │ │ │ │ │ ├── b2Joint.h
│ │ │ │ │ │ ├── b2MouseJoint.cpp
│ │ │ │ │ │ ├── b2MouseJoint.h
│ │ │ │ │ │ ├── b2PrismaticJoint.cpp
│ │ │ │ │ │ ├── b2PrismaticJoint.h
│ │ │ │ │ │ ├── b2PulleyJoint.cpp
│ │ │ │ │ │ ├── b2PulleyJoint.h
│ │ │ │ │ │ ├── b2RevoluteJoint.cpp
│ │ │ │ │ │ ├── b2RevoluteJoint.h
│ │ │ │ │ │ ├── b2RopeJoint.cpp
│ │ │ │ │ │ ├── b2RopeJoint.h
│ │ │ │ │ │ ├── b2WeldJoint.cpp
│ │ │ │ │ │ ├── b2WeldJoint.h
│ │ │ │ │ │ ├── b2WheelJoint.cpp
│ │ │ │ │ │ └── b2WheelJoint.h
│ │ │ │ │ └── Rope
│ │ │ │ │ ├── b2Rope.cpp
│ │ │ │ │ └── b2Rope.h
│ │ │ │ ├── Build
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── vs2010
│ │ │ │ │ │ ├── Box2D.sln
│ │ │ │ │ │ ├── Box2D.vcxproj
│ │ │ │ │ │ ├── Box2D.vcxproj.filters
│ │ │ │ │ │ ├── FreeGLUT.vcxproj
│ │ │ │ │ │ ├── FreeGLUT.vcxproj.filters
│ │ │ │ │ │ ├── GLUI.vcxproj
│ │ │ │ │ │ ├── GLUI.vcxproj.filters
│ │ │ │ │ │ ├── HelloWorld.vcxproj
│ │ │ │ │ │ ├── HelloWorld.vcxproj.filters
│ │ │ │ │ │ ├── Testbed.vcxproj
│ │ │ │ │ │ └── Testbed.vcxproj.filters
│ │ │ │ │ └── xcode4
│ │ │ │ │ └── Box2D.xcodeproj
│ │ │ │ │ ├── project.pbxproj
│ │ │ │ │ └── project.xcworkspace
│ │ │ │ │ └── contents.xcworkspacedata
│ │ │ │ ├── Building.txt
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── freeglut
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── freeglut_callbacks.c
│ │ │ │ │ ├── freeglut_cursor.c
│ │ │ │ │ ├── freeglut_display.c
│ │ │ │ │ ├── freeglut_ext.c
│ │ │ │ │ ├── freeglut_ext.h
│ │ │ │ │ ├── freeglut_font.c
│ │ │ │ │ ├── freeglut_font_data.c
│ │ │ │ │ ├── freeglut_gamemode.c
│ │ │ │ │ ├── freeglut_geometry.c
│ │ │ │ │ ├── freeglut_glutfont_definitions.c
│ │ │ │ │ ├── freeglut.h
│ │ │ │ │ ├── freeglut_init.c
│ │ │ │ │ ├── freeglut_input_devices.c
│ │ │ │ │ ├── freeglut_internal.h
│ │ │ │ │ ├── freeglut_joystick.c
│ │ │ │ │ ├── freeglut_main.c
│ │ │ │ │ ├── freeglut_menu.c
│ │ │ │ │ ├── freeglut_misc.c
│ │ │ │ │ ├── freeglut_overlay.c
│ │ │ │ │ ├── freeglut_spaceball.c
│ │ │ │ │ ├── freeglut_state.c
│ │ │ │ │ ├── freeglut_std.h
│ │ │ │ │ ├── freeglut_stroke_mono_roman.c
│ │ │ │ │ ├── freeglut_stroke_roman.c
│ │ │ │ │ ├── freeglut_structure.c
│ │ │ │ │ ├── freeglut_teapot.c
│ │ │ │ │ ├── freeglut_teapot_data.h
│ │ │ │ │ ├── freeglut_videoresize.c
│ │ │ │ │ └── freeglut_window.c
│ │ │ │ ├── glui
│ │ │ │ │ ├── algebra3.cpp
│ │ │ │ │ ├── algebra3.h
│ │ │ │ │ ├── arcball.cpp
│ │ │ │ │ ├── arcball.h
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── 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.cpp
│ │ │ │ │ ├── glui_edittext.cpp
│ │ │ │ │ ├── glui_filebrowser.cpp
│ │ │ │ │ ├── glui.h
│ │ │ │ │ ├── glui_internal_control.h
│ │ │ │ │ ├── glui_internal.h
│ │ │ │ │ ├── glui_listbox.cpp
│ │ │ │ │ ├── glui_list.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
│ │ │ │ ├── HelloWorld
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ └── HelloWorld.cpp
│ │ │ │ ├── License.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── premake4.lua
│ │ │ │ ├── Readme.txt
│ │ │ │ └── Testbed
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Framework
│ │ │ │ │ ├── Main.cpp
│ │ │ │ │ ├── Render.cpp
│ │ │ │ │ ├── Render.h
│ │ │ │ │ ├── Test.cpp
│ │ │ │ │ └── Test.h
│ │ │ │ └── Tests
│ │ │ │ ├── AddPair.h
│ │ │ │ ├── ApplyForce.h
│ │ │ │ ├── BodyTypes.h
│ │ │ │ ├── Breakable.h
│ │ │ │ ├── Bridge.h
│ │ │ │ ├── BulletTest.h
│ │ │ │ ├── Cantilever.h
│ │ │ │ ├── Car.h
│ │ │ │ ├── Chain.h
│ │ │ │ ├── CharacterCollision.h
│ │ │ │ ├── CollisionFiltering.h
│ │ │ │ ├── CollisionProcessing.h
│ │ │ │ ├── CompoundShapes.h
│ │ │ │ ├── Confined.h
│ │ │ │ ├── ContinuousTest.h
│ │ │ │ ├── DistanceTest.h
│ │ │ │ ├── Dominos.h
│ │ │ │ ├── DumpShell.h
│ │ │ │ ├── DynamicTreeTest.h
│ │ │ │ ├── EdgeShapes.h
│ │ │ │ ├── EdgeTest.h
│ │ │ │ ├── Gears.h
│ │ │ │ ├── OneSidedPlatform.h
│ │ │ │ ├── Pinball.h
│ │ │ │ ├── PolyCollision.h
│ │ │ │ ├── PolyShapes.h
│ │ │ │ ├── Prismatic.h
│ │ │ │ ├── Pulleys.h
│ │ │ │ ├── Pyramid.h
│ │ │ │ ├── RayCast.h
│ │ │ │ ├── Revolute.h
│ │ │ │ ├── Rope.h
│ │ │ │ ├── RopeJoint.h
│ │ │ │ ├── SensorTest.h
│ │ │ │ ├── ShapeEditing.h
│ │ │ │ ├── SliderCrank.h
│ │ │ │ ├── SphereStack.h
│ │ │ │ ├── TestEntries.cpp
│ │ │ │ ├── TheoJansen.h
│ │ │ │ ├── Tiles.h
│ │ │ │ ├── TimeOfImpact.h
│ │ │ │ ├── Tumbler.h
│ │ │ │ ├── VaryingFriction.h
│ │ │ │ ├── VaryingRestitution.h
│ │ │ │ ├── VerticalStack.h
│ │ │ │ └── Web.h
│ │ │ ├── browser_gc.cpp
│ │ │ ├── browser_harness.html
│ │ │ ├── bullet
│ │ │ │ ├── acinclude.m4
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── autogen.sh
│ │ │ │ ├── BulletLicense.txt
│ │ │ │ ├── bullet.pc.cmake
│ │ │ │ ├── bullet.pc.in
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── compile
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.h.in
│ │ │ │ ├── config.sub
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── convex0.bin
│ │ │ │ ├── COPYING
│ │ │ │ ├── Demos
│ │ │ │ │ ├── Benchmarks
│ │ │ │ │ │ ├── BenchmarkDemo.cpp
│ │ │ │ │ │ ├── BenchmarkDemo.h
│ │ │ │ │ │ ├── landscape.mdl
│ │ │ │ │ │ ├── main.cpp
│ │ │ │ │ │ └── Taru.mdl
│ │ │ │ │ └── HelloWorld
│ │ │ │ │ └── HelloWorld.cpp
│ │ │ │ ├── depcomp
│ │ │ │ ├── Doxyfile
│ │ │ │ ├── Extras
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── ConvexDecomposition
│ │ │ │ │ │ ├── bestfit.cpp
│ │ │ │ │ │ ├── bestfit.h
│ │ │ │ │ │ ├── bestfitobb.cpp
│ │ │ │ │ │ ├── bestfitobb.h
│ │ │ │ │ │ ├── cd_hull.cpp
│ │ │ │ │ │ ├── cd_hull.h
│ │ │ │ │ │ ├── cd_vector.h
│ │ │ │ │ │ ├── cd_wavefront.cpp
│ │ │ │ │ │ ├── cd_wavefront.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── concavity.cpp
│ │ │ │ │ │ ├── concavity.h
│ │ │ │ │ │ ├── ConvexBuilder.cpp
│ │ │ │ │ │ ├── ConvexBuilder.h
│ │ │ │ │ │ ├── ConvexDecomposition.cpp
│ │ │ │ │ │ ├── ConvexDecomposition.h
│ │ │ │ │ │ ├── fitsphere.cpp
│ │ │ │ │ │ ├── fitsphere.h
│ │ │ │ │ │ ├── float_math.cpp
│ │ │ │ │ │ ├── float_math.h
│ │ │ │ │ │ ├── meshvolume.cpp
│ │ │ │ │ │ ├── meshvolume.h
│ │ │ │ │ │ ├── planetri.cpp
│ │ │ │ │ │ ├── planetri.h
│ │ │ │ │ │ ├── raytri.cpp
│ │ │ │ │ │ ├── raytri.h
│ │ │ │ │ │ ├── splitplane.cpp
│ │ │ │ │ │ ├── splitplane.h
│ │ │ │ │ │ ├── vlookup.cpp
│ │ │ │ │ │ └── vlookup.h
│ │ │ │ │ ├── glui
│ │ │ │ │ │ ├── algebra3.cpp
│ │ │ │ │ │ ├── algebra3.h
│ │ │ │ │ │ ├── arcball.cpp
│ │ │ │ │ │ ├── arcball.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── GL
│ │ │ │ │ │ │ └── glui.h
│ │ │ │ │ │ ├── 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.cpp
│ │ │ │ │ │ ├── glui_edittext.cpp
│ │ │ │ │ │ ├── glui_filebrowser.cpp
│ │ │ │ │ │ ├── glui_internal_control.h
│ │ │ │ │ │ ├── glui_internal.h
│ │ │ │ │ │ ├── glui_listbox.cpp
│ │ │ │ │ │ ├── glui_list.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
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ ├── INSTALL
│ │ │ │ ├── install-sh
│ │ │ │ ├── lib
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── LICENSE
│ │ │ │ ├── ltmain.sh
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── missing
│ │ │ │ ├── NEWS
│ │ │ │ ├── output2.txt
│ │ │ │ ├── output3.txt
│ │ │ │ ├── output.txt
│ │ │ │ ├── README
│ │ │ │ ├── readme.txt
│ │ │ │ ├── RELEASING.TXT
│ │ │ │ ├── src
│ │ │ │ │ ├── btBulletCollisionCommon.h
│ │ │ │ │ ├── btBulletDynamicsCommon.h
│ │ │ │ │ ├── Bullet-C-Api.h
│ │ │ │ │ ├── BulletCollision
│ │ │ │ │ │ ├── BroadphaseCollision
│ │ │ │ │ │ │ ├── btAxisSweep3.cpp
│ │ │ │ │ │ │ ├── btAxisSweep3.h
│ │ │ │ │ │ │ ├── btBroadphaseInterface.h
│ │ │ │ │ │ │ ├── btBroadphaseProxy.cpp
│ │ │ │ │ │ │ ├── btBroadphaseProxy.h
│ │ │ │ │ │ │ ├── btCollisionAlgorithm.cpp
│ │ │ │ │ │ │ ├── btCollisionAlgorithm.h
│ │ │ │ │ │ │ ├── btDbvtBroadphase.cpp
│ │ │ │ │ │ │ ├── btDbvtBroadphase.h
│ │ │ │ │ │ │ ├── btDbvt.cpp
│ │ │ │ │ │ │ ├── btDbvt.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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── SphereTriangleDetector.cpp
│ │ │ │ │ │ │ └── SphereTriangleDetector.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
│ │ │ │ │ │ │ ├── btMultimaterialTriangleMeshShape.cpp
│ │ │ │ │ │ │ ├── btMultimaterialTriangleMeshShape.h
│ │ │ │ │ │ │ ├── btMultiSphereShape.cpp
│ │ │ │ │ │ │ ├── btMultiSphereShape.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
│ │ │ │ │ │ │ ├── btGenericPoolAllocator.cpp
│ │ │ │ │ │ │ ├── btGenericPoolAllocator.h
│ │ │ │ │ │ │ ├── btGeometryOperations.h
│ │ │ │ │ │ │ ├── btGImpactBvh.cpp
│ │ │ │ │ │ │ ├── btGImpactBvh.h
│ │ │ │ │ │ │ ├── btGImpactCollisionAlgorithm.cpp
│ │ │ │ │ │ │ ├── btGImpactCollisionAlgorithm.h
│ │ │ │ │ │ │ ├── btGImpactMassUtil.h
│ │ │ │ │ │ │ ├── btGImpactQuantizedBvh.cpp
│ │ │ │ │ │ │ ├── btGImpactQuantizedBvh.h
│ │ │ │ │ │ │ ├── btGImpactShape.cpp
│ │ │ │ │ │ │ ├── btGImpactShape.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_geometry.h
│ │ │ │ │ │ │ ├── gim_geom_types.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
│ │ │ │ │ │ ├── ibmsdk
│ │ │ │ │ │ │ └── Makefile
│ │ │ │ │ │ └── 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
│ │ │ │ │ ├── BulletDynamics
│ │ │ │ │ │ ├── Character
│ │ │ │ │ │ │ ├── btCharacterControllerInterface.h
│ │ │ │ │ │ │ ├── btKinematicCharacterController.cpp
│ │ │ │ │ │ │ └── btKinematicCharacterController.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── ConstraintSolver
│ │ │ │ │ │ │ ├── btConeTwistConstraint.cpp
│ │ │ │ │ │ │ ├── btConeTwistConstraint.h
│ │ │ │ │ │ │ ├── btConstraintSolver.h
│ │ │ │ │ │ │ ├── btContactConstraint.cpp
│ │ │ │ │ │ │ ├── btContactConstraint.h
│ │ │ │ │ │ │ ├── btContactSolverInfo.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
│ │ │ │ │ │ │ ├── btActionInterface.h
│ │ │ │ │ │ │ ├── btContinuousDynamicsWorld.cpp
│ │ │ │ │ │ │ ├── btContinuousDynamicsWorld.h
│ │ │ │ │ │ │ ├── btDiscreteDynamicsWorld.cpp
│ │ │ │ │ │ │ ├── btDiscreteDynamicsWorld.h
│ │ │ │ │ │ │ ├── btDynamicsWorld.h
│ │ │ │ │ │ │ ├── btRigidBody.cpp
│ │ │ │ │ │ │ ├── btRigidBody.h
│ │ │ │ │ │ │ ├── btSimpleDynamicsWorld.cpp
│ │ │ │ │ │ │ ├── btSimpleDynamicsWorld.h
│ │ │ │ │ │ │ └── Bullet-C-API.cpp
│ │ │ │ │ │ ├── ibmsdk
│ │ │ │ │ │ │ └── Makefile
│ │ │ │ │ │ └── Vehicle
│ │ │ │ │ │ ├── btRaycastVehicle.cpp
│ │ │ │ │ │ ├── btRaycastVehicle.h
│ │ │ │ │ │ ├── btVehicleRaycaster.h
│ │ │ │ │ │ ├── btWheelInfo.cpp
│ │ │ │ │ │ └── btWheelInfo.h
│ │ │ │ │ ├── BulletMultiThreaded
│ │ │ │ │ │ ├── btGpu3DGridBroadphase.cpp
│ │ │ │ │ │ ├── btGpu3DGridBroadphase.h
│ │ │ │ │ │ ├── btGpu3DGridBroadphaseSharedCode.h
│ │ │ │ │ │ ├── btGpu3DGridBroadphaseSharedDefs.h
│ │ │ │ │ │ ├── btGpu3DGridBroadphaseSharedTypes.h
│ │ │ │ │ │ ├── btGpuDefines.h
│ │ │ │ │ │ ├── btGpuUtilsSharedCode.h
│ │ │ │ │ │ ├── btGpuUtilsSharedDefs.h
│ │ │ │ │ │ ├── btParallelConstraintSolver.cpp
│ │ │ │ │ │ ├── btParallelConstraintSolver.h
│ │ │ │ │ │ ├── btThreadSupportInterface.cpp
│ │ │ │ │ │ ├── btThreadSupportInterface.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── GpuSoftBodySolvers
│ │ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ │ ├── CPU
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_CPU.cpp
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_CPU.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverData.h
│ │ │ │ │ │ │ │ └── CMakeLists.txt
│ │ │ │ │ │ │ ├── DX11
│ │ │ │ │ │ │ │ ├── btSoftBodySolverBuffer_DX11.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_DX11.cpp
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_DX11.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.cpp
│ │ │ │ │ │ │ │ ├── btSoftBodySolver_DX11SIMDAware.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverLinkData_DX11SIMDAware.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverTriangleData_DX11.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_DX11.h
│ │ │ │ │ │ │ │ ├── btSoftBodySolverVertexData_DX11.h
│ │ │ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ │ │ └── HLSL
│ │ │ │ │ │ │ │ ├── ApplyForces.hlsl
│ │ │ │ │ │ │ │ ├── ComputeBounds.hlsl
│ │ │ │ │ │ │ │ ├── Integrate.hlsl
│ │ │ │ │ │ │ │ ├── OutputToVertexArray.hlsl
│ │ │ │ │ │ │ │ ├── PrepareLinks.hlsl
│ │ │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocities.hlsl
│ │ │ │ │ │ │ │ ├── solveCollisionsAndUpdateVelocitiesSIMDBatched.hlsl
│ │ │ │ │ │ │ │ ├── SolvePositions.hlsl
│ │ │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.hlsl
│ │ │ │ │ │ │ │ ├── UpdateConstants.hlsl
│ │ │ │ │ │ │ │ ├── UpdateNodes.hlsl
│ │ │ │ │ │ │ │ ├── UpdateNormals.hlsl
│ │ │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.hlsl
│ │ │ │ │ │ │ │ ├── UpdatePositions.hlsl
│ │ │ │ │ │ │ │ └── VSolveLinks.hlsl
│ │ │ │ │ │ │ └── OpenCL
│ │ │ │ │ │ │ ├── AMD
│ │ │ │ │ │ │ │ └── CMakeLists.txt
│ │ │ │ │ │ │ ├── Apple
│ │ │ │ │ │ │ │ └── CMakeLists.txt
│ │ │ │ │ │ │ ├── btSoftBodySolverBuffer_OpenCL.h
│ │ │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCL.h
│ │ │ │ │ │ │ ├── btSoftBodySolverLinkData_OpenCLSIMDAware.h
│ │ │ │ │ │ │ ├── btSoftBodySolver_OpenCL.cpp
│ │ │ │ │ │ │ ├── btSoftBodySolver_OpenCL.h
│ │ │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.cpp
│ │ │ │ │ │ │ ├── btSoftBodySolver_OpenCLSIMDAware.h
│ │ │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.cpp
│ │ │ │ │ │ │ ├── btSoftBodySolverOutputCLtoGL.h
│ │ │ │ │ │ │ ├── btSoftBodySolverTriangleData_OpenCL.h
│ │ │ │ │ │ │ ├── btSoftBodySolverVertexBuffer_OpenGL.h
│ │ │ │ │ │ │ ├── btSoftBodySolverVertexData_OpenCL.h
│ │ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ │ ├── MiniCL
│ │ │ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ │ │ └── MiniCLTaskWrap.cpp
│ │ │ │ │ │ │ ├── NVidia
│ │ │ │ │ │ │ │ └── CMakeLists.txt
│ │ │ │ │ │ │ ├── OpenCLC
│ │ │ │ │ │ │ │ ├── ApplyForces.cl
│ │ │ │ │ │ │ │ ├── ComputeBounds.cl
│ │ │ │ │ │ │ │ ├── Integrate.cl
│ │ │ │ │ │ │ │ ├── OutputToVertexArray.cl
│ │ │ │ │ │ │ │ ├── PrepareLinks.cl
│ │ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl
│ │ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl
│ │ │ │ │ │ │ │ ├── SolvePositions.cl
│ │ │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl
│ │ │ │ │ │ │ │ ├── UpdateConstants.cl
│ │ │ │ │ │ │ │ ├── UpdateNodes.cl
│ │ │ │ │ │ │ │ ├── UpdateNormals.cl
│ │ │ │ │ │ │ │ ├── UpdatePositions.cl
│ │ │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl
│ │ │ │ │ │ │ │ └── VSolveLinks.cl
│ │ │ │ │ │ │ └── OpenCLC10
│ │ │ │ │ │ │ ├── ApplyForces.cl
│ │ │ │ │ │ │ ├── ComputeBounds.cl
│ │ │ │ │ │ │ ├── Integrate.cl
│ │ │ │ │ │ │ ├── OutputToVertexArray.cl
│ │ │ │ │ │ │ ├── PrepareLinks.cl
│ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocities.cl
│ │ │ │ │ │ │ ├── SolveCollisionsAndUpdateVelocitiesSIMDBatched.cl
│ │ │ │ │ │ │ ├── SolvePositions.cl
│ │ │ │ │ │ │ ├── SolvePositionsSIMDBatched.cl
│ │ │ │ │ │ │ ├── UpdateConstants.cl
│ │ │ │ │ │ │ ├── UpdateNodes.cl
│ │ │ │ │ │ │ ├── UpdateNormals.cl
│ │ │ │ │ │ │ ├── UpdatePositions.cl
│ │ │ │ │ │ │ ├── UpdatePositionsFromVelocities.cl
│ │ │ │ │ │ │ └── VSolveLinks.cl
│ │ │ │ │ │ ├── HeapManager.h
│ │ │ │ │ │ ├── Makefile.original
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── boxBoxDistance.cpp
│ │ │ │ │ │ │ ├── boxBoxDistance.h
│ │ │ │ │ │ │ ├── Box.h
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── SpuCollisionShapes.cpp
│ │ │ │ │ │ │ ├── SpuCollisionShapes.h
│ │ │ │ │ │ │ ├── SpuContactResult.cpp
│ │ │ │ │ │ │ ├── SpuContactResult.h
│ │ │ │ │ │ │ ├── SpuConvexPenetrationDepthSolver.h
│ │ │ │ │ │ │ ├── SpuGatheringCollisionTask.cpp
│ │ │ │ │ │ │ ├── SpuGatheringCollisionTask.h
│ │ │ │ │ │ │ ├── SpuLocalSupport.h
│ │ │ │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.cpp
│ │ │ │ │ │ │ ├── SpuMinkowskiPenetrationDepthSolver.h
│ │ │ │ │ │ │ └── SpuPreferredPenetrationDirections.h
│ │ │ │ │ │ ├── SpuSampleTask
│ │ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ │ ├── SpuSampleTask.cpp
│ │ │ │ │ │ │ └── SpuSampleTask.h
│ │ │ │ │ │ ├── SpuSampleTaskProcess.cpp
│ │ │ │ │ │ ├── SpuSampleTaskProcess.h
│ │ │ │ │ │ ├── SpuSync.h
│ │ │ │ │ │ ├── TrbDynBody.h
│ │ │ │ │ │ ├── TrbStateVec.h
│ │ │ │ │ │ ├── vectormath2bullet.h
│ │ │ │ │ │ ├── Win32ThreadSupport.cpp
│ │ │ │ │ │ └── Win32ThreadSupport.h
│ │ │ │ │ ├── BulletSoftBody
│ │ │ │ │ │ ├── btDefaultSoftBodySolver.cpp
│ │ │ │ │ │ ├── btDefaultSoftBodySolver.h
│ │ │ │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.cpp
│ │ │ │ │ │ ├── btSoftBodyConcaveCollisionAlgorithm.h
│ │ │ │ │ │ ├── btSoftBody.cpp
│ │ │ │ │ │ ├── btSoftBodyData.h
│ │ │ │ │ │ ├── btSoftBody.h
│ │ │ │ │ │ ├── btSoftBodyHelpers.cpp
│ │ │ │ │ │ ├── btSoftBodyHelpers.h
│ │ │ │ │ │ ├── btSoftBodyInternals.h
│ │ │ │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.cpp
│ │ │ │ │ │ ├── btSoftBodyRigidBodyCollisionConfiguration.h
│ │ │ │ │ │ ├── btSoftBodySolvers.h
│ │ │ │ │ │ ├── btSoftBodySolverVertexBuffer.h
│ │ │ │ │ │ ├── btSoftRigidCollisionAlgorithm.cpp
│ │ │ │ │ │ ├── btSoftRigidCollisionAlgorithm.h
│ │ │ │ │ │ ├── btSoftRigidDynamicsWorld.cpp
│ │ │ │ │ │ ├── btSoftRigidDynamicsWorld.h
│ │ │ │ │ │ ├── btSoftSoftCollisionAlgorithm.cpp
│ │ │ │ │ │ ├── btSoftSoftCollisionAlgorithm.h
│ │ │ │ │ │ ├── btSparseSDF.h
│ │ │ │ │ │ └── CMakeLists.txt
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── ibmsdk
│ │ │ │ │ │ └── Makefile
│ │ │ │ │ ├── LinearMath
│ │ │ │ │ │ ├── btAabbUtil2.h
│ │ │ │ │ │ ├── btAlignedAllocator.cpp
│ │ │ │ │ │ ├── btAlignedAllocator.h
│ │ │ │ │ │ ├── btAlignedObjectArray.h
│ │ │ │ │ │ ├── btConvexHullComputer.cpp
│ │ │ │ │ │ ├── btConvexHullComputer.h
│ │ │ │ │ │ ├── btConvexHull.cpp
│ │ │ │ │ │ ├── btConvexHull.h
│ │ │ │ │ │ ├── btDefaultMotionState.h
│ │ │ │ │ │ ├── btGeometryUtil.cpp
│ │ │ │ │ │ ├── btGeometryUtil.h
│ │ │ │ │ │ ├── btHashMap.h
│ │ │ │ │ │ ├── btIDebugDraw.h
│ │ │ │ │ │ ├── btList.h
│ │ │ │ │ │ ├── btMatrix3x3.h
│ │ │ │ │ │ ├── btMinMax.h
│ │ │ │ │ │ ├── btMotionState.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.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ └── ibmsdk
│ │ │ │ │ │ └── Makefile
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── MiniCL
│ │ │ │ │ │ ├── cl_gl.h
│ │ │ │ │ │ ├── cl.h
│ │ │ │ │ │ ├── cl_MiniCL_Defs.h
│ │ │ │ │ │ ├── cl_platform.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── MiniCL.cpp
│ │ │ │ │ │ ├── MiniCLTask
│ │ │ │ │ │ │ ├── MiniCLTask.cpp
│ │ │ │ │ │ │ └── MiniCLTask.h
│ │ │ │ │ │ ├── MiniCLTaskScheduler.cpp
│ │ │ │ │ │ └── MiniCLTaskScheduler.h
│ │ │ │ │ └── vectormath
│ │ │ │ │ ├── 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
│ │ │ │ └── VERSION
│ │ │ ├── cases
│ │ │ │ ├── 514_ta2.ll
│ │ │ │ ├── 514_ta2.txt
│ │ │ │ ├── abs.ll
│ │ │ │ ├── aliasbitcast2_noasm.ll
│ │ │ │ ├── aliasbitcast3_noasm.ll
│ │ │ │ ├── aliasbitcastdollar_noasm.ll
│ │ │ │ ├── aliasbitcast.ll
│ │ │ │ ├── alignedunaligned.ll
│ │ │ │ ├── alignedunaligned.txt
│ │ │ │ ├── allocavartop.ll
│ │ │ │ ├── atomicrmw.ll
│ │ │ │ ├── atomicrmw.txt
│ │ │ │ ├── breakinthemiddle2.ll
│ │ │ │ ├── breakinthemiddle3.ll
│ │ │ │ ├── breakinthemiddle.ll
│ │ │ │ ├── caall.ll
│ │ │ │ ├── callalias2.ll
│ │ │ │ ├── callalias.ll
│ │ │ │ ├── call_i64_noret.ll
│ │ │ │ ├── callundef.ll
│ │ │ │ ├── cmpxchg_volatile.ll
│ │ │ │ ├── complexphi.ll
│ │ │ │ ├── dash.ll
│ │ │ │ ├── emptystruct.ll
│ │ │ │ ├── entry2.ll
│ │ │ │ ├── entry2.txt
│ │ │ │ ├── extendedprecision.ll
│ │ │ │ ├── floatreturningfuncptr.ll
│ │ │ │ ├── fp80.ll
│ │ │ │ ├── frem.ll
│ │ │ │ ├── frem.txt
│ │ │ │ ├── funcptr.ll
│ │ │ │ ├── funcptr.txt
│ │ │ │ ├── i64toi8star.ll
│ │ │ │ ├── i64toi8star.txt
│ │ │ │ ├── indirectbrphi.ll
│ │ │ │ ├── indirectbrphi.txt
│ │ │ │ ├── inttoptrfloat.ll
│ │ │ │ ├── inttoptr.ll
│ │ │ │ ├── invokebitcast.ll
│ │ │ │ ├── invokeundef.ll
│ │ │ │ ├── issue_39.ll
│ │ │ │ ├── issue_39.txt
│ │ │ │ ├── legalizer_ta2.ll
│ │ │ │ ├── legalizer_ta2.txt
│ │ │ │ ├── loadbitcastgep.ll
│ │ │ │ ├── longjmp_tiny_invoke.ll
│ │ │ │ ├── longjmp_tiny_invoke.txt
│ │ │ │ ├── longjmp_tiny.ll
│ │ │ │ ├── longjmp_tiny_phi2.ll
│ │ │ │ ├── longjmp_tiny_phi2.txt
│ │ │ │ ├── longjmp_tiny_phi.ll
│ │ │ │ ├── longjmp_tiny_phi.txt
│ │ │ │ ├── longjmp_tiny.txt
│ │ │ │ ├── ncurly.ll
│ │ │ │ ├── phi24_ta2.ll
│ │ │ │ ├── phi24_ta2.txt
│ │ │ │ ├── phicubed.ll
│ │ │ │ ├── phicubed.txt
│ │ │ │ ├── phientryimplicit.ll
│ │ │ │ ├── phientryimplicitmix.ll
│ │ │ │ ├── phientryimplicitmoar.ll
│ │ │ │ ├── phientryimplicitmoar.txt
│ │ │ │ ├── phinonexist.ll
│ │ │ │ ├── phiself.ll
│ │ │ │ ├── phiself.py
│ │ │ │ ├── phiself.txt
│ │ │ │ ├── ptrtoi64.ll
│ │ │ │ ├── ptrtoi64.txt
│ │ │ │ ├── ptrtoint_blockaddr.ll
│ │ │ │ ├── quotedlabel.ll
│ │ │ │ ├── quoted.ll
│ │ │ │ ├── selectstruct.ll
│ │ │ │ ├── sillybitcast.ll
│ │ │ │ ├── storestruct.ll
│ │ │ │ ├── storestruct_q1.txt
│ │ │ │ ├── storestruct.txt
│ │ │ │ ├── structparam.ll
│ │ │ │ ├── structparam.txt
│ │ │ │ ├── subnums.ll
│ │ │ │ ├── subnums.txt
│ │ │ │ ├── trace.ll
│ │ │ │ ├── trunc.ll
│ │ │ │ ├── trunc.txt
│ │ │ │ ├── typestr.ll
│ │ │ │ ├── uadd_overflow_64_ta2.ll
│ │ │ │ ├── uadd_overflow_64_ta2.txt
│ │ │ │ ├── uadd_overflow_ta2.ll
│ │ │ │ ├── uadd_overflow_ta2.txt
│ │ │ │ ├── udiv.ll
│ │ │ │ ├── unaligneddouble.ll
│ │ │ │ ├── unannotated__noasm.ll
│ │ │ │ └── unannotated__noasm.txt
│ │ │ ├── checksummer.c
│ │ │ ├── cmake
│ │ │ │ ├── target_html
│ │ │ │ │ └── CMakeLists.txt
│ │ │ │ └── target_js
│ │ │ │ └── CMakeLists.txt
│ │ │ ├── ctype
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── cube2hash
│ │ │ │ ├── cube2crypto.c
│ │ │ │ ├── cube2crypto.h
│ │ │ │ ├── hashstring.cpp
│ │ │ │ ├── Makefile
│ │ │ │ ├── readme.txt
│ │ │ │ ├── tiger.c
│ │ │ │ ├── tiger.h
│ │ │ │ └── util.h
│ │ │ ├── cube2md5.cpp
│ │ │ ├── cube2md5.ok
│ │ │ ├── cube2md5.txt
│ │ │ ├── cube_explosion.c
│ │ │ ├── cubegeom.c
│ │ │ ├── cubegeom_color2.c
│ │ │ ├── cubegeom_color.c
│ │ │ ├── cubegeom_fog.c
│ │ │ ├── cubegeom_glew.c
│ │ │ ├── cubegeom_mt.c
│ │ │ ├── cubegeom_normal.c
│ │ │ ├── cubegeom_normal_dap.c
│ │ │ ├── cubegeom_normal_dap_far.c
│ │ │ ├── cubegeom_normal_dap_far_glda.c
│ │ │ ├── cubegeom_normal_dap_far_glda_quad.c
│ │ │ ├── cubegeom_normal_dap_far_range.c
│ │ │ ├── cubegeom_pre2.c
│ │ │ ├── cubegeom_pre2_vao2.c
│ │ │ ├── cubegeom_pre2_vao.c
│ │ │ ├── cubegeom_pre3.c
│ │ │ ├── cubegeom_pre.c
│ │ │ ├── cubegeom_pre_vao.c
│ │ │ ├── cubegeom_texturematrix.c
│ │ │ ├── cubescript
│ │ │ │ ├── command.cpp
│ │ │ │ ├── command.h
│ │ │ │ ├── README
│ │ │ │ └── tools.h
│ │ │ ├── dlmalloc_test.c
│ │ │ ├── embind
│ │ │ │ ├── build_benchmark
│ │ │ │ ├── embind_benchmark.cpp
│ │ │ │ ├── embind.benchmark.js
│ │ │ │ ├── embind_test.cpp
│ │ │ │ ├── embind.test.js
│ │ │ │ ├── imvu_test_adapter.js
│ │ │ │ ├── shell.html
│ │ │ │ └── underscore-1.4.2.js
│ │ │ ├── emscripten_api_browser.cpp
│ │ │ ├── emscripten_api_browser_infloop.cpp
│ │ │ ├── emscripten_fs_api_browser.cpp
│ │ │ ├── enet
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── callbacks.c
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── compress.c
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.sub
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── depcomp
│ │ │ │ ├── design.txt
│ │ │ │ ├── docs
│ │ │ │ │ ├── design.dox
│ │ │ │ │ ├── FAQ.dox
│ │ │ │ │ ├── install.dox
│ │ │ │ │ ├── license.dox
│ │ │ │ │ ├── mainpage.dox
│ │ │ │ │ └── tutorial.dox
│ │ │ │ ├── Doxyfile
│ │ │ │ ├── enet_dll.cbp
│ │ │ │ ├── enet.dsp
│ │ │ │ ├── host.c
│ │ │ │ ├── include
│ │ │ │ │ └── enet
│ │ │ │ │ ├── callbacks.h
│ │ │ │ │ ├── enet.h
│ │ │ │ │ ├── list.h
│ │ │ │ │ ├── protocol.h
│ │ │ │ │ ├── time.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── unix.h
│ │ │ │ │ ├── utility.h
│ │ │ │ │ └── win32.h
│ │ │ │ ├── install-sh
│ │ │ │ ├── libenet.pc.in
│ │ │ │ ├── LICENSE
│ │ │ │ ├── list.c
│ │ │ │ ├── ltmain.sh
│ │ │ │ ├── m4
│ │ │ │ │ ├── libtool.m4
│ │ │ │ │ ├── lt~obsolete.m4
│ │ │ │ │ ├── ltoptions.m4
│ │ │ │ │ ├── ltsugar.m4
│ │ │ │ │ └── ltversion.m4
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── missing
│ │ │ │ ├── packet.c
│ │ │ │ ├── peer.c
│ │ │ │ ├── protocol.c
│ │ │ │ ├── README
│ │ │ │ ├── unix.c
│ │ │ │ └── win32.c
│ │ │ ├── enet_client.c
│ │ │ ├── enet_server.c
│ │ │ ├── env
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── exceptions
│ │ │ │ ├── output.txt
│ │ │ │ └── typed.cpp
│ │ │ ├── fannkuch.cpp
│ │ │ ├── fannkuch.js
│ │ │ ├── fasta.cpp
│ │ │ ├── fasta.js
│ │ │ ├── fcntl
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── fcntl-misc
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── fcntl-open
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── files.cpp
│ │ │ ├── filesystem
│ │ │ │ ├── output.txt
│ │ │ │ └── src.js
│ │ │ ├── float_tex.cpp
│ │ │ ├── float_tex.png
│ │ │ ├── freealut
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── admin
│ │ │ │ │ ├── autotools
│ │ │ │ │ │ ├── compile
│ │ │ │ │ │ ├── config.guess
│ │ │ │ │ │ ├── config.sub
│ │ │ │ │ │ ├── depcomp
│ │ │ │ │ │ ├── install-sh
│ │ │ │ │ │ ├── ltmain.sh
│ │ │ │ │ │ ├── m4
│ │ │ │ │ │ │ ├── alut_c__attribute.m4
│ │ │ │ │ │ │ ├── alut_check_cflags_wall.m4
│ │ │ │ │ │ │ ├── alut_check_flag.m4
│ │ │ │ │ │ │ ├── alut_check_func.m4
│ │ │ │ │ │ │ └── alut_eval_stderr.m4
│ │ │ │ │ │ └── missing
│ │ │ │ │ ├── CMakeModules
│ │ │ │ │ │ ├── FindCompilerAttribute.cmake
│ │ │ │ │ │ ├── FindCompilerFlagsSet.cmake
│ │ │ │ │ │ ├── FindCompilerVisibility.cmake
│ │ │ │ │ │ ├── FindConfigHelper.cmake
│ │ │ │ │ │ └── FindSleepFunction.cmake
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── pkgconfig
│ │ │ │ │ │ ├── freealut-config.in
│ │ │ │ │ │ ├── freealut.pc.in
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ └── Makefile.in
│ │ │ │ │ ├── RPM
│ │ │ │ │ │ ├── freealut.spec
│ │ │ │ │ │ └── freealut.spec.in
│ │ │ │ │ ├── VisualStudio6
│ │ │ │ │ │ ├── alut
│ │ │ │ │ │ │ └── alut.dsp
│ │ │ │ │ │ ├── alut.dsw
│ │ │ │ │ │ ├── hello_world
│ │ │ │ │ │ │ └── hello_world.dsp
│ │ │ │ │ │ └── playfile
│ │ │ │ │ │ └── playfile.dsp
│ │ │ │ │ └── VisualStudioDotNET
│ │ │ │ │ ├── alut
│ │ │ │ │ │ └── alut.vcproj
│ │ │ │ │ ├── alut.sln
│ │ │ │ │ ├── hello_world
│ │ │ │ │ │ └── hello_world.vcproj
│ │ │ │ │ └── playfile
│ │ │ │ │ └── playfile.vcproj
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── autogen.sh
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── config.h.in
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── COPYING
│ │ │ │ ├── doc
│ │ │ │ │ ├── alut.css
│ │ │ │ │ └── alut.html
│ │ │ │ ├── examples
│ │ │ │ │ ├── hello_world.c
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── playfile.c
│ │ │ │ ├── include
│ │ │ │ │ ├── AL
│ │ │ │ │ │ └── alut.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ ├── INSTALL
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── NEWS
│ │ │ │ ├── README
│ │ │ │ ├── src
│ │ │ │ │ ├── alutBufferData.c
│ │ │ │ │ ├── alutCodec.c
│ │ │ │ │ ├── alutError.c
│ │ │ │ │ ├── alutInit.c
│ │ │ │ │ ├── alutInputStream.c
│ │ │ │ │ ├── alutInternal.h
│ │ │ │ │ ├── alutLoader.c
│ │ │ │ │ ├── alutOutputStream.c
│ │ │ │ │ ├── alutUtil.c
│ │ │ │ │ ├── alutVersion.c
│ │ │ │ │ ├── alutWaveform.c
│ │ │ │ │ ├── helloworld.wav
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ └── README
│ │ │ │ └── test_suite
│ │ │ │ ├── file1.wav
│ │ │ │ ├── file2.au
│ │ │ │ ├── file3.raw
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README
│ │ │ │ ├── test_errorstuff.c
│ │ │ │ ├── test_fileloader.c
│ │ │ │ ├── test_memoryloader.c
│ │ │ │ ├── test_retrostuff.c
│ │ │ │ ├── test_version.c
│ │ │ │ └── test_waveforms.c
│ │ │ ├── freetype
│ │ │ │ ├── builds
│ │ │ │ │ ├── detect.mk
│ │ │ │ │ ├── exports.mk
│ │ │ │ │ ├── freetype.mk
│ │ │ │ │ ├── link_dos.mk
│ │ │ │ │ ├── link_std.mk
│ │ │ │ │ ├── modules.mk
│ │ │ │ │ ├── newline
│ │ │ │ │ ├── toplevel.mk
│ │ │ │ │ └── unix
│ │ │ │ │ ├── aclocal.m4
│ │ │ │ │ ├── config.guess
│ │ │ │ │ ├── config.sub
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── configure.ac
│ │ │ │ │ ├── configure.raw
│ │ │ │ │ ├── detect.mk
│ │ │ │ │ ├── freetype2.in
│ │ │ │ │ ├── freetype2.m4
│ │ │ │ │ ├── freetype-config.in
│ │ │ │ │ ├── ft2unix.h
│ │ │ │ │ ├── ftconfig.in
│ │ │ │ │ ├── ft-munmap.m4
│ │ │ │ │ ├── ftsystem.c
│ │ │ │ │ ├── install.mk
│ │ │ │ │ ├── install-sh
│ │ │ │ │ ├── ltmain.sh
│ │ │ │ │ ├── mkinstalldirs
│ │ │ │ │ ├── unix-cc.in
│ │ │ │ │ ├── unixddef.mk
│ │ │ │ │ ├── unix-def.in
│ │ │ │ │ ├── unix-dev.mk
│ │ │ │ │ ├── unix-lcc.mk
│ │ │ │ │ └── unix.mk
│ │ │ │ ├── configure
│ │ │ │ ├── docs
│ │ │ │ │ ├── FTL.TXT
│ │ │ │ │ ├── GPL.TXT
│ │ │ │ │ └── LICENSE.TXT
│ │ │ │ ├── include
│ │ │ │ │ ├── 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
│ │ │ │ ├── LiberationSansBoldLICENSE.txt
│ │ │ │ ├── LiberationSansBold.ttf
│ │ │ │ ├── main_2.c
│ │ │ │ ├── main_3.c
│ │ │ │ ├── main.c
│ │ │ │ ├── Makefile
│ │ │ │ ├── modules.cfg
│ │ │ │ ├── objs
│ │ │ │ │ └── README
│ │ │ │ ├── README
│ │ │ │ ├── readme.txt
│ │ │ │ ├── ref_2.txt
│ │ │ │ ├── ref_3.txt
│ │ │ │ ├── ref_4.txt
│ │ │ │ ├── ref.txt
│ │ │ │ └── src
│ │ │ │ ├── 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
│ │ │ │ │ ├── aflatin2.c
│ │ │ │ │ ├── aflatin2.h
│ │ │ │ │ ├── aflatin.c
│ │ │ │ │ ├── aflatin.h
│ │ │ │ │ ├── afloader.c
│ │ │ │ │ ├── afloader.h
│ │ │ │ │ ├── afmodule.c
│ │ │ │ │ ├── afmodule.h
│ │ │ │ │ ├── afpic.c
│ │ │ │ │ ├── afpic.h
│ │ │ │ │ ├── aftypes.h
│ │ │ │ │ ├── afwarp.c
│ │ │ │ │ ├── afwarp.h
│ │ │ │ │ ├── autofit.c
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── bdf
│ │ │ │ │ ├── bdf.c
│ │ │ │ │ ├── bdfdrivr.c
│ │ │ │ │ ├── bdfdrivr.h
│ │ │ │ │ ├── bdferror.h
│ │ │ │ │ ├── bdf.h
│ │ │ │ │ ├── bdflib.c
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── README
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ └── type1cid.c
│ │ │ │ ├── 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
│ │ │ │ │ ├── gxvmort0.c
│ │ │ │ │ ├── gxvmort1.c
│ │ │ │ │ ├── gxvmort2.c
│ │ │ │ │ ├── gxvmort4.c
│ │ │ │ │ ├── gxvmort5.c
│ │ │ │ │ ├── gxvmort.c
│ │ │ │ │ ├── gxvmort.h
│ │ │ │ │ ├── gxvmorx0.c
│ │ │ │ │ ├── gxvmorx1.c
│ │ │ │ │ ├── gxvmorx2.c
│ │ │ │ │ ├── gxvmorx4.c
│ │ │ │ │ ├── gxvmorx5.c
│ │ │ │ │ ├── gxvmorx.c
│ │ │ │ │ ├── gxvmorx.h
│ │ │ │ │ ├── gxvopbd.c
│ │ │ │ │ ├── gxvprop.c
│ │ │ │ │ ├── gxvtrak.c
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── README
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── zconf.h
│ │ │ │ │ ├── zlib.h
│ │ │ │ │ ├── zutil.c
│ │ │ │ │ └── zutil.h
│ │ │ │ ├── Jamfile
│ │ │ │ ├── lzw
│ │ │ │ │ ├── ftlzw.c
│ │ │ │ │ ├── ftzopen.c
│ │ │ │ │ ├── ftzopen.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── otvalid
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── pcf
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── pcf.c
│ │ │ │ │ ├── pcfdrivr.c
│ │ │ │ │ ├── pcfdrivr.h
│ │ │ │ │ ├── pcferror.h
│ │ │ │ │ ├── pcf.h
│ │ │ │ │ ├── pcfread.c
│ │ │ │ │ ├── pcfread.h
│ │ │ │ │ ├── pcfutil.c
│ │ │ │ │ ├── pcfutil.h
│ │ │ │ │ ├── README
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── pfr
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── psaux
│ │ │ │ │ ├── afmparse.c
│ │ │ │ │ ├── afmparse.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── psaux.c
│ │ │ │ │ ├── psauxerr.h
│ │ │ │ │ ├── psauxmod.c
│ │ │ │ │ ├── psauxmod.h
│ │ │ │ │ ├── psconv.c
│ │ │ │ │ ├── psconv.h
│ │ │ │ │ ├── psobjs.c
│ │ │ │ │ ├── psobjs.h
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── t1cmap.c
│ │ │ │ │ ├── t1cmap.h
│ │ │ │ │ ├── t1decode.c
│ │ │ │ │ └── t1decode.h
│ │ │ │ ├── pshinter
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── pshalgo.c
│ │ │ │ │ ├── pshalgo.h
│ │ │ │ │ ├── pshglob.c
│ │ │ │ │ ├── pshglob.h
│ │ │ │ │ ├── pshinter.c
│ │ │ │ │ ├── pshmod.c
│ │ │ │ │ ├── pshmod.h
│ │ │ │ │ ├── pshnterr.h
│ │ │ │ │ ├── pshpic.c
│ │ │ │ │ ├── pshpic.h
│ │ │ │ │ ├── pshrec.c
│ │ │ │ │ ├── pshrec.h
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── psnames
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── psmodule.c
│ │ │ │ │ ├── psmodule.h
│ │ │ │ │ ├── psnamerr.h
│ │ │ │ │ ├── psnames.c
│ │ │ │ │ ├── pspic.c
│ │ │ │ │ ├── pspic.h
│ │ │ │ │ ├── pstables.h
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── raster
│ │ │ │ │ ├── ftmisc.h
│ │ │ │ │ ├── ftraster.c
│ │ │ │ │ ├── ftraster.h
│ │ │ │ │ ├── ftrend1.c
│ │ │ │ │ ├── ftrend1.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── raster.c
│ │ │ │ │ ├── rasterrs.h
│ │ │ │ │ ├── rastpic.c
│ │ │ │ │ ├── rastpic.h
│ │ │ │ │ └── rules.mk
│ │ │ │ ├── sfnt
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── sfdriver.c
│ │ │ │ │ ├── sfdriver.h
│ │ │ │ │ ├── sferrors.h
│ │ │ │ │ ├── sfnt.c
│ │ │ │ │ ├── sfntpic.c
│ │ │ │ │ ├── sfntpic.h
│ │ │ │ │ ├── sfobjs.c
│ │ │ │ │ ├── sfobjs.h
│ │ │ │ │ ├── ttbdf.c
│ │ │ │ │ ├── ttbdf.h
│ │ │ │ │ ├── ttcmap.c
│ │ │ │ │ ├── ttcmapc.h
│ │ │ │ │ ├── ttcmap.h
│ │ │ │ │ ├── ttkern.c
│ │ │ │ │ ├── ttkern.h
│ │ │ │ │ ├── ttload.c
│ │ │ │ │ ├── ttload.h
│ │ │ │ │ ├── ttmtx.c
│ │ │ │ │ ├── ttmtx.h
│ │ │ │ │ ├── ttpost.c
│ │ │ │ │ ├── ttpost.h
│ │ │ │ │ ├── ttsbit0.c
│ │ │ │ │ ├── ttsbit.c
│ │ │ │ │ └── ttsbit.h
│ │ │ │ ├── smooth
│ │ │ │ │ ├── ftgrays.c
│ │ │ │ │ ├── ftgrays.h
│ │ │ │ │ ├── ftsmerrs.h
│ │ │ │ │ ├── ftsmooth.c
│ │ │ │ │ ├── ftsmooth.h
│ │ │ │ │ ├── ftspic.c
│ │ │ │ │ ├── ftspic.h
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ └── smooth.c
│ │ │ │ ├── tools
│ │ │ │ │ ├── apinames.c
│ │ │ │ │ ├── chktrcmp.py
│ │ │ │ │ ├── cordic.py
│ │ │ │ │ ├── docmaker
│ │ │ │ │ │ ├── content.py
│ │ │ │ │ │ ├── docbeauty.py
│ │ │ │ │ │ ├── docmaker.py
│ │ │ │ │ │ ├── formatter.py
│ │ │ │ │ │ ├── sources.py
│ │ │ │ │ │ ├── tohtml.py
│ │ │ │ │ │ └── utils.py
│ │ │ │ │ ├── ftrandom
│ │ │ │ │ │ ├── ftrandom.c
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── glnames.py
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── test_afm.c
│ │ │ │ │ ├── test_bbox.c
│ │ │ │ │ └── test_trig.c
│ │ │ │ ├── truetype
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── Jamfile
│ │ │ │ │ ├── module.mk
│ │ │ │ │ ├── rules.mk
│ │ │ │ │ ├── t42drivr.c
│ │ │ │ │ ├── t42drivr.h
│ │ │ │ │ ├── t42error.h
│ │ │ │ │ ├── t42objs.c
│ │ │ │ │ ├── t42objs.h
│ │ │ │ │ ├── t42parse.c
│ │ │ │ │ ├── t42parse.h
│ │ │ │ │ ├── t42types.h
│ │ │ │ │ └── type42.c
│ │ │ │ └── winfonts
│ │ │ │ ├── fnterrs.h
│ │ │ │ ├── Jamfile
│ │ │ │ ├── module.mk
│ │ │ │ ├── rules.mk
│ │ │ │ ├── winfnt.c
│ │ │ │ └── winfnt.h
│ │ │ ├── fuzz
│ │ │ │ ├── 12.c
│ │ │ │ ├── 12.c.txt
│ │ │ │ ├── 1.c
│ │ │ │ ├── 1.c.txt
│ │ │ │ ├── 2.c
│ │ │ │ ├── 2.c.txt
│ │ │ │ ├── 3.c
│ │ │ │ ├── 3.c.txt
│ │ │ │ ├── 4.c
│ │ │ │ ├── 4.c.txt
│ │ │ │ ├── 5.c
│ │ │ │ ├── 5.c.txt
│ │ │ │ ├── 7.c
│ │ │ │ ├── 7.c.txt
│ │ │ │ ├── 8.c
│ │ │ │ ├── 8.c.txt
│ │ │ │ ├── creduce_tester.py
│ │ │ │ ├── csmith_driver.py
│ │ │ │ ├── csmith.h
│ │ │ │ ├── platform_generic.h
│ │ │ │ ├── random_inc.h
│ │ │ │ └── safe_math.h
│ │ │ ├── gears.png
│ │ │ ├── glbegin_points.c
│ │ │ ├── glbegin_points.png
│ │ │ ├── glbook
│ │ │ │ ├── CH02_HelloTriangle.png
│ │ │ │ ├── CH08_SimpleVertexShader.png
│ │ │ │ ├── CH09_SimpleTexture2D.png
│ │ │ │ ├── CH09_TextureCubemap.png
│ │ │ │ ├── CH09_TextureWrap.png
│ │ │ │ ├── CH10_MultiTexture.png
│ │ │ │ ├── CH13_ParticleSystem.png
│ │ │ │ ├── Chapter_10
│ │ │ │ │ └── MultiTexture
│ │ │ │ │ ├── basemap.tga
│ │ │ │ │ ├── lightmap.tga
│ │ │ │ │ ├── MultiTexture.c
│ │ │ │ │ └── MultiTexture_orig.c
│ │ │ │ ├── Chapter_11
│ │ │ │ │ ├── Multisample
│ │ │ │ │ │ └── Multisample.c
│ │ │ │ │ └── Stencil_Test
│ │ │ │ │ └── Stencil_Test.c
│ │ │ │ ├── Chapter_13
│ │ │ │ │ └── ParticleSystem
│ │ │ │ │ ├── ParticleSystem.c
│ │ │ │ │ ├── ParticleSystem_orig.c
│ │ │ │ │ └── smoke.tga
│ │ │ │ ├── Chapter_15
│ │ │ │ │ └── Hello_Triangle_KD
│ │ │ │ │ └── Hello_Triangle_KD.c
│ │ │ │ ├── Chapter_2
│ │ │ │ │ └── Hello_Triangle
│ │ │ │ │ ├── Hello_Triangle.c
│ │ │ │ │ └── Hello_Triangle_orig.c
│ │ │ │ ├── Chapter_8
│ │ │ │ │ └── Simple_VertexShader
│ │ │ │ │ ├── Simple_VertexShader.c
│ │ │ │ │ └── Simple_VertexShader_orig.c
│ │ │ │ ├── Chapter_9
│ │ │ │ │ ├── MipMap2D
│ │ │ │ │ │ └── MipMap2D.c
│ │ │ │ │ ├── Simple_Texture2D
│ │ │ │ │ │ ├── Simple_Texture2D.c
│ │ │ │ │ │ └── Simple_Texture2D_orig.c
│ │ │ │ │ ├── Simple_TextureCubemap
│ │ │ │ │ │ ├── Simple_TextureCubemap.c
│ │ │ │ │ │ └── Simple_TextureCubemap_orig.c
│ │ │ │ │ └── TextureWrap
│ │ │ │ │ ├── TextureWrap.c
│ │ │ │ │ └── TextureWrap_orig.c
│ │ │ │ ├── Common
│ │ │ │ │ ├── esShader.c
│ │ │ │ │ ├── esShapes.c
│ │ │ │ │ ├── esTransform.c
│ │ │ │ │ ├── esUtil.c
│ │ │ │ │ └── esUtil.h
│ │ │ │ ├── Makefile
│ │ │ │ └── README.linux
│ │ │ ├── glfw.c
│ │ │ ├── gl_matrix_identity.c
│ │ │ ├── gl_ps.c
│ │ │ ├── gl_ps_packed.c
│ │ │ ├── gl_ps.png
│ │ │ ├── gl_ps_strides.c
│ │ │ ├── gl_ps_strides.png
│ │ │ ├── gl_ps_workaround2.c
│ │ │ ├── gl_ps_workaround.c
│ │ │ ├── gl_renderers.c
│ │ │ ├── gl_renderers.png
│ │ │ ├── glshaderinfo.cpp
│ │ │ ├── gl_stride.c
│ │ │ ├── gl_stride.png
│ │ │ ├── gl_subdata.cpp
│ │ │ ├── hashtest.cpp
│ │ │ ├── hello_cxx03.cpp
│ │ │ ├── hello_cxx11.cpp
│ │ │ ├── hello_function.cpp
│ │ │ ├── hello_libcxx.cpp
│ │ │ ├── hello_libcxx_mod1.cpp
│ │ │ ├── hello_libcxx_mod2a.cpp
│ │ │ ├── hello_libcxx_mod2.cpp
│ │ │ ├── hello_malloc.cpp
│ │ │ ├── hello_world.c
│ │ │ ├── hello_world.cpp
│ │ │ ├── hello_world_error.c
│ │ │ ├── hello_world_error.cpp
│ │ │ ├── hello_world_file.cpp
│ │ │ ├── hello_world_file.txt
│ │ │ ├── hello_world_gles.c
│ │ │ ├── hello_world_gles_deriv.c
│ │ │ ├── hello_world_gles_full_944.c
│ │ │ ├── hello_world_gles_full.c
│ │ │ ├── hello_world_gles_shell.html
│ │ │ ├── hello_world.js
│ │ │ ├── hello_world.ll
│ │ │ ├── hello_world_loop.cpp
│ │ │ ├── hello_world_loop_malloc.cpp
│ │ │ ├── hello_world_sdl.cpp
│ │ │ ├── hello_world_worker.cpp
│ │ │ ├── htmltest.png
│ │ │ ├── http.cpp
│ │ │ ├── http.h
│ │ │ ├── hyperbolic
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── i64_precise.txt
│ │ │ ├── langinfo
│ │ │ │ ├── output.txt
│ │ │ │ └── test.c
│ │ │ ├── life.c
│ │ │ ├── lifetime.ll
│ │ │ ├── lua
│ │ │ │ ├── binarytrees.lua
│ │ │ │ ├── doc
│ │ │ │ │ ├── contents.html
│ │ │ │ │ ├── logo.gif
│ │ │ │ │ ├── lua.1
│ │ │ │ │ ├── luac.1
│ │ │ │ │ ├── lua.css
│ │ │ │ │ ├── manual.css
│ │ │ │ │ ├── manual.html
│ │ │ │ │ ├── osi-certified-72x60.png
│ │ │ │ │ └── readme.html
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── scimark.lua
│ │ │ │ └── src
│ │ │ │ ├── lapi.c
│ │ │ │ ├── lapi.h
│ │ │ │ ├── lauxlib.c
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lbaselib.c
│ │ │ │ ├── lbitlib.c
│ │ │ │ ├── lcode.c
│ │ │ │ ├── lcode.h
│ │ │ │ ├── lcorolib.c
│ │ │ │ ├── lctype.c
│ │ │ │ ├── lctype.h
│ │ │ │ ├── ldblib.c
│ │ │ │ ├── ldebug.c
│ │ │ │ ├── ldebug.h
│ │ │ │ ├── ldo.c
│ │ │ │ ├── ldo.h
│ │ │ │ ├── ldump.c
│ │ │ │ ├── lfunc.c
│ │ │ │ ├── lfunc.h
│ │ │ │ ├── lgc.c
│ │ │ │ ├── lgc.h
│ │ │ │ ├── linit.c
│ │ │ │ ├── liolib.c
│ │ │ │ ├── llex.c
│ │ │ │ ├── llex.h
│ │ │ │ ├── llimits.h
│ │ │ │ ├── lmathlib.c
│ │ │ │ ├── lmem.c
│ │ │ │ ├── lmem.h
│ │ │ │ ├── loadlib.c
│ │ │ │ ├── lobject.c
│ │ │ │ ├── lobject.h
│ │ │ │ ├── lopcodes.c
│ │ │ │ ├── lopcodes.h
│ │ │ │ ├── loslib.c
│ │ │ │ ├── lparser.c
│ │ │ │ ├── lparser.h
│ │ │ │ ├── lstate.c
│ │ │ │ ├── lstate.h
│ │ │ │ ├── lstring.c
│ │ │ │ ├── lstring.h
│ │ │ │ ├── lstrlib.c
│ │ │ │ ├── ltable.c
│ │ │ │ ├── ltable.h
│ │ │ │ ├── ltablib.c
│ │ │ │ ├── ltm.c
│ │ │ │ ├── ltm.h
│ │ │ │ ├── lua.c
│ │ │ │ ├── luac.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lua.h
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── lualib.h
│ │ │ │ ├── lundump.c
│ │ │ │ ├── lundump.h
│ │ │ │ ├── lvm.c
│ │ │ │ ├── lvm.h
│ │ │ │ ├── lzio.c
│ │ │ │ ├── lzio.h
│ │ │ │ └── Makefile
│ │ │ ├── msvc10
│ │ │ │ ├── dlmalloc_test.vcxproj
│ │ │ │ ├── emscripten_api_browser.vcxproj
│ │ │ │ ├── fannkuch.vcxproj
│ │ │ │ ├── fasta.vcxproj
│ │ │ │ ├── files.vcxproj
│ │ │ │ ├── glbook_10_MultiTexture.vcxproj
│ │ │ │ ├── glbook_11_Multisample.vcxproj
│ │ │ │ ├── glbook_11_Stencil_Test.vcxproj
│ │ │ │ ├── glbook_13_ParticleSystem.vcxproj
│ │ │ │ ├── glbook_15_Hello_Triangle_KD.vcxproj
│ │ │ │ ├── glbook_2_Hello_Triangle.vcxproj
│ │ │ │ ├── glbook_8_Simple_VertexShader.vcxproj
│ │ │ │ ├── glbook_9_MipMap2D.vcxproj
│ │ │ │ ├── glbook_9_Simple_Texture2D.vcxproj
│ │ │ │ ├── glbook_9_Simple_TextureCubemap.vcxproj
│ │ │ │ ├── glbook_9_TextureWrap.vcxproj
│ │ │ │ ├── hashtest.vcxproj
│ │ │ │ ├── hello_libcxx.vcxproj
│ │ │ │ ├── hello_malloc.vcxproj
│ │ │ │ ├── hello_world_cpp.vcxproj
│ │ │ │ ├── hello_world_c.vcxproj
│ │ │ │ ├── hello_world_file.vcxproj
│ │ │ │ ├── hello_world_gles.vcxproj
│ │ │ │ ├── hello_world_loop_malloc.vcxproj
│ │ │ │ ├── hello_world_loop.vcxproj
│ │ │ │ ├── hello_world_sdl.vcxproj
│ │ │ │ ├── new.vcxproj
│ │ │ │ ├── raytrace.vcxproj
│ │ │ │ ├── README.txt
│ │ │ │ ├── sdl_audio.vcxproj
│ │ │ │ ├── sdl_canvas.vcxproj
│ │ │ │ ├── sdl_gl_read.vcxproj
│ │ │ │ ├── sdl_image.vcxproj
│ │ │ │ ├── sdl_key.vcxproj
│ │ │ │ ├── sdl_mouse.vcxproj
│ │ │ │ ├── sdl_ogl.vcxproj
│ │ │ │ ├── skinning_test_no_simd.vcxproj
│ │ │ │ ├── tests_msvc10.sln
│ │ │ │ ├── tests_msvc10.vcxproj
│ │ │ │ └── twopart.vcxproj
│ │ │ ├── nbody-java
│ │ │ │ ├── constant_pool.c
│ │ │ │ ├── hycomp.h
│ │ │ │ ├── hyporterror.h
│ │ │ │ ├── hysocket.h
│ │ │ │ ├── hysock.h
│ │ │ │ ├── java_io_Closeable.c
│ │ │ │ ├── java_io_Closeable.h
│ │ │ │ ├── java_io_File.c
│ │ │ │ ├── java_io_FileDescriptor.c
│ │ │ │ ├── java_io_FileDescriptor.h
│ │ │ │ ├── java_io_File.h
│ │ │ │ ├── java_io_FilterOutputStream.c
│ │ │ │ ├── java_io_FilterOutputStream.h
│ │ │ │ ├── java_io_Flushable.c
│ │ │ │ ├── java_io_Flushable.h
│ │ │ │ ├── java_io_InterruptedIOException.c
│ │ │ │ ├── java_io_InterruptedIOException.h
│ │ │ │ ├── java_io_InvalidClassException.c
│ │ │ │ ├── java_io_InvalidClassException.h
│ │ │ │ ├── java_io_InvalidObjectException.c
│ │ │ │ ├── java_io_InvalidObjectException.h
│ │ │ │ ├── java_io_IOException.c
│ │ │ │ ├── java_io_IOException.h
│ │ │ │ ├── java_io_ObjectStreamException.c
│ │ │ │ ├── java_io_ObjectStreamException.h
│ │ │ │ ├── java_io_ObjectStreamField.c
│ │ │ │ ├── java_io_ObjectStreamField.h
│ │ │ │ ├── java_io_OutputStream.c
│ │ │ │ ├── java_io_OutputStream.h
│ │ │ │ ├── java_io_PrintStream.c
│ │ │ │ ├── java_io_PrintStream.h
│ │ │ │ ├── java_io_Serializable.c
│ │ │ │ ├── java_io_Serializable.h
│ │ │ │ ├── java_lang_AbstractStringBuilder.c
│ │ │ │ ├── java_lang_AbstractStringBuilder.h
│ │ │ │ ├── java_lang_Appendable.c
│ │ │ │ ├── java_lang_Appendable.h
│ │ │ │ ├── java_lang_Boolean.c
│ │ │ │ ├── java_lang_Boolean.h
│ │ │ │ ├── java_lang_Byte.c
│ │ │ │ ├── java_lang_Byte.h
│ │ │ │ ├── java_lang_Character.c
│ │ │ │ ├── java_lang_Character.h
│ │ │ │ ├── java_lang_CharSequence.c
│ │ │ │ ├── java_lang_CharSequence.h
│ │ │ │ ├── java_lang_Class.c
│ │ │ │ ├── java_lang_Class.h
│ │ │ │ ├── java_lang_ClassLoader.c
│ │ │ │ ├── java_lang_ClassLoader.h
│ │ │ │ ├── java_lang_ClassNotFoundException.c
│ │ │ │ ├── java_lang_ClassNotFoundException.h
│ │ │ │ ├── java_lang_Cloneable.c
│ │ │ │ ├── java_lang_Cloneable.h
│ │ │ │ ├── java_lang_Comparable.c
│ │ │ │ ├── java_lang_Comparable.h
│ │ │ │ ├── java_lang_Double.c
│ │ │ │ ├── java_lang_Double.h
│ │ │ │ ├── java_lang_Enum.c
│ │ │ │ ├── java_lang_Enum.h
│ │ │ │ ├── java_lang_Exception.c
│ │ │ │ ├── java_lang_Exception.h
│ │ │ │ ├── java_lang_Float.c
│ │ │ │ ├── java_lang_Float.h
│ │ │ │ ├── java_lang_IndexOutOfBoundsException.c
│ │ │ │ ├── java_lang_IndexOutOfBoundsException.h
│ │ │ │ ├── java_lang_Integer.c
│ │ │ │ ├── java_lang_Integer.h
│ │ │ │ ├── java_lang_Iterable.c
│ │ │ │ ├── java_lang_Iterable.h
│ │ │ │ ├── java_lang_Long.c
│ │ │ │ ├── java_lang_Long.h
│ │ │ │ ├── java_lang_Long_valueOfCache.c
│ │ │ │ ├── java_lang_Long_valueOfCache.h
│ │ │ │ ├── java_lang_Math.c
│ │ │ │ ├── java_lang_Math.h
│ │ │ │ ├── java_lang_NoSuchFieldException.c
│ │ │ │ ├── java_lang_NoSuchFieldException.h
│ │ │ │ ├── java_lang_NullPointerException.c
│ │ │ │ ├── java_lang_NullPointerException.h
│ │ │ │ ├── java_lang_Number.c
│ │ │ │ ├── java_lang_Number.h
│ │ │ │ ├── java_lang_Object_AddedMembers.c
│ │ │ │ ├── java_lang_Object_AddedMembers.h
│ │ │ │ ├── java_lang_Object.c
│ │ │ │ ├── java_lang_Object.h
│ │ │ │ ├── java_lang_Readable.c
│ │ │ │ ├── java_lang_Readable.h
│ │ │ │ ├── java_lang_reflect_AccessibleObject.c
│ │ │ │ ├── java_lang_reflect_AccessibleObject.h
│ │ │ │ ├── java_lang_reflect_AnnotatedElement.c
│ │ │ │ ├── java_lang_reflect_AnnotatedElement.h
│ │ │ │ ├── java_lang_reflect_Array.c
│ │ │ │ ├── java_lang_reflect_Array.h
│ │ │ │ ├── java_lang_reflect_Constructor.c
│ │ │ │ ├── java_lang_reflect_Constructor.h
│ │ │ │ ├── java_lang_reflect_Field.c
│ │ │ │ ├── java_lang_reflect_Field.h
│ │ │ │ ├── java_lang_reflect_GenericDeclaration.c
│ │ │ │ ├── java_lang_reflect_GenericDeclaration.h
│ │ │ │ ├── java_lang_reflect_InvocationHandler.c
│ │ │ │ ├── java_lang_reflect_InvocationHandler.h
│ │ │ │ ├── java_lang_reflect_Member.c
│ │ │ │ ├── java_lang_reflect_Member.h
│ │ │ │ ├── java_lang_reflect_Method.c
│ │ │ │ ├── java_lang_reflect_Method.h
│ │ │ │ ├── java_lang_reflect_Modifier.c
│ │ │ │ ├── java_lang_reflect_Modifier.h
│ │ │ │ ├── java_lang_reflect_Type.c
│ │ │ │ ├── java_lang_reflect_Type.h
│ │ │ │ ├── java_lang_ref_Reference.c
│ │ │ │ ├── java_lang_ref_Reference.h
│ │ │ │ ├── java_lang_ref_ReferenceQueue.c
│ │ │ │ ├── java_lang_ref_ReferenceQueue.h
│ │ │ │ ├── java_lang_ref_WeakReference.c
│ │ │ │ ├── java_lang_ref_WeakReference.h
│ │ │ │ ├── java_lang_Runnable.c
│ │ │ │ ├── java_lang_Runnable.h
│ │ │ │ ├── java_lang_Runtime.c
│ │ │ │ ├── java_lang_RuntimeException.c
│ │ │ │ ├── java_lang_RuntimeException.h
│ │ │ │ ├── java_lang_Runtime.h
│ │ │ │ ├── java_lang_RuntimePermission.c
│ │ │ │ ├── java_lang_RuntimePermission.h
│ │ │ │ ├── java_lang_SecurityManager.c
│ │ │ │ ├── java_lang_SecurityManager.h
│ │ │ │ ├── java_lang_Short.c
│ │ │ │ ├── java_lang_Short.h
│ │ │ │ ├── java_lang_StackTraceElement.c
│ │ │ │ ├── java_lang_StackTraceElement.h
│ │ │ │ ├── java_lang_StringBuilder.c
│ │ │ │ ├── java_lang_StringBuilder.h
│ │ │ │ ├── java_lang_String.c
│ │ │ │ ├── java_lang_String_CaseInsensitiveComparator.c
│ │ │ │ ├── java_lang_String_CaseInsensitiveComparator.h
│ │ │ │ ├── java_lang_String.h
│ │ │ │ ├── java_lang_System.c
│ │ │ │ ├── java_lang_System.h
│ │ │ │ ├── java_lang_Thread.c
│ │ │ │ ├── java_lang_ThreadGroup.c
│ │ │ │ ├── java_lang_ThreadGroup_ChildrenGroupsLock.c
│ │ │ │ ├── java_lang_ThreadGroup_ChildrenGroupsLock.h
│ │ │ │ ├── java_lang_ThreadGroup_ChildrenThreadsLock.c
│ │ │ │ ├── java_lang_ThreadGroup_ChildrenThreadsLock.h
│ │ │ │ ├── java_lang_ThreadGroup.h
│ │ │ │ ├── java_lang_Thread.h
│ │ │ │ ├── java_lang_Thread_State.c
│ │ │ │ ├── java_lang_Thread_State.h
│ │ │ │ ├── java_lang_Thread_UncaughtExceptionHandler.c
│ │ │ │ ├── java_lang_Thread_UncaughtExceptionHandler.h
│ │ │ │ ├── java_lang_Throwable.c
│ │ │ │ ├── java_lang_Throwable.h
│ │ │ │ ├── java_net_BindException.c
│ │ │ │ ├── java_net_BindException.h
│ │ │ │ ├── java_net_ConnectException.c
│ │ │ │ ├── java_net_ConnectException.h
│ │ │ │ ├── java_net_Inet6Address.c
│ │ │ │ ├── java_net_Inet6Address.h
│ │ │ │ ├── java_net_InetAddress.c
│ │ │ │ ├── java_net_InetAddress.h
│ │ │ │ ├── java_net_SocketException.c
│ │ │ │ ├── java_net_SocketException.h
│ │ │ │ ├── java_net_UnknownHostException.c
│ │ │ │ ├── java_net_UnknownHostException.h
│ │ │ │ ├── java_nio_Buffer.c
│ │ │ │ ├── java_nio_BufferFactory.c
│ │ │ │ ├── java_nio_BufferFactory.h
│ │ │ │ ├── java_nio_Buffer.h
│ │ │ │ ├── java_nio_ByteBuffer.c
│ │ │ │ ├── java_nio_ByteBuffer.h
│ │ │ │ ├── java_nio_CharArrayBuffer.c
│ │ │ │ ├── java_nio_CharArrayBuffer.h
│ │ │ │ ├── java_nio_CharBuffer.c
│ │ │ │ ├── java_nio_CharBuffer.h
│ │ │ │ ├── java_nio_charset_Charset_1.c
│ │ │ │ ├── java_nio_charset_Charset_1.h
│ │ │ │ ├── java_nio_charset_Charset_2.c
│ │ │ │ ├── java_nio_charset_Charset_2.h
│ │ │ │ ├── java_nio_charset_Charset.c
│ │ │ │ ├── java_nio_charset_CharsetDecoder.c
│ │ │ │ ├── java_nio_charset_CharsetDecoder.h
│ │ │ │ ├── java_nio_charset_CharsetEncoder.c
│ │ │ │ ├── java_nio_charset_CharsetEncoder.h
│ │ │ │ ├── java_nio_charset_Charset.h
│ │ │ │ ├── java_nio_charset_CoderResult.c
│ │ │ │ ├── java_nio_charset_CoderResult.h
│ │ │ │ ├── java_nio_charset_CodingErrorAction.c
│ │ │ │ ├── java_nio_charset_CodingErrorAction.h
│ │ │ │ ├── java_nio_charset_spi_CharsetProvider.c
│ │ │ │ ├── java_nio_charset_spi_CharsetProvider.h
│ │ │ │ ├── java_nio_HeapByteBuffer.c
│ │ │ │ ├── java_nio_HeapByteBuffer.h
│ │ │ │ ├── java_nio_ReadWriteCharArrayBuffer.c
│ │ │ │ ├── java_nio_ReadWriteCharArrayBuffer.h
│ │ │ │ ├── java_nio_ReadWriteHeapByteBuffer.c
│ │ │ │ ├── java_nio_ReadWriteHeapByteBuffer.h
│ │ │ │ ├── java_security_AccessController.c
│ │ │ │ ├── java_security_AccessController.h
│ │ │ │ ├── java_security_BasicPermission.c
│ │ │ │ ├── java_security_BasicPermission.h
│ │ │ │ ├── java_security_Guard.c
│ │ │ │ ├── java_security_Guard.h
│ │ │ │ ├── java_security_Permission.c
│ │ │ │ ├── java_security_Permission.h
│ │ │ │ ├── java_security_PrivilegedAction.c
│ │ │ │ ├── java_security_PrivilegedAction.h
│ │ │ │ ├── java_util_AbstractCollection.c
│ │ │ │ ├── java_util_AbstractCollection.h
│ │ │ │ ├── java_util_AbstractList.c
│ │ │ │ ├── java_util_AbstractList.h
│ │ │ │ ├── java_util_AbstractMap.c
│ │ │ │ ├── java_util_AbstractMap.h
│ │ │ │ ├── java_util_AbstractSequentialList.c
│ │ │ │ ├── java_util_AbstractSequentialList.h
│ │ │ │ ├── java_util_AbstractSet.c
│ │ │ │ ├── java_util_AbstractSet.h
│ │ │ │ ├── java_util_ArrayList.c
│ │ │ │ ├── java_util_ArrayList.h
│ │ │ │ ├── java_util_Collection.c
│ │ │ │ ├── java_util_Collection.h
│ │ │ │ ├── java_util_Collections.c
│ │ │ │ ├── java_util_Collections_EmptyList.c
│ │ │ │ ├── java_util_Collections_EmptyList.h
│ │ │ │ ├── java_util_Collections_EmptyMap.c
│ │ │ │ ├── java_util_Collections_EmptyMap.h
│ │ │ │ ├── java_util_Collections_EmptySet.c
│ │ │ │ ├── java_util_Collections_EmptySet.h
│ │ │ │ ├── java_util_Collections.h
│ │ │ │ ├── java_util_Collections_SynchronizedMap.c
│ │ │ │ ├── java_util_Collections_SynchronizedMap.h
│ │ │ │ ├── java_util_Comparator.c
│ │ │ │ ├── java_util_Comparator.h
│ │ │ │ ├── java_util_Deque.c
│ │ │ │ ├── java_util_Deque.h
│ │ │ │ ├── java_util_Dictionary.c
│ │ │ │ ├── java_util_Dictionary.h
│ │ │ │ ├── java_util_Enumeration.c
│ │ │ │ ├── java_util_Enumeration.h
│ │ │ │ ├── java_util_HashMap.c
│ │ │ │ ├── java_util_HashMap_Entry.c
│ │ │ │ ├── java_util_HashMap_Entry.h
│ │ │ │ ├── java_util_HashMap.h
│ │ │ │ ├── java_util_HashSet.c
│ │ │ │ ├── java_util_HashSet.h
│ │ │ │ ├── java_util_Hashtable_1.c
│ │ │ │ ├── java_util_Hashtable_1.h
│ │ │ │ ├── java_util_Hashtable_2.c
│ │ │ │ ├── java_util_Hashtable_2.h
│ │ │ │ ├── java_util_Hashtable.c
│ │ │ │ ├── java_util_Hashtable_Entry.c
│ │ │ │ ├── java_util_Hashtable_Entry.h
│ │ │ │ ├── java_util_Hashtable.h
│ │ │ │ ├── java_util_Iterator.c
│ │ │ │ ├── java_util_Iterator.h
│ │ │ │ ├── java_util_LinkedList.c
│ │ │ │ ├── java_util_LinkedList.h
│ │ │ │ ├── java_util_LinkedList_Link.c
│ │ │ │ ├── java_util_LinkedList_Link.h
│ │ │ │ ├── java_util_List.c
│ │ │ │ ├── java_util_List.h
│ │ │ │ ├── java_util_Locale.c
│ │ │ │ ├── java_util_Locale.h
│ │ │ │ ├── java_util_Map.c
│ │ │ │ ├── java_util_Map_Entry.c
│ │ │ │ ├── java_util_MapEntry.c
│ │ │ │ ├── java_util_Map_Entry.h
│ │ │ │ ├── java_util_MapEntry.h
│ │ │ │ ├── java_util_Map.h
│ │ │ │ ├── java_util_Properties.c
│ │ │ │ ├── java_util_Properties.h
│ │ │ │ ├── java_util_PropertyPermission.c
│ │ │ │ ├── java_util_PropertyPermission.h
│ │ │ │ ├── java_util_Queue.c
│ │ │ │ ├── java_util_Queue.h
│ │ │ │ ├── java_util_RandomAccess.c
│ │ │ │ ├── java_util_RandomAccess.h
│ │ │ │ ├── java_util_Set.c
│ │ │ │ ├── java_util_Set.h
│ │ │ │ ├── java_util_StringTokenizer.c
│ │ │ │ ├── java_util_StringTokenizer.h
│ │ │ │ ├── java_util_WeakHashMap.c
│ │ │ │ ├── java_util_WeakHashMap_Entry.c
│ │ │ │ ├── java_util_WeakHashMap_Entry.h
│ │ │ │ ├── java_util_WeakHashMap.h
│ │ │ │ ├── native_java_io_File.c
│ │ │ │ ├── native_java_io_FileDescriptor.c
│ │ │ │ ├── native_java_lang_Class.c
│ │ │ │ ├── native_java_lang_Double.c
│ │ │ │ ├── native_java_lang_Float.c
│ │ │ │ ├── native_java_lang_Math.c
│ │ │ │ ├── native_java_lang_Object.c
│ │ │ │ ├── native_java_lang_reflect_AccessibleObject.c
│ │ │ │ ├── native_java_lang_reflect_Array.c
│ │ │ │ ├── native_java_lang_reflect_Constructor.c
│ │ │ │ ├── native_java_lang_reflect_Field.c
│ │ │ │ ├── native_java_lang_reflect_Method.c
│ │ │ │ ├── native_java_lang_Runtime.c
│ │ │ │ ├── native_java_lang_String.c
│ │ │ │ ├── native_java_lang_System.c
│ │ │ │ ├── native_java_lang_Thread.c
│ │ │ │ ├── native_java_lang_Throwable.c
│ │ │ │ ├── native_java_net_InetAddress.c
│ │ │ │ ├── native_java_util_Locale.c
│ │ │ │ ├── native_org_apache_harmony_luni_platform_OSFileSystem.c
│ │ │ │ ├── native_org_apache_harmony_luni_platform_OSMemory.c
│ │ │ │ ├── native_org_apache_harmony_luni_platform_OSNetworkSystem.c
│ │ │ │ ├── native_org_apache_harmony_luni_util_FloatingPointParser.c
│ │ │ │ ├── native_org_apache_harmony_luni_util_NumberConverter.c
│ │ │ │ ├── native_org_xmlvm_runtime_Condition.c
│ │ │ │ ├── native_org_xmlvm_runtime_FinalizerNotifier.c
│ │ │ │ ├── native_org_xmlvm_runtime_Mutex.c
│ │ │ │ ├── native_org_xmlvm_runtime_XMLVMArray.c
│ │ │ │ ├── native_org_xmlvm_runtime_XMLVMOutputStream.c
│ │ │ │ ├── native_org_xmlvm_runtime_XMLVMUtil.c
│ │ │ │ ├── nbody_Body.c
│ │ │ │ ├── nbody_Body.h
│ │ │ │ ├── nbody_nbody.c
│ │ │ │ ├── nbody_nbody.h
│ │ │ │ ├── nbody_NBodySystem.c
│ │ │ │ ├── nbody_NBodySystem.h
│ │ │ │ ├── org_apache_harmony_luni_internal_nls_Messages.c
│ │ │ │ ├── org_apache_harmony_luni_internal_nls_Messages.h
│ │ │ │ ├── org_apache_harmony_luni_platform_Endianness.c
│ │ │ │ ├── org_apache_harmony_luni_platform_Endianness.h
│ │ │ │ ├── org_apache_harmony_luni_platform_IFileSystem.c
│ │ │ │ ├── org_apache_harmony_luni_platform_IFileSystem.h
│ │ │ │ ├── org_apache_harmony_luni_platform_IMemorySystem.c
│ │ │ │ ├── org_apache_harmony_luni_platform_IMemorySystem.h
│ │ │ │ ├── org_apache_harmony_luni_platform_INetworkSystem.c
│ │ │ │ ├── org_apache_harmony_luni_platform_INetworkSystem.h
│ │ │ │ ├── org_apache_harmony_luni_platform_OSFileSystem.c
│ │ │ │ ├── org_apache_harmony_luni_platform_OSFileSystem.h
│ │ │ │ ├── org_apache_harmony_luni_platform_OSMemory.c
│ │ │ │ ├── org_apache_harmony_luni_platform_OSMemory.h
│ │ │ │ ├── org_apache_harmony_luni_platform_OSNetworkSystem.c
│ │ │ │ ├── org_apache_harmony_luni_platform_OSNetworkSystem.h
│ │ │ │ ├── org_apache_harmony_luni_util_FloatingPointParser.c
│ │ │ │ ├── org_apache_harmony_luni_util_FloatingPointParser.h
│ │ │ │ ├── org_apache_harmony_luni_util_NumberConverter.c
│ │ │ │ ├── org_apache_harmony_luni_util_NumberConverter.h
│ │ │ │ ├── org_apache_harmony_luni_util_PriviAction.c
│ │ │ │ ├── org_apache_harmony_luni_util_PriviAction.h
│ │ │ │ ├── org_apache_harmony_luni_util_Util.c
│ │ │ │ ├── org_apache_harmony_luni_util_Util.h
│ │ │ │ ├── org_apache_harmony_niochar_CharsetProviderImpl_1.c
│ │ │ │ ├── org_apache_harmony_niochar_CharsetProviderImpl_1.h
│ │ │ │ ├── org_apache_harmony_niochar_CharsetProviderImpl.c
│ │ │ │ ├── org_apache_harmony_niochar_CharsetProviderImpl.h
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8.c
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8_Decoder.c
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8_Decoder.h
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8_Encoder.c
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8_Encoder.h
│ │ │ │ ├── org_apache_harmony_niochar_charset_UTF_8.h
│ │ │ │ ├── org_xmlvm_runtime_Condition.c
│ │ │ │ ├── org_xmlvm_runtime_Condition.h
│ │ │ │ ├── org_xmlvm_runtime_FinalizerNotifier_1.c
│ │ │ │ ├── org_xmlvm_runtime_FinalizerNotifier_1.h
│ │ │ │ ├── org_xmlvm_runtime_FinalizerNotifier.c
│ │ │ │ ├── org_xmlvm_runtime_FinalizerNotifier.h
│ │ │ │ ├── org_xmlvm_runtime_Mutex.c
│ │ │ │ ├── org_xmlvm_runtime_Mutex.h
│ │ │ │ ├── org_xmlvm_runtime_RedTypeMarker.c
│ │ │ │ ├── org_xmlvm_runtime_RedTypeMarker.h
│ │ │ │ ├── org_xmlvm_runtime_XMLVMArray.c
│ │ │ │ ├── org_xmlvm_runtime_XMLVMArray.h
│ │ │ │ ├── org_xmlvm_runtime_XMLVMClassLoader.c
│ │ │ │ ├── org_xmlvm_runtime_XMLVMClassLoader.h
│ │ │ │ ├── org_xmlvm_runtime_XMLVMOutputStream.c
│ │ │ │ ├── org_xmlvm_runtime_XMLVMOutputStream.h
│ │ │ │ ├── org_xmlvm_runtime_XMLVMUtil.c
│ │ │ │ ├── org_xmlvm_runtime_XMLVMUtil.h
│ │ │ │ ├── uthash.h
│ │ │ │ ├── xmlvm.c
│ │ │ │ ├── xmlvm-file.c
│ │ │ │ ├── xmlvm-file.h
│ │ │ │ ├── xmlvm.h
│ │ │ │ ├── xmlvm-hy.c
│ │ │ │ ├── xmlvm-hy.h
│ │ │ │ ├── xmlvm-number.c
│ │ │ │ ├── xmlvm-number.h
│ │ │ │ ├── xmlvm-reflection.h
│ │ │ │ ├── xmlvm-sock.c
│ │ │ │ ├── xmlvm-sock.h
│ │ │ │ ├── xmlvm-tib-list.c
│ │ │ │ ├── xmlvm-util.c
│ │ │ │ └── xmlvm-util.h
│ │ │ ├── new.cpp
│ │ │ ├── openal_playback.cpp
│ │ │ ├── openjpeg
│ │ │ │ ├── CHANGES
│ │ │ │ ├── clean.bat
│ │ │ │ ├── CMake
│ │ │ │ │ ├── CheckHaveGetopt.cmake
│ │ │ │ │ ├── CTestCustom.cmake.in
│ │ │ │ │ └── OpenJPEGConfig.cmake.in
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── codec
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── convert.c
│ │ │ │ │ ├── convert.h
│ │ │ │ │ ├── image_to_j2k.c
│ │ │ │ │ ├── image_to_j2k.dsp
│ │ │ │ │ ├── image_to_j2k.dsw
│ │ │ │ │ ├── image_to_j2k.sln
│ │ │ │ │ ├── image_to_j2k.vcproj
│ │ │ │ │ ├── index.c
│ │ │ │ │ ├── index.h
│ │ │ │ │ ├── j2k_dump.c
│ │ │ │ │ ├── j2k_to_image.c
│ │ │ │ │ ├── j2k_to_image.dsp
│ │ │ │ │ ├── j2k_to_image.dsw
│ │ │ │ │ ├── j2k_to_image.sln
│ │ │ │ │ ├── j2k_to_image.vcproj
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── Makefile.nix
│ │ │ │ │ ├── README
│ │ │ │ │ └── windirent.h
│ │ │ │ ├── common
│ │ │ │ │ ├── color.c
│ │ │ │ │ ├── color.h
│ │ │ │ │ ├── format_defs.h
│ │ │ │ │ ├── getopt.c
│ │ │ │ │ └── getopt.h
│ │ │ │ ├── config.nix
│ │ │ │ ├── configure.ac
│ │ │ │ ├── CTestConfig.cmake
│ │ │ │ ├── CTestCustom.cmake.in
│ │ │ │ ├── depcomp
│ │ │ │ ├── DllOpenJPEG.dsp
│ │ │ │ ├── DllOpenJPEG.sln
│ │ │ │ ├── DllOpenJPEG.vcproj
│ │ │ │ ├── doc
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Doxyfile.dox
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── Makefile.nix
│ │ │ │ │ └── man
│ │ │ │ │ ├── man1
│ │ │ │ │ │ ├── image_to_j2k.1
│ │ │ │ │ │ ├── j2k_dump.1
│ │ │ │ │ │ └── j2k_to_image.1
│ │ │ │ │ └── man3
│ │ │ │ │ └── libopenjpeg.3
│ │ │ │ ├── INSTALL
│ │ │ │ ├── install-sh
│ │ │ │ ├── libopenjpeg
│ │ │ │ │ ├── bio.c
│ │ │ │ │ ├── bio.h
│ │ │ │ │ ├── cio.c
│ │ │ │ │ ├── cio.h
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── dwt.c
│ │ │ │ │ ├── dwt.h
│ │ │ │ │ ├── event.c
│ │ │ │ │ ├── event.h
│ │ │ │ │ ├── fix.h
│ │ │ │ │ ├── image.c
│ │ │ │ │ ├── image.h
│ │ │ │ │ ├── int.h
│ │ │ │ │ ├── j2k.c
│ │ │ │ │ ├── j2k.h
│ │ │ │ │ ├── j2k_lib.c
│ │ │ │ │ ├── j2k_lib.h
│ │ │ │ │ ├── jp2.c
│ │ │ │ │ ├── jp2.h
│ │ │ │ │ ├── jpt.c
│ │ │ │ │ ├── jpt.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── mct.c
│ │ │ │ │ ├── mct.h
│ │ │ │ │ ├── mqc.c
│ │ │ │ │ ├── mqc.h
│ │ │ │ │ ├── openjpeg.c
│ │ │ │ │ ├── openjpeg.h
│ │ │ │ │ ├── opj_includes.h
│ │ │ │ │ ├── opj_malloc.h
│ │ │ │ │ ├── pi.c
│ │ │ │ │ ├── pi.h
│ │ │ │ │ ├── raw.c
│ │ │ │ │ ├── raw.h
│ │ │ │ │ ├── t1.c
│ │ │ │ │ ├── t1_generate_luts.c
│ │ │ │ │ ├── t1.h
│ │ │ │ │ ├── t1_luts.h
│ │ │ │ │ ├── t2.c
│ │ │ │ │ ├── t2.h
│ │ │ │ │ ├── tcd.c
│ │ │ │ │ ├── tcd.h
│ │ │ │ │ ├── tgt.c
│ │ │ │ │ └── tgt.h
│ │ │ │ ├── LibOpenJPEG.dsp
│ │ │ │ ├── LibOpenJPEG.dsw
│ │ │ │ ├── libopenjpeg.pc.in
│ │ │ │ ├── LibOpenJPEG.sln
│ │ │ │ ├── LibOpenJPEG.vcproj
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── Makefile.nix
│ │ │ │ ├── missing
│ │ │ │ ├── OpenJPEG.rc
│ │ │ │ ├── opj_config.h
│ │ │ │ ├── opj_configh.cmake.in
│ │ │ │ ├── opj_config.h.in
│ │ │ │ ├── opj_config.h.in.user
│ │ │ │ ├── README
│ │ │ │ ├── README.msvc
│ │ │ │ ├── readme.txt
│ │ │ │ ├── syntensity_lobby.j2k
│ │ │ │ ├── syntensity_lobby_s.j2k
│ │ │ │ └── syntensity_lobby_s.raw
│ │ │ ├── parseInt
│ │ │ │ ├── output_i64mode1.txt
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── perspective.c
│ │ │ ├── perspective.png
│ │ │ ├── poppler
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── cmake
│ │ │ │ │ └── modules
│ │ │ │ │ ├── COPYING-CMAKE-SCRIPTS
│ │ │ │ │ ├── FindCairo.cmake
│ │ │ │ │ ├── FindFontconfig.cmake
│ │ │ │ │ ├── FindGDK.cmake
│ │ │ │ │ ├── FindGLIB.cmake
│ │ │ │ │ ├── FindGObjectIntrospection.cmake
│ │ │ │ │ ├── FindGTK.cmake
│ │ │ │ │ ├── FindIconv.cmake
│ │ │ │ │ ├── FindLCMS.cmake
│ │ │ │ │ ├── FindLIBOPENJPEG.cmake
│ │ │ │ │ ├── FindQt3.cmake
│ │ │ │ │ ├── FindQt4.cmake
│ │ │ │ │ ├── GObjectIntrospectionMacros.cmake
│ │ │ │ │ ├── MacroBoolTo01.cmake
│ │ │ │ │ ├── MacroEnsureVersion.cmake
│ │ │ │ │ ├── MacroOptionalFindPackage.cmake
│ │ │ │ │ ├── MacroPushRequiredVars.cmake
│ │ │ │ │ ├── PopplerDefaults.cmake
│ │ │ │ │ └── PopplerMacros.cmake
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.h.cmake
│ │ │ │ ├── config.h.in
│ │ │ │ ├── config.sub
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── ConfigureChecks.cmake
│ │ │ │ ├── COPYING
│ │ │ │ ├── cpp
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── poppler-document.cpp
│ │ │ │ │ ├── poppler-document.h
│ │ │ │ │ ├── poppler-document-private.h
│ │ │ │ │ ├── poppler-embedded-file.cpp
│ │ │ │ │ ├── poppler-embedded-file.h
│ │ │ │ │ ├── poppler-embedded-file-private.h
│ │ │ │ │ ├── poppler-font.cpp
│ │ │ │ │ ├── poppler-font.h
│ │ │ │ │ ├── poppler-global.cpp
│ │ │ │ │ ├── poppler-global.h
│ │ │ │ │ ├── poppler-image.cpp
│ │ │ │ │ ├── poppler-image.h
│ │ │ │ │ ├── poppler-image-private.h
│ │ │ │ │ ├── poppler-page.cpp
│ │ │ │ │ ├── poppler-page.h
│ │ │ │ │ ├── poppler-page-private.h
│ │ │ │ │ ├── poppler-page-renderer.cpp
│ │ │ │ │ ├── poppler-page-renderer.h
│ │ │ │ │ ├── poppler-page-transition.cpp
│ │ │ │ │ ├── poppler-page-transition.h
│ │ │ │ │ ├── poppler-private.cpp
│ │ │ │ │ ├── poppler-private.h
│ │ │ │ │ ├── poppler-rectangle.cpp
│ │ │ │ │ ├── poppler-rectangle.h
│ │ │ │ │ ├── poppler-toc.cpp
│ │ │ │ │ ├── poppler-toc.h
│ │ │ │ │ ├── poppler-toc-private.h
│ │ │ │ │ ├── poppler-version.cpp
│ │ │ │ │ ├── poppler-version.h
│ │ │ │ │ ├── poppler-version.h.in
│ │ │ │ │ └── tests
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── poppler-dump.cpp
│ │ │ │ │ └── poppler-render.cpp
│ │ │ │ ├── depcomp
│ │ │ │ ├── fofi
│ │ │ │ │ ├── FoFiBase.cc
│ │ │ │ │ ├── FoFiBase.h
│ │ │ │ │ ├── FoFiEncodings.cc
│ │ │ │ │ ├── FoFiEncodings.h
│ │ │ │ │ ├── FoFiTrueType.cc
│ │ │ │ │ ├── FoFiTrueType.h
│ │ │ │ │ ├── FoFiType1.cc
│ │ │ │ │ ├── FoFiType1C.cc
│ │ │ │ │ ├── FoFiType1C.h
│ │ │ │ │ ├── FoFiType1.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ └── Makefile.in
│ │ │ │ ├── fontconfig
│ │ │ │ │ └── fontconfig.h
│ │ │ │ ├── glib
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── demo
│ │ │ │ │ │ ├── annots.c
│ │ │ │ │ │ ├── annots.h
│ │ │ │ │ │ ├── attachments.c
│ │ │ │ │ │ ├── attachments.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── find.c
│ │ │ │ │ │ ├── find.h
│ │ │ │ │ │ ├── fonts.c
│ │ │ │ │ │ ├── fonts.h
│ │ │ │ │ │ ├── forms.c
│ │ │ │ │ │ ├── forms.h
│ │ │ │ │ │ ├── images.c
│ │ │ │ │ │ ├── images.h
│ │ │ │ │ │ ├── info.cc
│ │ │ │ │ │ ├── info.h
│ │ │ │ │ │ ├── layers.c
│ │ │ │ │ │ ├── layers.h
│ │ │ │ │ │ ├── links.c
│ │ │ │ │ │ ├── links.h
│ │ │ │ │ │ ├── main.c
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── outline.c
│ │ │ │ │ │ ├── outline.h
│ │ │ │ │ │ ├── page.c
│ │ │ │ │ │ ├── page.h
│ │ │ │ │ │ ├── print.c
│ │ │ │ │ │ ├── print.h
│ │ │ │ │ │ ├── render.c
│ │ │ │ │ │ ├── render.h
│ │ │ │ │ │ ├── selections.c
│ │ │ │ │ │ ├── selections.h
│ │ │ │ │ │ ├── text.c
│ │ │ │ │ │ ├── text.h
│ │ │ │ │ │ ├── transitions.c
│ │ │ │ │ │ ├── transitions.h
│ │ │ │ │ │ ├── utils.c
│ │ │ │ │ │ └── utils.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── Poppler-0.16.gir
│ │ │ │ │ ├── poppler-action.cc
│ │ │ │ │ ├── poppler-action.h
│ │ │ │ │ ├── poppler-annot.cc
│ │ │ │ │ ├── poppler-annot.h
│ │ │ │ │ ├── poppler-attachment.cc
│ │ │ │ │ ├── poppler-attachment.h
│ │ │ │ │ ├── poppler.cc
│ │ │ │ │ ├── poppler-date.cc
│ │ │ │ │ ├── poppler-date.h
│ │ │ │ │ ├── poppler-document.cc
│ │ │ │ │ ├── poppler-document.h
│ │ │ │ │ ├── poppler-enums.c
│ │ │ │ │ ├── poppler-enums.c.template
│ │ │ │ │ ├── poppler-enums.h
│ │ │ │ │ ├── poppler-enums.h.template
│ │ │ │ │ ├── poppler-features.h.cmake
│ │ │ │ │ ├── poppler-features.h.in
│ │ │ │ │ ├── poppler-form-field.cc
│ │ │ │ │ ├── poppler-form-field.h
│ │ │ │ │ ├── poppler.h
│ │ │ │ │ ├── poppler-layer.cc
│ │ │ │ │ ├── poppler-layer.h
│ │ │ │ │ ├── poppler-media.cc
│ │ │ │ │ ├── poppler-media.h
│ │ │ │ │ ├── poppler-movie.cc
│ │ │ │ │ ├── poppler-movie.h
│ │ │ │ │ ├── poppler-page.cc
│ │ │ │ │ ├── poppler-page.h
│ │ │ │ │ ├── poppler-private.h
│ │ │ │ │ ├── reference
│ │ │ │ │ │ ├── html
│ │ │ │ │ │ │ ├── annotation-glossary.html
│ │ │ │ │ │ │ ├── api-index-0-12.html
│ │ │ │ │ │ │ ├── api-index-0-14.html
│ │ │ │ │ │ │ ├── api-index-0-16.html
│ │ │ │ │ │ │ ├── api-index-deprecated.html
│ │ │ │ │ │ │ ├── api-index-full.html
│ │ │ │ │ │ │ ├── ch01.html
│ │ │ │ │ │ │ ├── home.png
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── index.sgml
│ │ │ │ │ │ │ ├── left.png
│ │ │ │ │ │ │ ├── PopplerAnnot.html
│ │ │ │ │ │ │ ├── PopplerAttachment.html
│ │ │ │ │ │ │ ├── poppler.devhelp
│ │ │ │ │ │ │ ├── poppler.devhelp2
│ │ │ │ │ │ │ ├── PopplerDocument.html
│ │ │ │ │ │ │ ├── PopplerFormField.html
│ │ │ │ │ │ │ ├── PopplerLayer.html
│ │ │ │ │ │ │ ├── PopplerMedia.html
│ │ │ │ │ │ │ ├── PopplerMovie.html
│ │ │ │ │ │ │ ├── PopplerPage.html
│ │ │ │ │ │ │ ├── poppler-PopplerAction.html
│ │ │ │ │ │ │ ├── poppler-poppler.html
│ │ │ │ │ │ │ ├── poppler-Version-and-Features-Information.html
│ │ │ │ │ │ │ ├── right.png
│ │ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ │ └── up.png
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── poppler-docs.sgml
│ │ │ │ │ │ ├── poppler-overrides.txt
│ │ │ │ │ │ ├── poppler-sections.txt
│ │ │ │ │ │ ├── poppler.types
│ │ │ │ │ │ ├── version.xml
│ │ │ │ │ │ └── version.xml.in
│ │ │ │ │ └── test-poppler-glib.cc
│ │ │ │ ├── goo
│ │ │ │ │ ├── FixedPoint.cc
│ │ │ │ │ ├── FixedPoint.h
│ │ │ │ │ ├── gfile.cc
│ │ │ │ │ ├── gfile.h
│ │ │ │ │ ├── gmem.cc
│ │ │ │ │ ├── gmem.h
│ │ │ │ │ ├── gmempp.cc
│ │ │ │ │ ├── GooHash.cc
│ │ │ │ │ ├── GooHash.h
│ │ │ │ │ ├── GooLikely.h
│ │ │ │ │ ├── GooList.cc
│ │ │ │ │ ├── GooList.h
│ │ │ │ │ ├── GooMutex.h
│ │ │ │ │ ├── GooString.cc
│ │ │ │ │ ├── GooString.h
│ │ │ │ │ ├── GooTimer.cc
│ │ │ │ │ ├── GooTimer.h
│ │ │ │ │ ├── gstrtod.cc
│ │ │ │ │ ├── gstrtod.h
│ │ │ │ │ ├── gtypes.h
│ │ │ │ │ ├── ImgWriter.cc
│ │ │ │ │ ├── ImgWriter.h
│ │ │ │ │ ├── JpegWriter.cc
│ │ │ │ │ ├── JpegWriter.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── PNGWriter.cc
│ │ │ │ │ └── PNGWriter.h
│ │ │ │ ├── gtk-doc.make
│ │ │ │ ├── INSTALL
│ │ │ │ ├── install-sh
│ │ │ │ ├── ltmain.sh
│ │ │ │ ├── m4
│ │ │ │ │ ├── acx_pthread.m4
│ │ │ │ │ ├── define-dir.m4
│ │ │ │ │ ├── gtk-doc.m4
│ │ │ │ │ ├── iconv.m4
│ │ │ │ │ ├── introspection.m4
│ │ │ │ │ ├── libjpeg.m4
│ │ │ │ │ ├── libtool.m4
│ │ │ │ │ ├── lt~obsolete.m4
│ │ │ │ │ ├── ltoptions.m4
│ │ │ │ │ ├── ltsugar.m4
│ │ │ │ │ ├── ltversion.m4
│ │ │ │ │ └── qt.m4
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── missing
│ │ │ │ ├── NEWS
│ │ │ │ ├── paper.pdf
│ │ │ │ ├── poppler
│ │ │ │ │ ├── ABWOutputDev.cc
│ │ │ │ │ ├── ABWOutputDev.h
│ │ │ │ │ ├── Annot.cc
│ │ │ │ │ ├── Annot.h
│ │ │ │ │ ├── Array.cc
│ │ │ │ │ ├── Array.h
│ │ │ │ │ ├── ArthurOutputDev.cc
│ │ │ │ │ ├── ArthurOutputDev.h
│ │ │ │ │ ├── BuiltinFont.cc
│ │ │ │ │ ├── BuiltinFont.h
│ │ │ │ │ ├── BuiltinFontTables.cc
│ │ │ │ │ ├── BuiltinFontTables.h
│ │ │ │ │ ├── CachedFile.cc
│ │ │ │ │ ├── CachedFile.h
│ │ │ │ │ ├── CairoFontEngine.cc
│ │ │ │ │ ├── CairoFontEngine.h
│ │ │ │ │ ├── CairoOutputDev.cc
│ │ │ │ │ ├── CairoOutputDev.h
│ │ │ │ │ ├── CairoRescaleBox.cc
│ │ │ │ │ ├── CairoRescaleBox.h
│ │ │ │ │ ├── Catalog.cc
│ │ │ │ │ ├── Catalog.h
│ │ │ │ │ ├── CharCodeToUnicode.cc
│ │ │ │ │ ├── CharCodeToUnicode.h
│ │ │ │ │ ├── CharTypes.h
│ │ │ │ │ ├── CMap.cc
│ │ │ │ │ ├── CMap.h
│ │ │ │ │ ├── CompactFontTables.h
│ │ │ │ │ ├── CurlCachedFile.cc
│ │ │ │ │ ├── CurlCachedFile.h
│ │ │ │ │ ├── CurlPDFDocBuilder.cc
│ │ │ │ │ ├── CurlPDFDocBuilder.h
│ │ │ │ │ ├── DateInfo.cc
│ │ │ │ │ ├── DateInfo.h
│ │ │ │ │ ├── DCTStream.cc
│ │ │ │ │ ├── DCTStream.h
│ │ │ │ │ ├── Decrypt.cc
│ │ │ │ │ ├── Decrypt.h
│ │ │ │ │ ├── Dict.cc
│ │ │ │ │ ├── Dict.h
│ │ │ │ │ ├── Error.cc
│ │ │ │ │ ├── ErrorCodes.h
│ │ │ │ │ ├── Error.h
│ │ │ │ │ ├── FileSpec.cc
│ │ │ │ │ ├── FileSpec.h
│ │ │ │ │ ├── FlateStream.cc
│ │ │ │ │ ├── FlateStream.h
│ │ │ │ │ ├── FontEncodingTables.cc
│ │ │ │ │ ├── FontEncodingTables.h
│ │ │ │ │ ├── FontInfo.cc
│ │ │ │ │ ├── FontInfo.h
│ │ │ │ │ ├── Form.cc
│ │ │ │ │ ├── Form.h
│ │ │ │ │ ├── Function.cc
│ │ │ │ │ ├── Function.h
│ │ │ │ │ ├── gen-unicode-tables.py
│ │ │ │ │ ├── Gfx.cc
│ │ │ │ │ ├── GfxFont.cc
│ │ │ │ │ ├── GfxFont.h
│ │ │ │ │ ├── Gfx.h
│ │ │ │ │ ├── GfxState.cc
│ │ │ │ │ ├── GfxState.h
│ │ │ │ │ ├── GfxState_helpers.h
│ │ │ │ │ ├── GlobalParams.cc
│ │ │ │ │ ├── GlobalParams.h
│ │ │ │ │ ├── GlobalParamsWin.cc
│ │ │ │ │ ├── Hints.cc
│ │ │ │ │ ├── Hints.h
│ │ │ │ │ ├── JArithmeticDecoder.cc
│ │ │ │ │ ├── JArithmeticDecoder.h
│ │ │ │ │ ├── JBIG2Stream.cc
│ │ │ │ │ ├── JBIG2Stream.h
│ │ │ │ │ ├── JPEG2000Stream.cc
│ │ │ │ │ ├── JPEG2000Stream.h
│ │ │ │ │ ├── JPXStream.cc
│ │ │ │ │ ├── JPXStream.h
│ │ │ │ │ ├── Lexer.cc
│ │ │ │ │ ├── Lexer.h
│ │ │ │ │ ├── Linearization.cc
│ │ │ │ │ ├── Linearization.h
│ │ │ │ │ ├── Link.cc
│ │ │ │ │ ├── Link.h
│ │ │ │ │ ├── LocalPDFDocBuilder.cc
│ │ │ │ │ ├── LocalPDFDocBuilder.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── Movie.cc
│ │ │ │ │ ├── Movie.h
│ │ │ │ │ ├── NameToCharCode.cc
│ │ │ │ │ ├── NameToCharCode.h
│ │ │ │ │ ├── NameToUnicodeTable.h
│ │ │ │ │ ├── Object.cc
│ │ │ │ │ ├── Object.h
│ │ │ │ │ ├── OptionalContent.cc
│ │ │ │ │ ├── OptionalContent.h
│ │ │ │ │ ├── Outline.cc
│ │ │ │ │ ├── Outline.h
│ │ │ │ │ ├── OutputDev.cc
│ │ │ │ │ ├── OutputDev.h
│ │ │ │ │ ├── Page.cc
│ │ │ │ │ ├── Page.h
│ │ │ │ │ ├── PageLabelInfo.cc
│ │ │ │ │ ├── PageLabelInfo.h
│ │ │ │ │ ├── PageTransition.cc
│ │ │ │ │ ├── PageTransition.h
│ │ │ │ │ ├── Parser.cc
│ │ │ │ │ ├── Parser.h
│ │ │ │ │ ├── PDFDocBuilder.h
│ │ │ │ │ ├── PDFDoc.cc
│ │ │ │ │ ├── PDFDocEncoding.cc
│ │ │ │ │ ├── PDFDocEncoding.h
│ │ │ │ │ ├── PDFDocFactory.cc
│ │ │ │ │ ├── PDFDocFactory.h
│ │ │ │ │ ├── PDFDoc.h
│ │ │ │ │ ├── PopplerCache.cc
│ │ │ │ │ ├── PopplerCache.h
│ │ │ │ │ ├── poppler-config.h.cmake
│ │ │ │ │ ├── poppler-config.h.in
│ │ │ │ │ ├── PreScanOutputDev.cc
│ │ │ │ │ ├── PreScanOutputDev.h
│ │ │ │ │ ├── ProfileData.cc
│ │ │ │ │ ├── ProfileData.h
│ │ │ │ │ ├── PSOutputDev.cc
│ │ │ │ │ ├── PSOutputDev.h
│ │ │ │ │ ├── PSTokenizer.cc
│ │ │ │ │ ├── PSTokenizer.h
│ │ │ │ │ ├── Rendition.cc
│ │ │ │ │ ├── Rendition.h
│ │ │ │ │ ├── SecurityHandler.cc
│ │ │ │ │ ├── SecurityHandler.h
│ │ │ │ │ ├── Sound.cc
│ │ │ │ │ ├── Sound.h
│ │ │ │ │ ├── SplashOutputDev.cc
│ │ │ │ │ ├── SplashOutputDev.h
│ │ │ │ │ ├── StdinCachedFile.cc
│ │ │ │ │ ├── StdinCachedFile.h
│ │ │ │ │ ├── StdinPDFDocBuilder.cc
│ │ │ │ │ ├── StdinPDFDocBuilder.h
│ │ │ │ │ ├── Stream.cc
│ │ │ │ │ ├── Stream-CCITT.h
│ │ │ │ │ ├── Stream.h
│ │ │ │ │ ├── strtok_r.cpp
│ │ │ │ │ ├── TextOutputDev.cc
│ │ │ │ │ ├── TextOutputDev.h
│ │ │ │ │ ├── UnicodeCClassTables.h
│ │ │ │ │ ├── UnicodeCompTables.h
│ │ │ │ │ ├── UnicodeDecompTables.h
│ │ │ │ │ ├── UnicodeMap.cc
│ │ │ │ │ ├── UnicodeMap.h
│ │ │ │ │ ├── UnicodeMapTables.h
│ │ │ │ │ ├── UnicodeTypeTable.cc
│ │ │ │ │ ├── UnicodeTypeTable.h
│ │ │ │ │ ├── UTF8.h
│ │ │ │ │ ├── XpdfPluginAPI.cc
│ │ │ │ │ ├── XpdfPluginAPI.h
│ │ │ │ │ ├── XRef.cc
│ │ │ │ │ └── XRef.h
│ │ │ │ ├── poppler-cairo.pc.cmake
│ │ │ │ ├── poppler-cairo.pc.in
│ │ │ │ ├── poppler-cairo-uninstalled.pc.in
│ │ │ │ ├── poppler-cpp.pc.cmake
│ │ │ │ ├── poppler-cpp.pc.in
│ │ │ │ ├── poppler-cpp-uninstalled.pc.in
│ │ │ │ ├── poppler-glib.pc.cmake
│ │ │ │ ├── poppler-glib.pc.in
│ │ │ │ ├── poppler-glib-uninstalled.pc.in
│ │ │ │ ├── poppler.pc.cmake
│ │ │ │ ├── poppler.pc.in
│ │ │ │ ├── poppler-qt4.pc.cmake
│ │ │ │ ├── poppler-qt4.pc.in
│ │ │ │ ├── poppler-qt4-uninstalled.pc.in
│ │ │ │ ├── poppler-qt.pc.cmake
│ │ │ │ ├── poppler-qt.pc.in
│ │ │ │ ├── poppler-qt-uninstalled.pc.in
│ │ │ │ ├── poppler-splash.pc.cmake
│ │ │ │ ├── poppler-splash.pc.in
│ │ │ │ ├── poppler-splash-uninstalled.pc.in
│ │ │ │ ├── poppler-uninstalled.pc.in
│ │ │ │ ├── qt
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── poppler-document.cc
│ │ │ │ │ ├── poppler-fontinfo.cc
│ │ │ │ │ ├── poppler-link.cc
│ │ │ │ │ ├── poppler-link-qt3.h
│ │ │ │ │ ├── poppler-page.cc
│ │ │ │ │ ├── poppler-page-transition.cc
│ │ │ │ │ ├── poppler-page-transition.h
│ │ │ │ │ ├── poppler-page-transition-private.h
│ │ │ │ │ ├── poppler-private.cc
│ │ │ │ │ ├── poppler-private.h
│ │ │ │ │ ├── poppler-qt.h
│ │ │ │ │ └── test-poppler-qt.cpp
│ │ │ │ ├── qt4
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── demos
│ │ │ │ │ │ ├── abstractinfodock.cpp
│ │ │ │ │ │ ├── abstractinfodock.h
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── documentobserver.cpp
│ │ │ │ │ │ ├── documentobserver.h
│ │ │ │ │ │ ├── embeddedfiles.cpp
│ │ │ │ │ │ ├── embeddedfiles.h
│ │ │ │ │ │ ├── fonts.cpp
│ │ │ │ │ │ ├── fonts.h
│ │ │ │ │ │ ├── info.cpp
│ │ │ │ │ │ ├── info.h
│ │ │ │ │ │ ├── main_viewer.cpp
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── metadata.cpp
│ │ │ │ │ │ ├── metadata.h
│ │ │ │ │ │ ├── navigationtoolbar.cpp
│ │ │ │ │ │ ├── navigationtoolbar.h
│ │ │ │ │ │ ├── optcontent.cpp
│ │ │ │ │ │ ├── optcontent.h
│ │ │ │ │ │ ├── pageview.cpp
│ │ │ │ │ │ ├── pageview.h
│ │ │ │ │ │ ├── permissions.cpp
│ │ │ │ │ │ ├── permissions.h
│ │ │ │ │ │ ├── thumbnails.cpp
│ │ │ │ │ │ ├── thumbnails.h
│ │ │ │ │ │ ├── toc.cpp
│ │ │ │ │ │ ├── toc.h
│ │ │ │ │ │ ├── viewer.cpp
│ │ │ │ │ │ └── viewer.h
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── Makefile.in
│ │ │ │ │ │ ├── poppler-annotation.cc
│ │ │ │ │ │ ├── poppler-annotation.h
│ │ │ │ │ │ ├── poppler-annotation-helper.h
│ │ │ │ │ │ ├── poppler-annotation-private.h
│ │ │ │ │ │ ├── poppler-base-converter.cc
│ │ │ │ │ │ ├── poppler-converter-private.h
│ │ │ │ │ │ ├── poppler-document.cc
│ │ │ │ │ │ ├── poppler-embeddedfile.cc
│ │ │ │ │ │ ├── poppler-export.h
│ │ │ │ │ │ ├── poppler-fontinfo.cc
│ │ │ │ │ │ ├── poppler-form.cc
│ │ │ │ │ │ ├── poppler-form.h
│ │ │ │ │ │ ├── poppler-link.cc
│ │ │ │ │ │ ├── poppler-link-extractor.cc
│ │ │ │ │ │ ├── poppler-link-extractor-private.h
│ │ │ │ │ │ ├── poppler-link.h
│ │ │ │ │ │ ├── poppler-movie.cc
│ │ │ │ │ │ ├── poppler-optcontent.cc
│ │ │ │ │ │ ├── poppler-optcontent.h
│ │ │ │ │ │ ├── poppler-optcontent-private.h
│ │ │ │ │ │ ├── poppler-page.cc
│ │ │ │ │ │ ├── poppler-page-private.h
│ │ │ │ │ │ ├── poppler-page-transition.cc
│ │ │ │ │ │ ├── poppler-page-transition.h
│ │ │ │ │ │ ├── poppler-page-transition-private.h
│ │ │ │ │ │ ├── poppler-pdf-converter.cc
│ │ │ │ │ │ ├── poppler-private.cc
│ │ │ │ │ │ ├── poppler-private.h
│ │ │ │ │ │ ├── poppler-ps-converter.cc
│ │ │ │ │ │ ├── poppler-qiodeviceoutstream.cc
│ │ │ │ │ │ ├── poppler-qiodeviceoutstream-private.h
│ │ │ │ │ │ ├── poppler-qt4.h
│ │ │ │ │ │ ├── poppler-sound.cc
│ │ │ │ │ │ └── poppler-textbox.cc
│ │ │ │ │ └── tests
│ │ │ │ │ ├── check_actualtext.cpp
│ │ │ │ │ ├── check_attachments.cpp
│ │ │ │ │ ├── check_dateConversion.cpp
│ │ │ │ │ ├── check_fonts.cpp
│ │ │ │ │ ├── check_links.cpp
│ │ │ │ │ ├── check_metadata.cpp
│ │ │ │ │ ├── check_optcontent.cpp
│ │ │ │ │ ├── check_pagelayout.cpp
│ │ │ │ │ ├── check_pagemode.cpp
│ │ │ │ │ ├── check_password.cpp
│ │ │ │ │ ├── check_permissions.cpp
│ │ │ │ │ ├── check_search.cpp
│ │ │ │ │ ├── check_strings.cpp
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── poppler-attachments.cpp
│ │ │ │ │ ├── poppler-fonts.cpp
│ │ │ │ │ ├── poppler-texts.cpp
│ │ │ │ │ ├── stress-poppler-dir.cpp
│ │ │ │ │ ├── stress-poppler-qt4.cpp
│ │ │ │ │ ├── test-password-qt4.cpp
│ │ │ │ │ └── test-poppler-qt4.cpp
│ │ │ │ ├── README
│ │ │ │ ├── readme.txt
│ │ │ │ ├── README-XPDF
│ │ │ │ ├── ref.ppm
│ │ │ │ ├── splash
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── SplashBitmap.cc
│ │ │ │ │ ├── SplashBitmap.h
│ │ │ │ │ ├── Splash.cc
│ │ │ │ │ ├── SplashClip.cc
│ │ │ │ │ ├── SplashClip.h
│ │ │ │ │ ├── SplashErrorCodes.h
│ │ │ │ │ ├── SplashFont.cc
│ │ │ │ │ ├── SplashFontEngine.cc
│ │ │ │ │ ├── SplashFontEngine.h
│ │ │ │ │ ├── SplashFontFile.cc
│ │ │ │ │ ├── SplashFontFile.h
│ │ │ │ │ ├── SplashFontFileID.cc
│ │ │ │ │ ├── SplashFontFileID.h
│ │ │ │ │ ├── SplashFont.h
│ │ │ │ │ ├── SplashFTFont.cc
│ │ │ │ │ ├── SplashFTFontEngine.cc
│ │ │ │ │ ├── SplashFTFontEngine.h
│ │ │ │ │ ├── SplashFTFontFile.cc
│ │ │ │ │ ├── SplashFTFontFile.h
│ │ │ │ │ ├── SplashFTFont.h
│ │ │ │ │ ├── SplashGlyphBitmap.h
│ │ │ │ │ ├── Splash.h
│ │ │ │ │ ├── SplashMath.h
│ │ │ │ │ ├── SplashPath.cc
│ │ │ │ │ ├── SplashPath.h
│ │ │ │ │ ├── SplashPattern.cc
│ │ │ │ │ ├── SplashPattern.h
│ │ │ │ │ ├── SplashScreen.cc
│ │ │ │ │ ├── SplashScreen.h
│ │ │ │ │ ├── SplashState.cc
│ │ │ │ │ ├── SplashState.h
│ │ │ │ │ ├── SplashT1Font.cc
│ │ │ │ │ ├── SplashT1FontEngine.cc
│ │ │ │ │ ├── SplashT1FontEngine.h
│ │ │ │ │ ├── SplashT1FontFile.cc
│ │ │ │ │ ├── SplashT1FontFile.h
│ │ │ │ │ ├── SplashT1Font.h
│ │ │ │ │ ├── SplashTypes.h
│ │ │ │ │ ├── SplashXPath.cc
│ │ │ │ │ ├── SplashXPath.h
│ │ │ │ │ ├── SplashXPathScanner.cc
│ │ │ │ │ └── SplashXPathScanner.h
│ │ │ │ ├── test
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── gtk-cairo-test.cc
│ │ │ │ │ ├── gtk-splash-test.cc
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── pdf-fullrewrite.cc
│ │ │ │ │ ├── pdf-inspector.cc
│ │ │ │ │ ├── pdf-inspector.ui
│ │ │ │ │ ├── pdf-operators.c
│ │ │ │ │ ├── perf-test.cc
│ │ │ │ │ └── perf-test-preview-dummy.cc
│ │ │ │ ├── TODO
│ │ │ │ └── utils
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── HtmlFonts.cc
│ │ │ │ ├── HtmlFonts.h
│ │ │ │ ├── HtmlLinks.cc
│ │ │ │ ├── HtmlLinks.h
│ │ │ │ ├── HtmlOutputDev.cc
│ │ │ │ ├── HtmlOutputDev.h
│ │ │ │ ├── ImageOutputDev.cc
│ │ │ │ ├── ImageOutputDev.h
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── parseargs.cc
│ │ │ │ ├── parseargs.h
│ │ │ │ ├── pdf2xml.dtd
│ │ │ │ ├── pdffonts.1
│ │ │ │ ├── pdffonts.cc
│ │ │ │ ├── pdfimages.1
│ │ │ │ ├── pdfimages.cc
│ │ │ │ ├── pdfinfo.1
│ │ │ │ ├── pdfinfo.cc
│ │ │ │ ├── pdftoabw.cc
│ │ │ │ ├── pdftohtml.1
│ │ │ │ ├── pdftohtml.cc
│ │ │ │ ├── pdftoppm.1
│ │ │ │ ├── pdftoppm.cc
│ │ │ │ ├── pdftops.1
│ │ │ │ ├── pdftops.cc
│ │ │ │ ├── pdftotext.1
│ │ │ │ ├── pdftotext.cc
│ │ │ │ ├── printencodings.cc
│ │ │ │ └── printencodings.h
│ │ │ ├── pre_run_deps.cpp
│ │ │ ├── printf
│ │ │ │ ├── output_i64_1.txt
│ │ │ │ ├── output.txt
│ │ │ │ └── test.c
│ │ │ ├── python
│ │ │ │ ├── ccproxy.py
│ │ │ │ ├── LICENSE
│ │ │ │ ├── python.le32.bc
│ │ │ │ ├── python.small.bc
│ │ │ │ └── readme.txt
│ │ │ ├── raytrace_7_256.ppm
│ │ │ ├── raytrace.cpp
│ │ │ ├── raytrace.ppm
│ │ │ ├── runner.py
│ │ │ ├── s3tc.c
│ │ │ ├── s3tc_crunch.c
│ │ │ ├── s3tc_crunch.png
│ │ │ ├── s3tc.png
│ │ │ ├── scons
│ │ │ │ ├── integration.cpp
│ │ │ │ ├── other.c
│ │ │ │ └── SConstruct
│ │ │ ├── screenshot2.png
│ │ │ ├── screenshot.dds
│ │ │ ├── screenshot-fog-density.png
│ │ │ ├── screenshot-fog-exp2.png
│ │ │ ├── screenshot-fog-linear.png
│ │ │ ├── screenshot-fog-negative.png
│ │ │ ├── screenshot-fog-simple.png
│ │ │ ├── screenshot-gray.png
│ │ │ ├── screenshot-gray-purple.png
│ │ │ ├── screenshot.jpg
│ │ │ ├── screenshot.png
│ │ │ ├── sdl_alloctext.c
│ │ │ ├── sdl_audio.c
│ │ │ ├── sdl_audio_mix.c
│ │ │ ├── sdl_audio_quickload.c
│ │ │ ├── sdl_canvas.c
│ │ │ ├── sdl_canvas_palette_2.c
│ │ │ ├── sdl_canvas_palette_b.png
│ │ │ ├── sdl_canvas_palette.c
│ │ │ ├── sdl_canvas_palette_g.png
│ │ │ ├── sdl_canvas_palette.png
│ │ │ ├── sdl_canvas_palette_r.png
│ │ │ ├── sdl_canvas_twice.c
│ │ │ ├── sdl_canvas_twice.png
│ │ │ ├── sdl_fog_density.c
│ │ │ ├── sdl_fog_exp2.c
│ │ │ ├── sdl_fog_linear.c
│ │ │ ├── sdl_fog_negative.c
│ │ │ ├── sdl_fog_simple.c
│ │ │ ├── sdl_gl_read.c
│ │ │ ├── sdlglshader.c
│ │ │ ├── sdlglshader.png
│ │ │ ├── sdl_image.c
│ │ │ ├── sdl_image_jpeg.c
│ │ │ ├── sdl_image_prepare.c
│ │ │ ├── sdl_image_prepare_data.c
│ │ │ ├── sdl_key.c
│ │ │ ├── sdl_key_test.c
│ │ │ ├── sdl_maprgba.c
│ │ │ ├── sdl_maprgba.png
│ │ │ ├── sdl_mouse.c
│ │ │ ├── sdl_ogl.c
│ │ │ ├── sdl_ogl_defaultMatrixMode.c
│ │ │ ├── sdl_ogl_p.c
│ │ │ ├── sdl_quit.c
│ │ │ ├── sdl_resize.c
│ │ │ ├── sdl_rotozoom.c
│ │ │ ├── sdl_rotozoom.png
│ │ │ ├── sdl_text.c
│ │ │ ├── sha1.c
│ │ │ ├── ship.dds
│ │ │ ├── skinning_test_no_simd.cpp
│ │ │ ├── socket_relay.py
│ │ │ ├── sounds
│ │ │ │ ├── alarmcreatemiltaryfoot_1.wav
│ │ │ │ ├── alarmvictory_1.ogg
│ │ │ │ ├── audio.wav
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── pluck.ogg
│ │ │ │ └── the_entertainer.ogg
│ │ │ ├── sqlite
│ │ │ │ ├── benchmark.c
│ │ │ │ ├── benchmark.txt
│ │ │ │ ├── sqlite3.c
│ │ │ │ ├── sqlite3.h
│ │ │ │ └── test.c
│ │ │ ├── stat
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── systypes
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── test_egl_width_height.c
│ │ │ ├── test-fix-closure.js
│ │ │ ├── tex_nonbyte.c
│ │ │ ├── tex_nonbyte.png
│ │ │ ├── time
│ │ │ │ ├── output2.txt
│ │ │ │ ├── output.txt
│ │ │ │ └── src.c
│ │ │ ├── twopart_main.cpp
│ │ │ ├── twopart_side.cpp
│ │ │ ├── unistd
│ │ │ │ ├── access.c
│ │ │ │ ├── access.js
│ │ │ │ ├── access.out
│ │ │ │ ├── close.c
│ │ │ │ ├── close.out
│ │ │ │ ├── confstr.c
│ │ │ │ ├── confstr.out
│ │ │ │ ├── curdir.c
│ │ │ │ ├── curdir.js
│ │ │ │ ├── curdir.out
│ │ │ │ ├── dup.c
│ │ │ │ ├── dup.out
│ │ │ │ ├── io.c
│ │ │ │ ├── io.js
│ │ │ │ ├── io.out
│ │ │ │ ├── isatty.c
│ │ │ │ ├── isatty.js
│ │ │ │ ├── isatty.out
│ │ │ │ ├── links.c
│ │ │ │ ├── links.js
│ │ │ │ ├── links.out
│ │ │ │ ├── login.c
│ │ │ │ ├── login.out
│ │ │ │ ├── misc.c
│ │ │ │ ├── misc.out
│ │ │ │ ├── pathconf.c
│ │ │ │ ├── pathconf.out
│ │ │ │ ├── sleep.c
│ │ │ │ ├── sleep.out
│ │ │ │ ├── swab.c
│ │ │ │ ├── swab.out
│ │ │ │ ├── sysconf.c
│ │ │ │ ├── sysconf.out
│ │ │ │ ├── truncate.c
│ │ │ │ ├── truncate.js
│ │ │ │ ├── truncate.out
│ │ │ │ ├── ttyname.c
│ │ │ │ ├── ttyname.js
│ │ │ │ ├── ttyname.out
│ │ │ │ ├── unlink.c
│ │ │ │ ├── unlink.js
│ │ │ │ └── unlink.out
│ │ │ ├── water.dds
│ │ │ ├── websockets_bi_bigdata.c
│ │ │ ├── websockets_bi.c
│ │ │ ├── websockets_bigdata.h
│ │ │ ├── websockets_bi_listener.c
│ │ │ ├── websockets_bi_side_bigdata.c
│ │ │ ├── websockets_bi_side.c
│ │ │ ├── websockets.c
│ │ │ ├── websockets_gethostbyname.c
│ │ │ ├── websockets_partial.c
│ │ │ ├── websockets_select.c
│ │ │ ├── websockets_select_server_closes_connection.c
│ │ │ ├── websockets_select_server_closes_connection_rw.c
│ │ │ ├── whets.cpp
│ │ │ ├── worker_api_2_main.cpp
│ │ │ ├── worker_api_2_worker.cpp
│ │ │ ├── worker_api_main.cpp
│ │ │ ├── worker_api_worker.cpp
│ │ │ └── zlib
│ │ │ ├── adler32.c
│ │ │ ├── benchmark.c
│ │ │ ├── compress.c
│ │ │ ├── configure
│ │ │ ├── crc32.c
│ │ │ ├── crc32.h
│ │ │ ├── deflate.c
│ │ │ ├── deflate.h
│ │ │ ├── example.c
│ │ │ ├── gzclose.c
│ │ │ ├── gzguts.h
│ │ │ ├── gzlib.c
│ │ │ ├── gzread.c
│ │ │ ├── gzwrite.c
│ │ │ ├── infback.c
│ │ │ ├── inffast.c
│ │ │ ├── inffast.h
│ │ │ ├── inffixed.h
│ │ │ ├── inflate.c
│ │ │ ├── inflate.h
│ │ │ ├── inftrees.c
│ │ │ ├── inftrees.h
│ │ │ ├── Makefile.in
│ │ │ ├── minigzip.c
│ │ │ ├── README
│ │ │ ├── readme.txt
│ │ │ ├── ref.txt
│ │ │ ├── trees.c
│ │ │ ├── trees.h
│ │ │ ├── uncompr.c
│ │ │ ├── zconf.h
│ │ │ ├── zconf.h.in
│ │ │ ├── zlib.3
│ │ │ ├── zlib.h
│ │ │ ├── zlib.map
│ │ │ ├── zlib.pc
│ │ │ ├── zlib.pc.in
│ │ │ ├── zutil.c
│ │ │ └── zutil.h
│ │ ├── third_party
│ │ │ ├── ansidecl.h
│ │ │ ├── closure-compiler
│ │ │ │ ├── compiler.jar
│ │ │ │ ├── COPYING
│ │ │ │ ├── README
│ │ │ │ └── readme.txt
│ │ │ ├── cp-demangle.h
│ │ │ ├── CppHeaderParser
│ │ │ │ ├── CppHeaderParser
│ │ │ │ │ ├── CppHeaderParser.py
│ │ │ │ │ ├── doc
│ │ │ │ │ │ └── CppHeaderParser.html
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── readSampleClass.py
│ │ │ │ │ │ └── SampleClass.h
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── README.html
│ │ │ │ ├── README.txt
│ │ │ │ └── setup.py
│ │ │ ├── demangle.h
│ │ │ ├── demangler.py
│ │ │ ├── gcc_demangler.c
│ │ │ ├── gcc_demangler.js
│ │ │ ├── jni
│ │ │ │ ├── emjvm.cpp
│ │ │ │ ├── emjvm.h
│ │ │ │ ├── emjvm.js
│ │ │ │ └── jni.h
│ │ │ ├── libiberty.h
│ │ │ ├── lzma.js
│ │ │ │ ├── doit.sh
│ │ │ │ ├── lzip
│ │ │ │ │ ├── arg_parser.cc
│ │ │ │ │ ├── arg_parser.h
│ │ │ │ │ ├── AUTHORS
│ │ │ │ │ ├── ChangeLog
│ │ │ │ │ ├── configure
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── decoder.cc
│ │ │ │ │ ├── decoder.h
│ │ │ │ │ ├── encoder.cc
│ │ │ │ │ ├── encoder.h
│ │ │ │ │ ├── fast_encoder.cc
│ │ │ │ │ ├── fast_encoder.h
│ │ │ │ │ ├── INSTALL
│ │ │ │ │ ├── lzip.h
│ │ │ │ │ ├── main.cc
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── NEWS
│ │ │ │ │ └── README
│ │ │ │ ├── lzma-decoder.js
│ │ │ │ ├── lzma-full.js
│ │ │ │ ├── native_test.sh
│ │ │ │ ├── post.js
│ │ │ │ ├── pre.js
│ │ │ │ ├── README.markdown
│ │ │ │ ├── test-decoder.js
│ │ │ │ ├── test-full.html
│ │ │ │ └── test-full.js
│ │ │ ├── ply
│ │ │ │ ├── ANNOUNCE
│ │ │ │ ├── CHANGES
│ │ │ │ ├── doc
│ │ │ │ │ ├── internal.html
│ │ │ │ │ ├── makedoc.py
│ │ │ │ │ └── ply.html
│ │ │ │ ├── example
│ │ │ │ │ ├── ansic
│ │ │ │ │ │ ├── clex.py
│ │ │ │ │ │ ├── cparse.py
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── BASIC
│ │ │ │ │ │ ├── basiclex.py
│ │ │ │ │ │ ├── basiclog.py
│ │ │ │ │ │ ├── basic.py
│ │ │ │ │ │ ├── basinterp.py
│ │ │ │ │ │ ├── basparse.py
│ │ │ │ │ │ ├── dim.bas
│ │ │ │ │ │ ├── func.bas
│ │ │ │ │ │ ├── gcd.bas
│ │ │ │ │ │ ├── gosub.bas
│ │ │ │ │ │ ├── hello.bas
│ │ │ │ │ │ ├── linear.bas
│ │ │ │ │ │ ├── maxsin.bas
│ │ │ │ │ │ ├── powers.bas
│ │ │ │ │ │ ├── rand.bas
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── sales.bas
│ │ │ │ │ │ ├── sears.bas
│ │ │ │ │ │ ├── sqrt1.bas
│ │ │ │ │ │ └── sqrt2.bas
│ │ │ │ │ ├── calc
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ ├── calcdebug
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ ├── classcalc
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ ├── cleanup.sh
│ │ │ │ │ ├── closurecalc
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ ├── GardenSnake
│ │ │ │ │ │ ├── GardenSnake.py
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── hedit
│ │ │ │ │ │ └── hedit.py
│ │ │ │ │ ├── newclasscalc
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ ├── optcalc
│ │ │ │ │ │ ├── calc.py
│ │ │ │ │ │ └── README
│ │ │ │ │ ├── README
│ │ │ │ │ ├── unicalc
│ │ │ │ │ │ └── calc.py
│ │ │ │ │ └── yply
│ │ │ │ │ ├── README
│ │ │ │ │ ├── ylex.py
│ │ │ │ │ ├── yparse.py
│ │ │ │ │ └── yply.py
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── ply
│ │ │ │ │ ├── cpp.py
│ │ │ │ │ ├── ctokens.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── lex.py
│ │ │ │ │ └── yacc.py
│ │ │ │ ├── README
│ │ │ │ ├── setup.py
│ │ │ │ ├── test
│ │ │ │ │ ├── calclex.py
│ │ │ │ │ ├── cleanup.sh
│ │ │ │ │ ├── lex_closure.py
│ │ │ │ │ ├── lex_doc1.py
│ │ │ │ │ ├── lex_dup1.py
│ │ │ │ │ ├── lex_dup2.py
│ │ │ │ │ ├── lex_dup3.py
│ │ │ │ │ ├── lex_empty.py
│ │ │ │ │ ├── lex_error1.py
│ │ │ │ │ ├── lex_error2.py
│ │ │ │ │ ├── lex_error3.py
│ │ │ │ │ ├── lex_error4.py
│ │ │ │ │ ├── lex_hedit.py
│ │ │ │ │ ├── lex_ignore2.py
│ │ │ │ │ ├── lex_ignore.py
│ │ │ │ │ ├── lex_literal1.py
│ │ │ │ │ ├── lex_literal2.py
│ │ │ │ │ ├── lex_many_tokens.py
│ │ │ │ │ ├── lex_module_import.py
│ │ │ │ │ ├── lex_module.py
│ │ │ │ │ ├── lex_object.py
│ │ │ │ │ ├── lex_opt_alias.py
│ │ │ │ │ ├── lex_optimize2.py
│ │ │ │ │ ├── lex_optimize3.py
│ │ │ │ │ ├── lex_optimize.py
│ │ │ │ │ ├── lex_re1.py
│ │ │ │ │ ├── lex_re2.py
│ │ │ │ │ ├── lex_re3.py
│ │ │ │ │ ├── lex_rule1.py
│ │ │ │ │ ├── lex_rule2.py
│ │ │ │ │ ├── lex_rule3.py
│ │ │ │ │ ├── lex_state1.py
│ │ │ │ │ ├── lex_state2.py
│ │ │ │ │ ├── lex_state3.py
│ │ │ │ │ ├── lex_state4.py
│ │ │ │ │ ├── lex_state5.py
│ │ │ │ │ ├── lex_state_noerror.py
│ │ │ │ │ ├── lex_state_norule.py
│ │ │ │ │ ├── lex_state_try.py
│ │ │ │ │ ├── lex_token1.py
│ │ │ │ │ ├── lex_token2.py
│ │ │ │ │ ├── lex_token3.py
│ │ │ │ │ ├── lex_token4.py
│ │ │ │ │ ├── lex_token5.py
│ │ │ │ │ ├── lex_token_dup.py
│ │ │ │ │ ├── README
│ │ │ │ │ ├── testlex.py
│ │ │ │ │ ├── testyacc.py
│ │ │ │ │ ├── yacc_badargs.py
│ │ │ │ │ ├── yacc_badid.py
│ │ │ │ │ ├── yacc_badprec2.py
│ │ │ │ │ ├── yacc_badprec3.py
│ │ │ │ │ ├── yacc_badprec.py
│ │ │ │ │ ├── yacc_badrule.py
│ │ │ │ │ ├── yacc_badtok.py
│ │ │ │ │ ├── yacc_dup.py
│ │ │ │ │ ├── yacc_error1.py
│ │ │ │ │ ├── yacc_error2.py
│ │ │ │ │ ├── yacc_error3.py
│ │ │ │ │ ├── yacc_error4.py
│ │ │ │ │ ├── yacc_inf.py
│ │ │ │ │ ├── yacc_literal.py
│ │ │ │ │ ├── yacc_misplaced.py
│ │ │ │ │ ├── yacc_missing1.py
│ │ │ │ │ ├── yacc_nested.py
│ │ │ │ │ ├── yacc_nodoc.py
│ │ │ │ │ ├── yacc_noerror.py
│ │ │ │ │ ├── yacc_nop.py
│ │ │ │ │ ├── yacc_notfunc.py
│ │ │ │ │ ├── yacc_notok.py
│ │ │ │ │ ├── yacc_prec1.py
│ │ │ │ │ ├── yacc_rr.py
│ │ │ │ │ ├── yacc_rr_unused.py
│ │ │ │ │ ├── yacc_simple.py
│ │ │ │ │ ├── yacc_sr.py
│ │ │ │ │ ├── yacc_term1.py
│ │ │ │ │ ├── yacc_unused.py
│ │ │ │ │ ├── yacc_unused_rule.py
│ │ │ │ │ ├── yacc_uprec2.py
│ │ │ │ │ └── yacc_uprec.py
│ │ │ │ └── TODO
│ │ │ ├── readme.txt
│ │ │ └── websockify
│ │ │ ├── CHANGES.txt
│ │ │ ├── docs
│ │ │ │ ├── flash_policy.txt
│ │ │ │ ├── latency_results.txt
│ │ │ │ ├── LICENSE.GPL-3
│ │ │ │ ├── LICENSE.LGPL-3
│ │ │ │ ├── LICENSE.MPL-2.0
│ │ │ │ ├── notes
│ │ │ │ ├── release.txt
│ │ │ │ ├── TODO
│ │ │ │ └── websockify.1
│ │ │ ├── include
│ │ │ │ ├── base64.js
│ │ │ │ ├── keysym.js
│ │ │ │ ├── util.js
│ │ │ │ ├── VT100.js
│ │ │ │ ├── web-socket-js
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── swfobject.js
│ │ │ │ │ ├── web_socket.js
│ │ │ │ │ └── WebSocketMain.swf
│ │ │ │ ├── websock.js
│ │ │ │ ├── webutil.js
│ │ │ │ ├── wsirc.js
│ │ │ │ └── wstelnet.js
│ │ │ ├── LICENSE.txt
│ │ │ ├── Makefile
│ │ │ ├── MANIFEST.in
│ │ │ ├── other
│ │ │ │ ├── launch.sh
│ │ │ │ ├── Makefile
│ │ │ │ ├── project.clj
│ │ │ │ ├── README.md
│ │ │ │ ├── websocket.c
│ │ │ │ ├── websocket.h
│ │ │ │ ├── websocket.rb
│ │ │ │ ├── websockify.c
│ │ │ │ ├── websockify.clj
│ │ │ │ ├── websockify.js
│ │ │ │ ├── websockify.rb
│ │ │ │ └── wswrap
│ │ │ ├── README.md
│ │ │ ├── rebind
│ │ │ ├── rebind.c
│ │ │ ├── run
│ │ │ ├── setup.py
│ │ │ ├── tests
│ │ │ │ ├── b64_vs_utf8.py
│ │ │ │ ├── base64.html
│ │ │ │ ├── base64.js
│ │ │ │ ├── echo.html
│ │ │ │ ├── echo.py
│ │ │ │ ├── echo.rb
│ │ │ │ ├── include
│ │ │ │ ├── latency.html
│ │ │ │ ├── latency.py
│ │ │ │ ├── load.html
│ │ │ │ ├── load.py
│ │ │ │ ├── plain_echo.html
│ │ │ │ ├── simple.html
│ │ │ │ └── utf8-list.py
│ │ │ ├── websockify
│ │ │ │ ├── __init__.py
│ │ │ │ ├── websocketproxy.py
│ │ │ │ └── websocket.py
│ │ │ ├── websockify.py
│ │ │ ├── Windows
│ │ │ │ ├── noVNC Websocket Service Project
│ │ │ │ │ ├── noVNC Websocket.csproj
│ │ │ │ │ ├── noVNC Websocket.sln
│ │ │ │ │ ├── Program.cs
│ │ │ │ │ ├── ProjectInstaller.cs
│ │ │ │ │ ├── ProjectInstaller.Designer.cs
│ │ │ │ │ ├── ProjectInstaller.resx
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ ├── Service1.cs
│ │ │ │ │ └── Service1.Designer.cs
│ │ │ │ └── Windows Service Readme.txt
│ │ │ ├── wsirc.html
│ │ │ └── wstelnet.html
│ │ └── tools
│ │ ├── autodebugger_c.py
│ │ ├── autodebugger_indenter.py
│ │ ├── autodebugger_js.py
│ │ ├── autodebugger.py
│ │ ├── autodediffer.py
│ │ ├── bindings_generator.py
│ │ ├── bisect_pair.py
│ │ ├── cache.py
│ │ ├── clean_webconsole.py
│ │ ├── crunch-worker.js
│ │ ├── diff_autodebugger.py
│ │ ├── eliminator
│ │ │ ├── asm-eliminator-test.js
│ │ │ ├── asm-eliminator-test-output.js
│ │ │ ├── eliminator-test.js
│ │ │ ├── eliminator-test-output.js
│ │ │ ├── node_modules
│ │ │ │ └── uglify-js
│ │ │ │ ├── bin
│ │ │ │ │ └── uglifyjs
│ │ │ │ ├── docstyle.css
│ │ │ │ ├── lib
│ │ │ │ │ ├── object-ast.js
│ │ │ │ │ ├── parse-js.js
│ │ │ │ │ ├── process.js
│ │ │ │ │ └── squeeze-more.js
│ │ │ │ ├── package.json
│ │ │ │ ├── README.html
│ │ │ │ ├── README.org
│ │ │ │ ├── test
│ │ │ │ │ ├── beautify.js
│ │ │ │ │ ├── testparser.js
│ │ │ │ │ └── unit
│ │ │ │ │ ├── compress
│ │ │ │ │ │ ├── expected
│ │ │ │ │ │ │ ├── array1.js
│ │ │ │ │ │ │ ├── array2.js
│ │ │ │ │ │ │ ├── array3.js
│ │ │ │ │ │ │ ├── array4.js
│ │ │ │ │ │ │ ├── assignment.js
│ │ │ │ │ │ │ ├── concatstring.js
│ │ │ │ │ │ │ ├── const.js
│ │ │ │ │ │ │ ├── empty-blocks.js
│ │ │ │ │ │ │ ├── forstatement.js
│ │ │ │ │ │ │ ├── if.js
│ │ │ │ │ │ │ ├── ifreturn2.js
│ │ │ │ │ │ │ ├── ifreturn.js
│ │ │ │ │ │ │ ├── issue10.js
│ │ │ │ │ │ │ ├── issue11.js
│ │ │ │ │ │ │ ├── issue13.js
│ │ │ │ │ │ │ ├── issue14.js
│ │ │ │ │ │ │ ├── issue16.js
│ │ │ │ │ │ │ ├── issue17.js
│ │ │ │ │ │ │ ├── issue20.js
│ │ │ │ │ │ │ ├── issue21.js
│ │ │ │ │ │ │ ├── issue25.js
│ │ │ │ │ │ │ ├── issue27.js
│ │ │ │ │ │ │ ├── issue28.js
│ │ │ │ │ │ │ ├── issue29.js
│ │ │ │ │ │ │ ├── issue30.js
│ │ │ │ │ │ │ ├── issue34.js
│ │ │ │ │ │ │ ├── issue48.js
│ │ │ │ │ │ │ ├── issue4.js
│ │ │ │ │ │ │ ├── issue50.js
│ │ │ │ │ │ │ ├── issue53.js
│ │ │ │ │ │ │ ├── issue54.1.js
│ │ │ │ │ │ │ ├── issue68.js
│ │ │ │ │ │ │ ├── issue69.js
│ │ │ │ │ │ │ ├── issue9.js
│ │ │ │ │ │ │ ├── mangle.js
│ │ │ │ │ │ │ ├── strict-equals.js
│ │ │ │ │ │ │ ├── var.js
│ │ │ │ │ │ │ └── with.js
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── array1.js
│ │ │ │ │ │ ├── array2.js
│ │ │ │ │ │ ├── array3.js
│ │ │ │ │ │ ├── array4.js
│ │ │ │ │ │ ├── assignment.js
│ │ │ │ │ │ ├── concatstring.js
│ │ │ │ │ │ ├── const.js
│ │ │ │ │ │ ├── empty-blocks.js
│ │ │ │ │ │ ├── forstatement.js
│ │ │ │ │ │ ├── if.js
│ │ │ │ │ │ ├── ifreturn2.js
│ │ │ │ │ │ ├── ifreturn.js
│ │ │ │ │ │ ├── issue10.js
│ │ │ │ │ │ ├── issue11.js
│ │ │ │ │ │ ├── issue13.js
│ │ │ │ │ │ ├── issue14.js
│ │ │ │ │ │ ├── issue16.js
│ │ │ │ │ │ ├── issue17.js
│ │ │ │ │ │ ├── issue20.js
│ │ │ │ │ │ ├── issue21.js
│ │ │ │ │ │ ├── issue25.js
│ │ │ │ │ │ ├── issue27.js
│ │ │ │ │ │ ├── issue28.js
│ │ │ │ │ │ ├── issue29.js
│ │ │ │ │ │ ├── issue30.js
│ │ │ │ │ │ ├── issue34.js
│ │ │ │ │ │ ├── issue48.js
│ │ │ │ │ │ ├── issue4.js
│ │ │ │ │ │ ├── issue50.js
│ │ │ │ │ │ ├── issue53.js
│ │ │ │ │ │ ├── issue54.1.js
│ │ │ │ │ │ ├── issue68.js
│ │ │ │ │ │ ├── issue69.js
│ │ │ │ │ │ ├── issue9.js
│ │ │ │ │ │ ├── mangle.js
│ │ │ │ │ │ ├── strict-equals.js
│ │ │ │ │ │ ├── var.js
│ │ │ │ │ │ └── with.js
│ │ │ │ │ └── scripts.js
│ │ │ │ ├── tmp
│ │ │ │ │ ├── hoist.js
│ │ │ │ │ ├── instrument2.js
│ │ │ │ │ ├── instrument.js
│ │ │ │ │ └── test.js
│ │ │ │ └── uglify-js.js
│ │ │ ├── safe-eliminator-test.js
│ │ │ └── safe-eliminator-test-output.js
│ │ ├── emconfiguren.py
│ │ ├── emmaken.py
│ │ ├── emmakenxx.py
│ │ ├── exec_llvm.py
│ │ ├── file2json.py
│ │ ├── file_packager.py
│ │ ├── find_bigfuncs.py
│ │ ├── find_bigis.py
│ │ ├── fix_closure.py
│ │ ├── ie7_fix.py
│ │ ├── __init__.py
│ │ ├── js-optimizer.js
│ │ ├── js_optimizer.py
│ │ ├── jsrun.py
│ │ ├── ll-strip.py
│ │ ├── make_file.py
│ │ ├── make_minigzip.py
│ │ ├── namespacer.py
│ │ ├── nativize_llvm.py
│ │ ├── reproduceriter.js
│ │ ├── reproduceriter.py
│ │ ├── response_file.py
│ │ ├── scan_js.py
│ │ ├── scan_ll.py
│ │ ├── scons
│ │ │ └── site_scons
│ │ │ └── site_tools
│ │ │ └── emscripten
│ │ │ ├── emscripten.py
│ │ │ └── __init__.py
│ │ ├── settings_template_readonly.py
│ │ ├── shared.py
│ │ ├── split.py
│ │ ├── tempfiles.py
│ │ ├── test-js-optimizer-asm-last.js
│ │ ├── test-js-optimizer-asm-last-output.js
│ │ ├── test-js-optimizer-asm-pre.js
│ │ ├── test-js-optimizer-asm-pre-output.js
│ │ ├── test-js-optimizer-asm-regs.js
│ │ ├── test-js-optimizer-asm-regs-min.js
│ │ ├── test-js-optimizer-asm-regs-min-output.js
│ │ ├── test-js-optimizer-asm-regs-output.js
│ │ ├── test-js-optimizer.js
│ │ ├── test-js-optimizer-output.js
│ │ ├── test-js-optimizer-regs.js
│ │ ├── test-js-optimizer-regs-output.js
│ │ ├── test-js-optimizer-t2c.js
│ │ ├── test-js-optimizer-t2c-output.js
│ │ ├── test-js-optimizer-t2.js
│ │ ├── test-js-optimizer-t2-output.js
│ │ ├── test-js-optimizer-t3.js
│ │ └── test-js-optimizer-t3-output.js
│ ├── libwebsockets
│ │ ├── android
│ │ │ ├── Android.mk
│ │ │ ├── include
│ │ │ │ └── libwebsockets.h
│ │ │ └── lib
│ │ │ ├── armeabi
│ │ │ │ └── libwebsockets.a
│ │ │ ├── armeabi-v7a
│ │ │ │ └── libwebsockets.a
│ │ │ └── x86
│ │ │ └── libwebsockets.a
│ │ ├── ios
│ │ │ ├── include
│ │ │ │ └── libwebsockets.h
│ │ │ └── lib
│ │ │ └── libwebsockets.a
│ │ ├── tizen
│ │ │ ├── include
│ │ │ │ └── libwebsockets.h
│ │ │ └── lib
│ │ │ ├── armv7l
│ │ │ │ └── libwebsockets.a
│ │ │ └── x86
│ │ │ └── libwebsockets.a
│ │ └── win32
│ │ ├── include
│ │ │ ├── libwebsockets.h
│ │ │ └── win32helpers
│ │ │ ├── gettimeofday.h
│ │ │ └── websock-w32.h
│ │ └── lib
│ │ ├── websockets.dll
│ │ └── websockets.lib
│ └── sqlite3
│ ├── Android.mk
│ ├── include
│ │ ├── sqlite3ext.h
│ │ └── sqlite3.h
│ └── libraries
│ └── win32
│ ├── sqlite3.dll
│ └── sqlite3.lib
├── install-deps-linux.sh
├── licenses
│ ├── LICENSE_artwork.txt
│ ├── LICENSE_bada_pthread.txt
│ ├── LICENSE_box2d.txt
│ ├── LICENSE_CCBReader.txt
│ ├── LICENSE_CCControlExtension.txt
│ ├── LICENSE_chipmunk.txt
│ ├── LICENSE_cocos2d-iphone.txt
│ ├── LICENSE_cocos2d-x.txt
│ ├── LICENSE_cocosdenshion.txt
│ ├── LICENSE_curl.txt
│ ├── LICENSE_FontLabel.txt
│ ├── LICENSE_iconv.txt
│ ├── LICENSE_JSON4Lua.txt
│ ├── LICENSE_jsoncpp.txt
│ ├── LICENSE_js.txt
│ ├── LICENSE_Kazmath.txt
│ ├── LICENSE_libjpeg.txt
│ ├── LICENSE_libpng.txt
│ ├── LICENSE_libtiff.txt
│ ├── LICENSE_libwebsockets.txt
│ ├── LICENSE_libxml2.txt
│ ├── LICENSE_lua.txt
│ ├── LICENSE_ogg_vorbis.txt
│ ├── LICENSE_sigslot.txt
│ ├── LICENSE_SpiderMonkey.txt
│ ├── LICENSE_tolua++.txt
│ └── LICENSE_zlib.txt
├── make-all-linux-project.sh
├── Makefile
├── Makefile.emscripten
├── plugin
│ ├── jsbindings
│ │ ├── auto
│ │ │ ├── jsb_pluginx_protocols_auto_api.js
│ │ │ ├── jsb_pluginx_protocols_auto.cpp
│ │ │ └── jsb_pluginx_protocols_auto.hpp
│ │ ├── js
│ │ │ └── jsb_pluginx.js
│ │ └── manual
│ │ ├── jsb_pluginx_basic_conversions.cpp
│ │ ├── jsb_pluginx_basic_conversions.h
│ │ ├── jsb_pluginx_extension_registration.cpp
│ │ ├── jsb_pluginx_extension_registration.h
│ │ ├── jsb_pluginx_manual_callback.cpp
│ │ ├── jsb_pluginx_manual_callback.h
│ │ ├── jsb_pluginx_manual_protocols.cpp
│ │ ├── jsb_pluginx_manual_protocols.h
│ │ ├── jsb_pluginx_spidermonkey_specifics.cpp
│ │ ├── jsb_pluginx_spidermonkey_specifics.h
│ │ ├── pluginxUTF8.cpp
│ │ ├── pluginxUTF8.h
│ │ └── uthash.h
│ ├── plugins
│ │ ├── admob
│ │ │ └── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build.xml
│ │ │ ├── ForManifest.xml
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ ├── sdk
│ │ │ │ └── GoogleAdMobAdsSdk.jar
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── plugin
│ │ │ └── AdsAdmob.java
│ │ ├── alipay
│ │ │ └── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build.xml
│ │ │ ├── ForAssets
│ │ │ │ └── alipay_plugin.apk
│ │ │ ├── ForManifest.xml
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ ├── sdk
│ │ │ │ └── alipay_plugin.jar
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── plugin
│ │ │ ├── AlixId.java
│ │ │ ├── Base64.java
│ │ │ ├── BaseHelper.java
│ │ │ ├── IAPAlipay.java
│ │ │ ├── MobileSecurePayer.java
│ │ │ ├── MobileSecurePayHelper.java
│ │ │ ├── NetworkManager.java
│ │ │ ├── PartnerConfig.java
│ │ │ ├── ResultChecker.java
│ │ │ └── Rsa.java
│ │ ├── flurry
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── ForManifest.xml
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ ├── sdk
│ │ │ │ │ └── FlurryAgent.jar
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── plugin
│ │ │ │ └── AnalyticsFlurry.java
│ │ │ └── proj.ios
│ │ │ ├── AnalyticsFlurry.h
│ │ │ ├── AnalyticsFlurry.m
│ │ │ ├── Flurry.h
│ │ │ ├── libFlurry.a
│ │ │ ├── PluginFlurry-Prefix.pch
│ │ │ └── PluginFlurry.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── nd91
│ │ │ └── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build.xml
│ │ │ ├── DependProject
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── anim
│ │ │ │ │ │ ├── nd_flipin_reverse.xml
│ │ │ │ │ │ ├── nd_flipin.xml
│ │ │ │ │ │ ├── nd_flipout_reverse.xml
│ │ │ │ │ │ └── nd_flipout.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── nd3_3rd_platform_icon_more.png
│ │ │ │ │ │ ├── nd3_3rd_platform_icon.png
│ │ │ │ │ │ ├── nd3_91.png
│ │ │ │ │ │ ├── nd3_achievement_lock.png
│ │ │ │ │ │ ├── nd3_achieve.png
│ │ │ │ │ │ ├── nd3_activity_action_above_bg.9.png
│ │ │ │ │ │ ├── nd3_add.png
│ │ │ │ │ │ ├── nd3_agreement_logo.png
│ │ │ │ │ │ ├── nd3_app_icon_default.png
│ │ │ │ │ │ ├── nd3_background.png
│ │ │ │ │ │ ├── nd3_background_xml.xml
│ │ │ │ │ │ ├── nd3_banner.9.png
│ │ │ │ │ │ ├── nd3_banner_bg.9.png
│ │ │ │ │ │ ├── nd3_banner_logo.png
│ │ │ │ │ │ ├── nd3_bbs_icon.png
│ │ │ │ │ │ ├── nd3_bg.png
│ │ │ │ │ │ ├── nd3_bizarre_image.png
│ │ │ │ │ │ ├── nd3_bk1.9.png
│ │ │ │ │ │ ├── nd3_bm.9.png
│ │ │ │ │ │ ├── nd3_bnt_01.9.png
│ │ │ │ │ │ ├── nd3_bnt_zhuxiao.png
│ │ │ │ │ │ ├── nd3_bottom_bar_bg.9.png
│ │ │ │ │ │ ├── nd3_button_02.xml
│ │ │ │ │ │ ├── nd3_button_130_01.png
│ │ │ │ │ │ ├── nd3_button_130_03.png
│ │ │ │ │ │ ├── nd3_button1.png
│ │ │ │ │ │ ├── nd3_button_278.png
│ │ │ │ │ │ ├── nd3_button2.png
│ │ │ │ │ │ ├── nd3_button_action.xml
│ │ │ │ │ │ ├── nd3_button_bg_02.png
│ │ │ │ │ │ ├── nd3_button_bg_02_press.png
│ │ │ │ │ │ ├── nd3_button_bg_dis02.png
│ │ │ │ │ │ ├── nd3_button_bg_dis.png
│ │ │ │ │ │ ├── nd3_button_logout.xml
│ │ │ │ │ │ ├── nd3_button_long.9.png
│ │ │ │ │ │ ├── nd3_button_long_press.9.png
│ │ │ │ │ │ ├── nd3_button_old.xml
│ │ │ │ │ │ ├── nd3_button_radio.png
│ │ │ │ │ │ ├── nd3_button_x1.png
│ │ │ │ │ │ ├── nd3_button.xml
│ │ │ │ │ │ ├── nd3_button_x.xml
│ │ │ │ │ │ ├── nd3_checkbox_button.xml
│ │ │ │ │ │ ├── nd3_check_yes.png
│ │ │ │ │ │ ├── nd3_close.png
│ │ │ │ │ │ ├── nd3_default_portrait_big.png
│ │ │ │ │ │ ├── nd3_default_portrait.png
│ │ │ │ │ │ ├── nd3_friend_del_button.xml
│ │ │ │ │ │ ├── nd3_friend_section_bg.9.png
│ │ │ │ │ │ ├── nd3_game_detail.png
│ │ │ │ │ │ ├── nd3_game_error_bg.png
│ │ │ │ │ │ ├── nd3_game_face.png
│ │ │ │ │ │ ├── nd3_game_head.png
│ │ │ │ │ │ ├── nd3_headbar.png
│ │ │ │ │ │ ├── nd3_head_bg.png
│ │ │ │ │ │ ├── nd3_horizontal_line.9.png
│ │ │ │ │ │ ├── nd3_icon_01.png
│ │ │ │ │ │ ├── nd3_icon_05.png
│ │ │ │ │ │ ├── nd3_icon_06.png
│ │ │ │ │ │ ├── nd3_icon_07.png
│ │ │ │ │ │ ├── nd3_icon_08.png
│ │ │ │ │ │ ├── nd3_icon11.png
│ │ │ │ │ │ ├── nd3_icon12.png
│ │ │ │ │ │ ├── nd3_icon_21.png
│ │ │ │ │ │ ├── nd3_icon_22.png
│ │ │ │ │ │ ├── nd3_icon_error.png
│ │ │ │ │ │ ├── nd3_icon_more01.png
│ │ │ │ │ │ ├── nd3_icon_more02.png
│ │ │ │ │ │ ├── nd3_icon_more03.png
│ │ │ │ │ │ ├── nd3_icon_more04.png
│ │ │ │ │ │ ├── nd3_icon_more05.png
│ │ │ │ │ │ ├── nd3_icon_more06.png
│ │ │ │ │ │ ├── nd3_icon_point.png
│ │ │ │ │ │ ├── nd3_icon_selected.png
│ │ │ │ │ │ ├── nd3_image_48_bg.xml
│ │ │ │ │ │ ├── nd3_image81.png
│ │ │ │ │ │ ├── nd3_image82.png
│ │ │ │ │ │ ├── nd3_input_1.9.png
│ │ │ │ │ │ ├── nd3_input_2.9.png
│ │ │ │ │ │ ├── nd3_input_bg.png
│ │ │ │ │ │ ├── nd3_inputbox_bg1.9.png
│ │ │ │ │ │ ├── nd3_input_gray.xml
│ │ │ │ │ │ ├── nd3_invite_image.png
│ │ │ │ │ │ ├── nd3_leaderboard_default.png
│ │ │ │ │ │ ├── nd3_line.9.png
│ │ │ │ │ │ ├── nd3_list_bg.9.png
│ │ │ │ │ │ ├── nd3_list_separator.png
│ │ │ │ │ │ ├── nd3_mainfriend_1.png
│ │ │ │ │ │ ├── nd3_mainfriend_2.png
│ │ │ │ │ │ ├── nd3_maingame_1.png
│ │ │ │ │ │ ├── nd3_maingame_2.png
│ │ │ │ │ │ ├── nd3_mainmessage_1.png
│ │ │ │ │ │ ├── nd3_mainmessage_2.png
│ │ │ │ │ │ ├── nd3_mainmore_1.png
│ │ │ │ │ │ ├── nd3_mainmore_2.png
│ │ │ │ │ │ ├── nd3_mainpage_1.png
│ │ │ │ │ │ ├── nd3_mainpage_2.png
│ │ │ │ │ │ ├── nd3_message_item_1_bg.xml
│ │ │ │ │ │ ├── nd3_message_item_2_bg.xml
│ │ │ │ │ │ ├── nd3_mood_bg.9.png
│ │ │ │ │ │ ├── nd3_msge_friend.9.png
│ │ │ │ │ │ ├── nd3_msge_owen.9.png
│ │ │ │ │ │ ├── nd3_new_message.9.png
│ │ │ │ │ │ ├── nd3_new_message_flag.png
│ │ │ │ │ │ ├── nd3_pay_checkbox_button.xml
│ │ │ │ │ │ ├── nd3_platform_logo.png
│ │ │ │ │ │ ├── nd3_portrait_edit_bg.png
│ │ │ │ │ │ ├── nd3_progress_large.xml
│ │ │ │ │ │ ├── nd3_rank_1.png
│ │ │ │ │ │ ├── nd3_rank_2.png
│ │ │ │ │ │ ├── nd3_rank_3.png
│ │ │ │ │ │ ├── nd3_rank_choice_left_1.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_left_2.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_left_btn_bg.xml
│ │ │ │ │ │ ├── nd3_rank_choice_middle_1.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_middle_2.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_middle_btn_bg.xml
│ │ │ │ │ │ ├── nd3_rank_choice_right_1.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_right_2.9.png
│ │ │ │ │ │ ├── nd3_rank_choice_right_btn_bg.xml
│ │ │ │ │ │ ├── nd3_rank_image.png
│ │ │ │ │ │ ├── nd3_redbtn.9.png
│ │ │ │ │ │ ├── nd3_redbtn_down.9.png
│ │ │ │ │ │ ├── nd3_regist_checked.xml
│ │ │ │ │ │ ├── nd3_round_bg.xml
│ │ │ │ │ │ ├── nd3_search_edit_bg.9.png
│ │ │ │ │ │ ├── nd3_search_edit_left.9.png
│ │ │ │ │ │ ├── nd3_search_layout_bg.9.png
│ │ │ │ │ │ ├── nd3_showplayer.png
│ │ │ │ │ │ ├── nd3_square_checkbox_button.xml
│ │ │ │ │ │ ├── nd3_switch_image.png
│ │ │ │ │ │ ├── nd3_switch_image_white.png
│ │ │ │ │ │ ├── nd3_title_bar_action_btn.9.png
│ │ │ │ │ │ ├── nd3_title_bar_action_btn_pressed.9.png
│ │ │ │ │ │ ├── nd3_title_bar_action_btn_xml.xml
│ │ │ │ │ │ ├── nd3_title_bar_bg.9.png
│ │ │ │ │ │ ├── nd3_title_bar_return_btn.9.png
│ │ │ │ │ │ ├── nd3_title_bar_return_btn_pressed.9.png
│ │ │ │ │ │ ├── nd3_title_bar_return_btn_xml.xml
│ │ │ │ │ │ ├── nd3_user_item_bg.xml
│ │ │ │ │ │ ├── nd3_vertical_line.png
│ │ │ │ │ │ ├── nd3_white_bg.9.png
│ │ │ │ │ │ ├── nd_ad.png
│ │ │ │ │ │ ├── nd_blue1.9.png
│ │ │ │ │ │ ├── nd_blue2.9.png
│ │ │ │ │ │ ├── nd_blue.xml
│ │ │ │ │ │ ├── nd_book.png
│ │ │ │ │ │ ├── nd_btn_add.png
│ │ │ │ │ │ ├── nd_btn_add_press.png
│ │ │ │ │ │ ├── nd_btn_buy.9.png
│ │ │ │ │ │ ├── nd_btn_buy_press.9.png
│ │ │ │ │ │ ├── nd_btn_reduce.png
│ │ │ │ │ │ ├── nd_btn_reduce_press.png
│ │ │ │ │ │ ├── nd_button_action_add.xml
│ │ │ │ │ │ ├── nd_button_action_buy.xml
│ │ │ │ │ │ ├── nd_button_action_reduce.xml
│ │ │ │ │ │ ├── nd_c_blur1.9.png
│ │ │ │ │ │ ├── nd_c_blur2.9.png
│ │ │ │ │ │ ├── nd_c_blur.xml
│ │ │ │ │ │ ├── nd_change_account.png
│ │ │ │ │ │ ├── nd_direct_login.9.png
│ │ │ │ │ │ ├── nd_direct_logo.png
│ │ │ │ │ │ ├── nd_download.xml
│ │ │ │ │ │ ├── nd_gamecoin.png
│ │ │ │ │ │ ├── nd_goods_count_input_bg.9.png
│ │ │ │ │ │ ├── nd_goods_default.png
│ │ │ │ │ │ ├── nd_goods_detail_default.png
│ │ │ │ │ │ ├── nd_goods_limit_stock.png
│ │ │ │ │ │ ├── nd_goods_limit_time.png
│ │ │ │ │ │ ├── nd_goods_no_stock.png
│ │ │ │ │ │ ├── nd_goods_price_down.png
│ │ │ │ │ │ ├── nd_green1.9.png
│ │ │ │ │ │ ├── nd_green2.9.png
│ │ │ │ │ │ ├── nd_green.xml
│ │ │ │ │ │ ├── nd_input.9.png
│ │ │ │ │ │ ├── nd_leaderboard_left_1.9.png
│ │ │ │ │ │ ├── nd_leaderboard_left_2.9.png
│ │ │ │ │ │ ├── nd_leaderboard_left_btn_bg.xml
│ │ │ │ │ │ ├── nd_leaderboard_right_1.9.png
│ │ │ │ │ │ ├── nd_leaderboard_right_2.9.png
│ │ │ │ │ │ ├── nd_leaderboard_right_btn_bg.xml
│ │ │ │ │ │ ├── nd_list_btn_delete_normal.9.png
│ │ │ │ │ │ ├── nd_list_btn_delete_pressed.9.png
│ │ │ │ │ │ ├── nd_list_btn_delete_selector.xml
│ │ │ │ │ │ ├── nd_login_btn_land_selector.xml
│ │ │ │ │ │ ├── nd_login_btn_normal_land.9.png
│ │ │ │ │ │ ├── nd_login_btn_normal_portrait.9.png
│ │ │ │ │ │ ├── nd_login_btn_portrait_selector.xml
│ │ │ │ │ │ ├── nd_login_btn_pressed_land.9.png
│ │ │ │ │ │ ├── nd_login_btn_pressed_portrait.9.png
│ │ │ │ │ │ ├── nd_logo48.png
│ │ │ │ │ │ ├── nd_register_btn_normal_portrait.9.png
│ │ │ │ │ │ ├── nd_register_btn_portrait_selector.xml
│ │ │ │ │ │ ├── nd_register_btn_pressed_portrait.9.png
│ │ │ │ │ │ ├── nd_slider_handle_h_expand.xml
│ │ │ │ │ │ ├── nd_slider_handle_h.xml
│ │ │ │ │ │ ├── nd_slider_handle_v_expand.xml
│ │ │ │ │ │ ├── nd_slider_handle_v.xml
│ │ │ │ │ │ ├── nd_theme.png
│ │ │ │ │ │ ├── nd_true.png
│ │ │ │ │ │ ├── nd_warn.png
│ │ │ │ │ │ ├── nd_white_btn_1.9.png
│ │ │ │ │ │ ├── nd_white_btn_2.9.png
│ │ │ │ │ │ ├── nd_white_btn.xml
│ │ │ │ │ │ ├── nd_winning.png
│ │ │ │ │ │ └── nd_xline.png
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ ├── nd_download_1.9.png
│ │ │ │ │ │ ├── nd_download_2.9.png
│ │ │ │ │ │ ├── nd_flip_bg.png
│ │ │ │ │ │ ├── nd_slider_content_h.9.png
│ │ │ │ │ │ ├── nd_slider_content_v.9.png
│ │ │ │ │ │ ├── nd_slider_handle_h_1.9.png
│ │ │ │ │ │ ├── nd_slider_handle_h_1_expand.9.png
│ │ │ │ │ │ ├── nd_slider_handle_h_2.9.png
│ │ │ │ │ │ ├── nd_slider_handle_h_2_expand.9.png
│ │ │ │ │ │ ├── nd_slider_handle_v_1.9.png
│ │ │ │ │ │ ├── nd_slider_handle_v_1_expand.9.png
│ │ │ │ │ │ ├── nd_slider_handle_v_2.9.png
│ │ │ │ │ │ ├── nd_slider_handle_v_2_expand.9.png
│ │ │ │ │ │ ├── nd_slider_next_h.png
│ │ │ │ │ │ ├── nd_slider_next_v.png
│ │ │ │ │ │ ├── nd_slider_pre_h.png
│ │ │ │ │ │ └── nd_slider_pre_v.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── nd3_account_bind_bind.xml
│ │ │ │ │ │ ├── nd3_account_bind_register.xml
│ │ │ │ │ │ ├── nd3_account_email_item.xml
│ │ │ │ │ │ ├── nd3_account_login_item.xml
│ │ │ │ │ │ ├── nd3_account_login_land.xml
│ │ │ │ │ │ ├── nd3_account_login_other_item.xml
│ │ │ │ │ │ ├── nd3_account_login_portrait.xml
│ │ │ │ │ │ ├── nd3_account_login.xml
│ │ │ │ │ │ ├── nd3_account_oauth_bind.xml
│ │ │ │ │ │ ├── nd3_account_official_landscape.xml
│ │ │ │ │ │ ├── nd3_account_official_portrait.xml
│ │ │ │ │ │ ├── nd3_account_official.xml
│ │ │ │ │ │ ├── nd3_account_other_login.xml
│ │ │ │ │ │ ├── nd3_account_register_agreement.xml
│ │ │ │ │ │ ├── nd3_account_register_phone.xml
│ │ │ │ │ │ ├── nd3_account_register_quick.xml
│ │ │ │ │ │ ├── nd3_account_register.xml
│ │ │ │ │ │ ├── nd3_account_secret_find.xml
│ │ │ │ │ │ ├── nd3_account_secret_set.xml
│ │ │ │ │ │ ├── nd3_account_sina.xml
│ │ │ │ │ │ ├── nd3_achieve_detail.xml
│ │ │ │ │ │ ├── nd3_activity_action_template.xml
│ │ │ │ │ │ ├── nd3_activity_content_reg_template_1.xml
│ │ │ │ │ │ ├── nd3_activity_content_reg_template_2_ext.xml
│ │ │ │ │ │ ├── nd3_activity_content_reg_template_2.xml
│ │ │ │ │ │ ├── nd3_activity_content_reg_template_3.xml
│ │ │ │ │ │ ├── nd3_activity_content_reg_template_4.xml
│ │ │ │ │ │ ├── nd3_activity_detail_plus_image.xml
│ │ │ │ │ │ ├── nd3_activity_detail_plus_list_ext.xml
│ │ │ │ │ │ ├── nd3_activity_detail_plus_list.xml
│ │ │ │ │ │ ├── nd3_activity_detail.xml
│ │ │ │ │ │ ├── nd3_activity_head_reg.xml
│ │ │ │ │ │ ├── nd3_activity_no_action_template.xml
│ │ │ │ │ │ ├── nd3_app_feedback.xml
│ │ │ │ │ │ ├── nd3_app_item.xml
│ │ │ │ │ │ ├── nd3_app_property.xml
│ │ │ │ │ │ ├── nd3_banner_layout.xml
│ │ │ │ │ │ ├── nd3_blank_listview.xml
│ │ │ │ │ │ ├── nd3_bottom_bar.xml
│ │ │ │ │ │ ├── nd3_category_item.xml
│ │ │ │ │ │ ├── nd3_category_plus_image_item.xml
│ │ │ │ │ │ ├── nd3_control_center.xml
│ │ │ │ │ │ ├── nd3_dispatch_search_friend.xml
│ │ │ │ │ │ ├── nd3_empty_listview.xml
│ │ │ │ │ │ ├── nd3_frame.xml
│ │ │ │ │ │ ├── nd3_friend_home.xml
│ │ │ │ │ │ ├── nd3_friend_remark_setting.xml
│ │ │ │ │ │ ├── nd3_friend_section_list_item.xml
│ │ │ │ │ │ ├── nd3_friend_section_panel.xml
│ │ │ │ │ │ ├── nd3_friend_section.xml
│ │ │ │ │ │ ├── nd3_game_content.xml
│ │ │ │ │ │ ├── nd3_game_main.xml
│ │ │ │ │ │ ├── nd3_home_land.xml
│ │ │ │ │ │ ├── nd3_home_personal.xml
│ │ │ │ │ │ ├── nd3_home_portrait.xml
│ │ │ │ │ │ ├── nd3_home.xml
│ │ │ │ │ │ ├── nd3_invite_friend_choice.xml
│ │ │ │ │ │ ├── nd3_invite_friend_item.xml
│ │ │ │ │ │ ├── nd3_invite_friend.xml
│ │ │ │ │ │ ├── nd3_leaderboard_category.xml
│ │ │ │ │ │ ├── nd3_leaderboard_list_item.xml
│ │ │ │ │ │ ├── nd3_listview_footer_ext.xml
│ │ │ │ │ │ ├── nd3_listview_footer.xml
│ │ │ │ │ │ ├── nd3_listview_template_no_divider.xml
│ │ │ │ │ │ ├── nd3_listview_template.xml
│ │ │ │ │ │ ├── nd3_mesg_main.xml
│ │ │ │ │ │ ├── nd3_message_friendmsge_list.xml
│ │ │ │ │ │ ├── nd3_message_main.xml
│ │ │ │ │ │ ├── nd3_message_receive_item.xml
│ │ │ │ │ │ ├── nd3_message_record_item.xml
│ │ │ │ │ │ ├── nd3_message_send_item.xml
│ │ │ │ │ │ ├── nd3_message_send.xml
│ │ │ │ │ │ ├── nd3_more_about.xml
│ │ │ │ │ │ ├── nd3_more_account.xml
│ │ │ │ │ │ ├── nd3_more_bean_recharge.xml
│ │ │ │ │ │ ├── nd3_more_consume_detail.xml
│ │ │ │ │ │ ├── nd3_more_consumes.xml
│ │ │ │ │ │ ├── nd3_more_info_edit_head_dialog.xml
│ │ │ │ │ │ ├── nd3_more_info.xml
│ │ │ │ │ │ ├── nd3_more_more.xml
│ │ │ │ │ │ ├── nd3_more_no_password.xml
│ │ │ │ │ │ ├── nd3_more_password.xml
│ │ │ │ │ │ ├── nd3_more_permission.xml
│ │ │ │ │ │ ├── nd3_more_recharge_detail.xml
│ │ │ │ │ │ ├── nd3_more_recharges.xml
│ │ │ │ │ │ ├── nd3_more_records_item.xml
│ │ │ │ │ │ ├── nd3_more_records.xml
│ │ │ │ │ │ ├── nd3_myfriend.xml
│ │ │ │ │ │ ├── nd3_network_error.xml
│ │ │ │ │ │ ├── nd3_normal_search.xml
│ │ │ │ │ │ ├── nd3_pay_friend_item.xml
│ │ │ │ │ │ ├── nd3_pay_password_check.xml
│ │ │ │ │ │ ├── nd3_pay_pass.xml
│ │ │ │ │ │ ├── nd3_pay_products_item.xml
│ │ │ │ │ │ ├── nd3_pay_select_friend.xml
│ │ │ │ │ │ ├── nd3_pay_template.xml
│ │ │ │ │ │ ├── nd3_person_info_detail.xml
│ │ │ │ │ │ ├── nd3_personinfo.xml
│ │ │ │ │ │ ├── nd3_progressbar.xml
│ │ │ │ │ │ ├── nd3_recharge_record.xml
│ │ │ │ │ │ ├── nd3_searchfriend_condition.xml
│ │ │ │ │ │ ├── nd3_share_bind_account_item.xml
│ │ │ │ │ │ ├── nd3_share_sina.xml
│ │ │ │ │ │ ├── nd3_share_unbind_account_item.xml
│ │ │ │ │ │ ├── nd3_stranger_home.xml
│ │ │ │ │ │ ├── nd3_sysmessage_detail_action.xml
│ │ │ │ │ │ ├── nd3_sysmessage_detail_app.xml
│ │ │ │ │ │ ├── nd3_sysmessage_detail_no_action.xml
│ │ │ │ │ │ ├── nd3_sysmessage_head_reg.xml
│ │ │ │ │ │ ├── nd3_thirdplatform_item.xml
│ │ │ │ │ │ ├── nd3_title_bar.xml
│ │ │ │ │ │ ├── nd3_user_fangle_ext.xml
│ │ │ │ │ │ ├── nd3_user_fangle.xml
│ │ │ │ │ │ ├── nd3_user_item_divider.xml
│ │ │ │ │ │ ├── nd3_user_item.xml
│ │ │ │ │ │ ├── nd3_user_message_switcher.xml
│ │ │ │ │ │ ├── nd3_user_message.xml
│ │ │ │ │ │ ├── nd3_version_update.xml
│ │ │ │ │ │ ├── nd3_write_message.xml
│ │ │ │ │ │ ├── nd_account_list_item.xml
│ │ │ │ │ │ ├── nd_account_manage.xml
│ │ │ │ │ │ ├── nd_bind_phone_lottery.xml
│ │ │ │ │ │ ├── nd_bind_phone_number_result.xml
│ │ │ │ │ │ ├── nd_bind_phone_number_tip.xml
│ │ │ │ │ │ ├── nd_bind_phone_number_unactivity_tip.xml
│ │ │ │ │ │ ├── nd_bind_phone_number.xml
│ │ │ │ │ │ ├── nd_check_version.xml
│ │ │ │ │ │ ├── nd_find_password.xml
│ │ │ │ │ │ ├── nd_goods_detail.xml
│ │ │ │ │ │ ├── nd_goods_list_item.xml
│ │ │ │ │ │ ├── nd_goods_list.xml
│ │ │ │ │ │ ├── nd_leaderboard_list_header.xml
│ │ │ │ │ │ ├── nd_leaderboard_switcher_landscape_1.xml
│ │ │ │ │ │ ├── nd_leaderboard_switcher_portrait_1.xml
│ │ │ │ │ │ ├── nd_leaderboard.xml
│ │ │ │ │ │ ├── nd_login_director.xml
│ │ │ │ │ │ ├── nd_set_password.xml
│ │ │ │ │ │ ├── nd_softpromotion_flipitem.xml
│ │ │ │ │ │ ├── nd_softpromotion_listitem.xml
│ │ │ │ │ │ ├── nd_softpromotion_slider_h.xml
│ │ │ │ │ │ ├── nd_softpromotion_slider_item.xml
│ │ │ │ │ │ ├── nd_softpromotion_slider_v.xml
│ │ │ │ │ │ ├── nd_softwarepromotion.xml
│ │ │ │ │ │ └── nd_unbind_phone_number.xml
│ │ │ │ │ ├── raw
│ │ │ │ │ │ └── nd_res.zip
│ │ │ │ │ └── values
│ │ │ │ │ ├── nd3_misc.xml
│ │ │ │ │ ├── nd3_sdk_error_strings.xml
│ │ │ │ │ └── nd3_strings.xml
│ │ │ │ └── src
│ │ │ ├── ForManifest.xml
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ ├── sdk
│ │ │ │ └── NdComPlatform.jar
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── plugin
│ │ │ └── IAPNd91.java
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── ForManifest.xml
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ ├── sdk
│ │ │ │ │ ├── signpost-commonshttp4-1.2.1.1.jar
│ │ │ │ │ ├── signpost-core-1.2.1.1.jar
│ │ │ │ │ ├── signpost-jetty6-1.2.1.1.jar
│ │ │ │ │ └── twitter4j-core-android-3.0.1.jar
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── plugin
│ │ │ │ ├── Consts.java
│ │ │ │ ├── SocialTwitter.java
│ │ │ │ ├── TwitterApp.java
│ │ │ │ ├── TwitterDialog.java
│ │ │ │ └── TwitterSession.java
│ │ │ └── proj.ios
│ │ │ ├── FHSTwitterEngine
│ │ │ │ ├── FHSTwitterEngine.h
│ │ │ │ ├── FHSTwitterEngine.m
│ │ │ │ └── OAuthConsumer
│ │ │ │ ├── Categories
│ │ │ │ │ ├── NSString+URLEncoding.h
│ │ │ │ │ └── NSString+URLEncoding.m
│ │ │ │ ├── Crytpo
│ │ │ │ │ ├── Base64TranscoderFHS.c
│ │ │ │ │ └── Base64TranscoderFHS.h
│ │ │ │ ├── OAConsumer.h
│ │ │ │ ├── OAConsumer.m
│ │ │ │ ├── OAHMAC_SHA1SignatureProvider.h
│ │ │ │ ├── OAHMAC_SHA1SignatureProvider.m
│ │ │ │ ├── OAMutableURLRequest.h
│ │ │ │ ├── OAMutableURLRequest.m
│ │ │ │ ├── OARequestParameter.h
│ │ │ │ ├── OARequestParameter.m
│ │ │ │ ├── OAServiceTicket.h
│ │ │ │ ├── OAServiceTicket.m
│ │ │ │ ├── OAToken.h
│ │ │ │ ├── OAToken.m
│ │ │ │ └── OAuthConsumer.h
│ │ │ ├── PluginTwitter-Prefix.pch
│ │ │ ├── PluginTwitter.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── SocialTwitter.h
│ │ │ └── SocialTwitter.m
│ │ ├── umeng
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── build.xml
│ │ │ │ ├── ForManifest.xml
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ ├── sdk
│ │ │ │ │ └── umeng_sdk.jar
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── plugin
│ │ │ │ └── AnalyticsUmeng.java
│ │ │ └── proj.ios
│ │ │ ├── AnalyticsUmeng.h
│ │ │ ├── AnalyticsUmeng.m
│ │ │ ├── libMobClickLibrary.a
│ │ │ ├── MobClick.h
│ │ │ ├── PluginUmeng-Prefix.pch
│ │ │ └── PluginUmeng.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build.xml
│ │ │ ├── ForManifest.xml
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ ├── sdk
│ │ │ │ └── weibosdk.jar
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── plugin
│ │ │ ├── AccessTokenKeeper.java
│ │ │ └── SocialWeibo.java
│ │ └── proj.ios
│ │ ├── JSONKit
│ │ │ ├── JSONKit.h
│ │ │ └── JSONKit.m
│ │ ├── PluginWeibo-Prefix.pch
│ │ ├── PluginWeibo.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── SinaWeibo
│ │ │ ├── SinaWeiboAuthorizeView.h
│ │ │ ├── SinaWeiboAuthorizeView.m
│ │ │ ├── SinaWeibo.bundle
│ │ │ │ └── images
│ │ │ │ ├── close@2x.png
│ │ │ │ └── close.png
│ │ │ ├── SinaWeiboConstants.h
│ │ │ ├── SinaWeibo.h
│ │ │ ├── SinaWeibo.m
│ │ │ ├── SinaWeiboRequest.h
│ │ │ └── SinaWeiboRequest.m
│ │ ├── SocialWeibo.h
│ │ └── SocialWeibo.m
│ ├── protocols
│ │ ├── include
│ │ │ ├── PluginFactory.h
│ │ │ ├── PluginManager.h
│ │ │ ├── PluginParam.h
│ │ │ ├── PluginProtocol.h
│ │ │ ├── ProtocolAds.h
│ │ │ ├── ProtocolAnalytics.h
│ │ │ ├── ProtocolIAP.h
│ │ │ └── ProtocolSocial.h
│ │ ├── jsb_protocols.ini
│ │ ├── platform
│ │ │ ├── android
│ │ │ │ ├── PluginFactory.cpp
│ │ │ │ ├── PluginJavaData.h
│ │ │ │ ├── PluginJniHelper.cpp
│ │ │ │ ├── PluginJniHelper.h
│ │ │ │ ├── PluginJniMacros.h
│ │ │ │ ├── PluginProtocol.cpp
│ │ │ │ ├── PluginUtils.cpp
│ │ │ │ ├── PluginUtils.h
│ │ │ │ ├── ProtocolAds.cpp
│ │ │ │ ├── ProtocolAnalytics.cpp
│ │ │ │ ├── ProtocolIAP.cpp
│ │ │ │ └── ProtocolSocial.cpp
│ │ │ └── ios
│ │ │ ├── InterfaceAds.h
│ │ │ ├── InterfaceAnalytics.h
│ │ │ ├── InterfaceIAP.h
│ │ │ ├── InterfaceSocial.h
│ │ │ ├── PluginFactory.mm
│ │ │ ├── PluginOCMacros.h
│ │ │ ├── PluginProtocol.mm
│ │ │ ├── PluginUtilsIOS.h
│ │ │ ├── PluginUtilsIOS.mm
│ │ │ ├── ProtocolAds.mm
│ │ │ ├── ProtocolAnalytics.mm
│ │ │ ├── ProtocolIAP.mm
│ │ │ ├── ProtocolSocial.mm
│ │ │ ├── SocialWrapper.h
│ │ │ └── SocialWrapper.mm
│ │ ├── PluginManager.cpp
│ │ ├── PluginParam.cpp
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ └── Application.mk
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── plugin
│ │ │ ├── AdsWrapper.java
│ │ │ ├── IAPWrapper.java
│ │ │ ├── InterfaceAds.java
│ │ │ ├── InterfaceAnalytics.java
│ │ │ ├── InterfaceIAP.java
│ │ │ ├── InterfaceSocial.java
│ │ │ ├── PluginWrapper.java
│ │ │ └── SocialWrapper.java
│ │ └── proj.ios
│ │ ├── PluginProtocol-Prefix.pch
│ │ └── PluginProtocol.xcodeproj
│ │ └── project.pbxproj
│ ├── samples
│ │ ├── HelloAds
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── HelloWorldScene.cpp
│ │ │ │ └── HelloWorldScene.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── HelloAds
│ │ │ │ └── HelloAds.java
│ │ │ └── Resources
│ │ │ ├── CloseNormal.png
│ │ │ └── CloseSelected.png
│ │ ├── HelloAnalytics
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── HelloWorldScene.cpp
│ │ │ │ └── HelloWorldScene.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── helloanalytics
│ │ │ │ └── HelloAnalytics.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── HelloAnalytics-Info.plist
│ │ │ │ ├── HelloAnalytics_Prefix.pch
│ │ │ │ ├── HelloAnalytics.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── main.m
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ └── Resources
│ │ │ ├── CloseNormal.png
│ │ │ └── CloseSelected.png
│ │ ├── HelloAnalytics-JS
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── helloanalyticsjs
│ │ │ │ └── HelloAnalytics.java
│ │ │ └── Resources
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ ├── main.js
│ │ │ ├── res
│ │ │ │ ├── background.png
│ │ │ │ ├── CloseNormal.png
│ │ │ │ └── CloseSelected.png
│ │ │ └── src
│ │ │ ├── myApp.js
│ │ │ └── resource.js
│ │ ├── HelloIAP
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── HelloWorldScene.cpp
│ │ │ │ ├── HelloWorldScene.h
│ │ │ │ ├── MyPurchase.cpp
│ │ │ │ └── MyPurchase.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── helloIAP
│ │ │ │ └── HelloIAP.java
│ │ │ └── Resources
│ │ │ ├── alipay_plugin.apk
│ │ │ ├── background.png
│ │ │ ├── BtnAlipay.png
│ │ │ ├── BtnND91.png
│ │ │ ├── CloseNormal.png
│ │ │ └── CloseSelected.png
│ │ ├── HelloIAP-JS
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── raw
│ │ │ │ │ │ └── opening_sound.mid
│ │ │ │ │ └── values
│ │ │ │ │ ├── g_strings.xml
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── helloIAPJS
│ │ │ │ └── HelloIAP.java
│ │ │ └── Resources
│ │ │ ├── alipay_plugin.apk
│ │ │ ├── BtnAlipay.png
│ │ │ ├── BtnND91.png
│ │ │ ├── main.js
│ │ │ ├── res
│ │ │ │ ├── background.png
│ │ │ │ ├── CloseNormal.png
│ │ │ │ └── CloseSelected.png
│ │ │ └── src
│ │ │ ├── myApp.js
│ │ │ └── resource.js
│ │ └── HelloSocial
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ ├── AppDelegate.h
│ │ │ ├── HelloWorldScene.cpp
│ │ │ ├── HelloWorldScene.h
│ │ │ ├── MySocialManager.cpp
│ │ │ └── MySocialManager.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── hellocpp
│ │ │ │ └── main.cpp
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── helloSocial
│ │ │ └── HelloSocial.java
│ │ ├── proj.ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── HelloSocial.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ ├── Prefix.pch
│ │ │ ├── RootViewController.h
│ │ │ └── RootViewController.mm
│ │ └── Resources
│ │ ├── background.png
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── twitter.jpeg
│ │ └── weibo.png
│ └── tools
│ ├── android
│ │ └── build_common.xml
│ ├── config.sh
│ ├── gameDevGuide.sh
│ ├── publish.sh
│ ├── tojs
│ │ ├── conversions.yaml
│ │ ├── genbindings-all.sh
│ │ ├── genbindings.sh
│ │ └── modify_include.sed
│ ├── toolsForGame
│ │ ├── addPluginForGame.sh
│ │ ├── main.py
│ │ ├── modifyAppMK.sh
│ │ ├── modifyClassPath.py
│ │ ├── modifyManifest.py
│ │ ├── modifyMK.sh
│ │ ├── modifyProject.py
│ │ ├── modifyRes.sh
│ │ └── steps.py
│ └── toolsForPublish
│ ├── checkEnvironment.sh
│ ├── genPrebuildMK.sh
│ └── publishPlugin.sh
├── projects
│ └── fight
│ ├── Classes
│ │ ├── AboutScene.cpp
│ │ ├── AboutScene.h
│ │ ├── AppDelegate.cpp
│ │ ├── AppDelegate.h
│ │ ├── AppMacros.h
│ │ ├── ARPG.cpp
│ │ ├── ARPG.h
│ │ ├── BaseLayer.cpp
│ │ ├── BaseLayer.h
│ │ ├── BeatEffect.cpp
│ │ ├── BeatEffect.h
│ │ ├── BeginLayer.cpp
│ │ ├── BeginLayer.h
│ │ ├── BloodBar.cpp
│ │ ├── BloodBar.h
│ │ ├── Boss.cpp
│ │ ├── Boss.h
│ │ ├── Bullet.cpp
│ │ ├── Bullet.h
│ │ ├── Card.cpp
│ │ ├── Card.h
│ │ ├── Counter.cpp
│ │ ├── Counter.h
│ │ ├── Dalibao.cpp
│ │ ├── Dalibao.h
│ │ ├── Define.h
│ │ ├── Ef.cpp
│ │ ├── Effect.cpp
│ │ ├── Effect.h
│ │ ├── Ef.h
│ │ ├── Flower.cpp
│ │ ├── Flower.h
│ │ ├── FourJihuo.cpp
│ │ ├── FourJihuo.h
│ │ ├── Game.cpp
│ │ ├── GameData.cpp
│ │ ├── GameData.h
│ │ ├── Game.h
│ │ ├── GameOverScene.cpp
│ │ ├── GameOverScene.h
│ │ ├── GameScene.cpp
│ │ ├── GameScene.h
│ │ ├── GoldCounterLayer.cpp
│ │ ├── GoldCounterLayer.h
│ │ ├── GuoduScene.cpp
│ │ ├── GuoduScene.h
│ │ ├── HeroBoss.cpp
│ │ ├── HeroBoss.h
│ │ ├── Hero.cpp
│ │ ├── Hero.h
│ │ ├── Hero_Help.cpp
│ │ ├── Hero_Help.h
│ │ ├── HubLayer.cpp
│ │ ├── HubLayer.h
│ │ ├── HubShop.cpp
│ │ ├── HubShop.h
│ │ ├── Jihuo.cpp
│ │ ├── Jihuo.h
│ │ ├── LoadingLayer.cpp
│ │ ├── LoadingLayer.h
│ │ ├── LoadingScene.cpp
│ │ ├── LoadingScene.h
│ │ ├── MakeNumbers.cpp
│ │ ├── MakeNumbers.h
│ │ ├── MenuLayer.cpp
│ │ ├── MenuLayer.h
│ │ ├── MenuScene.cpp
│ │ ├── MenuScene.h
│ │ ├── Mode.cpp
│ │ ├── Mode.h
│ │ ├── MonsterAIState.cpp
│ │ ├── MonsterAIState.h
│ │ ├── Monster.cpp
│ │ ├── Monster.h
│ │ ├── NpcHelp.cpp
│ │ ├── NpcHelp.h
│ │ ├── NpcMap.h
│ │ ├── PersonalAudioEngine.cpp
│ │ ├── PersonalAudioEngine.h
│ │ ├── PlayEffect.cpp
│ │ ├── PlayEffect.h
│ │ ├── PlayerHeadUI.cpp
│ │ ├── PlayerHeadUI.h
│ │ ├── Prop.cpp
│ │ ├── Prop.h
│ │ ├── RemoteMonster.cpp
│ │ ├── RemoteMonster.h
│ │ ├── SelectScene.cpp
│ │ ├── SelectScene.h
│ │ ├── ShopBuy2.cpp
│ │ ├── ShopBuy2.h
│ │ ├── ShopBuy.cpp
│ │ ├── ShopBuy.h
│ │ ├── ShopBuyLayer.cpp
│ │ ├── ShopBuyLayer.h
│ │ ├── ShopScene.cpp
│ │ ├── ShopScene.h
│ │ ├── SkillObject.cpp
│ │ ├── SkillObject.h
│ │ ├── SneakyButton.cpp
│ │ ├── SneakyButton.h
│ │ ├── SneakyButtonSkinnedBase.cpp
│ │ ├── SneakyButtonSkinnedBase.h
│ │ ├── State.h
│ │ ├── StateMachine.cpp
│ │ ├── StateMachine.h
│ │ ├── TeachScene.cpp
│ │ ├── TeachScene.h
│ │ ├── Tips.cpp
│ │ ├── Tips.h
│ │ ├── TipStory2.cpp
│ │ ├── TipStory2.h
│ │ ├── TipStory3.cpp
│ │ ├── TipStory3.h
│ │ ├── TipStory.cpp
│ │ ├── TipStory.h
│ │ ├── tools
│ │ │ ├── Audio.cpp
│ │ │ ├── Audio.h
│ │ │ ├── CsvUtil.cpp
│ │ │ ├── CsvUtil.h
│ │ │ ├── def.h
│ │ │ ├── FileLoadUtil.cpp
│ │ │ ├── FileLoadUtil.h
│ │ │ ├── Handler.cpp
│ │ │ ├── Handler.h
│ │ │ ├── I18N.cpp
│ │ │ ├── I18N.h
│ │ │ ├── JavaTransUtil.cpp
│ │ │ ├── JavaTransUtil.h
│ │ │ ├── Recorder.cpp
│ │ │ ├── Recorder.h
│ │ │ ├── Screen.cpp
│ │ │ ├── Screen.h
│ │ │ ├── StringUtil.cpp
│ │ │ ├── StringUtil.h
│ │ │ ├── SysConfig.cpp
│ │ │ ├── SysConfig.h
│ │ │ ├── TextUtil.cpp
│ │ │ ├── TextUtil.h
│ │ │ ├── Tools.cpp
│ │ │ ├── Tools.h
│ │ │ ├── UI_Layer.cpp
│ │ │ └── UI_Layer.h
│ │ ├── Wave.cpp
│ │ ├── Wave.h
│ │ ├── XMLData.cpp
│ │ └── XMLData.h
│ ├── proj.android
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ ├── card
│ │ │ │ ├── bajiubei.png
│ │ │ │ ├── bazhinv.png
│ │ │ │ ├── jineng.png
│ │ │ │ └── lingqujienng1.png
│ │ │ ├── dalibao
│ │ │ │ ├── 10yuan.png
│ │ │ │ ├── 1888jin.png
│ │ │ │ ├── 20yuan.png
│ │ │ │ ├── 2888jin.png
│ │ │ │ ├── 2yuan.png
│ │ │ │ ├── 4yuan.png
│ │ │ │ ├── 5888jin.png
│ │ │ │ ├── 6yuan.png
│ │ │ │ ├── anniu1.png
│ │ │ │ ├── anniu2.png
│ │ │ │ ├── beijing.png
│ │ │ │ ├── dalibao.png
│ │ │ │ ├── duobi.png
│ │ │ │ ├── goldwenzi.png
│ │ │ │ ├── goumai2.png
│ │ │ │ ├── goumai.png
│ │ │ │ ├── hiddenLibao.png
│ │ │ │ ├── huodedalibao.png
│ │ │ │ ├── jihuotu.png
│ │ │ │ ├── jineng11.png
│ │ │ │ ├── jineng255.png
│ │ │ │ ├── libaobao.png
│ │ │ │ ├── onlineLibao.png
│ │ │ │ ├── shoushen.png
│ │ │ │ ├── toumingde.png
│ │ │ │ ├── x12.png
│ │ │ │ ├── x1.png
│ │ │ │ ├── x22.png
│ │ │ │ ├── x2.png
│ │ │ │ ├── xuanzhongkuang.png
│ │ │ │ └── zaixianlibao.png
│ │ │ ├── duihuakuang
│ │ │ │ ├── bashen.png
│ │ │ │ ├── BOSS.png
│ │ │ │ ├── duihuakuang_2.png
│ │ │ │ ├── fengkbasheng.png
│ │ │ │ ├── heisebasheng.png
│ │ │ │ ├── hunhun.png
│ │ │ │ ├── jiaoshi.png
│ │ │ │ ├── UI80.png
│ │ │ │ └── xiaowu.png
│ │ │ ├── effect
│ │ │ │ ├── tx_bao1
│ │ │ │ │ ├── tx_bao10.plist
│ │ │ │ │ ├── tx_bao10.png
│ │ │ │ │ └── tx_bao1.ExportJson
│ │ │ │ ├── tx_baozha
│ │ │ │ │ ├── tx_baozha0.plist
│ │ │ │ │ ├── tx_baozha0.png
│ │ │ │ │ └── tx_baozha.ExportJson
│ │ │ │ ├── tx_chongyanwu
│ │ │ │ │ ├── tx_chongyanwu0.plist
│ │ │ │ │ ├── tx_chongyanwu0.png
│ │ │ │ │ └── tx_chongyanwu.ExportJson
│ │ │ │ ├── tx_duobi
│ │ │ │ │ ├── tx_duobi0.plist
│ │ │ │ │ ├── tx_duobi0.png
│ │ │ │ │ └── tx_duobi.ExportJson
│ │ │ │ ├── tx_jiaodi
│ │ │ │ │ ├── tx_jiaodi0.plist
│ │ │ │ │ ├── tx_jiaodi0.png
│ │ │ │ │ └── tx_jiaodi.ExportJson
│ │ │ │ ├── tx_juqi
│ │ │ │ │ ├── tx_juqi0.plist
│ │ │ │ │ ├── tx_juqi0.png
│ │ │ │ │ └── tx_juqi.ExportJson
│ │ │ │ ├── tx_juqibao
│ │ │ │ │ ├── tx_juqibao0.plist
│ │ │ │ │ ├── tx_juqibao0.png
│ │ │ │ │ └── tx_juqibao.ExportJson
│ │ │ │ ├── tx_qianxiaqian
│ │ │ │ │ ├── tx_qianxiaqian0.plist
│ │ │ │ │ ├── tx_qianxiaqian0.png
│ │ │ │ │ └── tx_qianxiaqian.ExportJson
│ │ │ │ ├── tx_shandian
│ │ │ │ │ ├── tx_shandian0.plist
│ │ │ │ │ ├── tx_shandian0.png
│ │ │ │ │ └── tx_shandian.ExportJson
│ │ │ │ ├── tx_shandian2
│ │ │ │ │ ├── tx_shandian20.plist
│ │ │ │ │ ├── tx_shandian20.png
│ │ │ │ │ └── tx_shandian2.ExportJson
│ │ │ │ ├── tx_shandianqiu
│ │ │ │ │ ├── tx_shandianqiu0.plist
│ │ │ │ │ ├── tx_shandianqiu0.png
│ │ │ │ │ └── tx_shandianqiu.ExportJson
│ │ │ │ ├── tx_shouji1
│ │ │ │ │ ├── tx_shouji10.plist
│ │ │ │ │ ├── tx_shouji10.png
│ │ │ │ │ └── tx_shouji1.ExportJson
│ │ │ │ ├── tx_shouji2
│ │ │ │ │ ├── tx_shouji20.plist
│ │ │ │ │ ├── tx_shouji20.png
│ │ │ │ │ └── tx_shouji2.ExportJson
│ │ │ │ ├── tx_shouji3
│ │ │ │ │ ├── tx_shouji30.plist
│ │ │ │ │ ├── tx_shouji30.png
│ │ │ │ │ └── tx_shouji3.ExportJson
│ │ │ │ ├── tx_ti
│ │ │ │ │ ├── tx_ti0.plist
│ │ │ │ │ ├── tx_ti0.png
│ │ │ │ │ └── tx_ti.ExportJson
│ │ │ │ ├── tx_xiazhua
│ │ │ │ │ ├── tx_xiazhua0.plist
│ │ │ │ │ ├── tx_xiazhua0.png
│ │ │ │ │ └── tx_xiazhua.ExportJson
│ │ │ │ ├── zadi.plist
│ │ │ │ └── zadi.png
│ │ │ ├── gameover
│ │ │ │ ├── fail.png
│ │ │ │ ├── ggjm_bx.png
│ │ │ │ ├── ggjm_gban_down.png
│ │ │ │ ├── ggjm_gban.png
│ │ │ │ ├── ggjm_gxtg.png
│ │ │ │ ├── ggjm_jb.png
│ │ │ │ ├── ggjm_jxdown.png
│ │ │ │ ├── ggjm_jx.png
│ │ │ │ ├── ggjm_k1.png
│ │ │ │ ├── ggjm_k2.png
│ │ │ │ ├── ggjm_k3.png
│ │ │ │ ├── ggjm_k4.png
│ │ │ │ ├── ggjm_lj.png
│ │ │ │ ├── ggjm_mj.png
│ │ │ │ ├── ggjm_mmt.png
│ │ │ │ ├── ggjm_sj.png
│ │ │ │ ├── ggjm_sm.png
│ │ │ │ └── ggjm_zdf.png
│ │ │ ├── help11.png
│ │ │ ├── i18n
│ │ │ │ ├── errorCode.csv
│ │ │ │ └── public.csv
│ │ │ ├── libao
│ │ │ │ ├── tubiao3.png
│ │ │ │ ├── xx1.png
│ │ │ │ ├── xx.png
│ │ │ │ ├── xxx1.png
│ │ │ │ └── xxx.png
│ │ │ ├── maps
│ │ │ │ ├── map01.png
│ │ │ │ ├── map02.png
│ │ │ │ └── map03.png
│ │ │ ├── meinvdazhan
│ │ │ │ ├── meinvdazhan0.plist
│ │ │ │ ├── meinvdazhan0.png
│ │ │ │ └── meinvdazhan.ExportJson
│ │ │ ├── menu
│ │ │ │ ├── biaoti.png
│ │ │ │ ├── guanyu.png
│ │ │ │ ├── shengyin2.png
│ │ │ │ ├── shengyin.png
│ │ │ │ ├── youxiji.png
│ │ │ │ ├── youxikaishi.png
│ │ │ │ └── zhujiemian_bj.png
│ │ │ ├── music
│ │ │ │ ├── backSound.mp3
│ │ │ │ ├── baoqi.mp3
│ │ │ │ ├── confirm.mp3
│ │ │ │ ├── dajiqie1.mp3
│ │ │ │ ├── dajiqie2.mp3
│ │ │ │ ├── dajiqing.mp3
│ │ │ │ ├── dajizhong.mp3
│ │ │ │ ├── dajiz.mp3
│ │ │ │ ├── dazhao1.mp3
│ │ │ │ ├── dazhao.mp3
│ │ │ │ ├── gameover.mp3
│ │ │ │ ├── jiemianbgmusic.mp3
│ │ │ │ ├── kof20001.mp3
│ │ │ │ ├── ko.mp3
│ │ │ │ ├── prop.mp3
│ │ │ │ ├── quan-mingzhong-qing.mp3
│ │ │ │ ├── quan-mingzhong-zhong.mp3
│ │ │ │ ├── shanbi.mp3
│ │ │ │ ├── shandian.mp3
│ │ │ │ ├── titui.mp3
│ │ │ │ ├── zadi.mp3
│ │ │ │ ├── zhugongji1.mp3
│ │ │ │ ├── zhugongji2.mp3
│ │ │ │ └── zhushouji.mp3
│ │ │ ├── NewProject_1
│ │ │ │ ├── NewProject0.plist
│ │ │ │ ├── NewProject0.png
│ │ │ │ └── NewProject_1.ExportJson
│ │ │ ├── pause
│ │ │ │ ├── shop2.png
│ │ │ │ ├── shop.png
│ │ │ │ ├── yxzt_dh.png
│ │ │ │ ├── yxzt_fhzcd_down.png
│ │ │ │ ├── yxzt_fhzcd.png
│ │ │ │ ├── yxzt_lb.png
│ │ │ │ ├── yxzt.png
│ │ │ │ ├── yxzt_xh.png
│ │ │ │ └── yxzt_yy.png
│ │ │ ├── play.cn.logo.png
│ │ │ ├── quanqiande
│ │ │ │ ├── quanqiande0.plist
│ │ │ │ ├── quanqiande0.png
│ │ │ │ └── quanqiande.ExportJson
│ │ │ ├── readygo
│ │ │ │ ├── a.png
│ │ │ │ ├── d.png
│ │ │ │ ├── e.png
│ │ │ │ ├── g.png
│ │ │ │ ├── o.png
│ │ │ │ ├── r.png
│ │ │ │ └── y.png
│ │ │ ├── res
│ │ │ │ ├── boss1
│ │ │ │ │ ├── boss10.plist
│ │ │ │ │ ├── boss10.png
│ │ │ │ │ └── boss1.ExportJson
│ │ │ │ ├── boss2
│ │ │ │ │ ├── boss20.plist
│ │ │ │ │ ├── boss20.png
│ │ │ │ │ └── boss2.ExportJson
│ │ │ │ ├── boss3
│ │ │ │ │ ├── boss30.plist
│ │ │ │ │ ├── boss30.png
│ │ │ │ │ ├── boss31.plist
│ │ │ │ │ ├── boss31.png
│ │ │ │ │ └── boss3.ExportJson
│ │ │ │ ├── boss4
│ │ │ │ │ ├── boss40.plist
│ │ │ │ │ ├── boss40.png
│ │ │ │ │ └── boss4.ExportJson
│ │ │ │ ├── g1
│ │ │ │ │ ├── g10.plist
│ │ │ │ │ ├── g10.png
│ │ │ │ │ └── g1.ExportJson
│ │ │ │ ├── g10
│ │ │ │ │ ├── g100.plist
│ │ │ │ │ ├── g100.png
│ │ │ │ │ └── g10.ExportJson
│ │ │ │ ├── g2
│ │ │ │ │ ├── g20.plist
│ │ │ │ │ ├── g20.png
│ │ │ │ │ └── g2.ExportJson
│ │ │ │ ├── g3
│ │ │ │ │ ├── g30.plist
│ │ │ │ │ ├── g30.png
│ │ │ │ │ └── g3.ExportJson
│ │ │ │ ├── g4
│ │ │ │ │ ├── g40.plist
│ │ │ │ │ ├── g40.png
│ │ │ │ │ └── g4.ExportJson
│ │ │ │ ├── g5
│ │ │ │ │ ├── g50.plist
│ │ │ │ │ ├── g50.png
│ │ │ │ │ └── g5.ExportJson
│ │ │ │ ├── g6
│ │ │ │ │ ├── g60.plist
│ │ │ │ │ ├── g60.png
│ │ │ │ │ └── g6.ExportJson
│ │ │ │ ├── g7
│ │ │ │ │ ├── g70.plist
│ │ │ │ │ ├── g70.png
│ │ │ │ │ └── g7.ExportJson
│ │ │ │ ├── g8
│ │ │ │ │ ├── g80.plist
│ │ │ │ │ ├── g80.png
│ │ │ │ │ └── g8.ExportJson
│ │ │ │ ├── g9
│ │ │ │ │ ├── g90.plist
│ │ │ │ │ ├── g90.png
│ │ │ │ │ └── g9.ExportJson
│ │ │ │ ├── nvzhujiao
│ │ │ │ │ ├── nvzhujiao0.plist
│ │ │ │ │ ├── nvzhujiao0.png
│ │ │ │ │ └── nvzhujiao.ExportJson
│ │ │ │ ├── role1
│ │ │ │ │ ├── role10.plist
│ │ │ │ │ ├── role10.png
│ │ │ │ │ └── role1.ExportJson
│ │ │ │ ├── select
│ │ │ │ │ ├── shangcheng1.png
│ │ │ │ │ └── shangcheng2.png
│ │ │ │ ├── wuqifeidao
│ │ │ │ │ ├── wuqifeidao0.plist
│ │ │ │ │ ├── wuqifeidao0.png
│ │ │ │ │ └── wuqifeidao.ExportJson
│ │ │ │ └── yingzi.png
│ │ │ ├── shop
│ │ │ │ ├── scnl_dk1.png
│ │ │ │ ├── scnl_dk2.png
│ │ │ │ ├── scnl_dk3.png
│ │ │ │ ├── scnl_gb_down.png
│ │ │ │ ├── scnl_gb.png
│ │ │ │ ├── scnl_hd_down.png
│ │ │ │ ├── scnl_hd.png
│ │ │ │ ├── scnl_jjdb.png
│ │ │ │ ├── scnl_nl_down.png
│ │ │ │ ├── scnl_nl.png
│ │ │ │ ├── scnl_nqb.png
│ │ │ │ ├── scnl_qb.png
│ │ │ │ ├── scnl_sc_down.png
│ │ │ │ ├── scnl_sc.png
│ │ │ │ ├── scnl_ss.png
│ │ │ │ ├── scnl_swfh.png
│ │ │ │ ├── scnl_xt_down.png
│ │ │ │ ├── scnl_xt.png
│ │ │ │ ├── scnl_xzk.png
│ │ │ │ ├── scsc_cjdlb1.png
│ │ │ │ ├── scsc_tb1.png
│ │ │ │ ├── scsc_tb2.png
│ │ │ │ ├── scsc_tb3.png
│ │ │ │ ├── scsc_tb4.png
│ │ │ │ ├── scsc_xzk.png
│ │ │ │ ├── scxt_bs1.png
│ │ │ │ ├── scxt_bs2.png
│ │ │ │ ├── scxt_bs3.png
│ │ │ │ ├── scxt_bs4.png
│ │ │ │ ├── scxt_jbk.png
│ │ │ │ ├── scxt_jh_down.png
│ │ │ │ ├── scxt_jh.png
│ │ │ │ ├── scxt_k1.png
│ │ │ │ ├── scxt_rw.png
│ │ │ │ └── yihuode.png
│ │ │ ├── shopsc
│ │ │ │ ├── 112121
│ │ │ │ │ ├── 1121210.plist
│ │ │ │ │ ├── 1121210.png
│ │ │ │ │ └── 112121.ExportJson
│ │ │ │ ├── 2313.png
│ │ │ │ ├── 4321.png
│ │ │ │ ├── 5432.png
│ │ │ │ ├── baoxiang
│ │ │ │ │ ├── baoxiang0.plist
│ │ │ │ │ ├── baoxiang0.png
│ │ │ │ │ └── baoxiang.ExportJson
│ │ │ │ ├── ditu.png
│ │ │ │ ├── nvrole.png
│ │ │ │ └── texiao1
│ │ │ │ ├── texiao10.plist
│ │ │ │ ├── texiao10.png
│ │ │ │ └── texiao1.ExportJson
│ │ │ ├── time
│ │ │ │ ├── 0.png
│ │ │ │ ├── lala.png
│ │ │ │ └── time.png
│ │ │ ├── UI
│ │ │ │ ├── qtsz_0.png
│ │ │ │ ├── qtsz_1.png
│ │ │ │ ├── qtsz_2.png
│ │ │ │ ├── qtsz_3.png
│ │ │ │ ├── qtsz_4.png
│ │ │ │ ├── qtsz_5.png
│ │ │ │ ├── qtsz_6.png
│ │ │ │ ├── qtsz_7.png
│ │ │ │ ├── qtsz_8.png
│ │ │ │ ├── qtsz_9.png
│ │ │ │ ├── qtsz_fxj.png
│ │ │ │ ├── qtsz_jb.png
│ │ │ │ ├── qtsz_lj.png
│ │ │ │ ├── qtsz_nq.png
│ │ │ │ ├── qtsz_sydr.png
│ │ │ │ ├── qtsz_x.png
│ │ │ │ └── shuzixiao.png
│ │ │ ├── util
│ │ │ │ ├── damageNum.png
│ │ │ │ ├── gangxiangjian1.png
│ │ │ │ ├── gangxiangjian2.png
│ │ │ │ ├── gongjijian1.png
│ │ │ │ ├── gongjijian2.png
│ │ │ │ ├── jianglifen1.png
│ │ │ │ ├── jl1.png
│ │ │ │ ├── nl1.png
│ │ │ │ ├── npc_xc_1.png
│ │ │ │ ├── npc_xc_2.png
│ │ │ │ ├── skill1.png
│ │ │ │ ├── skill2.png
│ │ │ │ ├── skill3.png
│ │ │ │ ├── skill4.png
│ │ │ │ ├── suzi-0.png
│ │ │ │ ├── suzi-1.png
│ │ │ │ ├── suzi-2.png
│ │ │ │ ├── suzi-3.png
│ │ │ │ ├── suzi-4.png
│ │ │ │ ├── suzi-5.png
│ │ │ │ ├── suzi-6.png
│ │ │ │ ├── suzi-7.png
│ │ │ │ ├── suzi-8.png
│ │ │ │ ├── suzi-9.png
│ │ │ │ ├── touxiang1
│ │ │ │ │ ├── touxiang10.plist
│ │ │ │ │ ├── touxiang10.png
│ │ │ │ │ └── touxiang1.ExportJson
│ │ │ │ ├── tubiaokuang1.png
│ │ │ │ ├── xintian_jsdr.png
│ │ │ │ ├── xintian_qjjl.png
│ │ │ │ ├── zhantinganniu1.png
│ │ │ │ └── zhantinganniu2.png
│ │ │ ├── wenzi
│ │ │ │ ├── chongxinkaishi1.png
│ │ │ │ ├── chongxinkaishi2.png
│ │ │ │ ├── fanhuijidi1.png
│ │ │ │ ├── fanhuijidi2.png
│ │ │ │ ├── qianghuashuxing1.png
│ │ │ │ └── qianghuashuxing2.png
│ │ │ └── xuanze
│ │ │ ├── 0.png
│ │ │ ├── 1.png
│ │ │ ├── 2.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ ├── 60.png
│ │ │ ├── 6.png
│ │ │ ├── 7.png
│ │ │ ├── 8.png
│ │ │ ├── 9.png
│ │ │ ├── benguandefen.png
│ │ │ ├── biao1.png
│ │ │ ├── biao2.png
│ │ │ ├── dawdaqq11.png
│ │ │ ├── diexuematou.png
│ │ │ ├── guanka1.png
│ │ │ ├── guankakjieshao.png
│ │ │ ├── huiqu1.png
│ │ │ ├── huiqu2.png
│ │ │ ├── jiantou.png
│ │ │ └── renwumubiaozi.png
│ │ ├── jni
│ │ │ ├── Android.mk
│ │ │ ├── Application.mk
│ │ │ └── hellocpp
│ │ │ └── main.cpp
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── layout
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ ├── com
│ │ │ └── game
│ │ │ └── fight
│ │ │ ├── CommonDatas.java
│ │ │ └── fight.java
│ │ └── org
│ │ └── cocos2dx
│ │ └── lib
│ │ ├── Cocos2dxAccelerometer.java
│ │ ├── Cocos2dxActivity.java
│ │ ├── Cocos2dxBitmap.java
│ │ ├── Cocos2dxEditBoxDialog.java
│ │ ├── Cocos2dxEditText.java
│ │ ├── Cocos2dxETCLoader.java
│ │ ├── Cocos2dxGLSurfaceView.java
│ │ ├── Cocos2dxHandler.java
│ │ ├── Cocos2dxHelper.java
│ │ ├── Cocos2dxLocalStorage.java
│ │ ├── Cocos2dxMusic.java
│ │ ├── Cocos2dxRenderer.java
│ │ ├── Cocos2dxSound.java
│ │ ├── Cocos2dxTextInputWraper.java
│ │ └── Cocos2dxTypefaces.java
│ ├── proj.blackberry
│ │ ├── bar-descriptor.xml
│ │ ├── empty
│ │ │ └── empty
│ │ ├── icon.png
│ │ └── main.cpp
│ ├── proj.ios
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── Default@2x.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default.png
│ │ ├── fight.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── Icon-114.png
│ │ ├── Icon-120.png
│ │ ├── Icon-144.png
│ │ ├── Icon-152.png
│ │ ├── Icon-57.png
│ │ ├── Icon-72.png
│ │ ├── Icon-76.png
│ │ ├── Info.plist
│ │ ├── main.m
│ │ ├── Prefix.pch
│ │ ├── RootViewController.h
│ │ └── RootViewController.mm
│ ├── proj.linux
│ │ ├── build.sh
│ │ ├── main.cpp
│ │ └── Makefile
│ ├── proj.mac
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── en.lproj
│ │ │ ├── InfoPlist.strings
│ │ │ └── MainMenu.xib
│ │ ├── fight.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── Icon.icns
│ │ ├── Info.plist
│ │ ├── main.m
│ │ └── Prefix.pch
│ ├── proj.marmalade
│ │ ├── fight.mkb
│ │ └── src
│ │ ├── Main.cpp
│ │ └── Main.h
│ ├── proj.tizen
│ │ ├── data
│ │ ├── inc
│ │ ├── lib
│ │ ├── manifest.xml
│ │ ├── README.mdown
│ │ ├── res
│ │ ├── shared
│ │ │ ├── data
│ │ │ ├── res
│ │ │ │ └── screen-density-xhigh
│ │ │ │ └── mainmenu.png
│ │ │ └── trusted
│ │ └── src
│ │ └── HelloCppEntry.cpp
│ ├── proj.win32
│ │ ├── fight.sln
│ │ ├── fight.suo
│ │ ├── fight.v11.suo
│ │ ├── fight.v12.suo
│ │ ├── fight.vcxproj
│ │ ├── fight.vcxproj.filters
│ │ ├── fight.vcxproj.user
│ │ ├── main.cpp
│ │ └── main.h
│ ├── proj.winrt
│ │ ├── App.xaml
│ │ ├── App.xaml.cpp
│ │ ├── App.xaml.h
│ │ ├── Assets
│ │ │ ├── Logo.png
│ │ │ ├── SmallLogo.png
│ │ │ ├── SplashScreen.png
│ │ │ ├── StoreLogo.png
│ │ │ └── WideLogo.png
│ │ ├── Common
│ │ │ └── StandardStyles.xaml
│ │ ├── fight_2013.sln
│ │ ├── fight_2013.vcxproj
│ │ ├── fight_2013.vcxproj.filters
│ │ ├── fight.sln
│ │ ├── fight.vcxproj
│ │ ├── fight.vcxproj.filters
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cpp
│ │ ├── MainPage.xaml.h
│ │ ├── Package_2013.appxmanifest
│ │ ├── Package.appxmanifest
│ │ ├── pch.cpp
│ │ ├── pch.h
│ │ └── TemporaryKey.pfx
│ ├── proj.wp8
│ │ ├── Assets
│ │ │ ├── AlignmentGrid.png
│ │ │ ├── ApplicationIcon.png
│ │ │ └── Tiles
│ │ │ ├── FlipCycleTileLarge.png
│ │ │ ├── FlipCycleTileMedium.png
│ │ │ ├── FlipCycleTileSmall.png
│ │ │ ├── IconicTileMediumLarge.png
│ │ │ └── IconicTileSmall.png
│ │ ├── fight.cpp
│ │ ├── fight.h
│ │ ├── fight.sln
│ │ ├── fight.vcxproj
│ │ ├── fight.vcxproj.filters
│ │ └── WMAppManifest.xml
│ └── Resources
│ ├── card
│ │ ├── bajiubei.png
│ │ ├── bazhinv.png
│ │ ├── jineng.png
│ │ └── lingqujienng1.png
│ ├── dalibao
│ │ ├── 10yuan.png
│ │ ├── 1888jin.png
│ │ ├── 20yuan.png
│ │ ├── 2888jin.png
│ │ ├── 2yuan.png
│ │ ├── 4yuan.png
│ │ ├── 5888jin.png
│ │ ├── 6yuan.png
│ │ ├── anniu1.png
│ │ ├── anniu2.png
│ │ ├── beijing.png
│ │ ├── dalibao.png
│ │ ├── duobi.png
│ │ ├── goldwenzi.png
│ │ ├── goumai2.png
│ │ ├── goumai.png
│ │ ├── hiddenLibao.png
│ │ ├── huodedalibao.png
│ │ ├── jihuotu.png
│ │ ├── jineng11.png
│ │ ├── jineng255.png
│ │ ├── libaobao.png
│ │ ├── onlineLibao.png
│ │ ├── shoushen.png
│ │ ├── toumingde.png
│ │ ├── x12.png
│ │ ├── x1.png
│ │ ├── x22.png
│ │ ├── x2.png
│ │ ├── xuanzhongkuang.png
│ │ └── zaixianlibao.png
│ ├── duihuakuang
│ │ ├── bashen.png
│ │ ├── BOSS.png
│ │ ├── duihuakuang_2.png
│ │ ├── fengkbasheng.png
│ │ ├── heisebasheng.png
│ │ ├── hunhun.png
│ │ ├── jiaoshi.png
│ │ ├── UI80.png
│ │ └── xiaowu.png
│ ├── effect
│ │ ├── tx_bao1
│ │ │ ├── tx_bao10.plist
│ │ │ ├── tx_bao10.png
│ │ │ └── tx_bao1.ExportJson
│ │ ├── tx_baozha
│ │ │ ├── tx_baozha0.plist
│ │ │ ├── tx_baozha0.png
│ │ │ └── tx_baozha.ExportJson
│ │ ├── tx_chongyanwu
│ │ │ ├── tx_chongyanwu0.plist
│ │ │ ├── tx_chongyanwu0.png
│ │ │ └── tx_chongyanwu.ExportJson
│ │ ├── tx_duobi
│ │ │ ├── tx_duobi0.plist
│ │ │ ├── tx_duobi0.png
│ │ │ └── tx_duobi.ExportJson
│ │ ├── tx_jiaodi
│ │ │ ├── tx_jiaodi0.plist
│ │ │ ├── tx_jiaodi0.png
│ │ │ └── tx_jiaodi.ExportJson
│ │ ├── tx_juqi
│ │ │ ├── tx_juqi0.plist
│ │ │ ├── tx_juqi0.png
│ │ │ └── tx_juqi.ExportJson
│ │ ├── tx_juqibao
│ │ │ ├── tx_juqibao0.plist
│ │ │ ├── tx_juqibao0.png
│ │ │ └── tx_juqibao.ExportJson
│ │ ├── tx_qianxiaqian
│ │ │ ├── tx_qianxiaqian0.plist
│ │ │ ├── tx_qianxiaqian0.png
│ │ │ └── tx_qianxiaqian.ExportJson
│ │ ├── tx_shandian
│ │ │ ├── tx_shandian0.plist
│ │ │ ├── tx_shandian0.png
│ │ │ └── tx_shandian.ExportJson
│ │ ├── tx_shandian2
│ │ │ ├── tx_shandian20.plist
│ │ │ ├── tx_shandian20.png
│ │ │ └── tx_shandian2.ExportJson
│ │ ├── tx_shandianqiu
│ │ │ ├── tx_shandianqiu0.plist
│ │ │ ├── tx_shandianqiu0.png
│ │ │ └── tx_shandianqiu.ExportJson
│ │ ├── tx_shouji1
│ │ │ ├── tx_shouji10.plist
│ │ │ ├── tx_shouji10.png
│ │ │ └── tx_shouji1.ExportJson
│ │ ├── tx_shouji2
│ │ │ ├── tx_shouji20.plist
│ │ │ ├── tx_shouji20.png
│ │ │ └── tx_shouji2.ExportJson
│ │ ├── tx_shouji3
│ │ │ ├── tx_shouji30.plist
│ │ │ ├── tx_shouji30.png
│ │ │ └── tx_shouji3.ExportJson
│ │ ├── tx_ti
│ │ │ ├── tx_ti0.plist
│ │ │ ├── tx_ti0.png
│ │ │ └── tx_ti.ExportJson
│ │ ├── tx_xiazhua
│ │ │ ├── tx_xiazhua0.plist
│ │ │ ├── tx_xiazhua0.png
│ │ │ └── tx_xiazhua.ExportJson
│ │ ├── zadi.plist
│ │ └── zadi.png
│ ├── gameover
│ │ ├── fail.png
│ │ ├── ggjm_bx.png
│ │ ├── ggjm_gban_down.png
│ │ ├── ggjm_gban.png
│ │ ├── ggjm_gxtg.png
│ │ ├── ggjm_jb.png
│ │ ├── ggjm_jxdown.png
│ │ ├── ggjm_jx.png
│ │ ├── ggjm_k1.png
│ │ ├── ggjm_k2.png
│ │ ├── ggjm_k3.png
│ │ ├── ggjm_k4.png
│ │ ├── ggjm_lj.png
│ │ ├── ggjm_mj.png
│ │ ├── ggjm_mmt.png
│ │ ├── ggjm_sj.png
│ │ ├── ggjm_sm.png
│ │ └── ggjm_zdf.png
│ ├── help11.png
│ ├── i18n
│ │ ├── errorCode.csv
│ │ └── public.csv
│ ├── libao
│ │ ├── tubiao3.png
│ │ ├── xx1.png
│ │ ├── xx.png
│ │ ├── xxx1.png
│ │ └── xxx.png
│ ├── maps
│ │ ├── map01.png
│ │ ├── map02.png
│ │ └── map03.png
│ ├── meinvdazhan
│ │ ├── meinvdazhan0.plist
│ │ ├── meinvdazhan0.png
│ │ └── meinvdazhan.ExportJson
│ ├── menu
│ │ ├── biaoti.png
│ │ ├── guanyu.png
│ │ ├── shengyin2.png
│ │ ├── shengyin.png
│ │ ├── youxiji.png
│ │ ├── youxikaishi.png
│ │ └── zhujiemian_bj.png
│ ├── music
│ │ ├── backSound.mp3
│ │ ├── baoqi.mp3
│ │ ├── confirm.mp3
│ │ ├── dajiqie1.mp3
│ │ ├── dajiqie2.mp3
│ │ ├── dajiqing.mp3
│ │ ├── dajizhong.mp3
│ │ ├── dajiz.mp3
│ │ ├── dazhao1.mp3
│ │ ├── dazhao.mp3
│ │ ├── gameover.mp3
│ │ ├── jiemianbgmusic.mp3
│ │ ├── kof20001.mp3
│ │ ├── ko.mp3
│ │ ├── prop.mp3
│ │ ├── quan-mingzhong-qing.mp3
│ │ ├── quan-mingzhong-zhong.mp3
│ │ ├── shanbi.mp3
│ │ ├── shandian.mp3
│ │ ├── titui.mp3
│ │ ├── zadi.mp3
│ │ ├── zhugongji1.mp3
│ │ ├── zhugongji2.mp3
│ │ └── zhushouji.mp3
│ ├── NewProject_1
│ │ ├── NewProject0.plist
│ │ ├── NewProject0.png
│ │ └── NewProject_1.ExportJson
│ ├── OGLdpf.log
│ ├── pause
│ │ ├── shop2.png
│ │ ├── shop.png
│ │ ├── yxzt_dh.png
│ │ ├── yxzt_fhzcd_down.png
│ │ ├── yxzt_fhzcd.png
│ │ ├── yxzt_lb.png
│ │ ├── yxzt.png
│ │ ├── yxzt_xh.png
│ │ └── yxzt_yy.png
│ ├── play.cn.logo.png
│ ├── quanqiande
│ │ ├── quanqiande0.plist
│ │ ├── quanqiande0.png
│ │ └── quanqiande.ExportJson
│ ├── readygo
│ │ ├── a.png
│ │ ├── d.png
│ │ ├── e.png
│ │ ├── g.png
│ │ ├── o.png
│ │ ├── r.png
│ │ └── y.png
│ ├── res
│ │ ├── boss1
│ │ │ ├── boss10.plist
│ │ │ ├── boss10.png
│ │ │ └── boss1.ExportJson
│ │ ├── boss2
│ │ │ ├── boss20.plist
│ │ │ ├── boss20.png
│ │ │ └── boss2.ExportJson
│ │ ├── boss3
│ │ │ ├── boss30.plist
│ │ │ ├── boss30.png
│ │ │ ├── boss31.plist
│ │ │ ├── boss31.png
│ │ │ └── boss3.ExportJson
│ │ ├── boss4
│ │ │ ├── boss40.plist
│ │ │ ├── boss40.png
│ │ │ └── boss4.ExportJson
│ │ ├── g1
│ │ │ ├── g10.plist
│ │ │ ├── g10.png
│ │ │ └── g1.ExportJson
│ │ ├── g10
│ │ │ ├── g100.plist
│ │ │ ├── g100.png
│ │ │ └── g10.ExportJson
│ │ ├── g2
│ │ │ ├── g20.plist
│ │ │ ├── g20.png
│ │ │ └── g2.ExportJson
│ │ ├── g3
│ │ │ ├── g30.plist
│ │ │ ├── g30.png
│ │ │ └── g3.ExportJson
│ │ ├── g4
│ │ │ ├── g40.plist
│ │ │ ├── g40.png
│ │ │ └── g4.ExportJson
│ │ ├── g5
│ │ │ ├── g50.plist
│ │ │ ├── g50.png
│ │ │ └── g5.ExportJson
│ │ ├── g6
│ │ │ ├── g60.plist
│ │ │ ├── g60.png
│ │ │ └── g6.ExportJson
│ │ ├── g7
│ │ │ ├── g70.plist
│ │ │ ├── g70.png
│ │ │ └── g7.ExportJson
│ │ ├── g8
│ │ │ ├── g80.plist
│ │ │ ├── g80.png
│ │ │ └── g8.ExportJson
│ │ ├── g9
│ │ │ ├── g90.plist
│ │ │ ├── g90.png
│ │ │ └── g9.ExportJson
│ │ ├── nvzhujiao
│ │ │ ├── nvzhujiao0.plist
│ │ │ ├── nvzhujiao0.png
│ │ │ └── nvzhujiao.ExportJson
│ │ ├── role1
│ │ │ ├── role10.plist
│ │ │ ├── role10.png
│ │ │ └── role1.ExportJson
│ │ ├── select
│ │ │ ├── shangcheng1.png
│ │ │ └── shangcheng2.png
│ │ ├── wuqifeidao
│ │ │ ├── wuqifeidao0.plist
│ │ │ ├── wuqifeidao0.png
│ │ │ └── wuqifeidao.ExportJson
│ │ └── yingzi.png
│ ├── shop
│ │ ├── scnl_dk1.png
│ │ ├── scnl_dk2.png
│ │ ├── scnl_dk3.png
│ │ ├── scnl_gb_down.png
│ │ ├── scnl_gb.png
│ │ ├── scnl_hd_down.png
│ │ ├── scnl_hd.png
│ │ ├── scnl_jjdb.png
│ │ ├── scnl_nl_down.png
│ │ ├── scnl_nl.png
│ │ ├── scnl_nqb.png
│ │ ├── scnl_qb.png
│ │ ├── scnl_sc_down.png
│ │ ├── scnl_sc.png
│ │ ├── scnl_ss.png
│ │ ├── scnl_swfh.png
│ │ ├── scnl_xt_down.png
│ │ ├── scnl_xt.png
│ │ ├── scnl_xzk.png
│ │ ├── scsc_cjdlb1.png
│ │ ├── scsc_tb1.png
│ │ ├── scsc_tb2.png
│ │ ├── scsc_tb3.png
│ │ ├── scsc_tb4.png
│ │ ├── scsc_xzk.png
│ │ ├── scxt_bs1.png
│ │ ├── scxt_bs2.png
│ │ ├── scxt_bs3.png
│ │ ├── scxt_bs4.png
│ │ ├── scxt_jbk.png
│ │ ├── scxt_jh_down.png
│ │ ├── scxt_jh.png
│ │ ├── scxt_k1.png
│ │ ├── scxt_rw.png
│ │ └── yihuode.png
│ ├── shopsc
│ │ ├── 112121
│ │ │ ├── 1121210.plist
│ │ │ ├── 1121210.png
│ │ │ └── 112121.ExportJson
│ │ ├── 2313.png
│ │ ├── 4321.png
│ │ ├── 5432.png
│ │ ├── baoxiang
│ │ │ ├── baoxiang0.plist
│ │ │ ├── baoxiang0.png
│ │ │ └── baoxiang.ExportJson
│ │ ├── ditu.png
│ │ ├── nvrole.png
│ │ └── texiao1
│ │ ├── texiao10.plist
│ │ ├── texiao10.png
│ │ └── texiao1.ExportJson
│ ├── time
│ │ ├── 0.png
│ │ ├── lala.png
│ │ └── time.png
│ ├── UI
│ │ ├── qtsz_0.png
│ │ ├── qtsz_1.png
│ │ ├── qtsz_2.png
│ │ ├── qtsz_3.png
│ │ ├── qtsz_4.png
│ │ ├── qtsz_5.png
│ │ ├── qtsz_6.png
│ │ ├── qtsz_7.png
│ │ ├── qtsz_8.png
│ │ ├── qtsz_9.png
│ │ ├── qtsz_fxj.png
│ │ ├── qtsz_jb.png
│ │ ├── qtsz_lj.png
│ │ ├── qtsz_nq.png
│ │ ├── qtsz_sydr.png
│ │ ├── qtsz_x.png
│ │ └── shuzixiao.png
│ ├── util
│ │ ├── damageNum.png
│ │ ├── gangxiangjian1.png
│ │ ├── gangxiangjian2.png
│ │ ├── gongjijian1.png
│ │ ├── gongjijian2.png
│ │ ├── jianglifen1.png
│ │ ├── jl1.png
│ │ ├── nl1.png
│ │ ├── npc_xc_1.png
│ │ ├── npc_xc_2.png
│ │ ├── skill1.png
│ │ ├── skill2.png
│ │ ├── skill3.png
│ │ ├── skill4.png
│ │ ├── suzi-0.png
│ │ ├── suzi-1.png
│ │ ├── suzi-2.png
│ │ ├── suzi-3.png
│ │ ├── suzi-4.png
│ │ ├── suzi-5.png
│ │ ├── suzi-6.png
│ │ ├── suzi-7.png
│ │ ├── suzi-8.png
│ │ ├── suzi-9.png
│ │ ├── touxiang1
│ │ │ ├── touxiang10.plist
│ │ │ ├── touxiang10.png
│ │ │ └── touxiang1.ExportJson
│ │ ├── tubiaokuang1.png
│ │ ├── xintian_jsdr.png
│ │ ├── xintian_qjjl.png
│ │ ├── zhantinganniu1.png
│ │ └── zhantinganniu2.png
│ ├── wenzi
│ │ ├── chongxinkaishi1.png
│ │ ├── chongxinkaishi2.png
│ │ ├── fanhuijidi1.png
│ │ ├── fanhuijidi2.png
│ │ ├── qianghuashuxing1.png
│ │ └── qianghuashuxing2.png
│ └── xuanze
│ ├── 0.png
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 60.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ ├── benguandefen.png
│ ├── biao1.png
│ ├── biao2.png
│ ├── dawdaqq11.png
│ ├── diexuematou.png
│ ├── guanka1.png
│ ├── guankakjieshao.png
│ ├── huiqu1.png
│ ├── huiqu2.png
│ ├── jiantou.png
│ └── renwumubiaozi.png
├── README.mdown
├── samples
│ ├── Cpp
│ │ ├── AssetsManagerTest
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── hellocpp
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── AssetsManagerTest
│ │ │ │ └── AssetsManager.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── AssetsManagerTest.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon@2x.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Icon.png
│ │ │ │ ├── Icon-Small@2x.png
│ │ │ │ ├── Icon-Small-50.png
│ │ │ │ ├── Icon-Small.png
│ │ │ │ ├── Info.plist
│ │ │ │ ├── iTunesArtwork
│ │ │ │ ├── main.m
│ │ │ │ ├── Prefix.pch
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ ├── proj.win32
│ │ │ │ ├── AssetsManagerTest.vcxproj
│ │ │ │ ├── AssetsManagerTest.vcxproj.filters
│ │ │ │ ├── AssetsManagerTest.vcxproj.user
│ │ │ │ ├── Debug.win32
│ │ │ │ ├── main.cpp
│ │ │ │ ├── main.h
│ │ │ │ ├── res
│ │ │ │ │ └── res.ico
│ │ │ │ ├── resource.h
│ │ │ │ └── res.rc
│ │ │ ├── README.md
│ │ │ └── Resources
│ │ │ ├── Background.png
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ ├── main.js
│ │ │ └── myApp.js
│ │ ├── HelloCpp
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── AppMacros.h
│ │ │ │ ├── HelloWorldScene.cpp
│ │ │ │ └── HelloWorldScene.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ ├── hellocpp
│ │ │ │ │ │ └── main.cpp
│ │ │ │ │ └── list.sh
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── hellocpp
│ │ │ │ └── HelloCpp.java
│ │ │ ├── proj.blackberry
│ │ │ │ ├── bar-descriptor.xml
│ │ │ │ ├── empty
│ │ │ │ │ └── empty
│ │ │ │ ├── icon.png
│ │ │ │ └── main.cpp
│ │ │ ├── proj.emscripten
│ │ │ │ ├── index.html
│ │ │ │ ├── main.cpp
│ │ │ │ └── Makefile
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── HelloCpp-Info.plist
│ │ │ │ ├── HelloCpp_Prefix.pch
│ │ │ │ ├── HelloCpp.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── main.m
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ ├── proj.linux
│ │ │ │ ├── main.cpp
│ │ │ │ └── Makefile
│ │ │ ├── proj.mac
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── en.lproj
│ │ │ │ │ ├── InfoPlist.strings
│ │ │ │ │ └── MainMenu.xib
│ │ │ │ ├── HelloCpp_Info.plist
│ │ │ │ ├── HelloCpp_Prefix.pch
│ │ │ │ ├── HelloCpp.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Icon.icns
│ │ │ │ └── main.m
│ │ │ ├── proj.marmalade
│ │ │ │ ├── HelloCPP.mkb
│ │ │ │ └── src
│ │ │ │ ├── Main.cpp
│ │ │ │ └── Main.h
│ │ │ ├── proj.nacl
│ │ │ │ ├── index.html
│ │ │ │ ├── main.cpp
│ │ │ │ ├── main.h
│ │ │ │ └── Makefile
│ │ │ ├── proj.tizen
│ │ │ │ ├── data
│ │ │ │ ├── inc
│ │ │ │ ├── lib
│ │ │ │ ├── manifest.xml
│ │ │ │ ├── README.mdown
│ │ │ │ ├── res
│ │ │ │ ├── shared
│ │ │ │ │ ├── data
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── screen-density-xhigh
│ │ │ │ │ │ └── mainmenu.png
│ │ │ │ │ └── trusted
│ │ │ │ └── src
│ │ │ │ └── HelloCppEntry.cpp
│ │ │ ├── proj.win32
│ │ │ │ ├── Debug.win32
│ │ │ │ ├── HelloCpp.vcxproj
│ │ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ │ ├── HelloCpp.vcxproj.user
│ │ │ │ ├── main.cpp
│ │ │ │ └── main.h
│ │ │ ├── proj.winrt
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cpp
│ │ │ │ ├── App.xaml.h
│ │ │ │ ├── Assets
│ │ │ │ │ ├── Logo.png
│ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ ├── StoreLogo.png
│ │ │ │ │ └── WideLogo.png
│ │ │ │ ├── Common
│ │ │ │ │ └── StandardStyles.xaml
│ │ │ │ ├── Generated Files
│ │ │ │ ├── HelloCpp_2013.sln
│ │ │ │ ├── HelloCpp_2013.vcxproj
│ │ │ │ ├── HelloCpp_2013.vcxproj.filters
│ │ │ │ ├── HelloCpp.sln
│ │ │ │ ├── HelloCpp_TemporaryKey.pfx
│ │ │ │ ├── HelloCpp.vcxproj
│ │ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ │ ├── MainPage.xaml
│ │ │ │ ├── MainPage.xaml.cpp
│ │ │ │ ├── MainPage.xaml.h
│ │ │ │ ├── Package_2013.appxmanifest
│ │ │ │ ├── Package.appxmanifest
│ │ │ │ ├── pch.cpp
│ │ │ │ ├── pch.h
│ │ │ │ └── Win32
│ │ │ │ └── Debug
│ │ │ │ └── HelloCpp_2013.tlog
│ │ │ ├── proj.wp8
│ │ │ │ ├── Assets
│ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ └── Tiles
│ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ ├── HelloCpp.cpp
│ │ │ │ ├── HelloCpp.h
│ │ │ │ ├── HelloCpp.sln
│ │ │ │ ├── HelloCpp.vcxproj
│ │ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ │ └── WMAppManifest.xml
│ │ │ ├── proj.wp8-xaml
│ │ │ │ ├── HelloCpp
│ │ │ │ │ ├── HelloCpp
│ │ │ │ │ │ ├── App.xaml
│ │ │ │ │ │ ├── App.xaml.cs
│ │ │ │ │ │ ├── Assets
│ │ │ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ │ │ └── Tiles
│ │ │ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ │ │ ├── HelloCpp.csproj
│ │ │ │ │ │ ├── LocalizedStrings.cs
│ │ │ │ │ │ ├── MainPage.xaml
│ │ │ │ │ │ ├── MainPage.xaml.cs
│ │ │ │ │ │ ├── Properties
│ │ │ │ │ │ │ ├── AppManifest.xml
│ │ │ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ │ │ └── WMAppManifest.xml
│ │ │ │ │ │ ├── Resources
│ │ │ │ │ │ │ ├── AppResources.Designer.cs
│ │ │ │ │ │ │ └── AppResources.resx
│ │ │ │ │ │ └── SplashScreenImage.jpg
│ │ │ │ │ └── HelloCppComponent
│ │ │ │ │ ├── HelloCppComponent.vcxproj
│ │ │ │ │ └── HelloCppComponent.vcxproj.filters
│ │ │ │ └── HelloCpp.sln
│ │ │ └── Resources
│ │ │ ├── app.icf
│ │ │ ├── development.icf
│ │ │ ├── fonts
│ │ │ │ ├── arial.ttf
│ │ │ │ └── Marker Felt.ttf
│ │ │ ├── ipad
│ │ │ │ ├── CloseNormal.png
│ │ │ │ ├── CloseSelected.png
│ │ │ │ └── HelloWorld.png
│ │ │ ├── ipadhd
│ │ │ │ ├── CloseNormal.png
│ │ │ │ ├── CloseSelected.png
│ │ │ │ └── HelloWorld.png
│ │ │ └── iphone
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ └── HelloWorld.png
│ │ ├── SimpleGame
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ ├── AppDelegate.h
│ │ │ │ ├── GameOverScene.cpp
│ │ │ │ ├── GameOverScene.h
│ │ │ │ ├── HelloWorldScene.cpp
│ │ │ │ └── HelloWorldScene.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ ├── hellocpp
│ │ │ │ │ │ └── main.cpp
│ │ │ │ │ └── list.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── simplegame
│ │ │ │ └── SimpleGame.java
│ │ │ ├── proj.blackberry
│ │ │ │ ├── bar-descriptor.xml
│ │ │ │ ├── empty
│ │ │ │ │ └── empty
│ │ │ │ ├── icon.png
│ │ │ │ └── main.cpp
│ │ │ ├── proj.emscripten
│ │ │ │ ├── index.html
│ │ │ │ ├── main.cpp
│ │ │ │ └── Makefile
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── main.m
│ │ │ │ ├── RootViewController.h
│ │ │ │ ├── RootViewController.mm
│ │ │ │ ├── SimpleGame-Info.plist
│ │ │ │ ├── SimpleGame_Prefix.pch
│ │ │ │ └── SimpleGame.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── proj.linux
│ │ │ │ ├── main.cpp
│ │ │ │ └── Makefile
│ │ │ ├── proj.mac
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── en.lproj
│ │ │ │ │ ├── InfoPlist.strings
│ │ │ │ │ └── MainMenu.xib
│ │ │ │ ├── Icon.icns
│ │ │ │ ├── main.m
│ │ │ │ ├── SampleGame_Info.plist
│ │ │ │ ├── SampleGame_Prefix.pch
│ │ │ │ └── SampleGame.xcodeproj
│ │ │ │ ├── project.pbxproj
│ │ │ │ └── project.xcworkspace
│ │ │ │ └── xcshareddata
│ │ │ │ └── WorkspaceSettings.xcsettings
│ │ │ ├── proj.marmalade
│ │ │ │ ├── SimpleGame.mkb
│ │ │ │ └── src
│ │ │ │ ├── Main.cpp
│ │ │ │ └── Main.h
│ │ │ ├── proj.nacl
│ │ │ │ ├── index.html
│ │ │ │ ├── main.cpp
│ │ │ │ ├── main.h
│ │ │ │ └── Makefile
│ │ │ ├── proj.tizen
│ │ │ │ ├── data
│ │ │ │ ├── lib
│ │ │ │ ├── manifest.xml
│ │ │ │ ├── README.mdown
│ │ │ │ ├── res
│ │ │ │ ├── shared
│ │ │ │ │ ├── data
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── screen-density-xhigh
│ │ │ │ │ │ └── mainmenu.png
│ │ │ │ │ └── trusted
│ │ │ │ └── src
│ │ │ │ └── SimpleGameEntry.cpp
│ │ │ ├── proj.winrt
│ │ │ │ ├── App.xaml
│ │ │ │ ├── App.xaml.cpp
│ │ │ │ ├── App.xaml.h
│ │ │ │ ├── Assets
│ │ │ │ │ ├── Logo.png
│ │ │ │ │ ├── SmallLogo.png
│ │ │ │ │ ├── SplashScreen.png
│ │ │ │ │ ├── StoreLogo.png
│ │ │ │ │ └── WideLogo.png
│ │ │ │ ├── Common
│ │ │ │ │ └── StandardStyles.xaml
│ │ │ │ ├── Generated Files
│ │ │ │ ├── MainPage.xaml
│ │ │ │ ├── MainPage.xaml.cpp
│ │ │ │ ├── MainPage.xaml.h
│ │ │ │ ├── Package_2013.appxmanifest
│ │ │ │ ├── Package.appxmanifest
│ │ │ │ ├── pch.h
│ │ │ │ ├── SimpleGame_2013.sln
│ │ │ │ ├── SimpleGame_2013.vcxproj
│ │ │ │ ├── SimpleGame_2013.vcxproj.filters
│ │ │ │ ├── SimpleGame.sln
│ │ │ │ ├── SimpleGame_TemporaryKey.pfx
│ │ │ │ ├── SimpleGame.vcxproj
│ │ │ │ ├── SimpleGame.vcxproj.filters
│ │ │ │ └── Win32
│ │ │ │ └── Debug
│ │ │ │ ├── SimpleGame_2013.tlog
│ │ │ │ └── SimpleGame_2013.vcxprojResolveAssemblyReference.cache
│ │ │ ├── proj.wp8
│ │ │ │ ├── Assets
│ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ └── Tiles
│ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ ├── SimpleGame.cpp
│ │ │ │ ├── SimpleGame.h
│ │ │ │ ├── SimpleGame.sln
│ │ │ │ ├── SimpleGame.vcxproj
│ │ │ │ ├── SimpleGame.vcxproj.filters
│ │ │ │ └── WMAppManifest.xml
│ │ │ └── Resources
│ │ │ ├── app.config.txt
│ │ │ ├── app.icf
│ │ │ ├── background-music-aac.wav
│ │ │ ├── development.icf
│ │ │ ├── fonts
│ │ │ │ ├── arial.ttf
│ │ │ │ └── Marker Felt.ttf
│ │ │ ├── hd
│ │ │ │ ├── CloseNormal.png
│ │ │ │ ├── CloseSelected.png
│ │ │ │ ├── Player.png
│ │ │ │ ├── Projectile.png
│ │ │ │ └── Target.png
│ │ │ ├── pew-pew-lei.wav
│ │ │ └── sd
│ │ │ ├── app.icf
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ ├── Player.png
│ │ │ ├── Projectile.png
│ │ │ └── Target.png
│ │ └── TestCpp
│ │ ├── Android.mk
│ │ ├── Classes
│ │ │ ├── AccelerometerTest
│ │ │ │ ├── AccelerometerTest.cpp
│ │ │ │ └── AccelerometerTest.h
│ │ │ ├── ActionManagerTest
│ │ │ │ ├── ActionManagerTest.cpp
│ │ │ │ └── ActionManagerTest.h
│ │ │ ├── ActionsEaseTest
│ │ │ │ ├── ActionsEaseTest.cpp
│ │ │ │ └── ActionsEaseTest.h
│ │ │ ├── ActionsProgressTest
│ │ │ │ ├── ActionsProgressTest.cpp
│ │ │ │ └── ActionsProgressTest.h
│ │ │ ├── ActionsTest
│ │ │ │ ├── ActionsTest.cpp
│ │ │ │ └── ActionsTest.h
│ │ │ ├── AppDelegate.cpp
│ │ │ ├── AppDelegate.h
│ │ │ ├── Box2DTest
│ │ │ │ ├── Box2dTest.cpp
│ │ │ │ └── Box2dTest.h
│ │ │ ├── Box2DTestBed
│ │ │ │ ├── Box2dView.cpp
│ │ │ │ ├── Box2dView.h
│ │ │ │ ├── GLES-Render.cpp
│ │ │ │ ├── GLES-Render.h
│ │ │ │ ├── Test.cpp
│ │ │ │ ├── TestEntries.cpp
│ │ │ │ ├── Test.h
│ │ │ │ └── Tests
│ │ │ │ ├── AddPair.h
│ │ │ │ ├── ApplyForce.h
│ │ │ │ ├── BodyTypes.h
│ │ │ │ ├── Breakable.h
│ │ │ │ ├── Bridge.h
│ │ │ │ ├── BulletTest.h
│ │ │ │ ├── Cantilever.h
│ │ │ │ ├── Car.h
│ │ │ │ ├── Chain.h
│ │ │ │ ├── CharacterCollision.h
│ │ │ │ ├── CollisionFiltering.h
│ │ │ │ ├── CollisionProcessing.h
│ │ │ │ ├── CompoundShapes.h
│ │ │ │ ├── Confined.h
│ │ │ │ ├── ContinuousTest.h
│ │ │ │ ├── DistanceTest.h
│ │ │ │ ├── Dominos.h
│ │ │ │ ├── DumpShell.h
│ │ │ │ ├── DynamicTreeTest.h
│ │ │ │ ├── EdgeShapes.h
│ │ │ │ ├── EdgeTest.h
│ │ │ │ ├── Gears.h
│ │ │ │ ├── OneSidedPlatform.h
│ │ │ │ ├── Pinball.h
│ │ │ │ ├── PolyCollision.h
│ │ │ │ ├── PolyShapes.h
│ │ │ │ ├── Prismatic.h
│ │ │ │ ├── Pulleys.h
│ │ │ │ ├── Pyramid.h
│ │ │ │ ├── RayCast.h
│ │ │ │ ├── Revolute.h
│ │ │ │ ├── Rope.h
│ │ │ │ ├── RopeJoint.h
│ │ │ │ ├── SensorTest.h
│ │ │ │ ├── ShapeEditing.h
│ │ │ │ ├── SliderCrank.h
│ │ │ │ ├── SphereStack.h
│ │ │ │ ├── TheoJansen.h
│ │ │ │ ├── Tiles.h
│ │ │ │ ├── TimeOfImpact.h
│ │ │ │ ├── Tumbler.h
│ │ │ │ ├── VaryingFriction.h
│ │ │ │ ├── VaryingRestitution.h
│ │ │ │ ├── VerticalStack.h
│ │ │ │ └── Web.h
│ │ │ ├── BugsTest
│ │ │ │ ├── Bug-1159.cpp
│ │ │ │ ├── Bug-1159.h
│ │ │ │ ├── Bug-1174.cpp
│ │ │ │ ├── Bug-1174.h
│ │ │ │ ├── Bug-350.cpp
│ │ │ │ ├── Bug-350.h
│ │ │ │ ├── Bug-422.cpp
│ │ │ │ ├── Bug-422.h
│ │ │ │ ├── Bug-458
│ │ │ │ │ ├── Bug-458.cpp
│ │ │ │ │ ├── Bug-458.h
│ │ │ │ │ ├── QuestionContainerSprite.cpp
│ │ │ │ │ └── QuestionContainerSprite.h
│ │ │ │ ├── Bug-624.cpp
│ │ │ │ ├── Bug-624.h
│ │ │ │ ├── Bug-886.cpp
│ │ │ │ ├── Bug-886.h
│ │ │ │ ├── Bug-899.cpp
│ │ │ │ ├── Bug-899.h
│ │ │ │ ├── Bug-914.cpp
│ │ │ │ ├── Bug-914.h
│ │ │ │ ├── BugsTest.cpp
│ │ │ │ └── BugsTest.h
│ │ │ ├── ChipmunkTest
│ │ │ │ ├── ChipmunkTest.cpp
│ │ │ │ └── ChipmunkTest.h
│ │ │ ├── ClickAndMoveTest
│ │ │ │ ├── ClickAndMoveTest.cpp
│ │ │ │ └── ClickAndMoveTest.h
│ │ │ ├── ClippingNodeTest
│ │ │ │ ├── ClippingNodeTest.cpp
│ │ │ │ └── ClippingNodeTest.h
│ │ │ ├── CocosDenshionTest
│ │ │ │ ├── CocosDenshionTest.cpp
│ │ │ │ └── CocosDenshionTest.h
│ │ │ ├── ConfigurationTest
│ │ │ │ ├── ConfigurationTest.cpp
│ │ │ │ └── ConfigurationTest.h
│ │ │ ├── controller.cpp
│ │ │ ├── controller.h
│ │ │ ├── CurlTest
│ │ │ │ ├── CurlTest.cpp
│ │ │ │ └── CurlTest.h
│ │ │ ├── CurrentLanguageTest
│ │ │ │ ├── CurrentLanguageTest.cpp
│ │ │ │ └── CurrentLanguageTest.h
│ │ │ ├── DataVisitorTest
│ │ │ │ ├── DataVisitorTest.cpp
│ │ │ │ └── DataVisitorTest.h
│ │ │ ├── DrawPrimitivesTest
│ │ │ │ ├── DrawPrimitivesTest.cpp
│ │ │ │ └── DrawPrimitivesTest.h
│ │ │ ├── EffectsAdvancedTest
│ │ │ │ ├── EffectsAdvancedTest.cpp
│ │ │ │ └── EffectsAdvancedTest.h
│ │ │ ├── EffectsTest
│ │ │ │ ├── EffectsTest.cpp
│ │ │ │ └── EffectsTest.h
│ │ │ ├── ExtensionsTest
│ │ │ │ ├── CocosBuilderTest
│ │ │ │ │ ├── AnimationsTest
│ │ │ │ │ │ ├── AnimationsLayerLoader.h
│ │ │ │ │ │ ├── AnimationsTestLayer.cpp
│ │ │ │ │ │ └── AnimationsTestLayer.h
│ │ │ │ │ ├── ButtonTest
│ │ │ │ │ │ ├── ButtonTestLayer.cpp
│ │ │ │ │ │ ├── ButtonTestLayer.h
│ │ │ │ │ │ └── ButtonTestLayerLoader.h
│ │ │ │ │ ├── CocosBuilderTest.cpp
│ │ │ │ │ ├── CocosBuilderTest.h
│ │ │ │ │ ├── HelloCocosBuilder
│ │ │ │ │ │ ├── HelloCocosBuilderLayer.cpp
│ │ │ │ │ │ ├── HelloCocosBuilderLayer.h
│ │ │ │ │ │ └── HelloCocosBuilderLayerLoader.h
│ │ │ │ │ ├── LabelTest
│ │ │ │ │ │ ├── LabelTestLayer.h
│ │ │ │ │ │ └── LabelTestLayerLoader.h
│ │ │ │ │ ├── MenuTest
│ │ │ │ │ │ ├── MenuTestLayer.cpp
│ │ │ │ │ │ ├── MenuTestLayer.h
│ │ │ │ │ │ └── MenuTestLayerLoader.h
│ │ │ │ │ ├── ParticleSystemTest
│ │ │ │ │ │ ├── ParticleSystemTestLayer.h
│ │ │ │ │ │ └── ParticleSystemTestLayerLoader.h
│ │ │ │ │ ├── ScrollViewTest
│ │ │ │ │ │ ├── ScrollViewTestLayer.h
│ │ │ │ │ │ └── ScrollViewTestLayerLoader.h
│ │ │ │ │ ├── SpriteTest
│ │ │ │ │ │ ├── SpriteTestLayer.h
│ │ │ │ │ │ └── SpriteTestLayerLoader.h
│ │ │ │ │ ├── TestHeader
│ │ │ │ │ │ ├── TestHeaderLayer.cpp
│ │ │ │ │ │ ├── TestHeaderLayer.h
│ │ │ │ │ │ └── TestHeaderLayerLoader.h
│ │ │ │ │ └── TimelineCallbackTest
│ │ │ │ │ ├── TimelineCallbackLayerLoader.h
│ │ │ │ │ ├── TimelineCallbackTestLayer.cpp
│ │ │ │ │ └── TimelineCallbackTestLayer.h
│ │ │ │ ├── CocoStudioArmatureTest
│ │ │ │ │ ├── ArmatureScene.cpp
│ │ │ │ │ └── ArmatureScene.h
│ │ │ │ ├── CocoStudioComponentsTest
│ │ │ │ │ ├── ComponentsTestScene.cpp
│ │ │ │ │ ├── ComponentsTestScene.h
│ │ │ │ │ ├── EnemyController.cpp
│ │ │ │ │ ├── EnemyController.h
│ │ │ │ │ ├── GameOverScene.cpp
│ │ │ │ │ ├── GameOverScene.h
│ │ │ │ │ ├── PlayerController.cpp
│ │ │ │ │ ├── PlayerController.h
│ │ │ │ │ ├── ProjectileController.cpp
│ │ │ │ │ ├── ProjectileController.h
│ │ │ │ │ ├── SceneController.cpp
│ │ │ │ │ └── SceneController.h
│ │ │ │ ├── CocoStudioGUITest
│ │ │ │ │ ├── CocosGUIScene.cpp
│ │ │ │ │ ├── CocosGUIScene.h
│ │ │ │ │ ├── UIButtonTest
│ │ │ │ │ │ ├── UIButtonTest.cpp
│ │ │ │ │ │ └── UIButtonTest.h
│ │ │ │ │ ├── UICheckBoxTest
│ │ │ │ │ │ ├── UICheckBoxTest.cpp
│ │ │ │ │ │ └── UICheckBoxTest.h
│ │ │ │ │ ├── UIImageViewTest
│ │ │ │ │ │ ├── UIImageViewTest.cpp
│ │ │ │ │ │ └── UIImageViewTest.h
│ │ │ │ │ ├── UILabelAtlasTest
│ │ │ │ │ │ ├── UILabelAtlasTest.cpp
│ │ │ │ │ │ └── UILabelAtlasTest.h
│ │ │ │ │ ├── UILabelBMFontTest
│ │ │ │ │ │ ├── UILabelBMFontTest.cpp
│ │ │ │ │ │ └── UILabelBMFontTest.h
│ │ │ │ │ ├── UILabelTest
│ │ │ │ │ │ ├── UILabelTest.cpp
│ │ │ │ │ │ └── UILabelTest.h
│ │ │ │ │ ├── UILayoutTest
│ │ │ │ │ │ ├── UILayoutTest.cpp
│ │ │ │ │ │ └── UILayoutTest.h
│ │ │ │ │ ├── UIListViewTest
│ │ │ │ │ │ ├── UIListViewTest.cpp
│ │ │ │ │ │ └── UIListViewTest.h
│ │ │ │ │ ├── UILoadingBarTest
│ │ │ │ │ │ ├── UILoadingBarTest.cpp
│ │ │ │ │ │ └── UILoadingBarTest.h
│ │ │ │ │ ├── UIPageViewTest
│ │ │ │ │ │ ├── UIPageViewTest.cpp
│ │ │ │ │ │ └── UIPageViewTest.h
│ │ │ │ │ ├── UIScene.cpp
│ │ │ │ │ ├── UIScene.h
│ │ │ │ │ ├── UISceneManager.cpp
│ │ │ │ │ ├── UISceneManager.h
│ │ │ │ │ ├── UIScrollViewTest
│ │ │ │ │ │ ├── UIScrollViewTest.cpp
│ │ │ │ │ │ └── UIScrollViewTest.h
│ │ │ │ │ ├── UISliderTest
│ │ │ │ │ │ ├── UISliderTest.cpp
│ │ │ │ │ │ └── UISliderTest.h
│ │ │ │ │ ├── UITextFieldTest
│ │ │ │ │ │ ├── UITextFieldTest.cpp
│ │ │ │ │ │ └── UITextFieldTest.h
│ │ │ │ │ └── UIWidgetAddNodeTest
│ │ │ │ │ ├── UIWidgetAddNodeTest.cpp
│ │ │ │ │ └── UIWidgetAddNodeTest.h
│ │ │ │ ├── CocoStudioSceneTest
│ │ │ │ │ ├── SceneEditorTest.cpp
│ │ │ │ │ ├── SceneEditorTest.h
│ │ │ │ │ └── TriggerCode
│ │ │ │ │ ├── acts.cpp
│ │ │ │ │ ├── acts.h
│ │ │ │ │ ├── cons.cpp
│ │ │ │ │ ├── cons.h
│ │ │ │ │ └── EventDef.h
│ │ │ │ ├── ControlExtensionTest
│ │ │ │ │ ├── CCControlButtonTest
│ │ │ │ │ │ ├── CCControlButtonTest.cpp
│ │ │ │ │ │ └── CCControlButtonTest.h
│ │ │ │ │ ├── CCControlColourPicker
│ │ │ │ │ │ ├── CCControlColourPickerTest.cpp
│ │ │ │ │ │ └── CCControlColourPickerTest.h
│ │ │ │ │ ├── CCControlPotentiometerTest
│ │ │ │ │ │ ├── CCControlPotentiometerTest.cpp
│ │ │ │ │ │ └── CCControlPotentiometerTest.h
│ │ │ │ │ ├── CCControlScene.cpp
│ │ │ │ │ ├── CCControlScene.h
│ │ │ │ │ ├── CCControlSceneManager.cpp
│ │ │ │ │ ├── CCControlSceneManager.h
│ │ │ │ │ ├── CCControlSliderTest
│ │ │ │ │ │ ├── CCControlSliderTest.cpp
│ │ │ │ │ │ └── CCControlSliderTest.h
│ │ │ │ │ ├── CCControlStepperTest
│ │ │ │ │ │ ├── CCControlStepperTest.cpp
│ │ │ │ │ │ └── CCControlStepperTest.h
│ │ │ │ │ └── CCControlSwitchTest
│ │ │ │ │ ├── CCControlSwitchTest.cpp
│ │ │ │ │ └── CCControlSwitchTest.h
│ │ │ │ ├── EditBoxTest
│ │ │ │ │ ├── EditBoxTest.cpp
│ │ │ │ │ └── EditBoxTest.h
│ │ │ │ ├── ExtensionsTest.cpp
│ │ │ │ ├── ExtensionsTest.h
│ │ │ │ ├── NetworkTest
│ │ │ │ │ ├── HttpClientTest.cpp
│ │ │ │ │ ├── HttpClientTest.h
│ │ │ │ │ ├── WebSocketTest.cpp
│ │ │ │ │ └── WebSocketTest.h
│ │ │ │ ├── NotificationCenterTest
│ │ │ │ │ ├── NotificationCenterTest.cpp
│ │ │ │ │ └── NotificationCenterTest.h
│ │ │ │ └── TableViewTest
│ │ │ │ ├── CustomTableViewCell.cpp
│ │ │ │ ├── CustomTableViewCell.h
│ │ │ │ ├── TableViewTestScene.cpp
│ │ │ │ └── TableViewTestScene.h
│ │ │ ├── FileUtilsTest
│ │ │ │ ├── FileUtilsTest.cpp
│ │ │ │ └── FileUtilsTest.h
│ │ │ ├── FontTest
│ │ │ │ ├── FontTest.cpp
│ │ │ │ └── FontTest.h
│ │ │ ├── IntervalTest
│ │ │ │ ├── IntervalTest.cpp
│ │ │ │ └── IntervalTest.h
│ │ │ ├── KeypadTest
│ │ │ │ ├── KeypadTest.cpp
│ │ │ │ └── KeypadTest.h
│ │ │ ├── LabelTest
│ │ │ │ ├── LabelTest.cpp
│ │ │ │ └── LabelTest.h
│ │ │ ├── LayerTest
│ │ │ │ ├── LayerTest.cpp
│ │ │ │ └── LayerTest.h
│ │ │ ├── MenuTest
│ │ │ │ ├── MenuTest.cpp
│ │ │ │ └── MenuTest.h
│ │ │ ├── MotionStreakTest
│ │ │ │ ├── MotionStreakTest.cpp
│ │ │ │ └── MotionStreakTest.h
│ │ │ ├── MutiTouchTest
│ │ │ │ ├── MutiTouchTest.cpp
│ │ │ │ └── MutiTouchTest.h
│ │ │ ├── NodeTest
│ │ │ │ ├── NodeTest.cpp
│ │ │ │ └── NodeTest.h
│ │ │ ├── ParallaxTest
│ │ │ │ ├── ParallaxTest.cpp
│ │ │ │ └── ParallaxTest.h
│ │ │ ├── ParticleTest
│ │ │ │ ├── ParticleTest.cpp
│ │ │ │ └── ParticleTest.h
│ │ │ ├── PerformanceTest
│ │ │ │ ├── PerformanceAllocTest.cpp
│ │ │ │ ├── PerformanceAllocTest.h
│ │ │ │ ├── PerformanceNodeChildrenTest.cpp
│ │ │ │ ├── PerformanceNodeChildrenTest.h
│ │ │ │ ├── PerformanceParticleTest.cpp
│ │ │ │ ├── PerformanceParticleTest.h
│ │ │ │ ├── PerformanceSpriteTest.cpp
│ │ │ │ ├── PerformanceSpriteTest.h
│ │ │ │ ├── PerformanceTest.cpp
│ │ │ │ ├── PerformanceTest.h
│ │ │ │ ├── PerformanceTextureTest.cpp
│ │ │ │ ├── PerformanceTextureTest.h
│ │ │ │ ├── PerformanceTouchesTest.cpp
│ │ │ │ └── PerformanceTouchesTest.h
│ │ │ ├── RenderTextureTest
│ │ │ │ ├── RenderTextureTest.cpp
│ │ │ │ └── RenderTextureTest.h
│ │ │ ├── RotateWorldTest
│ │ │ │ ├── RotateWorldTest.cpp
│ │ │ │ └── RotateWorldTest.h
│ │ │ ├── SceneTest
│ │ │ │ ├── SceneTest.cpp
│ │ │ │ └── SceneTest.h
│ │ │ ├── SchedulerTest
│ │ │ │ ├── SchedulerTest.cpp
│ │ │ │ └── SchedulerTest.h
│ │ │ ├── ShaderTest
│ │ │ │ ├── ShaderTest.cpp
│ │ │ │ └── ShaderTest.h
│ │ │ ├── SpineTest
│ │ │ │ ├── SpineTest.cpp
│ │ │ │ └── SpineTest.h
│ │ │ ├── SpriteTest
│ │ │ │ ├── SpriteTest.cpp
│ │ │ │ └── SpriteTest.h
│ │ │ ├── testBasic.cpp
│ │ │ ├── testBasic.h
│ │ │ ├── testResource.h
│ │ │ ├── tests.h
│ │ │ ├── TextInputTest
│ │ │ │ ├── TextInputTest.cpp
│ │ │ │ └── TextInputTest.h
│ │ │ ├── Texture2dTest
│ │ │ │ ├── Texture2dTest.cpp
│ │ │ │ └── Texture2dTest.h
│ │ │ ├── TextureCacheTest
│ │ │ │ ├── TextureCacheTest.cpp
│ │ │ │ └── TextureCacheTest.h
│ │ │ ├── TexturePackerEncryptionTest
│ │ │ │ ├── TextureAtlasEncryptionTest.cpp
│ │ │ │ └── TextureAtlasEncryptionTest.h
│ │ │ ├── TileMapTest
│ │ │ │ ├── TileMapTest.cpp
│ │ │ │ └── TileMapTest.h
│ │ │ ├── TouchesTest
│ │ │ │ ├── Ball.cpp
│ │ │ │ ├── Ball.h
│ │ │ │ ├── Paddle.cpp
│ │ │ │ ├── Paddle.h
│ │ │ │ ├── TouchesTest.cpp
│ │ │ │ └── TouchesTest.h
│ │ │ ├── TransitionsTest
│ │ │ │ ├── TransitionsTest.cpp
│ │ │ │ └── TransitionsTest.h
│ │ │ ├── UserDefaultTest
│ │ │ │ ├── UserDefaultTest.cpp
│ │ │ │ └── UserDefaultTest.h
│ │ │ ├── VisibleRect.cpp
│ │ │ ├── VisibleRect.h
│ │ │ └── ZwoptexTest
│ │ │ ├── ZwoptexTest.cpp
│ │ │ └── ZwoptexTest.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── testcpp
│ │ │ │ └── main.cpp
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── README.md
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── testcpp
│ │ │ └── TestCpp.java
│ │ ├── proj.blackberry
│ │ │ ├── bar-descriptor.xml
│ │ │ ├── empty
│ │ │ │ └── empty
│ │ │ ├── icon.png
│ │ │ └── main.cpp
│ │ ├── proj.emscripten
│ │ │ ├── index.html
│ │ │ ├── main.cpp
│ │ │ └── Makefile
│ │ ├── proj.ios
│ │ │ ├── Classes
│ │ │ │ ├── RootViewController.h
│ │ │ │ ├── RootViewController.mm
│ │ │ │ ├── testsAppDelegate.h
│ │ │ │ └── testsAppDelegate.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-152.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── iphone_Prefix.pch
│ │ │ ├── main.m
│ │ │ ├── TestCpp.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ └── Test-Info.plist
│ │ ├── proj.linux
│ │ │ ├── main.cpp
│ │ │ └── Makefile
│ │ ├── proj.mac
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── en.lproj
│ │ │ │ ├── InfoPlist.strings
│ │ │ │ └── MainMenu.xib
│ │ │ ├── Icon.icns
│ │ │ ├── main.m
│ │ │ ├── TestCpp.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Test_Info.plist
│ │ │ └── Test_Prefix.pch
│ │ ├── proj.marmalade
│ │ │ ├── src
│ │ │ │ ├── Main.cpp
│ │ │ │ └── Main.h
│ │ │ └── TestCPP.mkb
│ │ ├── proj.nacl
│ │ │ ├── index.html
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── Makefile
│ │ │ └── res
│ │ │ ├── icon_128.png
│ │ │ ├── icon_16.png
│ │ │ ├── listener.js
│ │ │ ├── main.js
│ │ │ ├── manifest.json
│ │ │ └── package_index.html
│ │ ├── proj.tizen
│ │ │ ├── data
│ │ │ ├── inc
│ │ │ ├── lib
│ │ │ ├── manifest.xml
│ │ │ ├── README.mdown
│ │ │ ├── res
│ │ │ ├── shared
│ │ │ │ ├── data
│ │ │ │ ├── res
│ │ │ │ │ └── screen-density-xhigh
│ │ │ │ │ └── mainmenu.png
│ │ │ │ └── trusted
│ │ │ └── src
│ │ │ └── TestCppEntry.cpp
│ │ ├── proj.win32
│ │ │ ├── Debug.win32
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── TestCpp.vcxproj
│ │ │ ├── TestCpp.vcxproj.filters
│ │ │ └── TestCpp.vcxproj.user
│ │ ├── proj.winrt
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cpp
│ │ │ ├── App.xaml.h
│ │ │ ├── Assets
│ │ │ │ ├── Logo.png
│ │ │ │ ├── SmallLogo.png
│ │ │ │ ├── SplashScreen.png
│ │ │ │ ├── StoreLogo.png
│ │ │ │ └── WideLogo.png
│ │ │ ├── Common
│ │ │ │ └── StandardStyles.xaml
│ │ │ ├── Generated Files
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cpp
│ │ │ ├── MainPage.xaml.h
│ │ │ ├── Package_2013.appxmanifest
│ │ │ ├── Package.appxmanifest
│ │ │ ├── pch.h
│ │ │ ├── TestCpp_2013.sln
│ │ │ ├── TestCpp_2013.vcxproj
│ │ │ ├── TestCpp_2013.vcxproj.filters
│ │ │ ├── TestCpp.sln
│ │ │ ├── TestCpp_TemporaryKey.pfx
│ │ │ ├── TestCpp.vcxproj
│ │ │ ├── TestCpp.vcxproj.filters
│ │ │ └── Win32
│ │ │ └── Debug
│ │ │ └── TestCpp_2013.tlog
│ │ ├── proj.wp8
│ │ │ ├── Assets
│ │ │ │ ├── AlignmentGrid.png
│ │ │ │ ├── ApplicationIcon.png
│ │ │ │ └── Tiles
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ └── IconicTileSmall.png
│ │ │ ├── TestCpp.cpp
│ │ │ ├── TestCpp.h
│ │ │ ├── TestCpp.sln
│ │ │ ├── TestCpp.vcxproj
│ │ │ ├── TestCpp.vcxproj.filters
│ │ │ └── WMAppManifest.xml
│ │ ├── proj.wp8-xaml
│ │ │ ├── TestCpp
│ │ │ │ ├── TestCpp
│ │ │ │ │ ├── App.xaml
│ │ │ │ │ ├── App.xaml.cs
│ │ │ │ │ ├── Assets
│ │ │ │ │ │ ├── AlignmentGrid.png
│ │ │ │ │ │ ├── ApplicationIcon.png
│ │ │ │ │ │ └── Tiles
│ │ │ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ │ │ └── IconicTileSmall.png
│ │ │ │ │ ├── LocalizedStrings.cs
│ │ │ │ │ ├── MainPage.xaml
│ │ │ │ │ ├── MainPage.xaml.cs
│ │ │ │ │ ├── Properties
│ │ │ │ │ │ ├── AppManifest.xml
│ │ │ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ │ │ └── WMAppManifest.xml
│ │ │ │ │ ├── Resources
│ │ │ │ │ │ ├── AppResources.Designer.cs
│ │ │ │ │ │ └── AppResources.resx
│ │ │ │ │ ├── SplashScreenImage.jpg
│ │ │ │ │ └── TestCpp.csproj
│ │ │ │ └── TestCppComponent
│ │ │ │ ├── TestCppComponent.vcxproj
│ │ │ │ └── TestCppComponent.vcxproj.filters
│ │ │ └── TestCpp.sln
│ │ └── Resources
│ │ ├── animations
│ │ │ ├── animations-2.plist
│ │ │ ├── animations.plist
│ │ │ ├── dragon_animation.png
│ │ │ ├── ghosts.plist
│ │ │ ├── ghosts.png
│ │ │ ├── grossini-aliases.plist
│ │ │ ├── grossini-aliases.png
│ │ │ ├── grossini_blue.plist
│ │ │ ├── grossini_blue.png
│ │ │ ├── grossini_family.plist
│ │ │ ├── grossini_family.png
│ │ │ ├── grossini_gray.plist
│ │ │ ├── grossini_gray.png
│ │ │ ├── grossini.plist
│ │ │ ├── grossini.plist.xml
│ │ │ ├── grossini.png
│ │ │ ├── grossini.pvr.gz
│ │ │ ├── grossini.zss
│ │ │ └── grossini.ztp
│ │ ├── app.icf
│ │ ├── armature
│ │ │ ├── bear0.plist
│ │ │ ├── bear0.png
│ │ │ ├── bear.ExportJson
│ │ │ ├── bg.jpg
│ │ │ ├── blood.plist
│ │ │ ├── Cowboy0.plist
│ │ │ ├── Cowboy0.png
│ │ │ ├── Cowboy.ExportJson
│ │ │ ├── cyborg.plist
│ │ │ ├── cyborg.png
│ │ │ ├── cyborg.xml
│ │ │ ├── Dragon.plist
│ │ │ ├── Dragon.png
│ │ │ ├── Dragon.xml
│ │ │ ├── hero0.plist
│ │ │ ├── hero0.png
│ │ │ ├── HeroAnimation0.plist
│ │ │ ├── HeroAnimation0.png
│ │ │ ├── HeroAnimation.ExportJson
│ │ │ ├── hero.ExportJson
│ │ │ ├── horse0.plist
│ │ │ ├── horse0.png
│ │ │ ├── horse.ExportJson
│ │ │ ├── knight.plist
│ │ │ ├── knight.png
│ │ │ ├── knight.xml
│ │ │ ├── robot.plist
│ │ │ ├── robot.png
│ │ │ ├── robot.xml
│ │ │ ├── TestBone0.plist
│ │ │ ├── TestBone0.png
│ │ │ ├── TestBone.json
│ │ │ ├── testEasing0.plist
│ │ │ ├── testEasing0.png
│ │ │ ├── testEasing.ExportJson
│ │ │ ├── weapon.plist
│ │ │ ├── weapon.png
│ │ │ └── weapon.xml
│ │ ├── background.mp3
│ │ ├── background-music-aac.wav
│ │ ├── background.ogg
│ │ ├── background.wav
│ │ ├── ccb
│ │ │ ├── animated-grossini.plist
│ │ │ ├── animated-grossini.png
│ │ │ ├── btn-a-0.png
│ │ │ ├── btn-a-1.png
│ │ │ ├── btn-a-2.png
│ │ │ ├── btn-b-0.png
│ │ │ ├── btn-b-1.png
│ │ │ ├── btn-b-2.png
│ │ │ ├── btn-back-0.png
│ │ │ ├── btn-back-1.png
│ │ │ ├── btn-test-0.png
│ │ │ ├── btn-test-1.png
│ │ │ ├── btn-test-2.png
│ │ │ ├── burst.png
│ │ │ ├── ccb
│ │ │ │ ├── TestAnimations.ccb
│ │ │ │ ├── TestAnimations.ccbi
│ │ │ │ ├── TestAnimationsSub.ccb
│ │ │ │ ├── TestAnimationsSub.ccbi
│ │ │ │ ├── TestButtons.ccb
│ │ │ │ ├── TestButtons.ccbi
│ │ │ │ ├── TestHeader.ccb
│ │ │ │ ├── TestHeader.ccbi
│ │ │ │ ├── TestLabels.ccb
│ │ │ │ ├── TestLabels.ccbi
│ │ │ │ ├── TestMenus.ccb
│ │ │ │ ├── TestMenus.ccbi
│ │ │ │ ├── TestParticleSystems.ccb
│ │ │ │ ├── TestParticleSystems.ccbi
│ │ │ │ ├── TestScrollViews.ccb
│ │ │ │ ├── TestScrollViews.ccbi
│ │ │ │ ├── TestScrollViewsContentA.ccb
│ │ │ │ ├── TestScrollViewsContentA.ccbi
│ │ │ │ ├── TestSprites.ccb
│ │ │ │ ├── TestSprites.ccbi
│ │ │ │ ├── TestTimelineCallback.ccb
│ │ │ │ └── TestTimelineCallback.ccbi
│ │ │ ├── ccbParticleStars.png
│ │ │ ├── comic andy.ttf
│ │ │ ├── flower.jpg
│ │ │ ├── gem-0.wav
│ │ │ ├── gem-1.wav
│ │ │ ├── grossini-generic.plist
│ │ │ ├── grossini-generic.png
│ │ │ ├── HelloCocosBuilder.ccb
│ │ │ ├── HelloCocosBuilder.ccbi
│ │ │ ├── jungle-left.png
│ │ │ ├── jungle.png
│ │ │ ├── jungle-right.png
│ │ │ ├── logo-icon.png
│ │ │ ├── logo.png
│ │ │ ├── markerfelt24shadow.fnt
│ │ │ ├── markerfelt24shadow.png
│ │ │ ├── particle-fire.png
│ │ │ ├── particle-smoke.png
│ │ │ ├── particle-snow.png
│ │ │ ├── particle-stars.png
│ │ │ └── scale-9-demo.png
│ │ ├── CocosBuilderExample.ccbproj
│ │ ├── CocosBuilderExample.ccbresourcelog
│ │ ├── cocosgui
│ │ │ ├── animationbuttonnormal.png
│ │ │ ├── animationbuttonpressed.png
│ │ │ ├── arrow.png
│ │ │ ├── b11.png
│ │ │ ├── backtotopnormal.png
│ │ │ ├── backtotoppressed.png
│ │ │ ├── bitmapFontTest2.fnt
│ │ │ ├── bitmapFontTest2.png
│ │ │ ├── buttonHighlighted.png
│ │ │ ├── button.png
│ │ │ ├── ccicon.png
│ │ │ ├── check_box_active_disable.png
│ │ │ ├── check_box_active.png
│ │ │ ├── check_box_active_press.png
│ │ │ ├── check_box_normal_disable.png
│ │ │ ├── check_box_normal.png
│ │ │ ├── check_box_normal_press.png
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ ├── CocoGUI_PageView_Sample.json
│ │ │ ├── CocoGUISample.json
│ │ │ ├── examples
│ │ │ │ ├── equip
│ │ │ │ │ ├── 111.png
│ │ │ │ │ ├── 12.png
│ │ │ │ │ ├── 13.png
│ │ │ │ │ ├── 14.png
│ │ │ │ │ ├── 15.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ └── eg
│ │ │ │ │ ├── 10.png
│ │ │ │ │ ├── 11.png
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 3.png
│ │ │ │ │ ├── 4.png
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 6.png
│ │ │ │ │ ├── 7.png
│ │ │ │ │ ├── 8.png
│ │ │ │ │ ├── 9.png
│ │ │ │ │ ├── crab.png
│ │ │ │ │ ├── research.png
│ │ │ │ │ ├── sell.png
│ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ ├── train.png
│ │ │ │ │ └── upgrade.png
│ │ │ │ ├── examples.json
│ │ │ │ ├── Test
│ │ │ │ │ └── UIResForEditor
│ │ │ │ │ └── Button
│ │ │ │ │ ├── button_country_n.png
│ │ │ │ │ ├── button_country_p.png
│ │ │ │ │ ├── button_country_un.png
│ │ │ │ │ ├── symbol_1a.png
│ │ │ │ │ ├── symbol_1B.png
│ │ │ │ │ └── symbol_1c.png
│ │ │ │ └── weapon_introduce
│ │ │ │ ├── 4.png
│ │ │ │ ├── 5.png
│ │ │ │ ├── 6.png
│ │ │ │ ├── button_end_01.png
│ │ │ │ ├── button_end_02.png
│ │ │ │ └── weapon_item_1
│ │ │ │ ├── weapon_item
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ └── 7.png
│ │ │ │ └── weapon_item_1.json
│ │ │ ├── green_edit.png
│ │ │ ├── grossini-aliases.png
│ │ │ ├── gui_examples
│ │ │ │ ├── buy_1
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 7.png
│ │ │ │ │ ├── buttonHighlighted.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ └── buy_1.json
│ │ │ │ ├── equip_1
│ │ │ │ │ ├── equip
│ │ │ │ │ │ ├── 111.png
│ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ │ └── eg
│ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ ├── crab.png
│ │ │ │ │ │ ├── research.png
│ │ │ │ │ │ ├── sell.png
│ │ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ │ ├── train.png
│ │ │ │ │ │ └── upgrade.png
│ │ │ │ │ └── equip_1.json
│ │ │ │ ├── map_1
│ │ │ │ │ ├── image_castle.png
│ │ │ │ │ ├── map_1.json
│ │ │ │ │ └── map_pve.png
│ │ │ │ ├── map_alert_1
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 7.png
│ │ │ │ │ ├── close_02.png
│ │ │ │ │ ├── close_03.png
│ │ │ │ │ ├── close_04.png
│ │ │ │ │ └── map_alert_1.json
│ │ │ │ ├── page_1
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── buttonBackground.png
│ │ │ │ │ ├── page_1.json
│ │ │ │ │ ├── page_content
│ │ │ │ │ │ ├── CocoStudio_AnimationEditor.png
│ │ │ │ │ │ ├── CocoStudio_DataEditor.png
│ │ │ │ │ │ ├── CocoStudio_SceneEditor.png
│ │ │ │ │ │ └── CocoStudio_UIEditor.png
│ │ │ │ │ ├── ribbon.png
│ │ │ │ │ ├── teehanlax - iOS 6 - iPhone_check01.png
│ │ │ │ │ └── teehanlax - iOS 6 - iPhone_check.png
│ │ │ │ ├── register_1
│ │ │ │ │ ├── 128_128.png
│ │ │ │ │ ├── button_d.png
│ │ │ │ │ ├── button_n.png
│ │ │ │ │ ├── e-mail.png
│ │ │ │ │ ├── register_1.json
│ │ │ │ │ ├── Rosewood stdloadingH.fnt
│ │ │ │ │ ├── Rosewood stdloadingH.png
│ │ │ │ │ └── ui_shop_005-hd.png
│ │ │ │ ├── UIAction_1
│ │ │ │ │ ├── CocoStudio_UIEditor.png
│ │ │ │ │ └── UIAction_1.json
│ │ │ │ └── weapon_introduce_1
│ │ │ │ ├── weapon_introduce
│ │ │ │ │ ├── 4.png
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 6.png
│ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ └── button_end_02.png
│ │ │ │ ├── weapon_introduce_1.json
│ │ │ │ └── weapon_item_1
│ │ │ │ ├── weapon_item
│ │ │ │ │ ├── 1.png
│ │ │ │ │ ├── 2.png
│ │ │ │ │ └── 7.png
│ │ │ │ ├── weapon_item_1.json
│ │ │ │ └── weapons
│ │ │ │ ├── weapons_10.png
│ │ │ │ ├── weapons_11.png
│ │ │ │ ├── weapons_12.png
│ │ │ │ ├── weapons_13.png
│ │ │ │ ├── weapons_14.png
│ │ │ │ ├── weapons_15.png
│ │ │ │ ├── weapons_16.png
│ │ │ │ ├── weapons_17.png
│ │ │ │ ├── weapons_18.png
│ │ │ │ ├── weapons_19.png
│ │ │ │ ├── weapons_1.png
│ │ │ │ ├── weapons_20.png
│ │ │ │ ├── weapons_21.png
│ │ │ │ ├── weapons_22.png
│ │ │ │ ├── weapons_23.png
│ │ │ │ ├── weapons_24.png
│ │ │ │ ├── weapons_25.png
│ │ │ │ ├── weapons_26.png
│ │ │ │ ├── weapons_27.png
│ │ │ │ ├── weapons_28.png
│ │ │ │ ├── weapons_29.png
│ │ │ │ ├── weapons_2.png
│ │ │ │ ├── weapons_30.png
│ │ │ │ ├── weapons_31.png
│ │ │ │ ├── weapons_3.png
│ │ │ │ ├── weapons_4.png
│ │ │ │ ├── weapons_5.png
│ │ │ │ ├── weapons_6.png
│ │ │ │ ├── weapons_7.png
│ │ │ │ ├── weapons_8.png
│ │ │ │ └── weapons_9.png
│ │ │ ├── Hello.png
│ │ │ ├── labelatlas.png
│ │ │ ├── loadingbar.png
│ │ │ ├── Marker Felt.ttf
│ │ │ ├── scrollviewbg.png
│ │ │ ├── slidbar.png
│ │ │ ├── sliderballnormal.png
│ │ │ ├── sliderballpressed.png
│ │ │ ├── slider_bar_active_9patch.png
│ │ │ ├── sliderProgress2.png
│ │ │ ├── sliderProgress.png
│ │ │ ├── sliderThumb.png
│ │ │ ├── sliderTrack2.png
│ │ │ ├── sliderTrack.png
│ │ │ └── UITest
│ │ │ ├── b1.png
│ │ │ ├── b2.png
│ │ │ ├── background.png
│ │ │ ├── buttonBackground.png
│ │ │ ├── f1.png
│ │ │ ├── f2.png
│ │ │ ├── r1.png
│ │ │ ├── r2.png
│ │ │ ├── ribbon.png
│ │ │ └── UITest.json
│ │ ├── components
│ │ │ ├── Player.png
│ │ │ ├── Projectile.png
│ │ │ └── Target.png
│ │ ├── configs
│ │ │ ├── config-example.plist
│ │ │ ├── config-test-invalid.plist
│ │ │ └── config-test-ok.plist
│ │ ├── development.icf
│ │ ├── effect1.raw
│ │ ├── effect1.wav
│ │ ├── effect2.ogg
│ │ ├── extensions
│ │ │ ├── background.png
│ │ │ ├── buttonBackground.png
│ │ │ ├── buttonHighlighted.png
│ │ │ ├── button.png
│ │ │ ├── CCControlColourPickerSpriteSheet.plist
│ │ │ ├── CCControlColourPickerSpriteSheet.png
│ │ │ ├── green_edit.png
│ │ │ ├── orange_edit.png
│ │ │ ├── potentiometerButton.png
│ │ │ ├── potentiometerProgress.png
│ │ │ ├── potentiometerTrack.png
│ │ │ ├── ribbon.png
│ │ │ ├── sliderProgress2.png
│ │ │ ├── sliderProgress.png
│ │ │ ├── sliderThumb.png
│ │ │ ├── sliderTrack2.png
│ │ │ ├── sliderTrack.png
│ │ │ ├── stepper-minus.png
│ │ │ ├── stepper-plus.png
│ │ │ ├── switch-mask.png
│ │ │ ├── switch-off.png
│ │ │ ├── switch-on.png
│ │ │ ├── switch-thumb.png
│ │ │ └── yellow_edit.png
│ │ ├── fileLookup.plist
│ │ ├── fonts
│ │ │ ├── Abberancy.ttf
│ │ │ ├── Abduction.ttf
│ │ │ ├── A Damn Mess.ttf
│ │ │ ├── American Typewriter.ttf
│ │ │ ├── arial16.fnt
│ │ │ ├── arial16.png
│ │ │ ├── arial-26-en-ru_0.png
│ │ │ ├── arial-26-en-ru.fnt
│ │ │ ├── arial.ttf
│ │ │ ├── arial-unicode-26.fnt
│ │ │ ├── arial-unicode-26.GlyphProject
│ │ │ ├── arial-unicode-26.png
│ │ │ ├── bitmapFontChinese.fnt
│ │ │ ├── bitmapFontChinese.png
│ │ │ ├── bitmapFontTest2.bmp
│ │ │ ├── bitmapFontTest2.fnt
│ │ │ ├── bitmapFontTest2.png
│ │ │ ├── bitmapFontTest3.fnt
│ │ │ ├── bitmapFontTest3.png
│ │ │ ├── bitmapFontTest4.fnt
│ │ │ ├── bitmapFontTest4.png
│ │ │ ├── bitmapFontTest5.fnt
│ │ │ ├── bitmapFontTest5.png
│ │ │ ├── bitmapFontTest.fnt
│ │ │ ├── bitmapFontTest.png
│ │ │ ├── boundsTestFont.fnt
│ │ │ ├── boundsTestFont.png
│ │ │ ├── Courier New.ttf
│ │ │ ├── font-issue1343.fnt
│ │ │ ├── font-issue1343-hd.fnt
│ │ │ ├── font-issue1343-hd.png
│ │ │ ├── font-issue1343.png
│ │ │ ├── futura-48.fnt
│ │ │ ├── futura-48.png
│ │ │ ├── geneva-32.fnt
│ │ │ ├── helvetica-32.fnt
│ │ │ ├── helvetica-geneva-32.png
│ │ │ ├── konqa32.fnt
│ │ │ ├── konqa32.png
│ │ │ ├── labelatlas.png
│ │ │ ├── larabie-16.plist
│ │ │ ├── larabie-16.png
│ │ │ ├── markerFelt.fnt
│ │ │ ├── markerFelt.png
│ │ │ ├── Marker Felt.ttf
│ │ │ ├── Paint Boy.ttf
│ │ │ ├── Schwarzwald Regular.ttf
│ │ │ ├── Scissor Cuts.ttf
│ │ │ ├── strings.xml
│ │ │ ├── tahoma.ttf
│ │ │ ├── ThonburiBold.ttf
│ │ │ ├── Thonburi.ttf
│ │ │ ├── tuffy_bold_italic-charmap.plist
│ │ │ ├── tuffy_bold_italic-charmap.png
│ │ │ ├── west_england-64.fnt
│ │ │ └── west_england-64.png
│ │ ├── fps_images.png
│ │ ├── hd
│ │ │ ├── animations
│ │ │ │ └── dragon_animation.png
│ │ │ ├── armature
│ │ │ │ ├── bear0.plist
│ │ │ │ ├── bear0.png
│ │ │ │ ├── Cowboy0.plist
│ │ │ │ ├── Cowboy0.png
│ │ │ │ ├── cyborg.plist
│ │ │ │ ├── cyborg.png
│ │ │ │ ├── Dragon.plist
│ │ │ │ ├── Dragon.png
│ │ │ │ ├── hero0.plist
│ │ │ │ ├── hero0.png
│ │ │ │ ├── HeroAnimation0.plist
│ │ │ │ ├── HeroAnimation0.png
│ │ │ │ ├── horse0.plist
│ │ │ │ ├── horse0.png
│ │ │ │ ├── knight.plist
│ │ │ │ ├── knight.png
│ │ │ │ ├── robot.plist
│ │ │ │ ├── robot.png
│ │ │ │ ├── TestBone0.plist
│ │ │ │ ├── TestBone0.png
│ │ │ │ ├── testEasing0.plist
│ │ │ │ ├── testEasing0.png
│ │ │ │ ├── weapon.plist
│ │ │ │ └── weapon.png
│ │ │ ├── ccb
│ │ │ │ └── burst.png
│ │ │ ├── cocosgui
│ │ │ │ ├── animationbuttonnormal.png
│ │ │ │ ├── animationbuttonpressed.png
│ │ │ │ ├── arrow.png
│ │ │ │ ├── b11.png
│ │ │ │ ├── backtotopnormal.png
│ │ │ │ ├── backtotoppressed.png
│ │ │ │ ├── bitmapFontTest2.fnt
│ │ │ │ ├── bitmapFontTest2.png
│ │ │ │ ├── buttonHighlighted.png
│ │ │ │ ├── button.png
│ │ │ │ ├── ccicon.png
│ │ │ │ ├── check_box_active_disable.png
│ │ │ │ ├── check_box_active.png
│ │ │ │ ├── check_box_active_press.png
│ │ │ │ ├── check_box_normal_disable.png
│ │ │ │ ├── check_box_normal.png
│ │ │ │ ├── check_box_normal_press.png
│ │ │ │ ├── CloseNormal.png
│ │ │ │ ├── CloseSelected.png
│ │ │ │ ├── CocoGUI_PageView_Sample.json
│ │ │ │ ├── CocoGUISample.json
│ │ │ │ ├── examples
│ │ │ │ │ ├── equip
│ │ │ │ │ │ ├── 111.png
│ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ │ └── eg
│ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ ├── crab.png
│ │ │ │ │ │ ├── research.png
│ │ │ │ │ │ ├── sell.png
│ │ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ │ ├── train.png
│ │ │ │ │ │ └── upgrade.png
│ │ │ │ │ ├── examples.json
│ │ │ │ │ ├── Test
│ │ │ │ │ │ └── UIResForEditor
│ │ │ │ │ │ └── Button
│ │ │ │ │ │ ├── button_country_n.png
│ │ │ │ │ │ ├── button_country_p.png
│ │ │ │ │ │ ├── button_country_un.png
│ │ │ │ │ │ ├── symbol_1a.png
│ │ │ │ │ │ ├── symbol_1B.png
│ │ │ │ │ │ └── symbol_1c.png
│ │ │ │ │ └── weapon_introduce
│ │ │ │ │ ├── 4.png
│ │ │ │ │ ├── 5.png
│ │ │ │ │ ├── 6.png
│ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ └── weapon_item_1
│ │ │ │ │ ├── weapon_item
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ └── 7.png
│ │ │ │ │ └── weapon_item_1.json
│ │ │ │ ├── green_edit.png
│ │ │ │ ├── grossini-aliases.png
│ │ │ │ ├── gui_examples
│ │ │ │ │ ├── buy_1
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── buttonHighlighted.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ └── buy_1.json
│ │ │ │ │ ├── equip_1
│ │ │ │ │ │ ├── equip
│ │ │ │ │ │ │ ├── 111.png
│ │ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ │ │ └── eg
│ │ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ │ ├── crab.png
│ │ │ │ │ │ │ ├── research.png
│ │ │ │ │ │ │ ├── sell.png
│ │ │ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ │ │ ├── train.png
│ │ │ │ │ │ │ └── upgrade.png
│ │ │ │ │ │ └── equip_1.json
│ │ │ │ │ ├── map_1
│ │ │ │ │ │ ├── image_castle.png
│ │ │ │ │ │ ├── map_1.json
│ │ │ │ │ │ └── map_pve.png
│ │ │ │ │ ├── map_alert_1
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ ├── close_02.png
│ │ │ │ │ │ ├── close_03.png
│ │ │ │ │ │ ├── close_04.png
│ │ │ │ │ │ └── map_alert_1.json
│ │ │ │ │ ├── page_1
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── buttonBackground.png
│ │ │ │ │ │ ├── page_1.json
│ │ │ │ │ │ ├── page_content
│ │ │ │ │ │ │ ├── CocoStudio_AnimationEditor.png
│ │ │ │ │ │ │ ├── CocoStudio_DataEditor.png
│ │ │ │ │ │ │ ├── CocoStudio_SceneEditor.png
│ │ │ │ │ │ │ └── CocoStudio_UIEditor.png
│ │ │ │ │ │ ├── ribbon.png
│ │ │ │ │ │ ├── teehanlax - iOS 6 - iPhone_check01.png
│ │ │ │ │ │ └── teehanlax - iOS 6 - iPhone_check.png
│ │ │ │ │ ├── register_1
│ │ │ │ │ │ ├── 128_128.png
│ │ │ │ │ │ ├── button_d.png
│ │ │ │ │ │ ├── button_n.png
│ │ │ │ │ │ ├── e-mail.png
│ │ │ │ │ │ ├── register_1.json
│ │ │ │ │ │ ├── Rosewood stdloadingH.fnt
│ │ │ │ │ │ ├── Rosewood stdloadingH.png
│ │ │ │ │ │ └── ui_shop_005-hd.png
│ │ │ │ │ ├── UIAction_1
│ │ │ │ │ │ ├── CocoStudio_UIEditor.png
│ │ │ │ │ │ └── UIAction_1.json
│ │ │ │ │ └── weapon_introduce_1
│ │ │ │ │ ├── weapon_introduce
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ └── button_end_02.png
│ │ │ │ │ ├── weapon_introduce_1.json
│ │ │ │ │ └── weapon_item_1
│ │ │ │ │ ├── weapon_item
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ └── 7.png
│ │ │ │ │ ├── weapon_item_1.json
│ │ │ │ │ └── weapons
│ │ │ │ │ ├── weapons_10.png
│ │ │ │ │ ├── weapons_11.png
│ │ │ │ │ ├── weapons_12.png
│ │ │ │ │ ├── weapons_13.png
│ │ │ │ │ ├── weapons_14.png
│ │ │ │ │ ├── weapons_15.png
│ │ │ │ │ ├── weapons_16.png
│ │ │ │ │ ├── weapons_17.png
│ │ │ │ │ ├── weapons_18.png
│ │ │ │ │ ├── weapons_19.png
│ │ │ │ │ ├── weapons_1.png
│ │ │ │ │ ├── weapons_20.png
│ │ │ │ │ ├── weapons_21.png
│ │ │ │ │ ├── weapons_22.png
│ │ │ │ │ ├── weapons_23.png
│ │ │ │ │ ├── weapons_24.png
│ │ │ │ │ ├── weapons_25.png
│ │ │ │ │ ├── weapons_26.png
│ │ │ │ │ ├── weapons_27.png
│ │ │ │ │ ├── weapons_28.png
│ │ │ │ │ ├── weapons_29.png
│ │ │ │ │ ├── weapons_2.png
│ │ │ │ │ ├── weapons_30.png
│ │ │ │ │ ├── weapons_31.png
│ │ │ │ │ ├── weapons_3.png
│ │ │ │ │ ├── weapons_4.png
│ │ │ │ │ ├── weapons_5.png
│ │ │ │ │ ├── weapons_6.png
│ │ │ │ │ ├── weapons_7.png
│ │ │ │ │ ├── weapons_8.png
│ │ │ │ │ └── weapons_9.png
│ │ │ │ ├── Hello.png
│ │ │ │ ├── labelatlas.png
│ │ │ │ ├── loadingbar.png
│ │ │ │ ├── Marker Felt.ttf
│ │ │ │ ├── scrollviewbg.png
│ │ │ │ ├── slidbar.png
│ │ │ │ ├── sliderballnormal.png
│ │ │ │ ├── sliderballpressed.png
│ │ │ │ ├── slider_bar_active_9patch.png
│ │ │ │ ├── sliderProgress2.png
│ │ │ │ ├── sliderProgress.png
│ │ │ │ ├── sliderThumb.png
│ │ │ │ ├── sliderTrack2.png
│ │ │ │ ├── sliderTrack.png
│ │ │ │ ├── switch-mask.png
│ │ │ │ └── UITest
│ │ │ │ ├── b1.png
│ │ │ │ ├── b2.png
│ │ │ │ ├── background.png
│ │ │ │ ├── buttonBackground.png
│ │ │ │ ├── f1.png
│ │ │ │ ├── f2.png
│ │ │ │ ├── r1.png
│ │ │ │ ├── r2.png
│ │ │ │ ├── ribbon.png
│ │ │ │ └── UITest.json
│ │ │ ├── components
│ │ │ │ ├── Player.png
│ │ │ │ ├── Projectile.png
│ │ │ │ └── Target.png
│ │ │ ├── extensions
│ │ │ │ ├── background.png
│ │ │ │ ├── buttonHighlighted.png
│ │ │ │ ├── button.png
│ │ │ │ ├── CCControlColourPickerSpriteSheet.plist
│ │ │ │ ├── CCControlColourPickerSpriteSheet.png
│ │ │ │ ├── potentiometerButton.png
│ │ │ │ ├── potentiometerProgress.png
│ │ │ │ ├── potentiometerTrack.png
│ │ │ │ ├── ribbon.png
│ │ │ │ ├── sliderProgress2.png
│ │ │ │ ├── sliderProgress.png
│ │ │ │ ├── sliderThumb.png
│ │ │ │ ├── sliderTrack2.png
│ │ │ │ ├── sliderTrack.png
│ │ │ │ ├── stepper-minus.png
│ │ │ │ └── stepper-plus.png
│ │ │ ├── fonts
│ │ │ │ ├── font-issue1343.fnt
│ │ │ │ ├── font-issue1343.png
│ │ │ │ ├── konqa32.fnt
│ │ │ │ ├── konqa32.png
│ │ │ │ ├── labelatlas.png
│ │ │ │ ├── larabie-16.plist
│ │ │ │ ├── larabie-16.png
│ │ │ │ ├── markerFelt.fnt
│ │ │ │ ├── markerFelt.png
│ │ │ │ ├── tuffy_bold_italic-charmap.plist
│ │ │ │ └── tuffy_bold_italic-charmap.png
│ │ │ ├── fps_images.png
│ │ │ ├── Images
│ │ │ │ ├── arrowsBar.png
│ │ │ │ ├── arrows.png
│ │ │ │ ├── b1.png
│ │ │ │ ├── b2.png
│ │ │ │ ├── background1.jpg
│ │ │ │ ├── background1.png
│ │ │ │ ├── background2.jpg
│ │ │ │ ├── background2.png
│ │ │ │ ├── background3.png
│ │ │ │ ├── ball.png
│ │ │ │ ├── blocks.png
│ │ │ │ ├── bugs
│ │ │ │ │ ├── circle.plist
│ │ │ │ │ ├── circle.png
│ │ │ │ │ ├── picture.png
│ │ │ │ │ └── test_issue_1179.png
│ │ │ │ ├── close.png
│ │ │ │ ├── f1.png
│ │ │ │ ├── f2.png
│ │ │ │ ├── grossini_dance_atlas.png
│ │ │ │ ├── grossini.png
│ │ │ │ ├── grossinis_sister1.png
│ │ │ │ ├── grossinis_sister2.png
│ │ │ │ ├── hole_effect.png
│ │ │ │ ├── hole_stencil.png
│ │ │ │ ├── Icon.png
│ │ │ │ ├── only_in_hd.pvr.ccz
│ │ │ │ ├── paddle.png
│ │ │ │ ├── particles.png
│ │ │ │ ├── r1.png
│ │ │ │ └── r2.png
│ │ │ ├── scenetest
│ │ │ │ ├── ArmatureComponentTest
│ │ │ │ │ ├── ArmatureComponentTest.json
│ │ │ │ │ ├── fishes
│ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ └── Images
│ │ │ │ │ └── startMenuBG.png
│ │ │ │ ├── AttributeComponentTest
│ │ │ │ │ ├── AttributeComponentTest.json
│ │ │ │ │ ├── grossinis_sister1.png
│ │ │ │ │ └── PlayerAttribute.json
│ │ │ │ ├── BackgroundComponentTest
│ │ │ │ │ ├── BackgroundComponentTest.json
│ │ │ │ │ ├── Images
│ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ ├── Misc
│ │ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ │ └── music_logo.wav
│ │ │ │ │ ├── Particles
│ │ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ │ └── qipao01.png
│ │ │ │ │ └── startMenu
│ │ │ │ │ ├── Fish_UI
│ │ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ │ └── startMenu_1.json
│ │ │ │ ├── EffectComponentTest
│ │ │ │ │ ├── CowBoy
│ │ │ │ │ │ ├── Cowboy0.plist
│ │ │ │ │ │ ├── Cowboy0.png
│ │ │ │ │ │ └── Cowboy.ExportJson
│ │ │ │ │ ├── EffectComponentTest.json
│ │ │ │ │ └── pew-pew-lei.wav
│ │ │ │ ├── LoadSceneEdtiorFileTest
│ │ │ │ │ ├── fishes
│ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ ├── FishJoy2.json
│ │ │ │ │ ├── Images
│ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ ├── Misc
│ │ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ │ └── music_logo.wav
│ │ │ │ │ ├── Particles
│ │ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ │ └── qipao01.png
│ │ │ │ │ └── startMenu
│ │ │ │ │ ├── Fish_UI
│ │ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ │ └── startMenu_1.json
│ │ │ │ ├── ParticleComponentTest
│ │ │ │ │ ├── ParticleComponentTest.json
│ │ │ │ │ ├── SmallSun.plist
│ │ │ │ │ └── Upsidedown.plist
│ │ │ │ ├── SpriteComponentTest
│ │ │ │ │ ├── grossinis_sister1.png
│ │ │ │ │ ├── grossinis_sister2.png
│ │ │ │ │ └── SpriteComponentTest.json
│ │ │ │ ├── TmxMapComponentTest
│ │ │ │ │ ├── iso-test.png
│ │ │ │ │ ├── iso-test.tmx
│ │ │ │ │ └── TmxMapComponentTest.json
│ │ │ │ ├── TriggerTest
│ │ │ │ │ ├── fishes
│ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ ├── Images
│ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ └── TriggerTest.json
│ │ │ │ └── UIComponentTest
│ │ │ │ ├── fishes
│ │ │ │ │ ├── blowFish
│ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ └── Butterflyfish
│ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ ├── Images
│ │ │ │ │ └── startMenuBG.png
│ │ │ │ ├── starMenuButton
│ │ │ │ │ ├── starMenuButton0.plist
│ │ │ │ │ ├── starMenuButton0.png
│ │ │ │ │ └── starMenuButton.ExportJson
│ │ │ │ └── UIComponentTest.json
│ │ │ ├── spine
│ │ │ │ └── spineboy.png
│ │ │ └── TileMaps
│ │ │ ├── orthogonal-test3.tmx
│ │ │ ├── orthogonal-test4.tmx
│ │ │ ├── orthogonal-test6.tmx
│ │ │ ├── test-object-layer.tmx
│ │ │ ├── tiles.png
│ │ │ └── tmw_desert_spacing.png
│ │ ├── Hello.png
│ │ ├── Images
│ │ │ ├── arrowsBar.png
│ │ │ ├── arrows.png
│ │ │ ├── atlastest.png
│ │ │ ├── b1.png
│ │ │ ├── b2.png
│ │ │ ├── background1.jpg
│ │ │ ├── background1.png
│ │ │ ├── background2.jpg
│ │ │ ├── background2.png
│ │ │ ├── background3.jpg
│ │ │ ├── background3.png
│ │ │ ├── background.png
│ │ │ ├── ball.png
│ │ │ ├── bitmapFontTest3.fnt
│ │ │ ├── bitmapFontTest3.png
│ │ │ ├── blocks.png
│ │ │ ├── btn-about-normal.png
│ │ │ ├── btn-about-selected.png
│ │ │ ├── btn-highscores-normal.png
│ │ │ ├── btn-highscores-selected.png
│ │ │ ├── btn-play-normal.png
│ │ │ ├── btn-play-selected.png
│ │ │ ├── bugs
│ │ │ │ ├── bug886.jpg
│ │ │ │ ├── bug886.png
│ │ │ │ ├── circle.plist
│ │ │ │ ├── circle.png
│ │ │ │ ├── corner.png
│ │ │ │ ├── edge.png
│ │ │ │ ├── fill.png
│ │ │ │ ├── picture.png
│ │ │ │ └── RetinaDisplay.jpg
│ │ │ ├── close.png
│ │ │ ├── Comet.png
│ │ │ ├── encryptedAtlas.plist
│ │ │ ├── encryptedAtlas.pvr.ccz
│ │ │ ├── encryptedAtlas.tps
│ │ │ ├── ETC1.pkm
│ │ │ ├── f1.png
│ │ │ ├── f2.png
│ │ │ ├── fire-grayscale.png
│ │ │ ├── fire.png
│ │ │ ├── fire_rgba8888.pvr
│ │ │ ├── Fog.png
│ │ │ ├── grossini_128x256_mipmap.pvr
│ │ │ ├── grossini_dance_01.png
│ │ │ ├── grossini_dance_02.png
│ │ │ ├── grossini_dance_03.png
│ │ │ ├── grossini_dance_04.png
│ │ │ ├── grossini_dance_05.png
│ │ │ ├── grossini_dance_06.png
│ │ │ ├── grossini_dance_07.png
│ │ │ ├── grossini_dance_08.png
│ │ │ ├── grossini_dance_09.png
│ │ │ ├── grossini_dance_10.png
│ │ │ ├── grossini_dance_11.png
│ │ │ ├── grossini_dance_12.png
│ │ │ ├── grossini_dance_13.png
│ │ │ ├── grossini_dance_14.png
│ │ │ ├── grossini_dance_atlas-mono.png
│ │ │ ├── grossini_dance_atlas_nomipmap.png
│ │ │ ├── grossini_dance_atlas.png
│ │ │ ├── grossini.png
│ │ │ ├── grossini_pvr_rgba4444.pvr
│ │ │ ├── grossini_pvr_rgba8888.pvr
│ │ │ ├── grossinis_sister1.png
│ │ │ ├── grossinis_sister1-testalpha_nopremult.pvr
│ │ │ ├── grossinis_sister1-testalpha.png
│ │ │ ├── grossinis_sister1-testalpha.ppng
│ │ │ ├── grossinis_sister1-testalpha_premult.pvr
│ │ │ ├── grossinis_sister2.png
│ │ │ ├── HelloWorld.png
│ │ │ ├── hole_effect.png
│ │ │ ├── hole_stencil.png
│ │ │ ├── Icon.png
│ │ │ ├── labelatlas.png
│ │ │ ├── landscape-1024x1024.png
│ │ │ ├── logo-mipmap.pvr
│ │ │ ├── logo-nomipmap.pvr
│ │ │ ├── menuitemsprite.png
│ │ │ ├── nonencryptedAtlas.plist
│ │ │ ├── nonencryptedAtlas.pvr.ccz
│ │ │ ├── nonencryptedAtlas.tps
│ │ │ ├── paddle.png
│ │ │ ├── particles.png
│ │ │ ├── pattern1.png
│ │ │ ├── Pea.png
│ │ │ ├── piece.png
│ │ │ ├── PlanetCute-1024x1024.png
│ │ │ ├── powered.png
│ │ │ ├── r1.png
│ │ │ ├── r2.png
│ │ │ ├── SendScoreButton.png
│ │ │ ├── SendScoreButtonPressed.png
│ │ │ ├── snow.png
│ │ │ ├── SpinningPeas.png
│ │ │ ├── SpookyPeas.png
│ │ │ ├── spritesheet1.png
│ │ │ ├── sprites_test
│ │ │ │ ├── sprite-0-0.png
│ │ │ │ ├── sprite-0-1.png
│ │ │ │ ├── sprite-0-2.png
│ │ │ │ ├── sprite-0-3.png
│ │ │ │ ├── sprite-0-4.png
│ │ │ │ ├── sprite-0-5.png
│ │ │ │ ├── sprite-0-6.png
│ │ │ │ ├── sprite-0-7.png
│ │ │ │ ├── sprite-1-0.png
│ │ │ │ ├── sprite-1-1.png
│ │ │ │ ├── sprite-1-2.png
│ │ │ │ ├── sprite-1-3.png
│ │ │ │ ├── sprite-1-4.png
│ │ │ │ ├── sprite-1-5.png
│ │ │ │ ├── sprite-1-6.png
│ │ │ │ ├── sprite-1-7.png
│ │ │ │ ├── sprite-2-0.png
│ │ │ │ ├── sprite-2-1.png
│ │ │ │ ├── sprite-2-2.png
│ │ │ │ ├── sprite-2-3.png
│ │ │ │ ├── sprite-2-4.png
│ │ │ │ ├── sprite-2-5.png
│ │ │ │ ├── sprite-2-6.png
│ │ │ │ ├── sprite-2-7.png
│ │ │ │ ├── sprite-3-0.png
│ │ │ │ ├── sprite-3-1.png
│ │ │ │ ├── sprite-3-2.png
│ │ │ │ ├── sprite-3-3.png
│ │ │ │ ├── sprite-3-4.png
│ │ │ │ ├── sprite-3-5.png
│ │ │ │ ├── sprite-3-6.png
│ │ │ │ ├── sprite-3-7.png
│ │ │ │ ├── sprite-4-0.png
│ │ │ │ ├── sprite-4-1.png
│ │ │ │ ├── sprite-4-2.png
│ │ │ │ ├── sprite-4-3.png
│ │ │ │ ├── sprite-4-4.png
│ │ │ │ ├── sprite-4-5.png
│ │ │ │ ├── sprite-4-6.png
│ │ │ │ ├── sprite-4-7.png
│ │ │ │ ├── sprite-5-0.png
│ │ │ │ ├── sprite-5-1.png
│ │ │ │ ├── sprite-5-2.png
│ │ │ │ ├── sprite-5-3.png
│ │ │ │ ├── sprite-5-4.png
│ │ │ │ ├── sprite-5-5.png
│ │ │ │ ├── sprite-5-6.png
│ │ │ │ ├── sprite-5-7.png
│ │ │ │ ├── sprite-6-0.png
│ │ │ │ ├── sprite-6-1.png
│ │ │ │ ├── sprite-6-2.png
│ │ │ │ ├── sprite-6-3.png
│ │ │ │ ├── sprite-6-4.png
│ │ │ │ ├── sprite-6-5.png
│ │ │ │ ├── sprite-6-6.png
│ │ │ │ ├── sprite-6-7.png
│ │ │ │ ├── sprite-7-0.png
│ │ │ │ ├── sprite-7-1.png
│ │ │ │ ├── sprite-7-2.png
│ │ │ │ ├── sprite-7-3.png
│ │ │ │ ├── sprite-7-4.png
│ │ │ │ ├── sprite-7-5.png
│ │ │ │ ├── sprite-7-6.png
│ │ │ │ └── sprite-7-7.png
│ │ │ ├── stars2-grayscale.png
│ │ │ ├── stars2.png
│ │ │ ├── stars-grayscale.png
│ │ │ ├── stars.png
│ │ │ ├── streak.png
│ │ │ ├── test_1021x1024_a8.pvr
│ │ │ ├── test_1021x1024_a8.pvr.gz
│ │ │ ├── test_1021x1024.png
│ │ │ ├── test_1021x1024_rgb888.pvr
│ │ │ ├── test_1021x1024_rgb888.pvr.gz
│ │ │ ├── test_1021x1024_rgba4444.pvr
│ │ │ ├── test_1021x1024_rgba4444.pvr.gz
│ │ │ ├── test_1021x1024_rgba8888.pvr
│ │ │ ├── test_1021x1024_rgba8888.pvr.gz
│ │ │ ├── test_blend.png
│ │ │ ├── test_image_a8.pvr
│ │ │ ├── test_image_a8_v3.pvr
│ │ │ ├── test_image_ai88.pvr
│ │ │ ├── test_image_ai88_v3.pvr
│ │ │ ├── test_image-bad_encoding.pvr
│ │ │ ├── test_image_bgra8888.pvr
│ │ │ ├── test_image_bgra8888_v3.pvr
│ │ │ ├── test_image_i8.pvr
│ │ │ ├── test_image_i8_v3.pvr
│ │ │ ├── test_image.jpeg
│ │ │ ├── test_image.png
│ │ │ ├── test_image.pvr
│ │ │ ├── test_image.pvrraw
│ │ │ ├── test_image_pvrtc2bpp.pvr
│ │ │ ├── test_image_pvrtc2bpp_v3.pvr
│ │ │ ├── test_image_pvrtc4bpp.pvr
│ │ │ ├── test_image_pvrtc4bpp_v3.pvr
│ │ │ ├── test_image_pvrtcii2bpp_v3.pvr
│ │ │ ├── test_image_pvrtcii4bpp_v3.pvr
│ │ │ ├── test_image_rgb565.pvr
│ │ │ ├── test_image_rgb565_v3.pvr
│ │ │ ├── test_image_rgb888.pvr
│ │ │ ├── test_image_rgb888_v3.pvr
│ │ │ ├── test_image_rgba4444_mipmap.pvr
│ │ │ ├── test_image_rgba4444.pvr
│ │ │ ├── test_image_rgba4444.pvr.ccz
│ │ │ ├── test_image_rgba4444.pvr.gz
│ │ │ ├── test_image_rgba4444_v3.pvr
│ │ │ ├── test_image_rgba5551.pvr
│ │ │ ├── test_image_rgba5551_v3.pvr
│ │ │ ├── test_image_rgba8888.pvr
│ │ │ ├── test_image_rgba8888_v3.pvr
│ │ │ ├── test_image.tiff
│ │ │ ├── test_image.webp
│ │ │ ├── test-rgba1.png
│ │ │ ├── texture1024x1024.png
│ │ │ ├── texture2048x2048.png
│ │ │ ├── texture512x512.png
│ │ │ └── white-512x512.png
│ │ ├── ipad
│ │ │ ├── ccb
│ │ │ │ ├── burst.png
│ │ │ │ ├── jungle-left.png
│ │ │ │ └── jungle-right.png
│ │ │ └── extensions
│ │ │ ├── background.png
│ │ │ ├── CCControlColourPickerSpriteSheet.plist
│ │ │ ├── CCControlColourPickerSpriteSheet.png
│ │ │ ├── potentiometerButton.png
│ │ │ ├── potentiometerProgress.png
│ │ │ └── potentiometerTrack.png
│ │ ├── ipadhd
│ │ │ ├── extensions
│ │ │ │ ├── potentiometerButton.png
│ │ │ │ ├── potentiometerProgress.png
│ │ │ │ ├── potentiometerTrack.png
│ │ │ │ ├── stepper-minus.png
│ │ │ │ └── stepper-plus.png
│ │ │ └── fps_images.png
│ │ ├── Misc
│ │ │ ├── resources-hd
│ │ │ │ └── test4.txt
│ │ │ ├── resources-ipad
│ │ │ │ └── test2.txt
│ │ │ ├── resources-ipadhd
│ │ │ │ └── test1.txt
│ │ │ ├── resources-iphone
│ │ │ │ └── test6.txt
│ │ │ ├── resources-mac
│ │ │ │ └── test2.txt
│ │ │ ├── resources-machd
│ │ │ │ └── test1.txt
│ │ │ ├── resources-wide
│ │ │ │ └── test5.txt
│ │ │ ├── resources-widehd
│ │ │ │ └── test3.txt
│ │ │ ├── searchpath1
│ │ │ │ └── file1.txt
│ │ │ └── searchpath2
│ │ │ └── resources-ipad
│ │ │ └── file2.txt
│ │ ├── music.mid
│ │ ├── Particles
│ │ │ ├── BoilingFoam.plist
│ │ │ ├── BurstPipe.plist
│ │ │ ├── Comet.plist
│ │ │ ├── debian.plist
│ │ │ ├── ExplodingRing.plist
│ │ │ ├── Flower.plist
│ │ │ ├── Galaxy.plist
│ │ │ ├── LavaFlow.plist
│ │ │ ├── lines.plist
│ │ │ ├── Phoenix.plist
│ │ │ ├── SmallSun.plist
│ │ │ ├── SpinningPeas.plist
│ │ │ ├── Spiral.plist
│ │ │ ├── SpookyPeas.plist
│ │ │ ├── TestPremultipliedAlpha.plist
│ │ │ └── Upsidedown.plist
│ │ ├── pew-pew-lei.wav
│ │ ├── scenetest
│ │ │ ├── ArmatureComponentTest
│ │ │ │ ├── ArmatureComponentTest.json
│ │ │ │ ├── fishes
│ │ │ │ │ ├── blowFish
│ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ └── Butterflyfish
│ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ └── Images
│ │ │ │ └── startMenuBG.png
│ │ │ ├── AttributeComponentTest
│ │ │ │ ├── AttributeComponentTest.json
│ │ │ │ ├── grossinis_sister1.png
│ │ │ │ ├── grossinis_sister2.png
│ │ │ │ └── PlayerAttribute.json
│ │ │ ├── BackgroundComponentTest
│ │ │ │ ├── BackgroundComponentTest.json
│ │ │ │ ├── Images
│ │ │ │ │ └── startMenuBG.png
│ │ │ │ ├── Misc
│ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ └── music_logo.wav
│ │ │ │ ├── Particles
│ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ └── qipao01.png
│ │ │ │ └── startMenu
│ │ │ │ ├── Fish_UI
│ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ └── startMenu_1.json
│ │ │ ├── EffectComponentTest
│ │ │ │ ├── CowBoy
│ │ │ │ │ ├── Cowboy0.plist
│ │ │ │ │ ├── Cowboy0.png
│ │ │ │ │ └── Cowboy.ExportJson
│ │ │ │ ├── EffectComponentTest.json
│ │ │ │ └── pew-pew-lei.wav
│ │ │ ├── LoadSceneEdtiorFileTest
│ │ │ │ ├── fishes
│ │ │ │ │ ├── blowFish
│ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ └── Butterflyfish
│ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ ├── FishJoy2.json
│ │ │ │ ├── Images
│ │ │ │ │ └── startMenuBG.png
│ │ │ │ ├── Misc
│ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ └── music_logo.wav
│ │ │ │ ├── Particles
│ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ └── qipao01.png
│ │ │ │ └── startMenu
│ │ │ │ ├── Fish_UI
│ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ └── startMenu_1.json
│ │ │ ├── ParticleComponentTest
│ │ │ │ ├── ParticleComponentTest.json
│ │ │ │ ├── SmallSun.plist
│ │ │ │ └── Upsidedown.plist
│ │ │ ├── SpriteComponentTest
│ │ │ │ ├── grossinis_sister1.png
│ │ │ │ ├── grossinis_sister2.png
│ │ │ │ └── SpriteComponentTest.json
│ │ │ ├── TmxMapComponentTest
│ │ │ │ ├── iso-test.png
│ │ │ │ ├── iso-test.tmx
│ │ │ │ └── TmxMapComponentTest.json
│ │ │ ├── TriggerTest
│ │ │ │ ├── fishes
│ │ │ │ │ ├── blowFish
│ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ └── Butterflyfish
│ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ ├── Images
│ │ │ │ │ └── startMenuBG.png
│ │ │ │ └── TriggerTest.json
│ │ │ └── UIComponentTest
│ │ │ ├── fishes
│ │ │ │ ├── blowFish
│ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ └── Butterflyfish
│ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ ├── Butterflyfish0.png
│ │ │ │ └── Butterflyfish.ExportJson
│ │ │ ├── Images
│ │ │ │ └── startMenuBG.png
│ │ │ ├── starMenuButton
│ │ │ │ ├── starMenuButton0.plist
│ │ │ │ ├── starMenuButton0.png
│ │ │ │ └── starMenuButton.ExportJson
│ │ │ └── UIComponentTest.json
│ │ ├── Shaders
│ │ │ ├── example_Blur.fsh
│ │ │ ├── example_Flower.fsh
│ │ │ ├── example_Flower.vsh
│ │ │ ├── example_Heart.fsh
│ │ │ ├── example_Heart.vsh
│ │ │ ├── example_HorizontalColor.fsh
│ │ │ ├── example_Julia.fsh
│ │ │ ├── example_Julia.vsh
│ │ │ ├── example_Mandelbrot.fsh
│ │ │ ├── example_Mandelbrot.vsh
│ │ │ ├── example_Monjori.fsh
│ │ │ ├── example_Monjori.vsh
│ │ │ ├── example_Plasma.fsh
│ │ │ ├── example_Plasma.vsh
│ │ │ ├── example_Twist.fsh
│ │ │ └── example_Twist.vsh
│ │ ├── spine
│ │ │ ├── spineboy.atlas
│ │ │ ├── spineboy.json
│ │ │ └── spineboy.png
│ │ ├── TileMaps
│ │ │ ├── fixed-ortho-test2.png
│ │ │ ├── hexa-test.tmx
│ │ │ ├── hexa-tiles.png
│ │ │ ├── iso.png
│ │ │ ├── iso-test1.tmx
│ │ │ ├── iso-test2.png
│ │ │ ├── iso-test2.tmx
│ │ │ ├── iso-test2-uncompressed.tmx
│ │ │ ├── iso-test-bug787.tmx
│ │ │ ├── iso-test-movelayer.tmx
│ │ │ ├── iso-test-objectgroup.tmx
│ │ │ ├── iso-test.png
│ │ │ ├── iso-test.tmx
│ │ │ ├── iso-test-vertexz.tmx
│ │ │ ├── iso-test-zorder.tmx
│ │ │ ├── levelmap.tga
│ │ │ ├── orthogonal-test1.tmx
│ │ │ ├── orthogonal-test1.tsx
│ │ │ ├── orthogonal-test2.tmx
│ │ │ ├── orthogonal-test3.tmx
│ │ │ ├── orthogonal-test4.tmx
│ │ │ ├── orthogonal-test5.tmx
│ │ │ ├── orthogonal-test6.tmx
│ │ │ ├── orthogonal-test-movelayer.tmx
│ │ │ ├── orthogonal-test-vertexz.tmx
│ │ │ ├── orthogonal-test-zorder.tmx
│ │ │ ├── ortho-objects.tmx
│ │ │ ├── ortho-rotation-test.tmx
│ │ │ ├── ortho-test1_bw.png
│ │ │ ├── ortho-test1.png
│ │ │ ├── ortho-test2.png
│ │ │ ├── ortho-tile-property.tmx
│ │ │ ├── test-object-layer.tmx
│ │ │ ├── tiles.png
│ │ │ └── tmw_desert_spacing.png
│ │ └── zwoptex
│ │ ├── grossini-generic.plist
│ │ ├── grossini-generic.png
│ │ ├── grossini.plist
│ │ └── grossini.png
│ ├── Javascript
│ │ ├── CocosDragonJS
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── cocosdragonjs
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── cocosdragonjs
│ │ │ │ └── CocosDragonJS.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── CocosDragonJS.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Info.plist
│ │ │ │ ├── main.m
│ │ │ │ ├── Prefix.pch
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ └── proj.win32
│ │ │ ├── CocosDragonJS.vcxproj
│ │ │ ├── CocosDragonJS.vcxproj.filters
│ │ │ ├── CocosDragonJS.vcxproj.user
│ │ │ ├── Debug.win32
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── res
│ │ │ │ └── testjs.ico
│ │ │ ├── resource.h
│ │ │ └── testjs.rc
│ │ ├── CrystalCraze
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── crystalcraze
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── crystalcraze
│ │ │ │ └── CrystalCraze.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── CrystalCraze.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Info.plist
│ │ │ │ ├── main.m
│ │ │ │ ├── Prefix.pch
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ └── proj.win32
│ │ │ ├── CrystalCraze.vcxproj
│ │ │ ├── CrystalCraze.vcxproj.filters
│ │ │ ├── CrystalCraze.vcxproj.user
│ │ │ ├── Debug.win32
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── res
│ │ │ │ └── testjs.ico
│ │ │ ├── resource.h
│ │ │ └── testjs.rc
│ │ ├── MoonWarriors
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── moonwarriors
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── moonwarriors
│ │ │ │ └── MoonWarriors.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon@2x.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Icon.png
│ │ │ │ ├── Icon-Small@2x.png
│ │ │ │ ├── Icon-Small-50.png
│ │ │ │ ├── Icon-Small.png
│ │ │ │ ├── Info.plist
│ │ │ │ ├── main.m
│ │ │ │ ├── MoonWarriors.xcodeproj
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Prefix.pch
│ │ │ │ ├── RootViewController.h
│ │ │ │ └── RootViewController.mm
│ │ │ └── proj.win32
│ │ │ ├── Debug.win32
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── MoonWarriors.vcxproj
│ │ │ ├── MoonWarriors.vcxproj.filters
│ │ │ ├── MoonWarriors.vcxproj.user
│ │ │ ├── res
│ │ │ │ └── testjs.ico
│ │ │ ├── resource.h
│ │ │ └── testjs.rc
│ │ ├── Shared
│ │ │ ├── games
│ │ │ │ ├── CocosDragonJS
│ │ │ │ │ ├── CocosDragonJS.ccbproj
│ │ │ │ │ ├── Platform
│ │ │ │ │ │ ├── iOS
│ │ │ │ │ │ │ ├── Default@2x.png
│ │ │ │ │ │ │ ├── Default-568h@2x.png
│ │ │ │ │ │ │ ├── Default-Landscape~ipad.png
│ │ │ │ │ │ │ ├── Default.png
│ │ │ │ │ │ │ ├── Icon@2x.png
│ │ │ │ │ │ │ ├── Icon-72.png
│ │ │ │ │ │ │ ├── Icon.png
│ │ │ │ │ │ │ ├── Icon-Small@2x.png
│ │ │ │ │ │ │ ├── Icon-Small-50.png
│ │ │ │ │ │ │ ├── Icon-Small.png
│ │ │ │ │ │ │ ├── Info.plist
│ │ │ │ │ │ │ └── iTunesArtwork
│ │ │ │ │ │ └── OSX
│ │ │ │ │ │ ├── English.lproj
│ │ │ │ │ │ │ ├── CocosDragon-Mac.xib
│ │ │ │ │ │ │ └── InfoPlist.strings
│ │ │ │ │ │ ├── icon.icns
│ │ │ │ │ │ └── Info.plist
│ │ │ │ │ ├── Published files Android
│ │ │ │ │ │ ├── Bomb.ccbi
│ │ │ │ │ │ ├── Bomb.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.png
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipadhd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipad.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── Coin.ccbi
│ │ │ │ │ │ ├── Coin.js
│ │ │ │ │ │ ├── Coin.mp3
│ │ │ │ │ │ ├── Dragon.ccbi
│ │ │ │ │ │ ├── Dragon.js
│ │ │ │ │ │ ├── EndCoin.ccbi
│ │ │ │ │ │ ├── EndCoin.js
│ │ │ │ │ │ ├── Explo.mp3
│ │ │ │ │ │ ├── Explosion.ccbi
│ │ │ │ │ │ ├── Explosion.js
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── Level.ccbi
│ │ │ │ │ │ ├── Level.js
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── MainMenuScene.ccbi
│ │ │ │ │ │ ├── MainMenuScene.js
│ │ │ │ │ │ ├── Music.mp3
│ │ │ │ │ │ ├── resources-large
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ ├── resources-medium
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ ├── resources-small
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ └── resources-xlarge
│ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ ├── Published files HTML5
│ │ │ │ │ │ ├── Bomb.ccbi
│ │ │ │ │ │ ├── Bomb.js
│ │ │ │ │ │ ├── boot2-html5.js
│ │ │ │ │ │ ├── boot-html5.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.png
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipadhd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipad.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ ├── cocos2d-html5.min.js
│ │ │ │ │ │ ├── Coin.ccbi
│ │ │ │ │ │ ├── Coin.js
│ │ │ │ │ │ ├── Coin.mp3
│ │ │ │ │ │ ├── Dragon.ccbi
│ │ │ │ │ │ ├── Dragon.js
│ │ │ │ │ │ ├── EndCoin.ccbi
│ │ │ │ │ │ ├── EndCoin.js
│ │ │ │ │ │ ├── Explo.mp3
│ │ │ │ │ │ ├── Explosion.ccbi
│ │ │ │ │ │ ├── Explosion.js
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── Level.ccbi
│ │ │ │ │ │ ├── Level.js
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── MainMenuScene.ccbi
│ │ │ │ │ │ ├── MainMenuScene.js
│ │ │ │ │ │ ├── Music.mp3
│ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ ├── resources-html5.js
│ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ ├── Published files iOS
│ │ │ │ │ │ ├── Bomb.ccbi
│ │ │ │ │ │ ├── Bomb.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.png
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipadhd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipad.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── Coin.ccbi
│ │ │ │ │ │ ├── Coin.js
│ │ │ │ │ │ ├── Coin.mp3
│ │ │ │ │ │ ├── Dragon.ccbi
│ │ │ │ │ │ ├── Dragon.js
│ │ │ │ │ │ ├── EndCoin.ccbi
│ │ │ │ │ │ ├── EndCoin.js
│ │ │ │ │ │ ├── Explo.mp3
│ │ │ │ │ │ ├── Explosion.ccbi
│ │ │ │ │ │ ├── Explosion.js
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── Level.ccbi
│ │ │ │ │ │ ├── Level.js
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── MainMenuScene.ccbi
│ │ │ │ │ │ ├── MainMenuScene.js
│ │ │ │ │ │ ├── Music.mp3
│ │ │ │ │ │ ├── resources-ipad
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ ├── resources-ipadhd
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ ├── resources-iphone
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ └── resources-iphonehd
│ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ └── Source
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-hd.png
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipadhd.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages-ipad.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ ├── gameobjects.png
│ │ │ │ │ │ ├── resources-auto
│ │ │ │ │ │ │ ├── cloud.png
│ │ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ │ ├── play-button-down.png
│ │ │ │ │ │ │ ├── play-button.png
│ │ │ │ │ │ │ ├── settings-button-down.png
│ │ │ │ │ │ │ ├── settings-button.png
│ │ │ │ │ │ │ ├── settings-caption-musicoff.png
│ │ │ │ │ │ │ ├── settings-caption-music.png
│ │ │ │ │ │ │ ├── settings-caption-tilt.png
│ │ │ │ │ │ │ └── settings-caption-touch.png
│ │ │ │ │ │ ├── resources-ipad
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ │ ├── resources-ipadhd
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ │ ├── resources-iphonehd
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ │ ├── resources-large
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ │ ├── resources-small
│ │ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ │ └── resources-xlarge
│ │ │ │ │ │ ├── gameobjects.plist
│ │ │ │ │ │ └── gameobjects.png
│ │ │ │ │ ├── interface
│ │ │ │ │ │ ├── Bomb.ccb
│ │ │ │ │ │ ├── Coin.ccb
│ │ │ │ │ │ ├── Dragon.ccb
│ │ │ │ │ │ ├── EndCoin.ccb
│ │ │ │ │ │ ├── Explosion.ccb
│ │ │ │ │ │ ├── GameScene.ccb
│ │ │ │ │ │ ├── Level.ccb
│ │ │ │ │ │ └── MainMenuScene.ccb
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── Bomb.js
│ │ │ │ │ │ ├── Coin.js
│ │ │ │ │ │ ├── Dragon.js
│ │ │ │ │ │ ├── EndCoin.js
│ │ │ │ │ │ ├── Explosion.js
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── Level.js
│ │ │ │ │ │ └── MainMenuScene.js
│ │ │ │ │ └── sounds
│ │ │ │ │ ├── Coin.mp3
│ │ │ │ │ ├── Explo.mp3
│ │ │ │ │ └── Music.mp3
│ │ │ │ ├── CrystalCraze
│ │ │ │ │ ├── Attribution.rtf
│ │ │ │ │ ├── CrystalCraze.ccbproj
│ │ │ │ │ ├── Images
│ │ │ │ │ │ ├── Crystals.psd
│ │ │ │ │ │ ├── Score font.GlyphProject
│ │ │ │ │ │ ├── scorefont-hd.psd
│ │ │ │ │ │ ├── scorefont.psd
│ │ │ │ │ │ ├── Shimmer.psd
│ │ │ │ │ │ └── Splash.psd
│ │ │ │ │ ├── Platform
│ │ │ │ │ │ ├── iOS
│ │ │ │ │ │ │ ├── Default@2x.png
│ │ │ │ │ │ │ ├── Default-568h@2x.png
│ │ │ │ │ │ │ ├── Default-Landscape~ipad.png
│ │ │ │ │ │ │ ├── Default.png
│ │ │ │ │ │ │ ├── Icon@2x.png
│ │ │ │ │ │ │ ├── Icon-72.png
│ │ │ │ │ │ │ ├── Icon.png
│ │ │ │ │ │ │ ├── Icon-Small@2x.png
│ │ │ │ │ │ │ ├── Icon-Small-50.png
│ │ │ │ │ │ │ ├── Icon-Small.png
│ │ │ │ │ │ │ ├── Info.plist
│ │ │ │ │ │ │ └── iTunesArtwork
│ │ │ │ │ │ └── OSX
│ │ │ │ │ │ ├── English.lproj
│ │ │ │ │ │ │ ├── CrystalCraze-Mac.xib
│ │ │ │ │ │ │ └── InfoPlist.strings
│ │ │ │ │ │ ├── icon.icns
│ │ │ │ │ │ └── Info.plist
│ │ │ │ │ ├── Published-Android
│ │ │ │ │ │ ├── AboutScene.ccbi
│ │ │ │ │ │ ├── AboutScene.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ │ ├── gamescene
│ │ │ │ │ │ │ ├── resources-large
│ │ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ │ ├── shimmer.png
│ │ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ │ ├── resources-medium
│ │ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ │ ├── shimmer.png
│ │ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ │ ├── resources-small
│ │ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ │ ├── shimmer.png
│ │ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ │ └── resources-xlarge
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ ├── shimmer.png
│ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── mainscene
│ │ │ │ │ │ │ ├── resources-large
│ │ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ │ ├── resources-medium
│ │ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ │ ├── resources-small
│ │ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ │ └── resources-xlarge
│ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ ├── MainScene.ccbi
│ │ │ │ │ │ ├── MainScene.js
│ │ │ │ │ │ ├── particles
│ │ │ │ │ │ │ ├── bg-stars.plist
│ │ │ │ │ │ │ ├── falling-gem.plist
│ │ │ │ │ │ │ ├── power-play.plist
│ │ │ │ │ │ │ ├── taken-gem.plist
│ │ │ │ │ │ │ ├── taken-gem.png
│ │ │ │ │ │ │ ├── taken-hrow.plist
│ │ │ │ │ │ │ └── taken-vrow.plist
│ │ │ │ │ │ ├── resources-large
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr
│ │ │ │ │ │ ├── resources-medium
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr
│ │ │ │ │ │ ├── resources-small
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr
│ │ │ │ │ │ ├── resources-xlarge
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr
│ │ │ │ │ │ └── sounds
│ │ │ │ │ │ ├── click.ogg
│ │ │ │ │ │ ├── endgame.ogg
│ │ │ │ │ │ ├── gem-0.ogg
│ │ │ │ │ │ ├── gem-1.ogg
│ │ │ │ │ │ ├── gem-2.ogg
│ │ │ │ │ │ ├── gem-3.ogg
│ │ │ │ │ │ ├── gem-4.ogg
│ │ │ │ │ │ ├── loop.mp3
│ │ │ │ │ │ ├── miss.ogg
│ │ │ │ │ │ ├── powerup.ogg
│ │ │ │ │ │ ├── tap-0.ogg
│ │ │ │ │ │ ├── tap-1.ogg
│ │ │ │ │ │ ├── tap-2.ogg
│ │ │ │ │ │ ├── tap-3.ogg
│ │ │ │ │ │ └── timer.ogg
│ │ │ │ │ ├── Published-HTML5
│ │ │ │ │ │ ├── AboutScene.ccbi
│ │ │ │ │ │ ├── AboutScene.js
│ │ │ │ │ │ ├── boot2-html5.js
│ │ │ │ │ │ ├── boot-html5.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ └── ccbParticleStars.png
│ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ ├── cocos2d-html5.min.js
│ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ ├── crystals.png
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ │ ├── gamescene
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ ├── shimmer.png
│ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── mainscene
│ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ ├── MainScene.ccbi
│ │ │ │ │ │ ├── MainScene.js
│ │ │ │ │ │ ├── particles
│ │ │ │ │ │ │ ├── bg-stars.plist
│ │ │ │ │ │ │ ├── falling-gem.plist
│ │ │ │ │ │ │ ├── power-play.plist
│ │ │ │ │ │ │ ├── taken-gem.plist
│ │ │ │ │ │ │ ├── taken-gem.png
│ │ │ │ │ │ │ ├── taken-hrow.plist
│ │ │ │ │ │ │ └── taken-vrow.plist
│ │ │ │ │ │ ├── resources-html5.js
│ │ │ │ │ │ └── sounds
│ │ │ │ │ │ ├── click.mp3
│ │ │ │ │ │ ├── endgame.mp3
│ │ │ │ │ │ ├── gem-0.mp3
│ │ │ │ │ │ ├── gem-1.mp3
│ │ │ │ │ │ ├── gem-2.mp3
│ │ │ │ │ │ ├── gem-3.mp3
│ │ │ │ │ │ ├── gem-4.mp3
│ │ │ │ │ │ ├── loop.mp3
│ │ │ │ │ │ ├── miss.mp3
│ │ │ │ │ │ ├── powerup.mp3
│ │ │ │ │ │ ├── tap-0.mp3
│ │ │ │ │ │ ├── tap-1.mp3
│ │ │ │ │ │ ├── tap-2.mp3
│ │ │ │ │ │ ├── tap-3.mp3
│ │ │ │ │ │ └── timer.mp3
│ │ │ │ │ ├── Published-iOS
│ │ │ │ │ │ ├── AboutScene.ccbi
│ │ │ │ │ │ ├── AboutScene.js
│ │ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ │ ├── ccbParticleStars.png
│ │ │ │ │ │ │ └── resources-iphonehd
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ └── ccbDefaultImages.png
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ ├── resources-iphonehd
│ │ │ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ │ ├── gamescene
│ │ │ │ │ │ │ ├── resources-iphone
│ │ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ │ ├── shimmer.pvr.ccz
│ │ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ │ └── resources-iphonehd
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ ├── shimmer.plist
│ │ │ │ │ │ │ ├── shimmer.pvr.ccz
│ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ ├── GameScene.ccbi
│ │ │ │ │ │ ├── GameScene.js
│ │ │ │ │ │ ├── main.js
│ │ │ │ │ │ ├── mainscene
│ │ │ │ │ │ │ ├── resources-iphone
│ │ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ │ └── resources-iphonehd
│ │ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ │ └── logo.png
│ │ │ │ │ │ ├── MainScene.ccbi
│ │ │ │ │ │ ├── MainScene.js
│ │ │ │ │ │ ├── particles
│ │ │ │ │ │ │ ├── bg-stars.plist
│ │ │ │ │ │ │ ├── falling-gem.plist
│ │ │ │ │ │ │ ├── power-play.plist
│ │ │ │ │ │ │ ├── taken-gem.plist
│ │ │ │ │ │ │ ├── taken-gem.png
│ │ │ │ │ │ │ ├── taken-hrow.plist
│ │ │ │ │ │ │ └── taken-vrow.plist
│ │ │ │ │ │ ├── resources-iphone
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr.ccz
│ │ │ │ │ │ ├── resources-iphonehd
│ │ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ │ ├── clickme.png
│ │ │ │ │ │ │ ├── crystals.plist
│ │ │ │ │ │ │ └── crystals.pvr.ccz
│ │ │ │ │ │ └── sounds
│ │ │ │ │ │ ├── click.caf
│ │ │ │ │ │ ├── endgame.caf
│ │ │ │ │ │ ├── gem-0.caf
│ │ │ │ │ │ ├── gem-1.caf
│ │ │ │ │ │ ├── gem-2.caf
│ │ │ │ │ │ ├── gem-3.caf
│ │ │ │ │ │ ├── gem-4.caf
│ │ │ │ │ │ ├── loop.mp3
│ │ │ │ │ │ ├── miss.caf
│ │ │ │ │ │ ├── powerup.caf
│ │ │ │ │ │ ├── tap-0.caf
│ │ │ │ │ │ ├── tap-1.caf
│ │ │ │ │ │ ├── tap-2.caf
│ │ │ │ │ │ ├── tap-3.caf
│ │ │ │ │ │ └── timer.caf
│ │ │ │ │ └── Resources
│ │ │ │ │ ├── AboutScene.ccb
│ │ │ │ │ ├── AboutScene.js
│ │ │ │ │ ├── ccbResources
│ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ ├── ccbDefaultImages.png
│ │ │ │ │ │ ├── ccbParticleFire.png
│ │ │ │ │ │ ├── ccbParticleSmoke.png
│ │ │ │ │ │ ├── ccbParticleSnow.png
│ │ │ │ │ │ ├── ccbParticleStars.png
│ │ │ │ │ │ ├── resources-ipad
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ └── ccbDefaultImages.png
│ │ │ │ │ │ ├── resources-ipadhd
│ │ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ │ └── ccbDefaultImages.png
│ │ │ │ │ │ └── resources-iphonehd
│ │ │ │ │ │ ├── ccbDefaultImages.plist
│ │ │ │ │ │ └── ccbDefaultImages.png
│ │ │ │ │ ├── crystals
│ │ │ │ │ │ └── resources-auto
│ │ │ │ │ │ ├── 0.png
│ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── bomb-explo-inner.png
│ │ │ │ │ │ ├── bomb-explo.png
│ │ │ │ │ │ ├── bomb-hi.png
│ │ │ │ │ │ ├── bomb-light.png
│ │ │ │ │ │ ├── bomb.png
│ │ │ │ │ │ ├── hint.png
│ │ │ │ │ │ └── sparkle.png
│ │ │ │ │ ├── fonts
│ │ │ │ │ │ ├── resources-iphonehd
│ │ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ │ ├── scorefont.fnt
│ │ │ │ │ │ └── scorefont.png
│ │ │ │ │ ├── gamescene
│ │ │ │ │ │ ├── resources-auto
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── btn-pause-down.png
│ │ │ │ │ │ │ ├── btn-pause.png
│ │ │ │ │ │ │ ├── go.png
│ │ │ │ │ │ │ ├── header.png
│ │ │ │ │ │ │ ├── iPhone5-padding.png
│ │ │ │ │ │ │ └── timer.png
│ │ │ │ │ │ └── shimmer
│ │ │ │ │ │ └── resources-auto
│ │ │ │ │ │ ├── bg-shimmer-0.png
│ │ │ │ │ │ └── bg-shimmer-1.png
│ │ │ │ │ ├── GameScene.ccb
│ │ │ │ │ ├── GameScene.js
│ │ │ │ │ ├── mainscene
│ │ │ │ │ │ └── resources-auto
│ │ │ │ │ │ ├── about-bg.png
│ │ │ │ │ │ ├── about-fade.png
│ │ │ │ │ │ ├── btn-about-down.png
│ │ │ │ │ │ ├── btn-about.png
│ │ │ │ │ │ ├── btn-done-down.png
│ │ │ │ │ │ ├── btn-done.png
│ │ │ │ │ │ ├── btn-play-down.png
│ │ │ │ │ │ ├── btn-play.png
│ │ │ │ │ │ └── logo.png
│ │ │ │ │ ├── MainScene.ccb
│ │ │ │ │ ├── MainScene.js
│ │ │ │ │ ├── particles
│ │ │ │ │ │ ├── bg-stars.plist
│ │ │ │ │ │ ├── falling-gem.plist
│ │ │ │ │ │ ├── power-play.plist
│ │ │ │ │ │ ├── taken-gem.plist
│ │ │ │ │ │ ├── taken-gem.png
│ │ │ │ │ │ ├── taken-hrow.plist
│ │ │ │ │ │ └── taken-vrow.plist
│ │ │ │ │ ├── resources-auto
│ │ │ │ │ │ ├── clickme-down.png
│ │ │ │ │ │ └── clickme.png
│ │ │ │ │ └── sounds
│ │ │ │ │ ├── click.wav
│ │ │ │ │ ├── endgame.wav
│ │ │ │ │ ├── gem-0.wav
│ │ │ │ │ ├── gem-1.wav
│ │ │ │ │ ├── gem-2.wav
│ │ │ │ │ ├── gem-3.wav
│ │ │ │ │ ├── gem-4.wav
│ │ │ │ │ ├── loop.mp3
│ │ │ │ │ ├── miss.wav
│ │ │ │ │ ├── powerup.wav
│ │ │ │ │ ├── tap-0.wav
│ │ │ │ │ ├── tap-1.wav
│ │ │ │ │ ├── tap-2.wav
│ │ │ │ │ ├── tap-3.wav
│ │ │ │ │ └── timer.wav
│ │ │ │ ├── FruitAttack
│ │ │ │ │ ├── audio
│ │ │ │ │ │ ├── effect_bombPattern.mp3
│ │ │ │ │ │ ├── effect_bombPattern.ogg
│ │ │ │ │ │ ├── effect_buttonClick.mp3
│ │ │ │ │ │ ├── effect_buttonClick.ogg
│ │ │ │ │ │ ├── effect_clearPattern.mp3
│ │ │ │ │ │ ├── effect_clearPattern.ogg
│ │ │ │ │ │ ├── effect_game_fail.mp3
│ │ │ │ │ │ ├── effect_game_fail.ogg
│ │ │ │ │ │ ├── effect_game_pass.mp3
│ │ │ │ │ │ ├── effect_game_pass.ogg
│ │ │ │ │ │ ├── effect_ice.mp3
│ │ │ │ │ │ ├── effect_ice.ogg
│ │ │ │ │ │ ├── effect_noclear.mp3
│ │ │ │ │ │ ├── effect_noclear.ogg
│ │ │ │ │ │ ├── effect_timewarning.mp3
│ │ │ │ │ │ ├── effect_timewarning.ogg
│ │ │ │ │ │ ├── effect_unswap.mp3
│ │ │ │ │ │ ├── effect_unswap.ogg
│ │ │ │ │ │ ├── musicByFoxSynergy.mp3
│ │ │ │ │ │ └── musicByFoxSynergy.ogg
│ │ │ │ │ ├── cocos2d.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── main.js
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── background.jpg
│ │ │ │ │ │ ├── baseResource.plist
│ │ │ │ │ │ ├── baseResource.png
│ │ │ │ │ │ ├── btn
│ │ │ │ │ │ │ ├── btnStartGameDown.png
│ │ │ │ │ │ │ └── btnStartGameNor.png
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── PatternBg.png
│ │ │ │ │ │ ├── ProgressBarBack.png
│ │ │ │ │ │ └── ProgressBarFront.png
│ │ │ │ │ ├── resultLayer
│ │ │ │ │ │ ├── btnResultRestartDown.png
│ │ │ │ │ │ ├── btnResultRestart.png
│ │ │ │ │ │ └── star.png
│ │ │ │ │ └── src
│ │ │ │ │ ├── CCNotificationCenter.js
│ │ │ │ │ ├── GameData.js
│ │ │ │ │ ├── Pattern.js
│ │ │ │ │ ├── PatternMatrix.js
│ │ │ │ │ ├── ResultLayer.js
│ │ │ │ │ └── WelcomeLayer.js
│ │ │ │ ├── MoonWarriors
│ │ │ │ │ ├── build.xml
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── main.js
│ │ │ │ │ ├── MoonWarriors-html5.js
│ │ │ │ │ ├── MoonWarriors-jsb.js
│ │ │ │ │ ├── Platform
│ │ │ │ │ │ ├── iOS
│ │ │ │ │ │ │ └── Info.plist
│ │ │ │ │ │ └── OSX
│ │ │ │ │ │ ├── English.lproj
│ │ │ │ │ │ │ ├── InfoPlist.strings
│ │ │ │ │ │ │ └── MoonWarriors.xib
│ │ │ │ │ │ └── Info.plist
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── arial-14.fnt
│ │ │ │ │ │ ├── arial-14.GlyphProject
│ │ │ │ │ │ ├── arial-14.png
│ │ │ │ │ │ ├── b01.plist
│ │ │ │ │ │ ├── b01.png
│ │ │ │ │ │ ├── cocos2d-html5.png
│ │ │ │ │ │ ├── explode.plist
│ │ │ │ │ │ ├── explosion.plist
│ │ │ │ │ │ ├── explosion.png
│ │ │ │ │ │ ├── flare.jpg
│ │ │ │ │ │ ├── gameOver.png
│ │ │ │ │ │ ├── level01.tmx
│ │ │ │ │ │ ├── loading.png
│ │ │ │ │ │ ├── logo.png
│ │ │ │ │ │ ├── menu.png
│ │ │ │ │ │ ├── menuTitle.png
│ │ │ │ │ │ ├── Music
│ │ │ │ │ │ │ ├── bgMusic.mp3
│ │ │ │ │ │ │ ├── bgMusic.ogg
│ │ │ │ │ │ │ ├── buttonEffet.mp3
│ │ │ │ │ │ │ ├── buttonEffet.ogg
│ │ │ │ │ │ │ ├── explodeEffect.mp3
│ │ │ │ │ │ │ ├── explodeEffect.ogg
│ │ │ │ │ │ │ ├── fireEffect.mp3
│ │ │ │ │ │ │ ├── fireEffect.ogg
│ │ │ │ │ │ │ ├── mainMainMusic.mp3
│ │ │ │ │ │ │ ├── mainMainMusic.ogg
│ │ │ │ │ │ │ ├── shipDestroyEffect.mp3
│ │ │ │ │ │ │ └── shipDestroyEffect.ogg
│ │ │ │ │ │ ├── textureOpaquePack.plist
│ │ │ │ │ │ ├── textureOpaquePack.png
│ │ │ │ │ │ ├── textureTransparentPack.plist
│ │ │ │ │ │ └── textureTransparentPack.png
│ │ │ │ │ ├── simulator
│ │ │ │ │ │ ├── imgs
│ │ │ │ │ │ │ ├── 1024x768.png
│ │ │ │ │ │ │ ├── 1136x640.png
│ │ │ │ │ │ │ ├── 1280x720.png
│ │ │ │ │ │ │ ├── 480x320.png
│ │ │ │ │ │ │ ├── 800x480.png
│ │ │ │ │ │ │ ├── 854x480.png
│ │ │ │ │ │ │ ├── 960x540.png
│ │ │ │ │ │ │ ├── 960x640.png
│ │ │ │ │ │ │ ├── device.png
│ │ │ │ │ │ │ ├── play.png
│ │ │ │ │ │ │ └── rotate.png
│ │ │ │ │ │ └── js
│ │ │ │ │ │ └── miniFramework.js
│ │ │ │ │ ├── simulator.html
│ │ │ │ │ └── src
│ │ │ │ │ ├── AboutLayer.js
│ │ │ │ │ ├── Background.js
│ │ │ │ │ ├── Bullet.js
│ │ │ │ │ ├── config
│ │ │ │ │ │ ├── EnemyType.js
│ │ │ │ │ │ ├── GameConfig.js
│ │ │ │ │ │ └── Level.js
│ │ │ │ │ ├── Effect.js
│ │ │ │ │ ├── Enemy.js
│ │ │ │ │ ├── Explosion.js
│ │ │ │ │ ├── GameController.js
│ │ │ │ │ ├── GameControlMenu.js
│ │ │ │ │ ├── GameLayer.js
│ │ │ │ │ ├── GameOver.js
│ │ │ │ │ ├── HitEffect.js
│ │ │ │ │ ├── LevelManager.js
│ │ │ │ │ ├── Resource.js
│ │ │ │ │ ├── SettingsLayer.js
│ │ │ │ │ ├── Ship.js
│ │ │ │ │ ├── SparkEffect.js
│ │ │ │ │ └── SysMenu.js
│ │ │ │ └── WatermelonWithMe
│ │ │ │ ├── boot-html5.js
│ │ │ │ ├── boot-jsb.js
│ │ │ │ ├── index.html
│ │ │ │ ├── levels.js
│ │ │ │ ├── main.js
│ │ │ │ ├── Platform
│ │ │ │ │ ├── iOS
│ │ │ │ │ │ └── Info.plist
│ │ │ │ │ └── OSX
│ │ │ │ │ ├── English.lproj
│ │ │ │ │ │ ├── InfoPlist.strings
│ │ │ │ │ │ └── WatermelonWithMe.xib
│ │ │ │ │ └── Info.plist
│ │ │ │ ├── res
│ │ │ │ │ ├── Abadi.GlyphProject
│ │ │ │ │ ├── car_smoke.plist
│ │ │ │ │ ├── CCB
│ │ │ │ │ │ ├── Abadi40.fnt
│ │ │ │ │ │ ├── Abadi40-hd.fnt
│ │ │ │ │ │ ├── Abadi40-hd.png
│ │ │ │ │ │ ├── Abadi40-ipad.fnt
│ │ │ │ │ │ ├── Abadi40-ipad.png
│ │ │ │ │ │ ├── Abadi40.png
│ │ │ │ │ │ ├── About.ccb
│ │ │ │ │ │ ├── About.ccbi
│ │ │ │ │ │ ├── coins-hd.plist
│ │ │ │ │ │ ├── coins-hd.png
│ │ │ │ │ │ ├── coins-hd.pvr.ccz
│ │ │ │ │ │ ├── coins-html5.plist
│ │ │ │ │ │ ├── coins-html5.png
│ │ │ │ │ │ ├── coins.plist
│ │ │ │ │ │ ├── coins.png
│ │ │ │ │ │ ├── coins.pvr.ccz1
│ │ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ │ ├── Gas40.fnt
│ │ │ │ │ │ ├── Gas40-hd.fnt
│ │ │ │ │ │ ├── Gas40-hd.png
│ │ │ │ │ │ ├── Gas40-ipad.fnt
│ │ │ │ │ │ ├── Gas40-ipad.png
│ │ │ │ │ │ ├── Gas40.png
│ │ │ │ │ │ ├── HUD.ccb
│ │ │ │ │ │ ├── HUD.ccbi
│ │ │ │ │ │ ├── konqa32.fnt
│ │ │ │ │ │ ├── konqa32-hd.fnt
│ │ │ │ │ │ ├── konqa32-hd.png
│ │ │ │ │ │ ├── konqa32-ipad.fnt
│ │ │ │ │ │ ├── konqa32-ipad.png
│ │ │ │ │ │ ├── konqa32.png
│ │ │ │ │ │ ├── labels-hd.plist
│ │ │ │ │ │ ├── labels-hd.png
│ │ │ │ │ │ ├── labels-ipad.plist
│ │ │ │ │ │ ├── labels.plist
│ │ │ │ │ │ ├── labels.png
│ │ │ │ │ │ ├── MainMenu.ccb
│ │ │ │ │ │ ├── MainMenu.ccbi
│ │ │ │ │ │ ├── stars2.png
│ │ │ │ │ │ ├── Watermelon.ccbproj
│ │ │ │ │ │ ├── Watermelon.ccbresourcelog
│ │ │ │ │ │ └── watermelon.png
│ │ │ │ │ ├── coins_animation.plist
│ │ │ │ │ ├── Futura.GlyphProject
│ │ │ │ │ ├── GameOver.wav
│ │ │ │ │ ├── Gas.GlyphProject
│ │ │ │ │ ├── Konqa.GlyphProject
│ │ │ │ │ ├── LevelComplete.wav
│ │ │ │ │ ├── Parallax.pvr.gz
│ │ │ │ │ ├── pickup_coin.wav
│ │ │ │ │ ├── pickup_star.wav
│ │ │ │ │ ├── single_files
│ │ │ │ │ │ ├── button_about_normal.png
│ │ │ │ │ │ ├── button_about_selected.png
│ │ │ │ │ │ ├── button_options_normal.png
│ │ │ │ │ │ ├── button_options_selected.png
│ │ │ │ │ │ ├── button_play_normal.png
│ │ │ │ │ │ ├── button_play_selected.png
│ │ │ │ │ │ ├── button_scores_normal.png
│ │ │ │ │ │ ├── button_scores_selected.png
│ │ │ │ │ │ ├── button.xcf
│ │ │ │ │ │ ├── Chassis.png
│ │ │ │ │ │ ├── coin01.png
│ │ │ │ │ │ ├── coin02.png
│ │ │ │ │ │ ├── coin03.png
│ │ │ │ │ │ ├── coin04.png
│ │ │ │ │ │ ├── coin05.png
│ │ │ │ │ │ ├── coin06.png
│ │ │ │ │ │ ├── coin07.png
│ │ │ │ │ │ ├── coin08.png
│ │ │ │ │ │ ├── coin09.png
│ │ │ │ │ │ ├── coin10.png
│ │ │ │ │ │ ├── coin11.png
│ │ │ │ │ │ ├── coin12.png
│ │ │ │ │ │ ├── coin13.png
│ │ │ │ │ │ ├── coin14.png
│ │ │ │ │ │ ├── coin15.png
│ │ │ │ │ │ ├── coin16.png
│ │ │ │ │ │ ├── coin17.png
│ │ │ │ │ │ ├── coin18.png
│ │ │ │ │ │ ├── coin19.png
│ │ │ │ │ │ ├── coin20.png
│ │ │ │ │ │ ├── coins.tps
│ │ │ │ │ │ ├── farmers-market.png
│ │ │ │ │ │ ├── labels.tps
│ │ │ │ │ │ ├── Parallax.png
│ │ │ │ │ │ ├── play.png
│ │ │ │ │ │ ├── watermelon.png
│ │ │ │ │ │ └── Wheel.png
│ │ │ │ │ └── sound
│ │ │ │ │ ├── game-music.mp3
│ │ │ │ │ ├── game-music.ogg
│ │ │ │ │ ├── GameOver.mp3
│ │ │ │ │ ├── GameOver.ogg
│ │ │ │ │ ├── LevelComplete.mp3
│ │ │ │ │ ├── LevelComplete.ogg
│ │ │ │ │ ├── pickup_coin.mp3
│ │ │ │ │ ├── pickup_coin.ogg
│ │ │ │ │ ├── pickup_star.mp3
│ │ │ │ │ └── pickup_star.ogg
│ │ │ │ ├── resources-html5.js
│ │ │ │ ├── resources-jsb.js
│ │ │ │ └── watermelon_with_me.js
│ │ │ ├── README.md
│ │ │ └── tests
│ │ │ ├── ActionManagerTest
│ │ │ │ └── ActionManagerTest.js
│ │ │ ├── ActionsTest
│ │ │ │ └── ActionsTest.js
│ │ │ ├── AdvanceCompiler
│ │ │ │ ├── CocosBuilderCompiler.js
│ │ │ │ └── test_custom_externs.js
│ │ │ ├── BaseTestLayer
│ │ │ │ └── BaseTestLayer.js
│ │ │ ├── Box2dTest
│ │ │ │ └── Box2dTest.js
│ │ │ ├── build.xml
│ │ │ ├── ChipmunkTest
│ │ │ │ └── ChipmunkTest.js
│ │ │ ├── ClickAndMoveTest
│ │ │ │ └── ClickAndMoveTest.js
│ │ │ ├── ClippingNodeTest
│ │ │ │ └── ClippingNodeTest.js
│ │ │ ├── CocosDenshionTest
│ │ │ │ └── CocosDenshionTest.js
│ │ │ ├── CocosNodeTest
│ │ │ │ └── CocosNodeTest.js
│ │ │ ├── CocoStudioTest
│ │ │ │ ├── ArmatureTest
│ │ │ │ │ └── ArmatureTest.js
│ │ │ │ ├── CocoStudioTest.js
│ │ │ │ ├── ComponentsTest
│ │ │ │ │ ├── ComponentsTestScene.js
│ │ │ │ │ ├── EnemyController.js
│ │ │ │ │ ├── GameOverScene.js
│ │ │ │ │ ├── PlayerController.js
│ │ │ │ │ ├── ProjectileController.js
│ │ │ │ │ └── SceneController.js
│ │ │ │ ├── GUITest
│ │ │ │ │ ├── UIButtonTest
│ │ │ │ │ │ └── UIButtonTest.js
│ │ │ │ │ ├── UICheckBoxTest
│ │ │ │ │ │ └── UICheckBoxTest.js
│ │ │ │ │ ├── UIImageViewTest
│ │ │ │ │ │ └── UIImageViewTest.js
│ │ │ │ │ ├── UILabelAtlasTest
│ │ │ │ │ │ └── UILabelAtlasTest.js
│ │ │ │ │ ├── UILabelBMFontTest
│ │ │ │ │ │ └── UILabelBMFontTest.js
│ │ │ │ │ ├── UILabelTest
│ │ │ │ │ │ └── UILabelTest.js
│ │ │ │ │ ├── UILayoutTest
│ │ │ │ │ │ └── UILayoutTest.js
│ │ │ │ │ ├── UIListViewTest
│ │ │ │ │ │ └── UIListViewTest.js
│ │ │ │ │ ├── UILoadingBarTest
│ │ │ │ │ │ └── UILoadingBarTest.js
│ │ │ │ │ ├── UINodeContainerTest
│ │ │ │ │ │ └── UINodeContainerTest.js
│ │ │ │ │ ├── UIPageViewTest
│ │ │ │ │ │ └── UIPageViewTest.js
│ │ │ │ │ ├── UIScene.js
│ │ │ │ │ ├── UISceneManager.js
│ │ │ │ │ ├── UIScrollViewTest
│ │ │ │ │ │ └── UIScrollViewTest.js
│ │ │ │ │ ├── UISliderTest
│ │ │ │ │ │ └── UISliderTest.js
│ │ │ │ │ └── UITextFieldTest
│ │ │ │ │ └── UITextFieldTest.js
│ │ │ │ └── SceneTest
│ │ │ │ ├── SceneEditorTest.js
│ │ │ │ └── TriggerCode
│ │ │ │ ├── Acts.js
│ │ │ │ ├── Cons.js
│ │ │ │ └── EventDef.js
│ │ │ ├── CurrentLanguageTest
│ │ │ │ └── CurrentLanguageTest.js
│ │ │ ├── DrawPrimitivesTest
│ │ │ │ └── DrawPrimitivesTest.js
│ │ │ ├── EaseActionsTest
│ │ │ │ └── EaseActionsTest.js
│ │ │ ├── EffectsAdvancedTest
│ │ │ │ └── EffectsAdvancedTest.js
│ │ │ ├── EffectsTest
│ │ │ │ └── EffectsTest.js
│ │ │ ├── EventTest
│ │ │ │ └── EventTest.js
│ │ │ ├── ExtensionsTest
│ │ │ │ ├── CocosBuilderTest
│ │ │ │ │ ├── AnimationsTest
│ │ │ │ │ │ └── AnimationsTestLayer.js
│ │ │ │ │ ├── ButtonTest
│ │ │ │ │ │ └── ButtonTestLayer.js
│ │ │ │ │ ├── CocosBuilderTest.js
│ │ │ │ │ ├── HelloCocosBuilder
│ │ │ │ │ │ └── HelloCocosBuilderLayer.js
│ │ │ │ │ ├── LabelTest
│ │ │ │ │ │ └── LabelTestLayer.js
│ │ │ │ │ ├── MenuTest
│ │ │ │ │ │ └── MenuTestLayer.js
│ │ │ │ │ ├── ParticleSystemTest
│ │ │ │ │ │ └── ParticleSystemTestLayer.js
│ │ │ │ │ ├── ScrollViewTest
│ │ │ │ │ │ └── ScrollViewTestLayer.js
│ │ │ │ │ ├── SpriteTest
│ │ │ │ │ │ └── SpriteTestLayer.js
│ │ │ │ │ ├── TestHeader
│ │ │ │ │ │ └── TestHeaderLayer.js
│ │ │ │ │ └── TimelineCallbackTest
│ │ │ │ │ └── TimelineCallbackTestLayer.js
│ │ │ │ ├── ControlExtensionTest
│ │ │ │ │ ├── CCControlButtonTest
│ │ │ │ │ │ └── CCControlButtonTest.js
│ │ │ │ │ ├── CCControlColourPickerTest
│ │ │ │ │ │ └── CCControlColourPickerTest.js
│ │ │ │ │ ├── CCControlPotentiometerTest
│ │ │ │ │ │ └── CCControlPotentiometerTest.js
│ │ │ │ │ ├── CCControlScene.js
│ │ │ │ │ ├── CCControlSceneManager.js
│ │ │ │ │ ├── CCControlSliderTest
│ │ │ │ │ │ └── CCControlSliderTest.js
│ │ │ │ │ ├── CCControlStepperTest
│ │ │ │ │ │ └── CCControlStepperTest.js
│ │ │ │ │ └── CCControlSwitchTest
│ │ │ │ │ └── CCControlSwitchTest.js
│ │ │ │ ├── EditBoxTest
│ │ │ │ │ └── EditBoxTest.js
│ │ │ │ ├── ExtensionsTest.js
│ │ │ │ ├── NetworkTest
│ │ │ │ │ └── WebSocketTest.js
│ │ │ │ ├── S9SpriteTest
│ │ │ │ │ └── S9SpriteTest.js
│ │ │ │ └── TableViewTest
│ │ │ │ └── TableViewTestScene.js
│ │ │ ├── FileUtils
│ │ │ │ ├── FileUtilsTest.js
│ │ │ │ ├── lookup-desktop.plist
│ │ │ │ ├── lookup-html5.plist
│ │ │ │ └── lookup-mobile.plist
│ │ │ ├── FontTest
│ │ │ │ └── FontTest.js
│ │ │ ├── index.html
│ │ │ ├── IntervalTest
│ │ │ │ └── IntervalTest.js
│ │ │ ├── LabelTest
│ │ │ │ └── LabelTest.js
│ │ │ ├── LayerTest
│ │ │ │ └── LayerTest.js
│ │ │ ├── main.js
│ │ │ ├── MenuTest
│ │ │ │ └── MenuTest.js
│ │ │ ├── mobilePage.html
│ │ │ ├── MotionStreakTest
│ │ │ │ └── MotionStreakTest.js
│ │ │ ├── OpenGLTest
│ │ │ │ └── OpenGLTest.js
│ │ │ ├── ParallaxTest
│ │ │ │ └── ParallaxTest.js
│ │ │ ├── ParticleTest
│ │ │ │ └── ParticleTest.js
│ │ │ ├── PerformanceTest
│ │ │ │ ├── PerformanceAnimationTest.js
│ │ │ │ ├── PerformanceNodeChildrenTest.js
│ │ │ │ ├── PerformanceParticleTest.js
│ │ │ │ ├── PerformanceSpriteTest2.js
│ │ │ │ ├── PerformanceSpriteTest.js
│ │ │ │ ├── PerformanceTest.js
│ │ │ │ ├── PerformanceTextureTest.js
│ │ │ │ ├── PerformanceTouchesTest.js
│ │ │ │ ├── PerformanceVirtualMachineTest.js
│ │ │ │ └── seedrandom.js
│ │ │ ├── Presentation
│ │ │ │ └── Presentation.js
│ │ │ ├── ProgressActionsTest
│ │ │ │ └── ProgressActionsTest.js
│ │ │ ├── RenderTextureTest
│ │ │ │ └── RenderTextureTest.js
│ │ │ ├── res
│ │ │ │ ├── animations
│ │ │ │ │ ├── animations-2.plist
│ │ │ │ │ ├── animations.plist
│ │ │ │ │ ├── crystals.plist
│ │ │ │ │ ├── crystals.png
│ │ │ │ │ ├── dragon_animation-hd.png
│ │ │ │ │ ├── dragon_animation.png
│ │ │ │ │ ├── ghosts.plist
│ │ │ │ │ ├── ghosts.png
│ │ │ │ │ ├── grossini-aliases.plist
│ │ │ │ │ ├── grossini-aliases.png
│ │ │ │ │ ├── grossini_blue.plist
│ │ │ │ │ ├── grossini_blue.png
│ │ │ │ │ ├── grossini_family.plist
│ │ │ │ │ ├── grossini_family.png
│ │ │ │ │ ├── grossini_gray.plist
│ │ │ │ │ ├── grossini_gray.png
│ │ │ │ │ ├── grossini.plist
│ │ │ │ │ ├── grossini.plist.xml
│ │ │ │ │ ├── grossini.png
│ │ │ │ │ ├── grossini.zss
│ │ │ │ │ ├── grossini.ztp
│ │ │ │ │ ├── tcc_issue_1.plist
│ │ │ │ │ ├── tcc_issue_1.png
│ │ │ │ │ ├── tcc_issue_2.plist
│ │ │ │ │ └── tcc_issue_2.png
│ │ │ │ ├── armatures
│ │ │ │ │ ├── bear0.plist
│ │ │ │ │ ├── bear0.png
│ │ │ │ │ ├── bear.ExportJson
│ │ │ │ │ ├── bg.jpg
│ │ │ │ │ ├── blood.plist
│ │ │ │ │ ├── Cowboy0.plist
│ │ │ │ │ ├── Cowboy0.png
│ │ │ │ │ ├── Cowboy.ExportJson
│ │ │ │ │ ├── Cowboy.plist
│ │ │ │ │ ├── Cowboy.png
│ │ │ │ │ ├── cyborg.plist
│ │ │ │ │ ├── cyborg.png
│ │ │ │ │ ├── cyborg.xml
│ │ │ │ │ ├── Dragon.plist
│ │ │ │ │ ├── Dragon.png
│ │ │ │ │ ├── Dragon.xml
│ │ │ │ │ ├── guide_beating.plist
│ │ │ │ │ ├── guide_beating.png
│ │ │ │ │ ├── guide_beating.xml
│ │ │ │ │ ├── hero0.plist
│ │ │ │ │ ├── hero0.png
│ │ │ │ │ ├── HeroAnimation0.plist
│ │ │ │ │ ├── HeroAnimation0.png
│ │ │ │ │ ├── HeroAnimation.ExportJson
│ │ │ │ │ ├── hero.ExportJson
│ │ │ │ │ ├── heropk.plist
│ │ │ │ │ ├── heropk.png
│ │ │ │ │ ├── heropk.xml
│ │ │ │ │ ├── horse0.plist
│ │ │ │ │ ├── horse0.png
│ │ │ │ │ ├── horse.ExportJson
│ │ │ │ │ ├── knight.plist
│ │ │ │ │ ├── knight.png
│ │ │ │ │ ├── knight.xml
│ │ │ │ │ ├── logo.plist
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── logo.xml
│ │ │ │ │ ├── robot.plist
│ │ │ │ │ ├── robot.png
│ │ │ │ │ ├── robot.xml
│ │ │ │ │ ├── TestBone0.plist
│ │ │ │ │ ├── TestBone0.png
│ │ │ │ │ ├── TestBone.json
│ │ │ │ │ ├── testEasing0.plist
│ │ │ │ │ ├── testEasing0.png
│ │ │ │ │ ├── testEasing.ExportJson
│ │ │ │ │ ├── weapon.plist
│ │ │ │ │ ├── weapon.png
│ │ │ │ │ └── weapon.xml
│ │ │ │ ├── ccb
│ │ │ │ │ ├── animated-grossini.plist
│ │ │ │ │ ├── animated-grossini.png
│ │ │ │ │ ├── btn-a-0.png
│ │ │ │ │ ├── btn-a-1.png
│ │ │ │ │ ├── btn-a-2.png
│ │ │ │ │ ├── btn-b-0.png
│ │ │ │ │ ├── btn-b-1.png
│ │ │ │ │ ├── btn-b-2.png
│ │ │ │ │ ├── btn-back-0.png
│ │ │ │ │ ├── btn-back-1.png
│ │ │ │ │ ├── btn-test-0.png
│ │ │ │ │ ├── btn-test-1.png
│ │ │ │ │ ├── btn-test-2.png
│ │ │ │ │ ├── burst.png
│ │ │ │ │ ├── ccb
│ │ │ │ │ │ ├── TestAnimations.ccb
│ │ │ │ │ │ ├── TestAnimations.ccbi
│ │ │ │ │ │ ├── TestAnimationsSub.ccb
│ │ │ │ │ │ ├── TestAnimationsSub.ccbi
│ │ │ │ │ │ ├── TestButtons.ccb
│ │ │ │ │ │ ├── TestButtons.ccbi
│ │ │ │ │ │ ├── TestHeader.ccb
│ │ │ │ │ │ ├── TestHeader.ccbi
│ │ │ │ │ │ ├── TestLabels.ccb
│ │ │ │ │ │ ├── TestLabels.ccbi
│ │ │ │ │ │ ├── TestMenus.ccb
│ │ │ │ │ │ ├── TestMenus.ccbi
│ │ │ │ │ │ ├── TestParticleSystems.ccb
│ │ │ │ │ │ ├── TestParticleSystems.ccbi
│ │ │ │ │ │ ├── TestScrollViews.ccb
│ │ │ │ │ │ ├── TestScrollViews.ccbi
│ │ │ │ │ │ ├── TestScrollViewsContentA.ccb
│ │ │ │ │ │ ├── TestScrollViewsContentA.ccbi
│ │ │ │ │ │ ├── TestSprites.ccb
│ │ │ │ │ │ ├── TestSprites.ccbi
│ │ │ │ │ │ ├── TestTimelineCallback.ccb
│ │ │ │ │ │ └── TestTimelineCallback.ccbi
│ │ │ │ │ ├── ccbParticleStars.png
│ │ │ │ │ ├── comic andy.ttf
│ │ │ │ │ ├── fileLookup.plist
│ │ │ │ │ ├── flower.jpg
│ │ │ │ │ ├── gem-0.wav
│ │ │ │ │ ├── gem-1.wav
│ │ │ │ │ ├── grossini-generic.plist
│ │ │ │ │ ├── grossini-generic.png
│ │ │ │ │ ├── HelloCocosBuilder.ccb
│ │ │ │ │ ├── HelloCocosBuilder.ccbi
│ │ │ │ │ ├── jungle-left.png
│ │ │ │ │ ├── jungle.png
│ │ │ │ │ ├── jungle-right.png
│ │ │ │ │ ├── logo-icon.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── markerfelt24shadow.fnt
│ │ │ │ │ ├── markerfelt24shadow.png
│ │ │ │ │ ├── particle-fire.png
│ │ │ │ │ ├── particle-smoke.png
│ │ │ │ │ ├── particle-snow.png
│ │ │ │ │ ├── particle-stars.png
│ │ │ │ │ └── scale-9-demo.png
│ │ │ │ ├── CloseNormal.png
│ │ │ │ ├── CocosBuilderExample.ccbproj
│ │ │ │ ├── cocosgui
│ │ │ │ │ ├── animationbuttonnormal.png
│ │ │ │ │ ├── animationbuttonpressed.png
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── b11.png
│ │ │ │ │ ├── backtotopnormal.png
│ │ │ │ │ ├── backtotoppressed.png
│ │ │ │ │ ├── bitmapFontTest2.fnt
│ │ │ │ │ ├── bitmapFontTest2.png
│ │ │ │ │ ├── buttonHighlighted.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── ccicon.png
│ │ │ │ │ ├── check_box_active_disable.png
│ │ │ │ │ ├── check_box_active.png
│ │ │ │ │ ├── check_box_active_press.png
│ │ │ │ │ ├── check_box_normal_disable.png
│ │ │ │ │ ├── check_box_normal.png
│ │ │ │ │ ├── check_box_normal_press.png
│ │ │ │ │ ├── CloseNormal.png
│ │ │ │ │ ├── CloseSelected.png
│ │ │ │ │ ├── CocoGUI_PageView_Sample.json
│ │ │ │ │ ├── CocoGUISample.json
│ │ │ │ │ ├── examples
│ │ │ │ │ │ ├── equip
│ │ │ │ │ │ │ ├── 111.png
│ │ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ │ │ └── eg
│ │ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ │ ├── crab.png
│ │ │ │ │ │ │ ├── research.png
│ │ │ │ │ │ │ ├── sell.png
│ │ │ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ │ │ ├── train.png
│ │ │ │ │ │ │ └── upgrade.png
│ │ │ │ │ │ ├── examples.json
│ │ │ │ │ │ ├── Test
│ │ │ │ │ │ │ └── UIResForEditor
│ │ │ │ │ │ │ └── Button
│ │ │ │ │ │ │ ├── button_country_n.png
│ │ │ │ │ │ │ ├── button_country_p.png
│ │ │ │ │ │ │ ├── button_country_un.png
│ │ │ │ │ │ │ ├── symbol_1a.png
│ │ │ │ │ │ │ ├── symbol_1B.png
│ │ │ │ │ │ │ └── symbol_1c.png
│ │ │ │ │ │ └── weapon_introduce
│ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ └── weapon_item_1
│ │ │ │ │ │ ├── weapon_item
│ │ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ └── 7.png
│ │ │ │ │ │ └── weapon_item_1.json
│ │ │ │ │ ├── green_edit.png
│ │ │ │ │ ├── grossini-aliases.png
│ │ │ │ │ ├── gui_examples
│ │ │ │ │ │ ├── buy_1
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ ├── buttonHighlighted.png
│ │ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ │ └── buy_1.json
│ │ │ │ │ │ ├── equip_1
│ │ │ │ │ │ │ ├── equip
│ │ │ │ │ │ │ │ ├── 111.png
│ │ │ │ │ │ │ │ ├── 12.png
│ │ │ │ │ │ │ │ ├── 13.png
│ │ │ │ │ │ │ │ ├── 14.png
│ │ │ │ │ │ │ │ ├── 15.png
│ │ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ │ │ ├── button_end_02.png
│ │ │ │ │ │ │ │ ├── button_green_n2.png
│ │ │ │ │ │ │ │ ├── button_green_p2.png
│ │ │ │ │ │ │ │ ├── button_green_un2.png
│ │ │ │ │ │ │ │ └── eg
│ │ │ │ │ │ │ │ ├── 10.png
│ │ │ │ │ │ │ │ ├── 11.png
│ │ │ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ │ │ ├── 3.png
│ │ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ │ ├── 8.png
│ │ │ │ │ │ │ │ ├── 9.png
│ │ │ │ │ │ │ │ ├── crab.png
│ │ │ │ │ │ │ │ ├── research.png
│ │ │ │ │ │ │ │ ├── sell.png
│ │ │ │ │ │ │ │ ├── shop_shield_1.png
│ │ │ │ │ │ │ │ ├── shop_shield_2.png
│ │ │ │ │ │ │ │ ├── shop_shield_3.png
│ │ │ │ │ │ │ │ ├── train.png
│ │ │ │ │ │ │ │ └── upgrade.png
│ │ │ │ │ │ │ └── equip_1.json
│ │ │ │ │ │ ├── map_1
│ │ │ │ │ │ │ ├── image_castle.png
│ │ │ │ │ │ │ ├── map_1.json
│ │ │ │ │ │ │ └── map_pve.png
│ │ │ │ │ │ ├── map_alert_1
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 7.png
│ │ │ │ │ │ │ ├── close_02.png
│ │ │ │ │ │ │ ├── close_03.png
│ │ │ │ │ │ │ ├── close_04.png
│ │ │ │ │ │ │ └── map_alert_1.json
│ │ │ │ │ │ ├── page_1
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── buttonBackground.png
│ │ │ │ │ │ │ ├── page_1.json
│ │ │ │ │ │ │ ├── page_content
│ │ │ │ │ │ │ │ ├── CocoStudio_AnimationEditor.png
│ │ │ │ │ │ │ │ ├── CocoStudio_DataEditor.png
│ │ │ │ │ │ │ │ ├── CocoStudio_SceneEditor.png
│ │ │ │ │ │ │ │ └── CocoStudio_UIEditor.png
│ │ │ │ │ │ │ ├── ribbon.png
│ │ │ │ │ │ │ ├── teehanlax - iOS 6 - iPhone_check01.png
│ │ │ │ │ │ │ └── teehanlax - iOS 6 - iPhone_check.png
│ │ │ │ │ │ ├── register_1
│ │ │ │ │ │ │ ├── 128_128.png
│ │ │ │ │ │ │ ├── button_d.png
│ │ │ │ │ │ │ ├── button_n.png
│ │ │ │ │ │ │ ├── e-mail.png
│ │ │ │ │ │ │ ├── register_1.json
│ │ │ │ │ │ │ ├── Rosewood stdloadingH.fnt
│ │ │ │ │ │ │ ├── Rosewood stdloadingH.png
│ │ │ │ │ │ │ └── ui_shop_005-hd.png
│ │ │ │ │ │ ├── UIAction_1
│ │ │ │ │ │ │ ├── CocoStudio_UIEditor.png
│ │ │ │ │ │ │ └── UIAction_1.json
│ │ │ │ │ │ └── weapon_introduce_1
│ │ │ │ │ │ ├── weapon_introduce
│ │ │ │ │ │ │ ├── 4.png
│ │ │ │ │ │ │ ├── 5.png
│ │ │ │ │ │ │ ├── 6.png
│ │ │ │ │ │ │ ├── button_end_01.png
│ │ │ │ │ │ │ └── button_end_02.png
│ │ │ │ │ │ ├── weapon_introduce_1.json
│ │ │ │ │ │ └── weapon_item_1
│ │ │ │ │ │ ├── weapon_item
│ │ │ │ │ │ │ ├── 1.png
│ │ │ │ │ │ │ ├── 2.png
│ │ │ │ │ │ │ └── 7.png
│ │ │ │ │ │ ├── weapon_item_1.json
│ │ │ │ │ │ └── weapons
│ │ │ │ │ │ ├── weapons_10.png
│ │ │ │ │ │ ├── weapons_11.png
│ │ │ │ │ │ ├── weapons_12.png
│ │ │ │ │ │ ├── weapons_13.png
│ │ │ │ │ │ ├── weapons_14.png
│ │ │ │ │ │ ├── weapons_15.png
│ │ │ │ │ │ ├── weapons_16.png
│ │ │ │ │ │ ├── weapons_17.png
│ │ │ │ │ │ ├── weapons_18.png
│ │ │ │ │ │ ├── weapons_19.png
│ │ │ │ │ │ ├── weapons_1.png
│ │ │ │ │ │ ├── weapons_20.png
│ │ │ │ │ │ ├── weapons_21.png
│ │ │ │ │ │ ├── weapons_22.png
│ │ │ │ │ │ ├── weapons_23.png
│ │ │ │ │ │ ├── weapons_24.png
│ │ │ │ │ │ ├── weapons_25.png
│ │ │ │ │ │ ├── weapons_26.png
│ │ │ │ │ │ ├── weapons_27.png
│ │ │ │ │ │ ├── weapons_28.png
│ │ │ │ │ │ ├── weapons_29.png
│ │ │ │ │ │ ├── weapons_2.png
│ │ │ │ │ │ ├── weapons_30.png
│ │ │ │ │ │ ├── weapons_31.png
│ │ │ │ │ │ ├── weapons_3.png
│ │ │ │ │ │ ├── weapons_4.png
│ │ │ │ │ │ ├── weapons_5.png
│ │ │ │ │ │ ├── weapons_6.png
│ │ │ │ │ │ ├── weapons_7.png
│ │ │ │ │ │ ├── weapons_8.png
│ │ │ │ │ │ └── weapons_9.png
│ │ │ │ │ ├── Hello.png
│ │ │ │ │ ├── labelatlas.png
│ │ │ │ │ ├── loadingbar.png
│ │ │ │ │ ├── Marker Felt.ttf
│ │ │ │ │ ├── scrollviewbg.png
│ │ │ │ │ ├── slidbar.png
│ │ │ │ │ ├── sliderballnormal.png
│ │ │ │ │ ├── sliderballpressed.png
│ │ │ │ │ ├── slider_bar_active_9patch.png
│ │ │ │ │ ├── sliderProgress2.png
│ │ │ │ │ ├── sliderProgress.png
│ │ │ │ │ ├── sliderThumb.png
│ │ │ │ │ ├── sliderTrack2.png
│ │ │ │ │ ├── sliderTrack.png
│ │ │ │ │ └── UITest
│ │ │ │ │ ├── b1.png
│ │ │ │ │ ├── b2.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── buttonBackground.png
│ │ │ │ │ ├── f1.png
│ │ │ │ │ ├── f2.png
│ │ │ │ │ ├── r1.png
│ │ │ │ │ ├── r2.png
│ │ │ │ │ ├── ribbon.png
│ │ │ │ │ └── UITest.json
│ │ │ │ ├── components
│ │ │ │ │ ├── Player.png
│ │ │ │ │ ├── Projectile.png
│ │ │ │ │ └── Target.png
│ │ │ │ ├── extensions
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── buttonBackground.png
│ │ │ │ │ ├── buttonHighlighted.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── CCControlColourPickerSpriteSheet.plist
│ │ │ │ │ ├── CCControlColourPickerSpriteSheet.png
│ │ │ │ │ ├── green_edit.png
│ │ │ │ │ ├── orange_edit.png
│ │ │ │ │ ├── potentiometerButton.png
│ │ │ │ │ ├── potentiometerProgress.png
│ │ │ │ │ ├── potentiometerTrack.png
│ │ │ │ │ ├── ribbon.png
│ │ │ │ │ ├── sliderProgress2.png
│ │ │ │ │ ├── sliderProgress.png
│ │ │ │ │ ├── sliderThumb.png
│ │ │ │ │ ├── sliderTrack2.png
│ │ │ │ │ ├── sliderTrack.png
│ │ │ │ │ ├── stepper-minus.png
│ │ │ │ │ ├── stepper-plus.png
│ │ │ │ │ ├── switch-mask.png
│ │ │ │ │ ├── switch-off.png
│ │ │ │ │ ├── switch-on.png
│ │ │ │ │ ├── switch-thumb.png
│ │ │ │ │ └── yellow_edit.png
│ │ │ │ ├── fonts
│ │ │ │ │ ├── Abberancy.ttf
│ │ │ │ │ ├── Abduction.ttf
│ │ │ │ │ ├── A Damn Mess.ttf
│ │ │ │ │ ├── American Typewriter.ttf
│ │ │ │ │ ├── arial16.fnt
│ │ │ │ │ ├── arial16.png
│ │ │ │ │ ├── arial.ttf
│ │ │ │ │ ├── arial-unicode-26.fnt
│ │ │ │ │ ├── arial-unicode-26.png
│ │ │ │ │ ├── bitmapFontChinese.fnt
│ │ │ │ │ ├── bitmapFontChinese.png
│ │ │ │ │ ├── bitmapFontTest2.fnt
│ │ │ │ │ ├── bitmapFontTest2.png
│ │ │ │ │ ├── bitmapFontTest3.fnt
│ │ │ │ │ ├── bitmapFontTest3.png
│ │ │ │ │ ├── bitmapFontTest4.fnt
│ │ │ │ │ ├── bitmapFontTest4.png
│ │ │ │ │ ├── bitmapFontTest5.fnt
│ │ │ │ │ ├── bitmapFontTest5.png
│ │ │ │ │ ├── bitmapFontTest.fnt
│ │ │ │ │ ├── bitmapFontTest.png
│ │ │ │ │ ├── Courier New.eot
│ │ │ │ │ ├── Courier New.ttf
│ │ │ │ │ ├── font-issue1343.fnt
│ │ │ │ │ ├── font-issue1343-hd.fnt
│ │ │ │ │ ├── fps_images-hd.png
│ │ │ │ │ ├── fps_images.png
│ │ │ │ │ ├── futura-48.fnt
│ │ │ │ │ ├── futura-48.png
│ │ │ │ │ ├── geneva-32.fnt
│ │ │ │ │ ├── helvetica-32.fnt
│ │ │ │ │ ├── helvetica-geneva-32.png
│ │ │ │ │ ├── konqa32.fnt
│ │ │ │ │ ├── konqa32-hd.fnt
│ │ │ │ │ ├── konqa32-hd.png
│ │ │ │ │ ├── konqa32.png
│ │ │ │ │ ├── larabie-16-hd.plist
│ │ │ │ │ ├── larabie-16-hd.png
│ │ │ │ │ ├── larabie-16.plist
│ │ │ │ │ ├── larabie-16.png
│ │ │ │ │ ├── markerFelt.fnt
│ │ │ │ │ ├── markerFelt-hd.fnt
│ │ │ │ │ ├── markerFelt-hd.png
│ │ │ │ │ ├── markerFelt.png
│ │ │ │ │ ├── Marker Felt.ttf
│ │ │ │ │ ├── Paint Boy.ttf
│ │ │ │ │ ├── Schwarzwald_Regular.eot
│ │ │ │ │ ├── Schwarzwald Regular.ttf
│ │ │ │ │ ├── Scissor Cuts.ttf
│ │ │ │ │ ├── strings.xml
│ │ │ │ │ ├── tahoma.ttf
│ │ │ │ │ ├── ThonburiBold.eot
│ │ │ │ │ ├── ThonburiBold.ttf
│ │ │ │ │ ├── Thonburi.eot
│ │ │ │ │ ├── Thonburi.ttf
│ │ │ │ │ ├── tuffy_bold_italic-charmap-hd.plist
│ │ │ │ │ ├── tuffy_bold_italic-charmap-hd.png
│ │ │ │ │ ├── tuffy_bold_italic-charmap.plist
│ │ │ │ │ ├── tuffy_bold_italic-charmap.png
│ │ │ │ │ ├── west_england-64.fnt
│ │ │ │ │ └── west_england-64.png
│ │ │ │ ├── Images
│ │ │ │ │ ├── arrowsBar-hd.png
│ │ │ │ │ ├── arrowsBar.png
│ │ │ │ │ ├── arrows-hd.png
│ │ │ │ │ ├── arrows.png
│ │ │ │ │ ├── atlastest.png
│ │ │ │ │ ├── b1.png
│ │ │ │ │ ├── b2.png
│ │ │ │ │ ├── background1.png
│ │ │ │ │ ├── background2.png
│ │ │ │ │ ├── background3.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── ball.png
│ │ │ │ │ ├── blocks9.png
│ │ │ │ │ ├── blocks9ss.plist
│ │ │ │ │ ├── blocks9ss.png
│ │ │ │ │ ├── blocks.png
│ │ │ │ │ ├── BoilingFoam.plist
│ │ │ │ │ ├── btn-about-normal.png
│ │ │ │ │ ├── btn-about-selected.png
│ │ │ │ │ ├── btn-highscores-normal.png
│ │ │ │ │ ├── btn-highscores-selected.png
│ │ │ │ │ ├── btn-play-normal.png
│ │ │ │ │ ├── btn-play-selected.png
│ │ │ │ │ ├── bugs
│ │ │ │ │ │ ├── bug886.jpg
│ │ │ │ │ │ ├── bug886.png
│ │ │ │ │ │ ├── circle.plist
│ │ │ │ │ │ ├── circle.png
│ │ │ │ │ │ ├── corner.png
│ │ │ │ │ │ ├── edge.png
│ │ │ │ │ │ ├── fill.png
│ │ │ │ │ │ ├── picture.png
│ │ │ │ │ │ └── RetinaDisplay.jpg
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── cocos2dbanner.png
│ │ │ │ │ ├── f1.png
│ │ │ │ │ ├── f2.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── fire.png
│ │ │ │ │ ├── Fog.png
│ │ │ │ │ ├── fps_images.png
│ │ │ │ │ ├── grossini_dance_01.png
│ │ │ │ │ ├── grossini_dance_02.png
│ │ │ │ │ ├── grossini_dance_03.png
│ │ │ │ │ ├── grossini_dance_04.png
│ │ │ │ │ ├── grossini_dance_05.png
│ │ │ │ │ ├── grossini_dance_06.png
│ │ │ │ │ ├── grossini_dance_07.png
│ │ │ │ │ ├── grossini_dance_08.png
│ │ │ │ │ ├── grossini_dance_09.png
│ │ │ │ │ ├── grossini_dance_10.png
│ │ │ │ │ ├── grossini_dance_11.png
│ │ │ │ │ ├── grossini_dance_12.png
│ │ │ │ │ ├── grossini_dance_13.png
│ │ │ │ │ ├── grossini_dance_14.png
│ │ │ │ │ ├── grossini_dance_atlas-mono.png
│ │ │ │ │ ├── grossini_dance_atlas.png
│ │ │ │ │ ├── grossini.png
│ │ │ │ │ ├── grossini_pvr_rgba4444.pvr
│ │ │ │ │ ├── grossini_pvr_rgba8888.pvr
│ │ │ │ │ ├── grossinis_sister1.png
│ │ │ │ │ ├── grossinis_sister2.png
│ │ │ │ │ ├── HelloWorld.png
│ │ │ │ │ ├── hole_effect.png
│ │ │ │ │ ├── hole_stencil.png
│ │ │ │ │ ├── Icon.png
│ │ │ │ │ ├── landscape-1024x1024.png
│ │ │ │ │ ├── menuitemsprite.png
│ │ │ │ │ ├── movement.png
│ │ │ │ │ ├── paddle.png
│ │ │ │ │ ├── particles-hd.png
│ │ │ │ │ ├── particles.png
│ │ │ │ │ ├── piece.png
│ │ │ │ │ ├── powered.png
│ │ │ │ │ ├── r1.png
│ │ │ │ │ ├── r2.png
│ │ │ │ │ ├── SendScoreButton.png
│ │ │ │ │ ├── SendScoreButtonPressed.png
│ │ │ │ │ ├── shapemode.png
│ │ │ │ │ ├── snow.png
│ │ │ │ │ ├── spritesheet1.png
│ │ │ │ │ ├── sprites_test
│ │ │ │ │ │ ├── sprite-0-0.png
│ │ │ │ │ │ ├── sprite-0-1.png
│ │ │ │ │ │ ├── sprite-0-2.png
│ │ │ │ │ │ ├── sprite-0-3.png
│ │ │ │ │ │ ├── sprite-0-4.png
│ │ │ │ │ │ ├── sprite-0-5.png
│ │ │ │ │ │ ├── sprite-0-6.png
│ │ │ │ │ │ ├── sprite-0-7.png
│ │ │ │ │ │ ├── sprite-1-0.png
│ │ │ │ │ │ ├── sprite-1-1.png
│ │ │ │ │ │ ├── sprite-1-2.png
│ │ │ │ │ │ ├── sprite-1-3.png
│ │ │ │ │ │ ├── sprite-1-4.png
│ │ │ │ │ │ ├── sprite-1-5.png
│ │ │ │ │ │ ├── sprite-1-6.png
│ │ │ │ │ │ ├── sprite-1-7.png
│ │ │ │ │ │ ├── sprite-2-0.png
│ │ │ │ │ │ ├── sprite-2-1.png
│ │ │ │ │ │ ├── sprite-2-2.png
│ │ │ │ │ │ ├── sprite-2-3.png
│ │ │ │ │ │ ├── sprite-2-4.png
│ │ │ │ │ │ ├── sprite-2-5.png
│ │ │ │ │ │ ├── sprite-2-6.png
│ │ │ │ │ │ ├── sprite-2-7.png
│ │ │ │ │ │ ├── sprite-3-0.png
│ │ │ │ │ │ ├── sprite-3-1.png
│ │ │ │ │ │ ├── sprite-3-2.png
│ │ │ │ │ │ ├── sprite-3-3.png
│ │ │ │ │ │ ├── sprite-3-4.png
│ │ │ │ │ │ ├── sprite-3-5.png
│ │ │ │ │ │ ├── sprite-3-6.png
│ │ │ │ │ │ ├── sprite-3-7.png
│ │ │ │ │ │ ├── sprite-4-0.png
│ │ │ │ │ │ ├── sprite-4-1.png
│ │ │ │ │ │ ├── sprite-4-2.png
│ │ │ │ │ │ ├── sprite-4-3.png
│ │ │ │ │ │ ├── sprite-4-4.png
│ │ │ │ │ │ ├── sprite-4-5.png
│ │ │ │ │ │ ├── sprite-4-6.png
│ │ │ │ │ │ ├── sprite-4-7.png
│ │ │ │ │ │ ├── sprite-5-0.png
│ │ │ │ │ │ ├── sprite-5-1.png
│ │ │ │ │ │ ├── sprite-5-2.png
│ │ │ │ │ │ ├── sprite-5-3.png
│ │ │ │ │ │ ├── sprite-5-4.png
│ │ │ │ │ │ ├── sprite-5-5.png
│ │ │ │ │ │ ├── sprite-5-6.png
│ │ │ │ │ │ ├── sprite-5-7.png
│ │ │ │ │ │ ├── sprite-6-0.png
│ │ │ │ │ │ ├── sprite-6-1.png
│ │ │ │ │ │ ├── sprite-6-2.png
│ │ │ │ │ │ ├── sprite-6-3.png
│ │ │ │ │ │ ├── sprite-6-4.png
│ │ │ │ │ │ ├── sprite-6-5.png
│ │ │ │ │ │ ├── sprite-6-6.png
│ │ │ │ │ │ ├── sprite-6-7.png
│ │ │ │ │ │ ├── sprite-7-0.png
│ │ │ │ │ │ ├── sprite-7-1.png
│ │ │ │ │ │ ├── sprite-7-2.png
│ │ │ │ │ │ ├── sprite-7-3.png
│ │ │ │ │ │ ├── sprite-7-4.png
│ │ │ │ │ │ ├── sprite-7-5.png
│ │ │ │ │ │ ├── sprite-7-6.png
│ │ │ │ │ │ └── sprite-7-7.png
│ │ │ │ │ ├── stars2-grayscale.png
│ │ │ │ │ ├── stars2.png
│ │ │ │ │ ├── stars-grayscale.png
│ │ │ │ │ ├── stars.png
│ │ │ │ │ ├── streak.png
│ │ │ │ │ ├── test_image.png
│ │ │ │ │ ├── texture1024x1024.png
│ │ │ │ │ ├── texture512x512.png
│ │ │ │ │ ├── texturemode.png
│ │ │ │ │ ├── ui.plist
│ │ │ │ │ └── ui.png
│ │ │ │ ├── Particles
│ │ │ │ │ ├── BoilingFoam.plist
│ │ │ │ │ ├── BurstPipe.plist
│ │ │ │ │ ├── Comet.plist
│ │ │ │ │ ├── debian.plist
│ │ │ │ │ ├── ExplodingRing.plist
│ │ │ │ │ ├── Flower.plist
│ │ │ │ │ ├── Galaxy.plist
│ │ │ │ │ ├── LavaFlow.plist
│ │ │ │ │ ├── Phoenix.plist
│ │ │ │ │ ├── SmallSun.plist
│ │ │ │ │ ├── SpinningPeas.plist
│ │ │ │ │ ├── Spiral.plist
│ │ │ │ │ ├── SpookyPeas.plist
│ │ │ │ │ ├── TestPremultipliedAlpha.plist
│ │ │ │ │ └── Upsidedown.plist
│ │ │ │ ├── Presentation
│ │ │ │ │ ├── chipmunk_status.png
│ │ │ │ │ ├── cocos2d_status.png
│ │ │ │ │ ├── cocosbuilder_status.png
│ │ │ │ │ ├── comparison.png
│ │ │ │ │ ├── gdkaccelerator.png
│ │ │ │ │ ├── html5accelerator.png
│ │ │ │ │ ├── proxy_model.png
│ │ │ │ │ └── stack.graffle
│ │ │ │ ├── scenetest
│ │ │ │ │ ├── ArmatureComponentTest
│ │ │ │ │ │ ├── ArmatureComponentTest.json
│ │ │ │ │ │ ├── fishes
│ │ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ │ └── Images
│ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ ├── AttributeComponentTest
│ │ │ │ │ │ ├── AttributeComponentTest.json
│ │ │ │ │ │ ├── grossinis_sister1.png
│ │ │ │ │ │ ├── grossinis_sister2.png
│ │ │ │ │ │ └── PlayerAttribute.json
│ │ │ │ │ ├── BackgroundComponentTest
│ │ │ │ │ │ ├── BackgroundComponentTest.json
│ │ │ │ │ │ ├── Images
│ │ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ │ ├── Misc
│ │ │ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ │ │ └── music_logo.wav
│ │ │ │ │ │ ├── Particles
│ │ │ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ │ │ └── qipao01.png
│ │ │ │ │ │ └── startMenu
│ │ │ │ │ │ ├── Fish_UI
│ │ │ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ │ │ └── startMenu_1.json
│ │ │ │ │ ├── EffectComponentTest
│ │ │ │ │ │ ├── CowBoy
│ │ │ │ │ │ │ ├── Cowboy0.plist
│ │ │ │ │ │ │ ├── Cowboy0.png
│ │ │ │ │ │ │ └── Cowboy.ExportJson
│ │ │ │ │ │ ├── EffectComponentTest.json
│ │ │ │ │ │ └── pew-pew-lei.wav
│ │ │ │ │ ├── LoadSceneEdtiorFileTest
│ │ │ │ │ │ ├── fishes
│ │ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ │ ├── FishJoy2.json
│ │ │ │ │ │ ├── Images
│ │ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ │ ├── Misc
│ │ │ │ │ │ │ ├── music_logo.mp3
│ │ │ │ │ │ │ └── music_logo.wav
│ │ │ │ │ │ ├── Particles
│ │ │ │ │ │ │ ├── qipao01.plist
│ │ │ │ │ │ │ └── qipao01.png
│ │ │ │ │ │ └── startMenu
│ │ │ │ │ │ ├── Fish_UI
│ │ │ │ │ │ │ ├── starMenuButton01.png
│ │ │ │ │ │ │ ├── starMenuButton02.png
│ │ │ │ │ │ │ └── ui_logo_001-hd.png
│ │ │ │ │ │ └── startMenu_1.json
│ │ │ │ │ ├── ParticleComponentTest
│ │ │ │ │ │ ├── ParticleComponentTest.json
│ │ │ │ │ │ ├── SmallSun.plist
│ │ │ │ │ │ └── Upsidedown.plist
│ │ │ │ │ ├── SpriteComponentTest
│ │ │ │ │ │ ├── grossinis_sister1.png
│ │ │ │ │ │ ├── grossinis_sister2.png
│ │ │ │ │ │ └── SpriteComponentTest.json
│ │ │ │ │ ├── TmxMapComponentTest
│ │ │ │ │ │ ├── iso-test.png
│ │ │ │ │ │ ├── iso-test.tmx
│ │ │ │ │ │ └── TmxMapComponentTest.json
│ │ │ │ │ ├── TriggerTest
│ │ │ │ │ │ ├── fishes
│ │ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ │ ├── Images
│ │ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ │ └── TriggerTest.json
│ │ │ │ │ └── UIComponentTest
│ │ │ │ │ ├── fishes
│ │ │ │ │ │ ├── blowFish
│ │ │ │ │ │ │ ├── Blowfish0.plist
│ │ │ │ │ │ │ ├── Blowfish0.png
│ │ │ │ │ │ │ └── Blowfish.ExportJson
│ │ │ │ │ │ └── Butterflyfish
│ │ │ │ │ │ ├── Butterflyfish0.plist
│ │ │ │ │ │ ├── Butterflyfish0.png
│ │ │ │ │ │ └── Butterflyfish.ExportJson
│ │ │ │ │ ├── Images
│ │ │ │ │ │ └── startMenuBG.png
│ │ │ │ │ ├── starMenuButton
│ │ │ │ │ │ ├── starMenuButton0.plist
│ │ │ │ │ │ ├── starMenuButton0.png
│ │ │ │ │ │ └── starMenuButton.ExportJson
│ │ │ │ │ └── UIComponentTest.json
│ │ │ │ ├── Shaders
│ │ │ │ │ ├── example_Blur.fsh
│ │ │ │ │ ├── example_ColorBars.fsh
│ │ │ │ │ ├── example_ColorBars.vsh
│ │ │ │ │ ├── example_Flower.fsh
│ │ │ │ │ ├── example_Flower.vsh
│ │ │ │ │ ├── example_Heart.fsh
│ │ │ │ │ ├── example_Heart.vsh
│ │ │ │ │ ├── example_Julia.fsh
│ │ │ │ │ ├── example_Julia.vsh
│ │ │ │ │ ├── example_Mandelbrot.fsh
│ │ │ │ │ ├── example_Mandelbrot.vsh
│ │ │ │ │ ├── example_Monjori.fsh
│ │ │ │ │ ├── example_Monjori.vsh
│ │ │ │ │ ├── example_Plasma.fsh
│ │ │ │ │ ├── example_Plasma.vsh
│ │ │ │ │ ├── example_Twist.fsh
│ │ │ │ │ └── example_Twist.vsh
│ │ │ │ ├── skeletons
│ │ │ │ │ ├── spineboy.atlas
│ │ │ │ │ ├── spineboy.json
│ │ │ │ │ └── spineboy.png
│ │ │ │ ├── Sound
│ │ │ │ │ ├── background.mp3
│ │ │ │ │ ├── background-music-aac.wav
│ │ │ │ │ ├── background.ogg
│ │ │ │ │ ├── effect2.mp3
│ │ │ │ │ ├── effect2.ogg
│ │ │ │ │ └── pew-pew-lei.wav
│ │ │ │ └── TileMaps
│ │ │ │ ├── fixed-ortho-test2.png
│ │ │ │ ├── hexa-test.tmx
│ │ │ │ ├── hexa-tiles.png
│ │ │ │ ├── iso.png
│ │ │ │ ├── iso-test1.tmx
│ │ │ │ ├── iso-test2.png
│ │ │ │ ├── iso-test2.tmx
│ │ │ │ ├── iso-test2-uncompressed.tmx
│ │ │ │ ├── iso-test-bug787.tmx
│ │ │ │ ├── iso-test-movelayer.tmx
│ │ │ │ ├── iso-test-objectgroup.tmx
│ │ │ │ ├── iso-test.png
│ │ │ │ ├── iso-test.tmx
│ │ │ │ ├── iso-test-vertexz.tmx
│ │ │ │ ├── iso-test-zorder.tmx
│ │ │ │ ├── levelmap.tga
│ │ │ │ ├── orthogonal-test1.tmx
│ │ │ │ ├── orthogonal-test1.tsx
│ │ │ │ ├── orthogonal-test2.tmx
│ │ │ │ ├── orthogonal-test3.tmx
│ │ │ │ ├── orthogonal-test4-hd.tmx
│ │ │ │ ├── orthogonal-test4.tmx
│ │ │ │ ├── orthogonal-test5.tmx
│ │ │ │ ├── orthogonal-test6-hd.tmx
│ │ │ │ ├── orthogonal-test6.tmx
│ │ │ │ ├── orthogonal-test-movelayer.tmx
│ │ │ │ ├── orthogonal-test-vertexz.tmx
│ │ │ │ ├── orthogonal-test-zorder.tmx
│ │ │ │ ├── ortho-objects.tmx
│ │ │ │ ├── ortho-rotation-test.tmx
│ │ │ │ ├── ortho-test1_bw.png
│ │ │ │ ├── ortho-test1.png
│ │ │ │ ├── ortho-test2.png
│ │ │ │ ├── ortho-tile-property.tmx
│ │ │ │ ├── test-object-layer.tmx
│ │ │ │ ├── tile_iso_offset.png
│ │ │ │ ├── tile_iso_offset.tmx
│ │ │ │ ├── tiles-hd.png
│ │ │ │ ├── tiles.png
│ │ │ │ ├── tmw_desert_spacing-hd.png
│ │ │ │ └── tmw_desert_spacing.png
│ │ │ ├── RotateWorldTest
│ │ │ │ └── RotateWorldTest.js
│ │ │ ├── SceneTest
│ │ │ │ └── SceneTest.js
│ │ │ ├── SchedulerTest
│ │ │ │ └── SchedulerTest.js
│ │ │ ├── SpineTest
│ │ │ │ └── SpineTest.js
│ │ │ ├── SpriteTest
│ │ │ │ └── SpriteTest.js
│ │ │ ├── SysTest
│ │ │ │ └── SysTest.js
│ │ │ ├── tests-boot-html5.js
│ │ │ ├── tests-boot-jsb-for-obfuscation.js
│ │ │ ├── tests-boot-jsb.js
│ │ │ ├── tests-main.js
│ │ │ ├── tests_resources-html5.js
│ │ │ ├── tests_resources-jsb.js
│ │ │ ├── TextInputTest
│ │ │ │ └── TextInputTest.js
│ │ │ ├── TextureCacheTest
│ │ │ │ └── TextureCacheTest.js
│ │ │ ├── TileMapTest
│ │ │ │ └── TileMapTest.js
│ │ │ ├── TouchesTest
│ │ │ │ ├── Ball.js
│ │ │ │ ├── Paddle.js
│ │ │ │ └── TouchesTest.js
│ │ │ ├── TransitionsTest
│ │ │ │ └── TransitionsTest.js
│ │ │ ├── UnitTest
│ │ │ │ └── UnitTest.js
│ │ │ └── XHRTest
│ │ │ └── XHRTest.js
│ │ ├── TestJavascript
│ │ │ ├── Classes
│ │ │ │ ├── AppDelegate.cpp
│ │ │ │ └── AppDelegate.h
│ │ │ ├── game.js
│ │ │ ├── obfuscate.xml
│ │ │ ├── proj.android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build_native.sh
│ │ │ │ ├── build.xml
│ │ │ │ ├── jni
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── Application.mk
│ │ │ │ │ └── testjavascript
│ │ │ │ │ └── main.cpp
│ │ │ │ ├── ndkgdb.sh
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── README.md
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-ldpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ └── icon.png
│ │ │ │ │ └── values
│ │ │ │ │ └── strings.xml
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── testjavascript
│ │ │ │ └── TestJavascript.java
│ │ │ ├── proj.ios
│ │ │ │ ├── AppController.h
│ │ │ │ ├── AppController.mm
│ │ │ │ ├── Default@2x.png
│ │ │ │ ├── Default-568h@2x.png
│ │ │ │ ├── Default.png
│ │ │ │ ├── Icon-114.png
│ │ │ │ ├── Icon-120.png
│ │ │ │ ├── Icon-144.png
│ │ │ │ ├── Icon-152.png
│ │ │ │ ├── Icon-57.png
│ │ │ │ ├── Icon-72.png
│ │ │ │ ├── Icon-76.png
│ │ │ │ ├── Info-obfuscated.plist
│ │ │ │ ├── Info.plist
│ │ │ │ ├── main.m
│ │ │ │ ├── Prefix.pch
│ │ │ │ ├── RootViewController.h
│ │ │ │ ├── RootViewController.mm
│ │ │ │ └── TestJavascript.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ └── proj.win32
│ │ │ ├── Debug.win32
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── res
│ │ │ │ └── testjs.ico
│ │ │ ├── resource.h
│ │ │ ├── TestJavascript.vcxproj
│ │ │ ├── TestJavascript.vcxproj.filters
│ │ │ ├── TestJavascript.vcxproj.user
│ │ │ └── testjs.rc
│ │ └── WatermelonWithMe
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ └── AppDelegate.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── watermelonwithme
│ │ │ │ └── main.cpp
│ │ │ ├── ndkgdb.sh
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── README.md
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── watermelonwithme
│ │ │ └── WatermelonWithMe.java
│ │ ├── proj.ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-152.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ ├── Prefix.pch
│ │ │ ├── RootViewController.h
│ │ │ ├── RootViewController.mm
│ │ │ └── WatermelonWithMe.xcodeproj
│ │ │ └── project.pbxproj
│ │ └── proj.win32
│ │ ├── Debug.win32
│ │ ├── main.cpp
│ │ ├── main.h
│ │ ├── res
│ │ │ └── testjs.ico
│ │ ├── resource.h
│ │ ├── testjs.rc
│ │ ├── WatermelonWithMe.vcxproj
│ │ ├── WatermelonWithMe.vcxproj.filters
│ │ └── WatermelonWithMe.vcxproj.user
│ └── Lua
│ ├── HelloLua
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ └── AppDelegate.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── hellolua
│ │ │ │ └── main.cpp
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── hellolua
│ │ │ └── HelloLua.java
│ │ ├── proj.blackberry
│ │ │ ├── bar-descriptor.xml
│ │ │ ├── empty
│ │ │ │ └── empty
│ │ │ ├── icon.png
│ │ │ └── main.cpp
│ │ ├── proj.emscripten
│ │ │ ├── main.cpp
│ │ │ └── Makefile
│ │ ├── proj.ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── HelloLua_Prefix.pch
│ │ │ ├── HelloLua.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-152.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ ├── RootViewController.h
│ │ │ └── RootViewController.mm
│ │ ├── proj.linux
│ │ │ ├── main.cpp
│ │ │ └── Makefile
│ │ ├── proj.marmalade
│ │ │ ├── HelloLua.mkb
│ │ │ └── src
│ │ │ ├── Main.cpp
│ │ │ └── Main.h
│ │ ├── proj.nacl
│ │ │ ├── index.html
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ └── Makefile
│ │ ├── proj.tizen
│ │ │ ├── data
│ │ │ ├── lib
│ │ │ ├── manifest.xml
│ │ │ ├── res
│ │ │ ├── shared
│ │ │ │ ├── data
│ │ │ │ ├── res
│ │ │ │ │ └── screen-density-xhigh
│ │ │ │ │ └── mainmenu.png
│ │ │ │ └── trusted
│ │ │ └── src
│ │ │ └── HelloLuaEntry.cpp
│ │ ├── proj.win32
│ │ │ ├── Debug.win32
│ │ │ ├── HelloLua.vcxproj
│ │ │ ├── HelloLua.vcxproj.filters
│ │ │ ├── HelloLua.vcxproj.user
│ │ │ ├── main.cpp
│ │ │ └── main.h
│ │ └── Resources
│ │ ├── app.icf
│ │ ├── background.mp3
│ │ ├── background.ogg
│ │ ├── crop.png
│ │ ├── development.icf
│ │ ├── dog.png
│ │ ├── effect1.wav
│ │ ├── farm.jpg
│ │ ├── fonts
│ │ │ └── Marker Felt.ttf
│ │ ├── hello2.lua
│ │ ├── hello.lua
│ │ ├── land.png
│ │ ├── menu1.png
│ │ └── menu2.png
│ └── TestLua
│ ├── Classes
│ │ ├── AppDelegate.cpp
│ │ └── AppDelegate.h
│ ├── proj.android
│ │ ├── AndroidManifest.xml
│ │ ├── ant.properties
│ │ ├── build_native.sh
│ │ ├── build.xml
│ │ ├── jni
│ │ │ ├── Android.mk
│ │ │ ├── Application.mk
│ │ │ └── testlua
│ │ │ └── main.cpp
│ │ ├── proguard-project.txt
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── org
│ │ └── cocos2dx
│ │ └── testlua
│ │ └── TestLua.java
│ ├── proj.blackberry
│ │ ├── bar-descriptor.xml
│ │ ├── empty
│ │ ├── icon.png
│ │ └── main.cpp
│ ├── proj.emscripten
│ │ ├── main.cpp
│ │ └── Makefile
│ ├── proj.ios
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── Default@2x.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default.png
│ │ ├── Icon-114.png
│ │ ├── Icon-120.png
│ │ ├── Icon-144.png
│ │ ├── Icon-152.png
│ │ ├── Icon-57.png
│ │ ├── Icon-72.png
│ │ ├── Icon-76.png
│ │ ├── Info.plist
│ │ ├── main.m
│ │ ├── RootViewController.h
│ │ ├── RootViewController.mm
│ │ ├── TestLua_Prefix.pch
│ │ └── TestLua.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.linux
│ │ ├── main.cpp
│ │ └── Makefile
│ ├── proj.marmalade
│ │ ├── cccopy.py
│ │ ├── src
│ │ │ ├── Main.cpp
│ │ │ └── Main.h
│ │ └── TestLua.mkb
│ ├── proj.nacl
│ │ ├── index.html
│ │ ├── main.cpp
│ │ ├── main.h
│ │ └── Makefile
│ ├── proj.tizen
│ │ ├── data
│ │ ├── inc
│ │ ├── lib
│ │ ├── manifest.xml
│ │ ├── res
│ │ ├── shared
│ │ │ ├── data
│ │ │ ├── res
│ │ │ │ └── screen-density-xhigh
│ │ │ │ └── mainmenu.png
│ │ │ └── trusted
│ │ └── src
│ │ └── TestLuaEntry.cpp
│ ├── proj.win32
│ │ ├── Debug.win32
│ │ ├── main.cpp
│ │ ├── main.h
│ │ ├── res
│ │ │ └── TestLua.ico
│ │ ├── resource.h
│ │ ├── TestLua.rc
│ │ ├── TestLua.win32.vcxproj
│ │ ├── TestLua.win32.vcxproj.filters
│ │ └── TestLua.win32.vcxproj.user
│ └── Resources
│ ├── app.icf
│ ├── cocosbuilderRes
│ │ ├── ccb
│ │ │ ├── animated-grossini.plist
│ │ │ ├── animated-grossini.png
│ │ │ ├── btn-a-0.png
│ │ │ ├── btn-a-1.png
│ │ │ ├── btn-a-2.png
│ │ │ ├── btn-b-0.png
│ │ │ ├── btn-b-1.png
│ │ │ ├── btn-b-2.png
│ │ │ ├── btn-back-0.png
│ │ │ ├── btn-back-1.png
│ │ │ ├── btn-test-0.png
│ │ │ ├── btn-test-1.png
│ │ │ ├── btn-test-2.png
│ │ │ ├── burst.png
│ │ │ ├── ccb
│ │ │ │ ├── TestAnimations.ccb
│ │ │ │ ├── TestAnimations.ccbi
│ │ │ │ ├── TestAnimationsSub.ccb
│ │ │ │ ├── TestAnimationsSub.ccbi
│ │ │ │ ├── TestButtons.ccb
│ │ │ │ ├── TestButtons.ccbi
│ │ │ │ ├── TestHeader.ccb
│ │ │ │ ├── TestHeader.ccbi
│ │ │ │ ├── TestLabels.ccb
│ │ │ │ ├── TestLabels.ccbi
│ │ │ │ ├── TestMenus.ccb
│ │ │ │ ├── TestMenus.ccbi
│ │ │ │ ├── TestParticleSystems.ccb
│ │ │ │ ├── TestParticleSystems.ccbi
│ │ │ │ ├── TestScrollViews.ccb
│ │ │ │ ├── TestScrollViews.ccbi
│ │ │ │ ├── TestScrollViewsContentA.ccb
│ │ │ │ ├── TestScrollViewsContentA.ccbi
│ │ │ │ ├── TestSprites.ccb
│ │ │ │ ├── TestSprites.ccbi
│ │ │ │ ├── TestTimelineCallback.ccb
│ │ │ │ └── TestTimelineCallback.ccbi
│ │ │ ├── ccbParticleStars.png
│ │ │ ├── comic andy.ttf
│ │ │ ├── fileLookup.plist
│ │ │ ├── flower.jpg
│ │ │ ├── gem-0.wav
│ │ │ ├── gem-1.wav
│ │ │ ├── grossini-generic.plist
│ │ │ ├── grossini-generic.png
│ │ │ ├── HelloCocosBuilder.ccb
│ │ │ ├── HelloCocosBuilder.ccbi
│ │ │ ├── jungle-left.png
│ │ │ ├── jungle.png
│ │ │ ├── jungle-right.png
│ │ │ ├── logo-icon.png
│ │ │ ├── logo.png
│ │ │ ├── markerfelt24shadow.fnt
│ │ │ ├── markerfelt24shadow.png
│ │ │ ├── particle-fire.png
│ │ │ ├── particle-smoke.png
│ │ │ ├── particle-snow.png
│ │ │ ├── particle-stars.png
│ │ │ └── scale-9-demo.png
│ │ ├── CocosBuilderExample.ccbproj
│ │ └── fileLookup.plist
│ └── luaScript
│ ├── AccelerometerTest
│ │ └── AccelerometerTest.lua
│ ├── ActionManagerTest
│ │ └── ActionManagerTest.lua
│ ├── ActionsEaseTest
│ │ └── ActionsEaseTest.lua
│ ├── ActionsProgressTest
│ │ └── ActionsProgressTest.lua
│ ├── ActionsTest
│ │ └── ActionsTest.lua
│ ├── BugsTest
│ │ └── BugsTest.lua
│ ├── ClickAndMoveTest
│ │ └── ClickAndMoveTest.lua
│ ├── CocosDenshionTest
│ │ └── CocosDenshionTest.lua
│ ├── CocoStudioTest
│ │ ├── CocoStudioArmatureTest
│ │ │ └── CocoStudioArmatureTest.lua
│ │ ├── CocoStudioGUITest
│ │ │ └── CocoStudioGUITest.lua
│ │ ├── CocoStudioSceneTest
│ │ │ ├── CocoStudioSceneTest.lua
│ │ │ └── TriggerCode
│ │ │ ├── acts.lua
│ │ │ ├── cons.lua
│ │ │ └── eventDef.lua
│ │ └── CocoStudioTest.lua
│ ├── controller.lua
│ ├── CurrentLanguageTest
│ │ └── CurrentLanguageTest.lua
│ ├── DrawPrimitivesTest
│ │ └── DrawPrimitivesTest.lua
│ ├── EffectsAdvancedTest
│ │ └── EffectsAdvancedTest.lua
│ ├── EffectsTest
│ │ ├── EffectsName.lua
│ │ └── EffectsTest.lua
│ ├── ExtensionTest
│ │ ├── CocosBuilderTest.lua
│ │ ├── ExtensionTest.lua
│ │ └── WebProxyTest.lua
│ ├── FontTest
│ │ └── FontTest.lua
│ ├── helper.lua
│ ├── IntervalTest
│ │ └── IntervalTest.lua
│ ├── KeypadTest
│ │ └── KeypadTest.lua
│ ├── LabelTest
│ │ └── LabelTest.lua
│ ├── LayerTest
│ │ └── LayerTest.lua
│ ├── mainMenu.lua
│ ├── MenuTest
│ │ └── MenuTest.lua
│ ├── MotionStreakTest
│ │ └── MotionStreakTest.lua
│ ├── NodeTest
│ │ └── NodeTest.lua
│ ├── ParallaxTest
│ │ └── ParallaxTest.lua
│ ├── ParticleTest
│ │ └── ParticleTest.lua
│ ├── PerformanceTest
│ │ ├── PerformanceSpriteTest.lua
│ │ └── PerformanceTest.lua
│ ├── RenderTextureTest
│ │ └── RenderTextureTest.lua
│ ├── RotateWorldTest
│ │ └── RotateWorldTest.lua
│ ├── SceneTest
│ │ └── SceneTest.lua
│ ├── SpriteTest
│ │ └── SpriteTest.lua
│ ├── testResource.lua
│ ├── Texture2dTest
│ │ └── Texture2dTest.lua
│ ├── TileMapTest
│ │ └── TileMapTest.lua
│ ├── TouchesTest
│ │ ├── Ball.lua
│ │ ├── Paddle.lua
│ │ └── TouchesTest.lua
│ ├── TransitionsTest
│ │ ├── TransitionsName.lua
│ │ └── TransitionsTest.lua
│ ├── UserDefaultTest
│ │ └── UserDefaultTest.lua
│ ├── VisibleRect.lua
│ └── ZwoptexTest
│ └── ZwoptexTest.lua
├── scripting
│ ├── javascript
│ │ ├── bindings
│ │ │ ├── Android.mk
│ │ │ ├── cocos2d_specifics.cpp
│ │ │ ├── cocos2d_specifics.hpp
│ │ │ ├── cocosjs_manual_conversions.cpp
│ │ │ ├── cocosjs_manual_conversions.h
│ │ │ ├── generated
│ │ │ │ ├── jsb_cocos2dx_auto_api.js
│ │ │ │ ├── jsb_cocos2dx_auto.cpp
│ │ │ │ ├── jsb_cocos2dx_auto.hpp
│ │ │ │ ├── jsb_cocos2dx_extension_auto_api.js
│ │ │ │ ├── jsb_cocos2dx_extension_auto.cpp
│ │ │ │ ├── jsb_cocos2dx_extension_auto.hpp
│ │ │ │ ├── jsb_cocos2dx_studio_auto_api.js
│ │ │ │ ├── jsb_cocos2dx_studio_auto.cpp
│ │ │ │ ├── jsb_cocos2dx_studio_auto.hpp
│ │ │ │ └── README
│ │ │ ├── js
│ │ │ │ ├── jsb_chipmunk_constants.js
│ │ │ │ ├── jsb_chipmunk.js
│ │ │ │ ├── jsb_cocos2d_constants.js
│ │ │ │ ├── jsb_cocos2d_extension.js
│ │ │ │ ├── jsb_cocos2d.js
│ │ │ │ ├── jsb_cocos2d_studio.js
│ │ │ │ ├── jsb_cocosbuilder.js
│ │ │ │ ├── jsb_debugger.js
│ │ │ │ ├── jsb_deprecated.js
│ │ │ │ ├── jsb.js
│ │ │ │ ├── jsb_opengl_constants.js
│ │ │ │ ├── jsb_opengl.js
│ │ │ │ ├── jsb_sys.js
│ │ │ │ └── main.debug.js
│ │ │ ├── jsb_cocos2dx_extension_manual.cpp
│ │ │ ├── jsb_cocos2dx_extension_manual.h
│ │ │ ├── jsb_cocos2dx_studio_manual.cpp
│ │ │ ├── jsb_cocos2dx_studio_manual.h
│ │ │ ├── jsb_helper.h
│ │ │ ├── js_bindings_ccbreader.cpp
│ │ │ ├── js_bindings_ccbreader.h
│ │ │ ├── js_bindings_chipmunk_auto_classes.cpp
│ │ │ ├── js_bindings_chipmunk_auto_classes.h
│ │ │ ├── js_bindings_chipmunk_auto_classes_registration.h
│ │ │ ├── js_bindings_chipmunk_functions.cpp
│ │ │ ├── js_bindings_chipmunk_functions.h
│ │ │ ├── js_bindings_chipmunk_functions_registration.h
│ │ │ ├── js_bindings_chipmunk_manual.cpp
│ │ │ ├── js_bindings_chipmunk_manual.h
│ │ │ ├── js_bindings_chipmunk_registration.cpp
│ │ │ ├── js_bindings_chipmunk_registration.h
│ │ │ ├── js_bindings_config.h
│ │ │ ├── js_bindings_core.cpp
│ │ │ ├── js_bindings_core.h
│ │ │ ├── js_bindings_opengl.cpp
│ │ │ ├── js_bindings_opengl.h
│ │ │ ├── js_bindings_system_functions.cpp
│ │ │ ├── js_bindings_system_functions.h
│ │ │ ├── js_bindings_system_functions_registration.h
│ │ │ ├── js_bindings_system_registration.cpp
│ │ │ ├── js_bindings_system_registration.h
│ │ │ ├── jsb_opengl_functions.cpp
│ │ │ ├── jsb_opengl_functions.h
│ │ │ ├── jsb_opengl_manual.cpp
│ │ │ ├── jsb_opengl_manual.h
│ │ │ ├── jsb_opengl_registration.cpp
│ │ │ ├── jsb_opengl_registration.h
│ │ │ ├── jsb_websocket.cpp
│ │ │ ├── jsb_websocket.h
│ │ │ ├── js_manual_conversions.cpp
│ │ │ ├── js_manual_conversions.h
│ │ │ ├── obfuscate
│ │ │ │ ├── obfuscate_exclude_chipmunk.js
│ │ │ │ └── obfuscate_exclude_cocos2d.js
│ │ │ ├── proj.win32
│ │ │ │ ├── Debug.win32
│ │ │ │ ├── libJSBinding.vcxproj
│ │ │ │ ├── libJSBinding.vcxproj.filters
│ │ │ │ └── libJSBinding.vcxproj.user
│ │ │ ├── ScriptingCore.cpp
│ │ │ ├── ScriptingCore.h
│ │ │ ├── spidermonkey_specifics.h
│ │ │ ├── XMLHTTPRequest.cpp
│ │ │ └── XMLHTTPRequest.h
│ │ ├── spidermonkey-android
│ │ │ ├── Android.mk
│ │ │ ├── include
│ │ │ │ ├── ds
│ │ │ │ │ └── BitArray.h
│ │ │ │ ├── gc
│ │ │ │ │ └── Root.h
│ │ │ │ ├── js
│ │ │ │ │ ├── Anchor.h
│ │ │ │ │ ├── CharacterEncoding.h
│ │ │ │ │ ├── GCAPI.h
│ │ │ │ │ ├── HashTable.h
│ │ │ │ │ ├── HeapAPI.h
│ │ │ │ │ ├── LegacyIntTypes.h
│ │ │ │ │ ├── MemoryMetrics.h
│ │ │ │ │ ├── PropertyKey.h
│ │ │ │ │ ├── RequiredDefines.h
│ │ │ │ │ ├── TemplateLib.h
│ │ │ │ │ ├── Utility.h
│ │ │ │ │ ├── Value.h
│ │ │ │ │ └── Vector.h
│ │ │ │ ├── jsalloc.h
│ │ │ │ ├── jsapi.h
│ │ │ │ ├── jsclass.h
│ │ │ │ ├── jsclist.h
│ │ │ │ ├── js-config.h
│ │ │ │ ├── jscpucfg.h
│ │ │ │ ├── jsdbgapi.h
│ │ │ │ ├── jsdhash.h
│ │ │ │ ├── jsfriendapi.h
│ │ │ │ ├── jslock.h
│ │ │ │ ├── js.msg
│ │ │ │ ├── json.h
│ │ │ │ ├── jsperf.h
│ │ │ │ ├── jsprf.h
│ │ │ │ ├── jsprototypes.h
│ │ │ │ ├── jsproxy.h
│ │ │ │ ├── jsprvtd.h
│ │ │ │ ├── jspubtd.h
│ │ │ │ ├── jstypes.h
│ │ │ │ ├── jsutil.h
│ │ │ │ ├── jsversion.h
│ │ │ │ ├── jswrapper.h
│ │ │ │ └── mozilla
│ │ │ │ ├── Assertions.h
│ │ │ │ ├── Attributes.h
│ │ │ │ ├── BloomFilter.h
│ │ │ │ ├── Char16.h
│ │ │ │ ├── CheckedInt.h
│ │ │ │ ├── Compiler.h
│ │ │ │ ├── Constants.h
│ │ │ │ ├── DebugOnly.h
│ │ │ │ ├── EnumSet.h
│ │ │ │ ├── FloatingPoint.h
│ │ │ │ ├── GuardObjects.h
│ │ │ │ ├── HashFunctions.h
│ │ │ │ ├── Likely.h
│ │ │ │ ├── LinkedList.h
│ │ │ │ ├── MathAlgorithms.h
│ │ │ │ ├── MemoryChecking.h
│ │ │ │ ├── MSStdInt.h
│ │ │ │ ├── NullPtr.h
│ │ │ │ ├── RangedPtr.h
│ │ │ │ ├── Range.h
│ │ │ │ ├── RefPtr.h
│ │ │ │ ├── Scoped.h
│ │ │ │ ├── SHA1.h
│ │ │ │ ├── SplayTree.h
│ │ │ │ ├── StandardInteger.h
│ │ │ │ ├── ThreadLocal.h
│ │ │ │ ├── TypedEnum.h
│ │ │ │ ├── Types.h
│ │ │ │ ├── TypeTraits.h
│ │ │ │ ├── Util.h
│ │ │ │ └── WeakPtr.h
│ │ │ └── lib
│ │ │ ├── armeabi
│ │ │ │ └── libjs_static.a
│ │ │ ├── armeabi-v7a
│ │ │ │ └── libjs_static.a
│ │ │ └── x86
│ │ │ └── libjs_static.a
│ │ ├── spidermonkey-ios
│ │ │ ├── include
│ │ │ │ ├── ds
│ │ │ │ │ └── BitArray.h
│ │ │ │ ├── gc
│ │ │ │ │ └── Root.h
│ │ │ │ ├── js
│ │ │ │ │ ├── Anchor.h
│ │ │ │ │ ├── CharacterEncoding.h
│ │ │ │ │ ├── GCAPI.h
│ │ │ │ │ ├── HashTable.h
│ │ │ │ │ ├── HeapAPI.h
│ │ │ │ │ ├── LegacyIntTypes.h
│ │ │ │ │ ├── MemoryMetrics.h
│ │ │ │ │ ├── PropertyKey.h
│ │ │ │ │ ├── RequiredDefines.h
│ │ │ │ │ ├── TemplateLib.h
│ │ │ │ │ ├── Utility.h
│ │ │ │ │ ├── Value.h
│ │ │ │ │ └── Vector.h
│ │ │ │ ├── jsalloc.h
│ │ │ │ ├── jsapi.h
│ │ │ │ ├── jsclass.h
│ │ │ │ ├── jsclist.h
│ │ │ │ ├── js-config.h
│ │ │ │ ├── jscpucfg.h
│ │ │ │ ├── jsdbgapi.h
│ │ │ │ ├── jsdhash.h
│ │ │ │ ├── jsfriendapi.h
│ │ │ │ ├── jslock.h
│ │ │ │ ├── js.msg
│ │ │ │ ├── json.h
│ │ │ │ ├── jsperf.h
│ │ │ │ ├── jsprf.h
│ │ │ │ ├── jsprototypes.h
│ │ │ │ ├── jsproxy.h
│ │ │ │ ├── jsprvtd.h
│ │ │ │ ├── jspubtd.h
│ │ │ │ ├── jstypes.h
│ │ │ │ ├── jsutil.h
│ │ │ │ ├── jsversion.h
│ │ │ │ ├── jswrapper.h
│ │ │ │ └── mozilla
│ │ │ │ ├── Assertions.h
│ │ │ │ ├── Attributes.h
│ │ │ │ ├── BloomFilter.h
│ │ │ │ ├── Char16.h
│ │ │ │ ├── CheckedInt.h
│ │ │ │ ├── Compiler.h
│ │ │ │ ├── Constants.h
│ │ │ │ ├── DebugOnly.h
│ │ │ │ ├── EnumSet.h
│ │ │ │ ├── FloatingPoint.h
│ │ │ │ ├── GuardObjects.h
│ │ │ │ ├── HashFunctions.h
│ │ │ │ ├── Likely.h
│ │ │ │ ├── LinkedList.h
│ │ │ │ ├── MathAlgorithms.h
│ │ │ │ ├── MemoryChecking.h
│ │ │ │ ├── MSStdInt.h
│ │ │ │ ├── NullPtr.h
│ │ │ │ ├── RangedPtr.h
│ │ │ │ ├── Range.h
│ │ │ │ ├── RefPtr.h
│ │ │ │ ├── Scoped.h
│ │ │ │ ├── SHA1.h
│ │ │ │ ├── SplayTree.h
│ │ │ │ ├── StandardInteger.h
│ │ │ │ ├── ThreadLocal.h
│ │ │ │ ├── TypedEnum.h
│ │ │ │ ├── Types.h
│ │ │ │ ├── TypeTraits.h
│ │ │ │ ├── Util.h
│ │ │ │ └── WeakPtr.h
│ │ │ └── lib
│ │ │ └── libjs_static.a
│ │ └── spidermonkey-win32
│ │ ├── include
│ │ │ ├── ds
│ │ │ │ └── BitArray.h
│ │ │ ├── gc
│ │ │ │ └── Root.h
│ │ │ ├── js
│ │ │ │ ├── Anchor.h
│ │ │ │ ├── CharacterEncoding.h
│ │ │ │ ├── GCAPI.h
│ │ │ │ ├── HashTable.h
│ │ │ │ ├── HeapAPI.h
│ │ │ │ ├── LegacyIntTypes.h
│ │ │ │ ├── MemoryMetrics.h
│ │ │ │ ├── PropertyKey.h
│ │ │ │ ├── RequiredDefines.h
│ │ │ │ ├── TemplateLib.h
│ │ │ │ ├── Utility.h
│ │ │ │ ├── Value.h
│ │ │ │ └── Vector.h
│ │ │ ├── jsalloc.h
│ │ │ ├── jsapi.h
│ │ │ ├── jsclass.h
│ │ │ ├── jsclist.h
│ │ │ ├── js-config.h
│ │ │ ├── jscpucfg.h
│ │ │ ├── jsdbgapi.h
│ │ │ ├── jsdhash.h
│ │ │ ├── jsfriendapi.h
│ │ │ ├── jslock.h
│ │ │ ├── js.msg
│ │ │ ├── json.h
│ │ │ ├── jsperf.h
│ │ │ ├── jsprf.h
│ │ │ ├── jsprototypes.h
│ │ │ ├── jsproxy.h
│ │ │ ├── jsprvtd.h
│ │ │ ├── jspubtd.h
│ │ │ ├── jstypes.h
│ │ │ ├── jsutil.h
│ │ │ ├── jsversion.h
│ │ │ ├── jswrapper.h
│ │ │ └── mozilla
│ │ │ ├── Assertions.h
│ │ │ ├── Attributes.h
│ │ │ ├── BloomFilter.h
│ │ │ ├── Char16.h
│ │ │ ├── CheckedInt.h
│ │ │ ├── Compiler.h
│ │ │ ├── Constants.h
│ │ │ ├── DebugOnly.h
│ │ │ ├── EnumSet.h
│ │ │ ├── FloatingPoint.h
│ │ │ ├── GuardObjects.h
│ │ │ ├── HashFunctions.h
│ │ │ ├── Likely.h
│ │ │ ├── LinkedList.h
│ │ │ ├── MathAlgorithms.h
│ │ │ ├── MemoryChecking.h
│ │ │ ├── MSStdInt.h
│ │ │ ├── NullPtr.h
│ │ │ ├── RangedPtr.h
│ │ │ ├── Range.h
│ │ │ ├── RefPtr.h
│ │ │ ├── Scoped.h
│ │ │ ├── SHA1.h
│ │ │ ├── SplayTree.h
│ │ │ ├── StandardInteger.h
│ │ │ ├── ThreadLocal.h
│ │ │ ├── TypedEnum.h
│ │ │ ├── Types.h
│ │ │ ├── TypeTraits.h
│ │ │ ├── Util.h
│ │ │ └── WeakPtr.h
│ │ └── lib
│ │ ├── mozjs.dll
│ │ └── mozjs.lib
│ └── lua
│ ├── cocos2dx_support
│ │ ├── CCBProxy.cpp
│ │ ├── CCBProxy.h
│ │ ├── CCLuaBridge.cpp
│ │ ├── CCLuaBridge.h
│ │ ├── CCLuaEngine.cpp
│ │ ├── CCLuaEngine.h
│ │ ├── CCLuaStack.cpp
│ │ ├── CCLuaStack.h
│ │ ├── CCLuaValue.cpp
│ │ ├── CCLuaValue.h
│ │ ├── Cocos2dxLuaLoader.cpp
│ │ ├── Cocos2dxLuaLoader.h
│ │ ├── LuaCocos2d.cpp
│ │ ├── LuaCocos2d.h
│ │ ├── lua_cocos2dx_cocostudio_manual.cpp
│ │ ├── lua_cocos2dx_cocostudio_manual.h
│ │ ├── lua_cocos2dx_extensions_manual.cpp
│ │ ├── lua_cocos2dx_extensions_manual.h
│ │ ├── lua_cocos2dx_manual.cpp
│ │ ├── lua_cocos2dx_manual.h
│ │ ├── LuaCocoStudio.cpp
│ │ ├── LuaCocoStudio.h
│ │ ├── Lua_extensions_CCB.cpp
│ │ ├── Lua_extensions_CCB.h
│ │ ├── Lua_web_socket.cpp
│ │ ├── Lua_web_socket.h
│ │ ├── platform
│ │ │ └── ios
│ │ │ ├── CCLuaObjcBridge.h
│ │ │ └── CCLuaObjcBridge.mm
│ │ ├── tolua_fix.c
│ │ └── tolua_fix.h
│ ├── lua
│ │ ├── lapi.c
│ │ ├── lapi.h
│ │ ├── lauxlib.c
│ │ ├── lauxlib.h
│ │ ├── lbaselib.c
│ │ ├── lcode.c
│ │ ├── lcode.h
│ │ ├── ldblib.c
│ │ ├── ldebug.c
│ │ ├── ldebug.h
│ │ ├── ldo.c
│ │ ├── ldo.h
│ │ ├── ldump.c
│ │ ├── lfunc.c
│ │ ├── lfunc.h
│ │ ├── lgc.c
│ │ ├── lgc.h
│ │ ├── linit.c
│ │ ├── liolib.c
│ │ ├── llex.c
│ │ ├── llex.h
│ │ ├── llimits.h
│ │ ├── lmathlib.c
│ │ ├── lmem.c
│ │ ├── lmem.h
│ │ ├── loadlib.c
│ │ ├── lobject.c
│ │ ├── lobject.h
│ │ ├── lopcodes.c
│ │ ├── lopcodes.h
│ │ ├── loslib.c
│ │ ├── lparser.c
│ │ ├── lparser.h
│ │ ├── lstate.c
│ │ ├── lstate.h
│ │ ├── lstring.c
│ │ ├── lstring.h
│ │ ├── lstrlib.c
│ │ ├── ltable.c
│ │ ├── ltable.h
│ │ ├── ltablib.c
│ │ ├── ltm.c
│ │ ├── ltm.h
│ │ ├── lua.c
│ │ ├── luaconf.h
│ │ ├── lua.h
│ │ ├── lualib.h
│ │ ├── lundump.c
│ │ ├── lundump.h
│ │ ├── lvm.c
│ │ ├── lvm.h
│ │ ├── lzio.c
│ │ ├── lzio.h
│ │ └── print.c
│ ├── luajit
│ │ ├── android
│ │ │ ├── armeabi
│ │ │ │ └── libluajit.a
│ │ │ ├── armeabi-v7a
│ │ │ │ └── libluajit.a
│ │ │ └── x86
│ │ │ └── libluajit.a
│ │ ├── Android.mk
│ │ ├── build_android.sh
│ │ ├── build_ios.sh
│ │ ├── build_mac.sh
│ │ ├── include
│ │ │ ├── lauxlib.h
│ │ │ ├── luaconf.h
│ │ │ ├── lua.h
│ │ │ └── lualib.h
│ │ ├── ios
│ │ │ └── libluajit.a
│ │ ├── LuaJIT-2.0.1
│ │ │ ├── COPYRIGHT
│ │ │ ├── doc
│ │ │ │ ├── bluequad.css
│ │ │ │ ├── bluequad-print.css
│ │ │ │ ├── changes.html
│ │ │ │ ├── contact.html
│ │ │ │ ├── ext_c_api.html
│ │ │ │ ├── extensions.html
│ │ │ │ ├── ext_ffi_api.html
│ │ │ │ ├── ext_ffi.html
│ │ │ │ ├── ext_ffi_semantics.html
│ │ │ │ ├── ext_ffi_tutorial.html
│ │ │ │ ├── ext_jit.html
│ │ │ │ ├── faq.html
│ │ │ │ ├── img
│ │ │ │ │ └── contact.png
│ │ │ │ ├── install.html
│ │ │ │ ├── luajit.html
│ │ │ │ ├── running.html
│ │ │ │ └── status.html
│ │ │ ├── dynasm
│ │ │ │ ├── dasm_arm.h
│ │ │ │ ├── dasm_arm.lua
│ │ │ │ ├── dasm_mips.h
│ │ │ │ ├── dasm_mips.lua
│ │ │ │ ├── dasm_ppc.h
│ │ │ │ ├── dasm_ppc.lua
│ │ │ │ ├── dasm_proto.h
│ │ │ │ ├── dasm_x64.lua
│ │ │ │ ├── dasm_x86.h
│ │ │ │ ├── dasm_x86.lua
│ │ │ │ └── dynasm.lua
│ │ │ ├── etc
│ │ │ │ ├── luajit.1
│ │ │ │ └── luajit.pc
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── src
│ │ │ │ ├── host
│ │ │ │ │ ├── buildvm_asm.c
│ │ │ │ │ ├── buildvm.c
│ │ │ │ │ ├── buildvm_fold.c
│ │ │ │ │ ├── buildvm.h
│ │ │ │ │ ├── buildvm_lib.c
│ │ │ │ │ ├── buildvm_peobj.c
│ │ │ │ │ ├── genminilua.lua
│ │ │ │ │ ├── minilua.c
│ │ │ │ │ └── README
│ │ │ │ ├── jit
│ │ │ │ │ ├── bc.lua
│ │ │ │ │ ├── bcsave.lua
│ │ │ │ │ ├── dis_arm.lua
│ │ │ │ │ ├── dis_mipsel.lua
│ │ │ │ │ ├── dis_mips.lua
│ │ │ │ │ ├── dis_ppc.lua
│ │ │ │ │ ├── dis_x64.lua
│ │ │ │ │ ├── dis_x86.lua
│ │ │ │ │ ├── dump.lua
│ │ │ │ │ └── v.lua
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lib_aux.c
│ │ │ │ ├── lib_base.c
│ │ │ │ ├── lib_bit.c
│ │ │ │ ├── lib_debug.c
│ │ │ │ ├── lib_ffi.c
│ │ │ │ ├── lib_init.c
│ │ │ │ ├── lib_io.c
│ │ │ │ ├── lib_jit.c
│ │ │ │ ├── lib_math.c
│ │ │ │ ├── lib_os.c
│ │ │ │ ├── lib_package.c
│ │ │ │ ├── lib_string.c
│ │ │ │ ├── lib_table.c
│ │ │ │ ├── lj_alloc.c
│ │ │ │ ├── lj_alloc.h
│ │ │ │ ├── ljamalg.c
│ │ │ │ ├── lj_api.c
│ │ │ │ ├── lj_arch.h
│ │ │ │ ├── lj_asm_arm.h
│ │ │ │ ├── lj_asm.c
│ │ │ │ ├── lj_asm.h
│ │ │ │ ├── lj_asm_mips.h
│ │ │ │ ├── lj_asm_ppc.h
│ │ │ │ ├── lj_asm_x86.h
│ │ │ │ ├── lj_bc.c
│ │ │ │ ├── lj_bcdump.h
│ │ │ │ ├── lj_bc.h
│ │ │ │ ├── lj_bcread.c
│ │ │ │ ├── lj_bcwrite.c
│ │ │ │ ├── lj_carith.c
│ │ │ │ ├── lj_carith.h
│ │ │ │ ├── lj_ccallback.c
│ │ │ │ ├── lj_ccallback.h
│ │ │ │ ├── lj_ccall.c
│ │ │ │ ├── lj_ccall.h
│ │ │ │ ├── lj_cconv.c
│ │ │ │ ├── lj_cconv.h
│ │ │ │ ├── lj_cdata.c
│ │ │ │ ├── lj_cdata.h
│ │ │ │ ├── lj_char.c
│ │ │ │ ├── lj_char.h
│ │ │ │ ├── lj_clib.c
│ │ │ │ ├── lj_clib.h
│ │ │ │ ├── lj_cparse.c
│ │ │ │ ├── lj_cparse.h
│ │ │ │ ├── lj_crecord.c
│ │ │ │ ├── lj_crecord.h
│ │ │ │ ├── lj_ctype.c
│ │ │ │ ├── lj_ctype.h
│ │ │ │ ├── lj_debug.c
│ │ │ │ ├── lj_debug.h
│ │ │ │ ├── lj_def.h
│ │ │ │ ├── lj_dispatch.c
│ │ │ │ ├── lj_dispatch.h
│ │ │ │ ├── lj_emit_arm.h
│ │ │ │ ├── lj_emit_mips.h
│ │ │ │ ├── lj_emit_ppc.h
│ │ │ │ ├── lj_emit_x86.h
│ │ │ │ ├── lj_err.c
│ │ │ │ ├── lj_err.h
│ │ │ │ ├── lj_errmsg.h
│ │ │ │ ├── lj_ff.h
│ │ │ │ ├── lj_ffrecord.c
│ │ │ │ ├── lj_ffrecord.h
│ │ │ │ ├── lj_frame.h
│ │ │ │ ├── lj_func.c
│ │ │ │ ├── lj_func.h
│ │ │ │ ├── lj_gc.c
│ │ │ │ ├── lj_gc.h
│ │ │ │ ├── lj_gdbjit.c
│ │ │ │ ├── lj_gdbjit.h
│ │ │ │ ├── lj_ir.c
│ │ │ │ ├── lj_ircall.h
│ │ │ │ ├── lj_ir.h
│ │ │ │ ├── lj_iropt.h
│ │ │ │ ├── lj_jit.h
│ │ │ │ ├── lj_lex.c
│ │ │ │ ├── lj_lex.h
│ │ │ │ ├── lj_lib.c
│ │ │ │ ├── lj_lib.h
│ │ │ │ ├── lj_load.c
│ │ │ │ ├── lj_mcode.c
│ │ │ │ ├── lj_mcode.h
│ │ │ │ ├── lj_meta.c
│ │ │ │ ├── lj_meta.h
│ │ │ │ ├── lj_obj.c
│ │ │ │ ├── lj_obj.h
│ │ │ │ ├── lj_opt_dce.c
│ │ │ │ ├── lj_opt_fold.c
│ │ │ │ ├── lj_opt_loop.c
│ │ │ │ ├── lj_opt_mem.c
│ │ │ │ ├── lj_opt_narrow.c
│ │ │ │ ├── lj_opt_sink.c
│ │ │ │ ├── lj_opt_split.c
│ │ │ │ ├── lj_parse.c
│ │ │ │ ├── lj_parse.h
│ │ │ │ ├── lj_record.c
│ │ │ │ ├── lj_record.h
│ │ │ │ ├── lj_snap.c
│ │ │ │ ├── lj_snap.h
│ │ │ │ ├── lj_state.c
│ │ │ │ ├── lj_state.h
│ │ │ │ ├── lj_str.c
│ │ │ │ ├── lj_str.h
│ │ │ │ ├── lj_strscan.c
│ │ │ │ ├── lj_strscan.h
│ │ │ │ ├── lj.supp
│ │ │ │ ├── lj_tab.c
│ │ │ │ ├── lj_tab.h
│ │ │ │ ├── lj_target_arm.h
│ │ │ │ ├── lj_target.h
│ │ │ │ ├── lj_target_mips.h
│ │ │ │ ├── lj_target_ppc.h
│ │ │ │ ├── lj_target_x86.h
│ │ │ │ ├── lj_trace.c
│ │ │ │ ├── lj_traceerr.h
│ │ │ │ ├── lj_trace.h
│ │ │ │ ├── lj_udata.c
│ │ │ │ ├── lj_udata.h
│ │ │ │ ├── lj_vmevent.c
│ │ │ │ ├── lj_vmevent.h
│ │ │ │ ├── lj_vm.h
│ │ │ │ ├── lj_vmmath.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lua.h
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── luajit.c
│ │ │ │ ├── luajit.h
│ │ │ │ ├── lualib.h
│ │ │ │ ├── Makefile
│ │ │ │ ├── Makefile.dep
│ │ │ │ ├── msvcbuild.bat
│ │ │ │ ├── vm_arm.dasc
│ │ │ │ ├── vm_mips.dasc
│ │ │ │ ├── vm_ppc.dasc
│ │ │ │ ├── vm_ppcspe.dasc
│ │ │ │ ├── vm_x86.dasc
│ │ │ │ └── xedkbuild.bat
│ │ │ └── v2.0.1_hotfix1.patch
│ │ └── win32
│ │ ├── lua51.dll
│ │ └── lua51.lib
│ ├── proj.android
│ │ └── Android.mk
│ ├── proj.blackberry
│ ├── proj.emscripten
│ │ └── Makefile
│ ├── proj.linux
│ │ └── Makefile
│ ├── proj.marmalade
│ │ └── lua.mkf
│ ├── proj.nacl
│ │ └── Makefile
│ ├── proj.tizen
│ │ └── src
│ │ └── placeholder.txt
│ ├── proj.win32
│ │ ├── Debug.win32
│ │ ├── liblua.vcxproj
│ │ ├── liblua.vcxproj.filters
│ │ └── liblua.vcxproj.user
│ ├── script
│ │ ├── AudioEngine.lua
│ │ ├── CCBReaderLoad.lua
│ │ ├── Cocos2d.lua
│ │ ├── CocoStudio.lua
│ │ ├── extern.lua
│ │ └── json.lua
│ └── tolua
│ ├── tolua_event.c
│ ├── tolua_event.h
│ ├── tolua++.h
│ ├── tolua_is.c
│ ├── tolua_map.c
│ ├── tolua_push.c
│ └── tolua_to.c
├── template
│ ├── multi-platform-cpp
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ ├── AppDelegate.h
│ │ │ ├── HelloWorldScene.cpp
│ │ │ └── HelloWorldScene.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── hellocpp
│ │ │ │ └── main.cpp
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── README.md
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── hellocpp
│ │ │ └── HelloCpp.java
│ │ ├── proj.blackberry
│ │ │ ├── bar-descriptor.xml
│ │ │ ├── empty
│ │ │ │ └── empty
│ │ │ ├── icon.png
│ │ │ └── main.cpp
│ │ ├── proj.ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── HelloCpp.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-152.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ ├── Prefix.pch
│ │ │ ├── RootViewController.h
│ │ │ └── RootViewController.mm
│ │ ├── proj.linux
│ │ │ ├── build.sh
│ │ │ ├── main.cpp
│ │ │ └── Makefile
│ │ ├── proj.mac
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── en.lproj
│ │ │ │ ├── InfoPlist.strings
│ │ │ │ └── MainMenu.xib
│ │ │ ├── HelloCpp.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Icon.icns
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ └── Prefix.pch
│ │ ├── proj.marmalade
│ │ │ ├── HelloCpp.mkb
│ │ │ └── src
│ │ │ ├── Main.cpp
│ │ │ └── Main.h
│ │ ├── proj.tizen
│ │ │ ├── data
│ │ │ ├── inc
│ │ │ ├── lib
│ │ │ ├── manifest.xml
│ │ │ ├── README.mdown
│ │ │ ├── res
│ │ │ ├── shared
│ │ │ │ ├── data
│ │ │ │ ├── res
│ │ │ │ │ └── screen-density-xhigh
│ │ │ │ │ └── mainmenu.png
│ │ │ │ └── trusted
│ │ │ └── src
│ │ │ └── HelloCppEntry.cpp
│ │ ├── proj.win32
│ │ │ ├── HelloCpp.sln
│ │ │ ├── HelloCpp.vcxproj
│ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ ├── HelloCpp.vcxproj.user
│ │ │ ├── main.cpp
│ │ │ └── main.h
│ │ ├── proj.winrt
│ │ │ ├── App.xaml
│ │ │ ├── App.xaml.cpp
│ │ │ ├── App.xaml.h
│ │ │ ├── Assets
│ │ │ │ ├── Logo.png
│ │ │ │ ├── SmallLogo.png
│ │ │ │ ├── SplashScreen.png
│ │ │ │ ├── StoreLogo.png
│ │ │ │ └── WideLogo.png
│ │ │ ├── Common
│ │ │ │ └── StandardStyles.xaml
│ │ │ ├── HelloCpp_2013.sln
│ │ │ ├── HelloCpp_2013.vcxproj
│ │ │ ├── HelloCpp_2013.vcxproj.filters
│ │ │ ├── HelloCpp.sln
│ │ │ ├── HelloCpp.vcxproj
│ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cpp
│ │ │ ├── MainPage.xaml.h
│ │ │ ├── Package_2013.appxmanifest
│ │ │ ├── Package.appxmanifest
│ │ │ ├── pch.cpp
│ │ │ ├── pch.h
│ │ │ └── TemporaryKey.pfx
│ │ ├── proj.wp8
│ │ │ ├── Assets
│ │ │ │ ├── AlignmentGrid.png
│ │ │ │ ├── ApplicationIcon.png
│ │ │ │ └── Tiles
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ ├── IconicTileMediumLarge.png
│ │ │ │ └── IconicTileSmall.png
│ │ │ ├── HelloCpp.cpp
│ │ │ ├── HelloCpp.h
│ │ │ ├── HelloCpp.sln
│ │ │ ├── HelloCpp.vcxproj
│ │ │ ├── HelloCpp.vcxproj.filters
│ │ │ └── WMAppManifest.xml
│ │ └── Resources
│ │ ├── CloseNormal.png
│ │ ├── CloseSelected.png
│ │ ├── fonts
│ │ │ ├── arial.ttf
│ │ │ └── Marker Felt.ttf
│ │ └── HelloWorld.png
│ ├── multi-platform-js
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ └── AppDelegate.h
│ │ ├── proj.android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── ant.properties
│ │ │ ├── build_native.sh
│ │ │ ├── build.xml
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── hellojavascript
│ │ │ │ └── main.cpp
│ │ │ ├── proguard-project.txt
│ │ │ ├── project.properties
│ │ │ ├── README.md
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── hellojavascript
│ │ │ └── HelloJavascript.java
│ │ ├── proj.ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Default@2x.png
│ │ │ ├── Default-568h@2x.png
│ │ │ ├── Default.png
│ │ │ ├── HelloJavascript.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── Icon-114.png
│ │ │ ├── Icon-120.png
│ │ │ ├── Icon-144.png
│ │ │ ├── Icon-152.png
│ │ │ ├── Icon-57.png
│ │ │ ├── Icon-72.png
│ │ │ ├── Icon-76.png
│ │ │ ├── Info.plist
│ │ │ ├── main.m
│ │ │ ├── Prefix.pch
│ │ │ ├── RootViewController.h
│ │ │ └── RootViewController.mm
│ │ ├── proj.win32
│ │ │ ├── game.rc
│ │ │ ├── HelloJavascript.sln
│ │ │ ├── HelloJavascript.vcxproj
│ │ │ ├── HelloJavascript.vcxproj.filters
│ │ │ ├── HelloJavascript.vcxproj.user
│ │ │ ├── main.cpp
│ │ │ ├── main.h
│ │ │ ├── res
│ │ │ │ └── game.ico
│ │ │ └── resource.h
│ │ └── Resources
│ │ ├── cocos2d-jsb.js
│ │ ├── res
│ │ │ ├── CloseNormal.png
│ │ │ ├── CloseSelected.png
│ │ │ └── HelloWorld.png
│ │ └── src
│ │ ├── myApp.js
│ │ └── resource.js
│ └── multi-platform-lua
│ ├── Classes
│ │ ├── AppDelegate.cpp
│ │ └── AppDelegate.h
│ ├── proj.android
│ │ ├── AndroidManifest.xml
│ │ ├── ant.properties
│ │ ├── build_native.sh
│ │ ├── build.xml
│ │ ├── jni
│ │ │ ├── Android.mk
│ │ │ ├── Application.mk
│ │ │ └── hellolua
│ │ │ └── main.cpp
│ │ ├── proguard-project.txt
│ │ ├── project.properties
│ │ ├── res
│ │ │ ├── drawable-hdpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── icon.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── icon.png
│ │ │ └── values
│ │ │ └── strings.xml
│ │ └── src
│ │ └── org
│ │ └── cocos2dx
│ │ └── hellolua
│ │ └── HelloLua.java
│ ├── proj.blackberry
│ │ ├── bar-descriptor.xml
│ │ ├── empty
│ │ ├── icon.png
│ │ └── main.cpp
│ ├── proj.ios
│ │ ├── AppController.h
│ │ ├── AppController.mm
│ │ ├── Default@2x.png
│ │ ├── Default-568h@2x.png
│ │ ├── Default.png
│ │ ├── HelloLua.xcodeproj
│ │ │ └── project.pbxproj
│ │ ├── Icon-114.png
│ │ ├── Icon-120.png
│ │ ├── Icon-144.png
│ │ ├── Icon-152.png
│ │ ├── Icon-57.png
│ │ ├── Icon-72.png
│ │ ├── Icon-76.png
│ │ ├── Info.plist
│ │ ├── main.m
│ │ ├── Prefix.pch
│ │ ├── RootViewController.h
│ │ └── RootViewController.mm
│ ├── proj.linux
│ │ ├── build.sh
│ │ ├── main.cpp
│ │ └── Makefile
│ ├── proj.marmalade
│ │ ├── cccopy.py
│ │ ├── HelloLua.mkb
│ │ └── src
│ │ ├── Main.cpp
│ │ └── Main.h
│ ├── proj.win32
│ │ ├── game.rc
│ │ ├── HelloLua.sln
│ │ ├── HelloLua.vcxproj
│ │ ├── HelloLua.vcxproj.filters
│ │ ├── HelloLua.vcxproj.user
│ │ ├── main.cpp
│ │ ├── main.h
│ │ ├── res
│ │ │ └── game.ico
│ │ └── resource.h
│ └── Resources
│ ├── app.icf
│ ├── background.mp3
│ ├── background.ogg
│ ├── crop.png
│ ├── dog.png
│ ├── effect1.wav
│ ├── farm.jpg
│ ├── fonts
│ │ └── Marker Felt.ttf
│ ├── hello2.lua
│ ├── hello.lua
│ ├── land.png
│ ├── menu1.png
│ └── menu2.png
├── tools
│ ├── android-buildsetup.sh
│ ├── android-emulator-README.md
│ ├── bindings-generator
│ │ ├── clang
│ │ │ ├── cindex.py
│ │ │ └── __init__.py
│ │ ├── generator
│ │ ├── generator.py
│ │ ├── README.md
│ │ ├── targets
│ │ │ └── spidermonkey
│ │ │ ├── common
│ │ │ │ ├── Android.mk.example
│ │ │ │ ├── debugger1.png
│ │ │ │ ├── debugger2.png
│ │ │ │ ├── debugger.js.example
│ │ │ │ ├── Debugger.md
│ │ │ │ ├── helper.js.example
│ │ │ │ ├── js_bindings_config.h.example
│ │ │ │ ├── js_manual_conversions.cpp.example
│ │ │ │ ├── js_manual_conversions.h.example
│ │ │ │ ├── sample.js
│ │ │ │ ├── ScriptingCore.cpp.example
│ │ │ │ ├── ScriptingCore.h.example
│ │ │ │ ├── spidermonkey_specifics.h.example
│ │ │ │ └── uthash.h
│ │ │ ├── conversions.yaml
│ │ │ └── templates
│ │ │ ├── apidoc_classfoot.js
│ │ │ ├── apidoc_classhead.js
│ │ │ ├── apidoc_function.js
│ │ │ ├── apidoc_ns.js
│ │ │ ├── function.h
│ │ │ ├── ifunction.c
│ │ │ ├── ifunction_overloaded.c
│ │ │ ├── layout_foot.c
│ │ │ ├── layout_foot.h
│ │ │ ├── layout_head.c
│ │ │ ├── layout_head.h
│ │ │ ├── prelude.c
│ │ │ ├── prelude.h
│ │ │ ├── register.c
│ │ │ ├── sfunction.c
│ │ │ └── sfunction_overloaded.c
│ │ └── test
│ │ ├── simple_test
│ │ │ ├── simple_class.cpp
│ │ │ └── simple_class.h
│ │ ├── test.ini
│ │ ├── test.sh
│ │ ├── user.cfg.sample
│ │ └── userconf.ini.sample
│ ├── closure-compiler
│ │ ├── compiler.jar
│ │ ├── obfuscate.py
│ │ └── template.xml
│ ├── cocos2d-console
│ │ ├── console
│ │ │ ├── bin
│ │ │ │ ├── compiler_config_sample.json
│ │ │ │ ├── compiler.jar
│ │ │ │ ├── jsbcc
│ │ │ │ ├── jsbcc.exe
│ │ │ │ └── mozjs.dll
│ │ │ ├── cocos2d.ini
│ │ │ ├── cocos2d_jscompile.py
│ │ │ ├── cocos2d_new.py
│ │ │ ├── cocos2d.py
│ │ │ └── cocos2d_version.py
│ │ ├── README.md
│ │ └── src
│ │ └── jsbcc_source
│ │ ├── jsbcc-vc2010.sln
│ │ ├── jsbcc-vc2010.vcxproj
│ │ ├── jsbcc-vc2010.vcxproj.filters
│ │ ├── jsbcc-vc2010.vcxproj.user
│ │ ├── jsbcc.xcodeproj
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace
│ │ │ │ └── contents.xcworkspacedata
│ │ │ └── xcuserdata
│ │ │ ├── james.xcuserdatad
│ │ │ │ └── xcschemes
│ │ │ │ ├── jsbcc.xcscheme
│ │ │ │ └── xcschememanagement.plist
│ │ │ └── rquesada.xcuserdatad
│ │ │ └── xcschemes
│ │ │ ├── jsbcc.xcscheme
│ │ │ └── xcschememanagement.plist
│ │ ├── README
│ │ ├── spidermonkey-ios
│ │ │ ├── include
│ │ │ │ ├── ds
│ │ │ │ │ └── BitArray.h
│ │ │ │ ├── gc
│ │ │ │ │ └── Root.h
│ │ │ │ ├── js
│ │ │ │ │ ├── Anchor.h
│ │ │ │ │ ├── CharacterEncoding.h
│ │ │ │ │ ├── GCAPI.h
│ │ │ │ │ ├── HashTable.h
│ │ │ │ │ ├── HeapAPI.h
│ │ │ │ │ ├── LegacyIntTypes.h
│ │ │ │ │ ├── MemoryMetrics.h
│ │ │ │ │ ├── PropertyKey.h
│ │ │ │ │ ├── RequiredDefines.h
│ │ │ │ │ ├── TemplateLib.h
│ │ │ │ │ ├── Utility.h
│ │ │ │ │ ├── Value.h
│ │ │ │ │ └── Vector.h
│ │ │ │ ├── jsalloc.h
│ │ │ │ ├── jsapi.h
│ │ │ │ ├── jsclass.h
│ │ │ │ ├── jsclist.h
│ │ │ │ ├── js-config.h
│ │ │ │ ├── jscpucfg.h
│ │ │ │ ├── jsdbgapi.h
│ │ │ │ ├── jsdhash.h
│ │ │ │ ├── jsfriendapi.h
│ │ │ │ ├── jslock.h
│ │ │ │ ├── js.msg
│ │ │ │ ├── json.h
│ │ │ │ ├── jsperf.h
│ │ │ │ ├── jsprf.h
│ │ │ │ ├── jsprototypes.h
│ │ │ │ ├── jsproxy.h
│ │ │ │ ├── jsprvtd.h
│ │ │ │ ├── jspubtd.h
│ │ │ │ ├── jstypes.h
│ │ │ │ ├── jsutil.h
│ │ │ │ ├── jsversion.h
│ │ │ │ ├── jswrapper.h
│ │ │ │ └── mozilla
│ │ │ │ ├── Assertions.h
│ │ │ │ ├── Attributes.h
│ │ │ │ ├── BloomFilter.h
│ │ │ │ ├── Char16.h
│ │ │ │ ├── CheckedInt.h
│ │ │ │ ├── Compiler.h
│ │ │ │ ├── Constants.h
│ │ │ │ ├── DebugOnly.h
│ │ │ │ ├── EnumSet.h
│ │ │ │ ├── FloatingPoint.h
│ │ │ │ ├── GuardObjects.h
│ │ │ │ ├── HashFunctions.h
│ │ │ │ ├── Likely.h
│ │ │ │ ├── LinkedList.h
│ │ │ │ ├── MathAlgorithms.h
│ │ │ │ ├── MemoryChecking.h
│ │ │ │ ├── MSStdInt.h
│ │ │ │ ├── NullPtr.h
│ │ │ │ ├── RangedPtr.h
│ │ │ │ ├── Range.h
│ │ │ │ ├── RefPtr.h
│ │ │ │ ├── Scoped.h
│ │ │ │ ├── SHA1.h
│ │ │ │ ├── SplayTree.h
│ │ │ │ ├── StandardInteger.h
│ │ │ │ ├── ThreadLocal.h
│ │ │ │ ├── TypedEnum.h
│ │ │ │ ├── Types.h
│ │ │ │ ├── TypeTraits.h
│ │ │ │ ├── Util.h
│ │ │ │ └── WeakPtr.h
│ │ │ └── lib
│ │ │ └── libjs_static.a
│ │ ├── spidermonkey-win32
│ │ │ └── include
│ │ │ ├── ds
│ │ │ │ └── BitArray.h
│ │ │ ├── gc
│ │ │ │ └── Root.h
│ │ │ ├── js
│ │ │ │ ├── Anchor.h
│ │ │ │ ├── CharacterEncoding.h
│ │ │ │ ├── GCAPI.h
│ │ │ │ ├── HashTable.h
│ │ │ │ ├── HeapAPI.h
│ │ │ │ ├── LegacyIntTypes.h
│ │ │ │ ├── MemoryMetrics.h
│ │ │ │ ├── PropertyKey.h
│ │ │ │ ├── RequiredDefines.h
│ │ │ │ ├── TemplateLib.h
│ │ │ │ ├── Utility.h
│ │ │ │ ├── Value.h
│ │ │ │ └── Vector.h
│ │ │ ├── jsalloc.h
│ │ │ ├── jsapi.h
│ │ │ ├── jsclass.h
│ │ │ ├── jsclist.h
│ │ │ ├── js-config.h
│ │ │ ├── jscpucfg.h
│ │ │ ├── jsdbgapi.h
│ │ │ ├── jsdhash.h
│ │ │ ├── jsfriendapi.h
│ │ │ ├── jslock.h
│ │ │ ├── js.msg
│ │ │ ├── json.h
│ │ │ ├── jsperf.h
│ │ │ ├── jsprf.h
│ │ │ ├── jsprototypes.h
│ │ │ ├── jsproxy.h
│ │ │ ├── jsprvtd.h
│ │ │ ├── jspubtd.h
│ │ │ ├── jstypes.h
│ │ │ ├── jsutil.h
│ │ │ ├── jsversion.h
│ │ │ ├── jswrapper.h
│ │ │ └── mozilla
│ │ │ ├── Assertions.h
│ │ │ ├── Attributes.h
│ │ │ ├── BloomFilter.h
│ │ │ ├── Char16.h
│ │ │ ├── CheckedInt.h
│ │ │ ├── Compiler.h
│ │ │ ├── Constants.h
│ │ │ ├── DebugOnly.h
│ │ │ ├── EnumSet.h
│ │ │ ├── FloatingPoint.h
│ │ │ ├── GuardObjects.h
│ │ │ ├── HashFunctions.h
│ │ │ ├── Likely.h
│ │ │ ├── LinkedList.h
│ │ │ ├── MathAlgorithms.h
│ │ │ ├── MemoryChecking.h
│ │ │ ├── MSStdInt.h
│ │ │ ├── NullPtr.h
│ │ │ ├── RangedPtr.h
│ │ │ ├── Range.h
│ │ │ ├── RefPtr.h
│ │ │ ├── Scoped.h
│ │ │ ├── SHA1.h
│ │ │ ├── SplayTree.h
│ │ │ ├── StandardInteger.h
│ │ │ ├── ThreadLocal.h
│ │ │ ├── TypedEnum.h
│ │ │ ├── Types.h
│ │ │ ├── TypeTraits.h
│ │ │ ├── Util.h
│ │ │ └── WeakPtr.h
│ │ └── src
│ │ └── main.cpp
│ ├── jenkins_scripts
│ │ ├── ant.properties
│ │ ├── build.xml
│ │ ├── mac
│ │ │ ├── android
│ │ │ │ ├── build-android-2.2-3.2-debug.sh
│ │ │ │ ├── build-android-2.2-3.2-release.sh
│ │ │ │ ├── build-android-4.x-debug.sh
│ │ │ │ ├── build-android-4.x-release.sh
│ │ │ │ ├── generate-js-cxx-bindings.sh
│ │ │ │ ├── test-android-2.2-3.2-debug.sh
│ │ │ │ ├── test-android-2.2-3.2-release.sh
│ │ │ │ ├── test-android-4.x-debug.sh
│ │ │ │ └── test-android-4.x-release.sh
│ │ │ ├── debug.keystore
│ │ │ ├── ios
│ │ │ │ ├── build-ios-all.sh
│ │ │ │ ├── build-ios-debug.sh
│ │ │ │ ├── build-ios-release.sh
│ │ │ │ ├── iphonesim
│ │ │ │ ├── test-ios-debug.sh
│ │ │ │ └── test-ios-release.sh
│ │ │ ├── iOS_SikuliTest.sikuli
│ │ │ │ ├── 1345694015019.png
│ │ │ │ ├── 1345698378832.png
│ │ │ │ ├── 1346297215212.png
│ │ │ │ ├── 1346311259004.png
│ │ │ │ ├── 1346315512087.png
│ │ │ │ ├── AccalaromeLI.png
│ │ │ │ ├── Acceleromete.png
│ │ │ │ ├── Accelerometer.png
│ │ │ │ ├── Acti0nsEaseT.png
│ │ │ │ ├── Acti0nsTest.png
│ │ │ │ ├── ActionManaerTest.png
│ │ │ │ ├── ActionsEaseTest.png
│ │ │ │ ├── ActionsProgressTest.png
│ │ │ │ ├── ActionsTest.png
│ │ │ │ ├── Back_ControlButton.png
│ │ │ │ ├── Back.png
│ │ │ │ ├── Box2dTestBed.png
│ │ │ │ ├── Box2dTest_Click1.png
│ │ │ │ ├── Box2dTest_Click2.png
│ │ │ │ ├── Box2dTest.png
│ │ │ │ ├── Bu350.png
│ │ │ │ ├── Buci422.png
│ │ │ │ ├── Bug1159.png
│ │ │ │ ├── Bug1174.png
│ │ │ │ ├── Bug350-1.png
│ │ │ │ ├── Bug350.png
│ │ │ │ ├── Bug-458.png
│ │ │ │ ├── Bug-624.png
│ │ │ │ ├── Bug-886.png
│ │ │ │ ├── Bug-899.png
│ │ │ │ ├── Bug914-1.png
│ │ │ │ ├── Bug914-2.png
│ │ │ │ ├── Bug914.png
│ │ │ │ ├── Bugs_back_1.png
│ │ │ │ ├── Bugs_back_2.png
│ │ │ │ ├── Bugs_back_4.png
│ │ │ │ ├── Bugs_back_5.png
│ │ │ │ ├── BugsTest-1.png
│ │ │ │ ├── BugsTest-2.png
│ │ │ │ ├── BugsTest.png
│ │ │ │ ├── ChipmunkAccelTouchTest_Click.png
│ │ │ │ ├── ChipmunkAccelTouchTest.png
│ │ │ │ ├── CickAndMoveTest.png
│ │ │ │ ├── Clear.png
│ │ │ │ ├── ClickAndMove_Click.png
│ │ │ │ ├── CocosBuilder_back.png
│ │ │ │ ├── CocosBuilder_Button.png
│ │ │ │ ├── CocosBuilder_Labels.png
│ │ │ │ ├── CocosBuilder_MenusItems.png
│ │ │ │ ├── CocosBuilder_ParticleSystems.png
│ │ │ │ ├── CocosBuilder.png
│ │ │ │ ├── CocosBuilder_ScrollWews.png
│ │ │ │ ├── CocosBuilder_Sprite.png
│ │ │ │ ├── CocosDenshionTest_addback.png
│ │ │ │ ├── CocosDenshionTest_addeff.png
│ │ │ │ ├── CocosDenshionTest_is.png
│ │ │ │ ├── CocosDenshionTest_pauseall.png
│ │ │ │ ├── CocosDenshionTest_pauseeffect.png
│ │ │ │ ├── CocosDenshionTest_pause.png
│ │ │ │ ├── CocosDenshionTest_playeffect.png
│ │ │ │ ├── CocosDenshionTest_play.png
│ │ │ │ ├── CocosDenshionTest.png
│ │ │ │ ├── CocosDenshionTest_resumeall.png
│ │ │ │ ├── CocosDenshionTest_resumeff.png
│ │ │ │ ├── CocosDenshionTest_resume.png
│ │ │ │ ├── CocosDenshionTest_rewind.png
│ │ │ │ ├── CocosDenshionTest_stop.png
│ │ │ │ ├── CocosDenshionTest_subback.png
│ │ │ │ ├── CocosDenshionTest_subeff.png
│ │ │ │ ├── CocosDenshionTest_unload.png
│ │ │ │ ├── Common_Back.png
│ │ │ │ ├── ControlButton_Event.png
│ │ │ │ ├── ControlButton_Styling.png
│ │ │ │ ├── ControlButton_Variable.png
│ │ │ │ ├── ControlColourPickerTest.png
│ │ │ │ ├── ControlSwitch.png
│ │ │ │ ├── C.png
│ │ │ │ ├── CurlTest.png
│ │ │ │ ├── CurrentLanguageTest.png
│ │ │ │ ├── DBUSQ.png
│ │ │ │ ├── Dlavbackqrou.png
│ │ │ │ ├── D.png
│ │ │ │ ├── DrawPrimitives.png
│ │ │ │ ├── DrawPrimitivesTest.png
│ │ │ │ ├── EffectAdvancedTest.png
│ │ │ │ ├── EffectsTest.png
│ │ │ │ ├── Extensions_CCControlButton.png
│ │ │ │ ├── ExtensionsTest.png
│ │ │ │ ├── FontTest.png
│ │ │ │ ├── HUUBIUIUlIIU.png
│ │ │ │ ├── Iavba.png
│ │ │ │ ├── IntervaITest.png
│ │ │ │ ├── Interval_Pause.png
│ │ │ │ ├── iOS_SikuliTest.html
│ │ │ │ ├── iOS_SikuliTest.py
│ │ │ │ ├── i.png
│ │ │ │ ├── it.png
│ │ │ │ ├── I_yUIICDI.png
│ │ │ │ ├── KevpadTest.png
│ │ │ │ ├── KeypadTest.png
│ │ │ │ ├── LabeITest.png
│ │ │ │ ├── LaverTest-1.png
│ │ │ │ ├── Layer_Drag1.png
│ │ │ │ ├── Layer_Drag2.png
│ │ │ │ ├── Layer_Drag3.png
│ │ │ │ ├── Layer_Drag4.png
│ │ │ │ ├── LayerTest.png
│ │ │ │ ├── MainMenu_ActionsProgress.png
│ │ │ │ ├── MainMenu_ClickAndMove.png
│ │ │ │ ├── MainMenu_Common.png
│ │ │ │ ├── MainMenu_DrawPimitives.png
│ │ │ │ ├── MainMenu_Effects.png
│ │ │ │ ├── MainMenu_Extensions.png
│ │ │ │ ├── MainMenu_Parallax.png
│ │ │ │ ├── MainMenu_TextureCache.png
│ │ │ │ ├── MainMenu_TileMap.png
│ │ │ │ ├── MainMenu_Transitions.png
│ │ │ │ ├── Maintvienu.png
│ │ │ │ ├── MenuTest_AtlasSprite.png
│ │ │ │ ├── MenuTest_Back.png
│ │ │ │ ├── MenuTest_Config.png
│ │ │ │ ├── MenuTest_Eitems.png
│ │ │ │ ├── MenuTest_HighScores.png
│ │ │ │ ├── MenuTest_Play.png
│ │ │ │ ├── MenuTest.png
│ │ │ │ ├── MenuTest_Quit.png
│ │ │ │ ├── Motion_Drag1.png
│ │ │ │ ├── Motion_Drag2.png
│ │ │ │ ├── MotionStreak_ChangeFastMode.png
│ │ │ │ ├── MotionStreakTest.png
│ │ │ │ ├── Mutitouch_click.png
│ │ │ │ ├── MutiTouchTest.png
│ │ │ │ ├── Next.png
│ │ │ │ ├── nf.png
│ │ │ │ ├── NodeTest.png
│ │ │ │ ├── NotificationCenterTest.png
│ │ │ │ ├── Notification_switchon.png
│ │ │ │ ├── One.png
│ │ │ │ ├── ParaIIaxTest.png
│ │ │ │ ├── Parallax_Drag1.png
│ │ │ │ ├── Parallax_Drag2.png
│ │ │ │ ├── ParticleTest-1.png
│ │ │ │ ├── ParticleTest.png
│ │ │ │ ├── pauseeffect.png
│ │ │ │ ├── Performance_Add.png
│ │ │ │ ├── Performance_Click2.png
│ │ │ │ ├── Performance_Click3.png
│ │ │ │ ├── Performance_NodeChiIdren.png
│ │ │ │ ├── Performance_Particle.png
│ │ │ │ ├── Performance_Sprite.png
│ │ │ │ ├── PerformanceTest.png
│ │ │ │ ├── Performance_Texture.png
│ │ │ │ ├── pI8Y.png
│ │ │ │ ├── playeffectre.png
│ │ │ │ ├── playeffectrr.png
│ │ │ │ ├── pldyUIIUUl.png
│ │ │ │ ├── RenderTexture_Drag1.png
│ │ │ │ ├── RenderTexture_Drag2.png
│ │ │ │ ├── RenderTexture_Drag3.png
│ │ │ │ ├── RenderTexture_Drag4.png
│ │ │ │ ├── RenderTextureTest.png
│ │ │ │ ├── RenderTexture_vertexZclick1.png
│ │ │ │ ├── RenderTexture_vertexZclick2.png
│ │ │ │ ├── RenderTexture_vertexZclick3.png
│ │ │ │ ├── RotateWorldTest.png
│ │ │ │ ├── SaveImage.png
│ │ │ │ ├── Scene_popToRoot.png
│ │ │ │ ├── Scene_pushScene.png
│ │ │ │ ├── Scene_Quit.png
│ │ │ │ ├── Scene_relaceScene.png
│ │ │ │ ├── SceneTest.png
│ │ │ │ ├── SCFGSFI.png
│ │ │ │ ├── SchduIerTest.png
│ │ │ │ ├── Schduler_custom.png
│ │ │ │ ├── SchdulerTest_timeScale.png
│ │ │ │ ├── ShaderTest.png
│ │ │ │ ├── SmiteTest.png
│ │ │ │ ├── SnritaTast.png
│ │ │ │ ├── SpriteTest.png
│ │ │ │ ├── SpriteTest_SpriteClick1.png
│ │ │ │ ├── SpriteTest_SpriteClick2.png
│ │ │ │ ├── TextInput_herefor.png
│ │ │ │ ├── TextInput_return.png
│ │ │ │ ├── TextInputTest.png
│ │ │ │ ├── Texture2DTest.png
│ │ │ │ ├── TextureCacheTest.png
│ │ │ │ ├── TileMapTest.png
│ │ │ │ ├── Touches.png
│ │ │ │ ├── TouchesTest.png
│ │ │ │ ├── T.png
│ │ │ │ ├── TransitionsTest.png
│ │ │ │ ├── UserDefaultTest.png
│ │ │ │ └── ZwoptexTest.png
│ │ │ ├── mac
│ │ │ │ ├── build-mac-all.sh
│ │ │ │ ├── build-mac-debug.sh
│ │ │ │ ├── build-mac-release.sh
│ │ │ │ ├── test-mac-debug.sh
│ │ │ │ └── test-mac-release.sh
│ │ │ └── rootconfig-mac.sh
│ │ ├── Monkeyrunner_TestCpp.py
│ │ ├── ReportManager.py
│ │ └── windows
│ │ ├── android
│ │ │ ├── androidtestcommon.bat
│ │ │ ├── build-android-2.2-3.2-debug.bat
│ │ │ ├── build-android-2.2-3.2-release.bat
│ │ │ ├── build-android-4.x-debug.bat
│ │ │ ├── build-android-4.x-release.bat
│ │ │ ├── rootconfig.sh
│ │ │ ├── test-android-2.2-3.2-debug.bat
│ │ │ ├── test-android-2.2-3.2-release.bat
│ │ │ ├── test-android-4.x-debug.bat
│ │ │ └── test-android-4.x-release.bat
│ │ └── win32
│ │ ├── qtp_win32
│ │ │ ├── Action0
│ │ │ │ ├── ObjectRepository.bdb
│ │ │ │ ├── Resource.mtr
│ │ │ │ └── Script.mts
│ │ │ ├── Action1
│ │ │ │ ├── ObjectRepository.bdb
│ │ │ │ ├── Resource.mtr
│ │ │ │ └── Script.mts
│ │ │ ├── default.cfg
│ │ │ ├── default.usp
│ │ │ ├── Default.xls
│ │ │ ├── Error_appcrash.qrs
│ │ │ ├── Error_Sub.vbs
│ │ │ ├── lock.lck
│ │ │ ├── Parameters.mtr
│ │ │ ├── qtp_win32.usr
│ │ │ ├── qtrunner.vbs
│ │ │ ├── TestCpp_Appcrash.tsr
│ │ │ └── Test.tsp
│ │ ├── test-win-vs2008-debug.bat
│ │ ├── test-win-vs2008_release.bat
│ │ ├── test-win-vs2010_debug.bat
│ │ └── test-win-vs2010_release.bat
│ ├── lua_project_generator
│ │ ├── build.xml
│ │ ├── README
│ │ └── template
│ │ ├── android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── build_native.sh
│ │ │ ├── default.properties
│ │ │ ├── jni
│ │ │ │ ├── Android.mk
│ │ │ │ ├── Application.mk
│ │ │ │ └── LuaProjectTemplate
│ │ │ │ ├── Android.mk
│ │ │ │ └── main.cpp
│ │ │ ├── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── icon.png
│ │ │ │ ├── layout
│ │ │ │ │ └── game_demo.xml
│ │ │ │ └── values
│ │ │ │ └── strings.xml
│ │ │ └── src
│ │ │ ├── LuaProjectTemplate.java
│ │ │ └── org
│ │ │ └── cocos2dx
│ │ │ └── lib
│ │ │ ├── Cocos2dxAccelerometer.java
│ │ │ ├── Cocos2dxActivity.java
│ │ │ ├── Cocos2dxBitmap.java
│ │ │ ├── Cocos2dxGLSurfaceView.java
│ │ │ ├── Cocos2dxMusic.java
│ │ │ ├── Cocos2dxRenderer.java
│ │ │ └── Cocos2dxSound.java
│ │ ├── Classes
│ │ │ ├── AppDelegate.cpp
│ │ │ └── AppDelegate.h
│ │ ├── ios
│ │ │ ├── AppController.h
│ │ │ ├── AppController.mm
│ │ │ ├── Info.plist
│ │ │ ├── LuaProjectTemplate_Prefix.pch
│ │ │ ├── LuaProjectTemplate.xcodeproj
│ │ │ │ └── project.pbxproj
│ │ │ ├── main.m
│ │ │ ├── RootViewController.h
│ │ │ └── RootViewController.mm
│ │ ├── Resource
│ │ │ └── main.lua
│ │ └── win32
│ │ ├── LuaProjectTemplate.win32.vcxproj
│ │ ├── LuaProjectTemplate.win32.vcxproj.filters
│ │ ├── LuaProjectTemplate.win32.vcxproj.user
│ │ ├── main.cpp
│ │ └── main.h
│ ├── make-package
│ │ ├── git-archive-all
│ │ ├── Makefile
│ │ └── README.markdown
│ ├── project-creator
│ │ ├── android.json
│ │ ├── blackberry.json
│ │ ├── create_project.py
│ │ ├── ios.json
│ │ ├── linux.json
│ │ ├── mac.json
│ │ ├── marmalade.json
│ │ ├── tizen.json
│ │ ├── win32.json
│ │ ├── winrt.json
│ │ └── wp8.json
│ ├── tojs
│ │ ├── cocos2dx_extension.ini
│ │ ├── cocos2dx.ini
│ │ ├── cocos2dx_studio.ini
│ │ ├── genbindings.sh
│ │ ├── genbindings-win32.bat
│ │ ├── README.mdown
│ │ └── win32
│ │ ├── cygiconv-2.dll
│ │ ├── cygintl-8.dll
│ │ ├── cygwin1.dll
│ │ ├── dos2unix.exe
│ │ └── libclang.dll
│ ├── tolua++
│ │ ├── ActionManager.pkg
│ │ ├── ActionObject.pkg
│ │ ├── basic_cocostudio.lua
│ │ ├── basic.lua
│ │ ├── build.bat
│ │ ├── build_cocostudio.sh
│ │ ├── build.sh
│ │ ├── build_studio.bat
│ │ ├── CCActionCamera.pkg
│ │ ├── CCActionCatmullRom.pkg
│ │ ├── CCActionEase.pkg
│ │ ├── CCActionGrid3D.pkg
│ │ ├── CCActionGrid.pkg
│ │ ├── CCActionManager.pkg
│ │ ├── CCActionPageTurn3D.pkg
│ │ ├── CCAction.pkg
│ │ ├── CCActionProgressTimer.pkg
│ │ ├── CCActionTiledGrid.pkg
│ │ ├── CCAffineTransform.pkg
│ │ ├── CCAnimationCache.pkg
│ │ ├── CCAnimation.pkg
│ │ ├── CCApplication.pkg
│ │ ├── CCArmatureAnimation.pkg
│ │ ├── CCArmatureDataManager.pkg
│ │ ├── CCArmature.pkg
│ │ ├── CCArray.pkg
│ │ ├── CCAtlasNode.pkg
│ │ ├── CCBatchNode.pkg
│ │ ├── CCBone.pkg
│ │ ├── CCCamera.pkg
│ │ ├── CCComAttribute.pkg
│ │ ├── CCComAudio.pkg
│ │ ├── CCComController.pkg
│ │ ├── CCCommon.pkg
│ │ ├── CCComRender.pkg
│ │ ├── CCControlButton.pkg
│ │ ├── CCControlColourPicker.pkg
│ │ ├── CCControl.pkg
│ │ ├── CCControlPotentiometer.pkg
│ │ ├── CCControlSlider.pkg
│ │ ├── CCControlStepper.pkg
│ │ ├── CCControlSwitch.pkg
│ │ ├── CCDatas.pkg
│ │ ├── CCDictionary.pkg
│ │ ├── CCDirector.pkg
│ │ ├── CCDisplayManager.pkg
│ │ ├── CCDrawingPrimitives.pkg
│ │ ├── CCEditBox.pkg
│ │ ├── CCEGLViewProtocol.pkg
│ │ ├── CCFileUtils.pkg
│ │ ├── CCGeometry.pkg
│ │ ├── CCImage.pkg
│ │ ├── CCInteger.pkg
│ │ ├── CCKeypadDispatcher.pkg
│ │ ├── CCLabelAtlas.pkg
│ │ ├── CCLabelBMFont.pkg
│ │ ├── CCLabelTTF.pkg
│ │ ├── CCLayer.pkg
│ │ ├── CCMenuItem.pkg
│ │ ├── CCMenu.pkg
│ │ ├── CCMotionStreak.pkg
│ │ ├── CCNode.pkg
│ │ ├── CCNotificationCenter.pkg
│ │ ├── CCObject.pkg
│ │ ├── CCParallaxNode.pkg
│ │ ├── CCParticleBatchNode.pkg
│ │ ├── CCParticleExamples.pkg
│ │ ├── CCParticleSystem.pkg
│ │ ├── CCPointExtension.pkg
│ │ ├── CCProgressTimer.pkg
│ │ ├── CCProtocols.pkg
│ │ ├── CCRenderTexture.pkg
│ │ ├── CCRibbon.pkg
│ │ ├── CCScale9Sprite.pkg
│ │ ├── CCScene.pkg
│ │ ├── CCScheduler.pkg
│ │ ├── CCScrollView.pkg
│ │ ├── CCSet.pkg
│ │ ├── CCSkin.pkg
│ │ ├── CCSpriteBatchNode.pkg
│ │ ├── CCSpriteFrameCache.pkg
│ │ ├── CCSpriteFrame.pkg
│ │ ├── CCSprite.pkg
│ │ ├── CCString.pkg
│ │ ├── CCTableView.pkg
│ │ ├── CCTextFieldTTF.pkg
│ │ ├── CCTexture2D.pkg
│ │ ├── CCTextureAtlas.pkg
│ │ ├── CCTextureCache.pkg
│ │ ├── CCTileMapAtlas.pkg
│ │ ├── CCTMXLayer.pkg
│ │ ├── CCTMXObjectGroup.pkg
│ │ ├── CCTMXTiledMap.pkg
│ │ ├── CCTMXXMLParser.pkg
│ │ ├── CCTouchDispatcher.pkg
│ │ ├── CCTouch.pkg
│ │ ├── CCTransition.pkg
│ │ ├── CCTransitionProgress.pkg
│ │ ├── CCTween.pkg
│ │ ├── ccTypes.pkg
│ │ ├── CCUserDefault.pkg
│ │ ├── Cocos2d.pkg
│ │ ├── CocoStudio.pkg
│ │ ├── GUIReader.pkg
│ │ ├── Makefile
│ │ ├── matrix.pkg
│ │ ├── README
│ │ ├── SceneReader.pkg
│ │ ├── SimpleAudioEngine.pkg
│ │ ├── tolua++.Mac.zip
│ │ ├── tolua++.rar
│ │ ├── UIButton.pkg
│ │ ├── UICheckBox.pkg
│ │ ├── UIHelper.pkg
│ │ ├── UIImageView.pkg
│ │ ├── UILabelAtlas.pkg
│ │ ├── UILabelBMFont.pkg
│ │ ├── UILabel.pkg
│ │ ├── UILayoutDefine.pkg
│ │ ├── UILayoutParameter.pkg
│ │ ├── UILayout.pkg
│ │ ├── UILinearLayoutParameter.pkg
│ │ ├── UIListView.pkg
│ │ ├── UILoadingBar.pkg
│ │ ├── UIPageView.pkg
│ │ ├── UIRelativeLayoutParameter.pkg
│ │ ├── UIRootWidget.pkg
│ │ ├── UIScrollView.pkg
│ │ ├── UISlider.pkg
│ │ ├── UITextField.pkg
│ │ ├── UITouchGroup.pkg
│ │ └── UIWidget.pkg
│ ├── travis-scripts
│ │ ├── before-install.sh
│ │ ├── generate-jsbindings.sh
│ │ ├── run-script.sh
│ │ └── travis_mac.yml
│ └── xcode4_template_generator
│ ├── run_generator.sh
│ ├── template_box2d_patch.txt
│ ├── template_generator.py
│ ├── template_js_patch.txt
│ └── template_lua_patch.txt
└── WinRT
├── redist
│ └── vs2013
│ └── Win32
│ └── Debug
│ ├── esUtil_winrt_2013
│ ├── libEGL_winrt_2013
│ ├── libGLESv2_winrt_2013
│ ├── preprocessor_winrt_2013
│ ├── translator_common_winrt_2013
│ └── translator_hlsl_winrt_2013
└── Win32
└── Debug
├── Box2D_2013
├── chipmunk_2013
├── cocos2d_2013
├── CocosDenshion_2013
├── HelloCpp_2013
├── libExtensions_2013
├── SimpleGame_2013
└── TestCpp_2013
2537 directories, 16218 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论