实例介绍
之前发布了一个xcode里面编写的泡泡龙,现在改成VS2010里面的,欢迎大家下载
【实例截图】
【核心代码】
4744300845195261884.rar
└── MyCocos2dApplication
├── Classes
│ ├── AppDelegate.cpp
│ ├── AppDelegate.h
│ ├── HelloWorldScene.cpp
│ └── HelloWorldScene.h
├── 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
│ │ ├── CCNode.cpp
│ │ └── CCNode.h
│ ├── CCCamera.cpp
│ ├── CCCamera.h
│ ├── CCConfiguration.cpp
│ ├── CCConfiguration.h
│ ├── CCDirector.cpp
│ ├── CCDirector.h
│ ├── CCDrawingPrimitives.cpp
│ ├── CCDrawingPrimitives.h
│ ├── CCScheduler.cpp
│ ├── CCScheduler.h
│ ├── cocoa
│ │ ├── CCAffineTransform.cpp
│ │ ├── CCAffineTransform.h
│ │ ├── CCArray.cpp
│ │ ├── CCArray.h
│ │ ├── CCAutoreleasePool.cpp
│ │ ├── CCAutoreleasePool.h
│ │ ├── CCDictionary.cpp
│ │ ├── CCDictionary.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
│ ├── 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
│ │ ├── 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
│ ├── platform
│ │ ├── android
│ │ │ ├── CCAccelerometer.cpp
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.cpp
│ │ │ ├── CCApplication.h
│ │ │ ├── CCCommon.cpp
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtils.cpp
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ ├── java
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── ant.properties
│ │ │ │ ├── build.xml
│ │ │ │ ├── proguard-project.txt
│ │ │ │ ├── project.properties
│ │ │ │ ├── res
│ │ │ │ └── src
│ │ │ │ └── org
│ │ │ │ └── cocos2dx
│ │ │ │ └── lib
│ │ │ │ ├── Cocos2dxAccelerometer.java
│ │ │ │ ├── Cocos2dxActivity.java
│ │ │ │ ├── Cocos2dxBitmap.java
│ │ │ │ ├── Cocos2dxEditBoxDialog.java
│ │ │ │ ├── Cocos2dxEditText.java
│ │ │ │ ├── Cocos2dxGLSurfaceView.java
│ │ │ │ ├── Cocos2dxHandler.java
│ │ │ │ ├── Cocos2dxHelper.java
│ │ │ │ ├── Cocos2dxMusic.java
│ │ │ │ ├── Cocos2dxRenderer.java
│ │ │ │ ├── Cocos2dxSound.java
│ │ │ │ ├── Cocos2dxTextInputWraper.java
│ │ │ │ └── Cocos2dxTypefaces.java
│ │ │ └── jni
│ │ │ ├── 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
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtils.cpp
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ └── CCStdC.h
│ │ ├── CCAccelerometerDelegate.h
│ │ ├── CCApplicationProtocol.h
│ │ ├── CCCommon.h
│ │ ├── CCEGLViewProtocol.cpp
│ │ ├── CCEGLViewProtocol.h
│ │ ├── CCFileUtilsCommon_cpp.h
│ │ ├── CCFileUtils.h
│ │ ├── CCImageCommon_cpp.h
│ │ ├── CCImage.h
│ │ ├── CCPlatformConfig.h
│ │ ├── CCPlatformMacros.h
│ │ ├── CCSAXParser.cpp
│ │ ├── CCSAXParser.h
│ │ ├── CCThread.cpp
│ │ ├── CCThread.h
│ │ ├── ios
│ │ │ ├── AccelerometerDelegateWrapper.h
│ │ │ ├── AccelerometerDelegateWrapper.mm
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCAccelerometer.mm
│ │ │ ├── CCApplication.h
│ │ │ ├── CCApplication.mm
│ │ │ ├── CCCommon.mm
│ │ │ ├── CCDirectorCaller.h
│ │ │ ├── CCDirectorCaller.mm
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCEGLView.mm
│ │ │ ├── CCES2Renderer.h
│ │ │ ├── CCES2Renderer.m
│ │ │ ├── CCESRenderer.h
│ │ │ ├── CCFileUtils.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
│ │ │ ├── CCEGLView.cpp
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCFileUtils.cpp
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.cpp
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.cpp
│ │ │ └── CCStdC.h
│ │ ├── mac
│ │ │ ├── CCAccelerometer.h
│ │ │ ├── CCApplication.h
│ │ │ ├── CCApplication.mm
│ │ │ ├── CCCommon.mm
│ │ │ ├── CCDirectorCaller.h
│ │ │ ├── CCDirectorCaller.mm
│ │ │ ├── CCEGLView.h
│ │ │ ├── CCEGLView.mm
│ │ │ ├── CCEventDispatcher.h
│ │ │ ├── CCEventDispatcher.mm
│ │ │ ├── CCFileUtils.mm
│ │ │ ├── CCGL.h
│ │ │ ├── CCImage.mm
│ │ │ ├── CCPlatformDefine.h
│ │ │ ├── CCStdC.h
│ │ │ ├── CCThread.mm
│ │ │ ├── CCWindow.h
│ │ │ ├── CCWindow.m
│ │ │ ├── EAGLView.h
│ │ │ └── EAGLView.mm
│ │ ├── 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
│ │ │ │ ├── libprofiler
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ └── prof.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libandprof.a
│ │ │ │ │ └── armeabi-v7a
│ │ │ │ │ └── libandprof.a
│ │ │ │ ├── libtiff
│ │ │ │ │ ├── Android.mk
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ │ ├── tiff.h
│ │ │ │ │ │ ├── tiffio.h
│ │ │ │ │ │ └── tiffvers.h
│ │ │ │ │ └── libs
│ │ │ │ │ ├── armeabi
│ │ │ │ │ │ └── libtiff.a
│ │ │ │ │ ├── armeabi-v7a
│ │ │ │ │ │ └── libtiff.a
│ │ │ │ │ └── x86
│ │ │ │ │ └── libtiff.a
│ │ │ │ └── libxml2
│ │ │ │ ├── Android.mk
│ │ │ │ ├── include
│ │ │ │ │ └── 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
│ │ │ │ └── libs
│ │ │ │ ├── armeabi
│ │ │ │ │ └── libxml2.a
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libxml2.a
│ │ │ │ └── x86
│ │ │ │ └── libxml2.a
│ │ │ ├── blackberry
│ │ │ │ ├── include
│ │ │ │ │ ├── grskia
│ │ │ │ │ │ ├── ARGB32_Clamp_Bilinear_BitmapShader.h
│ │ │ │ │ │ ├── bmpdecoderhelper.h
│ │ │ │ │ │ ├── FlingState.h
│ │ │ │ │ │ ├── fpdfemb_ext.h
│ │ │ │ │ │ ├── fpdfemb.h
│ │ │ │ │ │ ├── gm.h
│ │ │ │ │ │ ├── GrAllocator.h
│ │ │ │ │ │ ├── GrAllocPool.h
│ │ │ │ │ │ ├── GrAPI.h
│ │ │ │ │ │ ├── GrAtlas.h
│ │ │ │ │ │ ├── GrBinHashKey.h
│ │ │ │ │ │ ├── GrBufferAllocPool.h
│ │ │ │ │ │ ├── GrClip.h
│ │ │ │ │ │ ├── GrClipIterator.h
│ │ │ │ │ │ ├── GrColor.h
│ │ │ │ │ │ ├── GrConfig.h
│ │ │ │ │ │ ├── GrContext.h
│ │ │ │ │ │ ├── GrContext_impl.h
│ │ │ │ │ │ ├── GrDrawTarget.h
│ │ │ │ │ │ ├── GrFontScaler.h
│ │ │ │ │ │ ├── GrGeometryBuffer.h
│ │ │ │ │ │ ├── GrGLConfig_chrome.h
│ │ │ │ │ │ ├── GrGLConfig.h
│ │ │ │ │ │ ├── GrGLDefines.h
│ │ │ │ │ │ ├── GrGLIndexBuffer.h
│ │ │ │ │ │ ├── GrGLInterface.h
│ │ │ │ │ │ ├── GrGLIRect.h
│ │ │ │ │ │ ├── GrGLProgram.h
│ │ │ │ │ │ ├── GrGLTexture.h
│ │ │ │ │ │ ├── GrGLVertexBuffer.h
│ │ │ │ │ │ ├── GrGlyph.h
│ │ │ │ │ │ ├── GrGpuGLFixed.h
│ │ │ │ │ │ ├── GrGpuGL.h
│ │ │ │ │ │ ├── GrGpuGLShaders2.h
│ │ │ │ │ │ ├── GrGpuGLShaders.h
│ │ │ │ │ │ ├── GrGpu.h
│ │ │ │ │ │ ├── GrGpuVertex.h
│ │ │ │ │ │ ├── GrIndexBuffer.h
│ │ │ │ │ │ ├── GrInOrderDrawBuffer.h
│ │ │ │ │ │ ├── GrInstanceCounter.h
│ │ │ │ │ │ ├── GrIPoint.h
│ │ │ │ │ │ ├── GrKey.h
│ │ │ │ │ │ ├── GrMatrix.h
│ │ │ │ │ │ ├── GrMemory.h
│ │ │ │ │ │ ├── GrMesh.h
│ │ │ │ │ │ ├── GrNoncopyable.h
│ │ │ │ │ │ ├── GrPaint.h
│ │ │ │ │ │ ├── GrPath.h
│ │ │ │ │ │ ├── GrPathIter.h
│ │ │ │ │ │ ├── GrPathRenderer.h
│ │ │ │ │ │ ├── GrPathSink.h
│ │ │ │ │ │ ├── GrPathUtils.h
│ │ │ │ │ │ ├── GrPlotMgr.h
│ │ │ │ │ │ ├── GrPoint.h
│ │ │ │ │ │ ├── GrQuadIndexTable.h
│ │ │ │ │ │ ├── GrRandom.h
│ │ │ │ │ │ ├── GrRectanizer.h
│ │ │ │ │ │ ├── GrRect.h
│ │ │ │ │ │ ├── GrRedBlackTree.h
│ │ │ │ │ │ ├── GrRefCnt.h
│ │ │ │ │ │ ├── GrResource.h
│ │ │ │ │ │ ├── GrSamplerState.h
│ │ │ │ │ │ ├── GrScalar.h
│ │ │ │ │ │ ├── GrStencil.h
│ │ │ │ │ │ ├── GrStopwatch.h
│ │ │ │ │ │ ├── GrStringBuilder.h
│ │ │ │ │ │ ├── GrTArray.h
│ │ │ │ │ │ ├── GrTBSearch.h
│ │ │ │ │ │ ├── GrTDArray.h
│ │ │ │ │ │ ├── GrTemplates.h
│ │ │ │ │ │ ├── GrTesselatedPathRenderer.h
│ │ │ │ │ │ ├── GrTextContext.h
│ │ │ │ │ │ ├── GrTextStrike.h
│ │ │ │ │ │ ├── GrTextStrike_impl.h
│ │ │ │ │ │ ├── GrTextureCache.h
│ │ │ │ │ │ ├── GrTexture.h
│ │ │ │ │ │ ├── GrTHashCache.h
│ │ │ │ │ │ ├── GrTLList.h
│ │ │ │ │ │ ├── GrTouchGesture.h
│ │ │ │ │ │ ├── GrTypes.h
│ │ │ │ │ │ ├── GrUserConfig.h
│ │ │ │ │ │ ├── GrVertexBufferAllocPool.h
│ │ │ │ │ │ ├── GrVertexBuffer.h
│ │ │ │ │ │ ├── keysym2ucs.h
│ │ │ │ │ │ ├── Sk1DPathEffect.h
│ │ │ │ │ │ ├── Sk2DPathEffect.h
│ │ │ │ │ │ ├── Sk64.h
│ │ │ │ │ │ ├── SkAdvancedTypefaceMetrics.h
│ │ │ │ │ │ ├── SkAnimateActive.h
│ │ │ │ │ │ ├── SkAnimateBase.h
│ │ │ │ │ │ ├── SkAnimate.h
│ │ │ │ │ │ ├── SkAnimateMaker.h
│ │ │ │ │ │ ├── SkAnimateProperties.h
│ │ │ │ │ │ ├── SkAnimateSet.h
│ │ │ │ │ │ ├── SkAnimator.h
│ │ │ │ │ │ ├── SkAnimatorScript2.h
│ │ │ │ │ │ ├── SkAnimatorScript.h
│ │ │ │ │ │ ├── SkAnimatorView.h
│ │ │ │ │ │ ├── SkAntiRun.h
│ │ │ │ │ │ ├── SkApplication.h
│ │ │ │ │ │ ├── SkAutoKern.h
│ │ │ │ │ │ ├── SkAvoidXfermode.h
│ │ │ │ │ │ ├── SkBase64.h
│ │ │ │ │ │ ├── SkBenchmark.h
│ │ │ │ │ │ ├── SkBGViewArtist.h
│ │ │ │ │ │ ├── SkBitmapCache.h
│ │ │ │ │ │ ├── SkBitmap.h
│ │ │ │ │ │ ├── SkBitmapProcShader.h
│ │ │ │ │ │ ├── SkBitmapProcState_filter.h
│ │ │ │ │ │ ├── SkBitmapProcState.h
│ │ │ │ │ │ ├── SkBitmapProcState_matrix_clamp.h
│ │ │ │ │ │ ├── SkBitmapProcState_matrix.h
│ │ │ │ │ │ ├── SkBitmapProcState_matrix_repeat.h
│ │ │ │ │ │ ├── SkBitmapProcState_opts_SSE2.h
│ │ │ │ │ │ ├── SkBitmapProcState_sample.h
│ │ │ │ │ │ ├── SkBitmapProcState_shaderproc.h
│ │ │ │ │ │ ├── SkBitmap_RLEPixels.h
│ │ │ │ │ │ ├── SkBitmapSampler.h
│ │ │ │ │ │ ├── SkBitmapSamplerTemplate.h
│ │ │ │ │ │ ├── SkBitmapShader16BilerpTemplate.h
│ │ │ │ │ │ ├── SkBitmapShaderTemplate.h
│ │ │ │ │ │ ├── SkBlitBWMaskTemplate.h
│ │ │ │ │ │ ├── SkBlitRow.h
│ │ │ │ │ │ ├── SkBlitRow_opts_SSE2.h
│ │ │ │ │ │ ├── SkBlitter.h
│ │ │ │ │ │ ├── SkBlurDrawLooper.h
│ │ │ │ │ │ ├── SkBlurMaskFilter.h
│ │ │ │ │ │ ├── SkBlurMask.h
│ │ │ │ │ │ ├── SkBML_Verbs.h
│ │ │ │ │ │ ├── SkBML_WXMLParser.h
│ │ │ │ │ │ ├── SkBML_XMLParser.h
│ │ │ │ │ │ ├── SkBorderView.h
│ │ │ │ │ │ ├── SkBoundable.h
│ │ │ │ │ │ ├── SkBoundaryPatch.h
│ │ │ │ │ │ ├── SkBounder.h
│ │ │ │ │ │ ├── SkBuffer.h
│ │ │ │ │ │ ├── SkCamera.h
│ │ │ │ │ │ ├── SkCanvas.h
│ │ │ │ │ │ ├── SkCGUtils.h
│ │ │ │ │ │ ├── SkChunkAlloc.h
│ │ │ │ │ │ ├── SkClampRange.h
│ │ │ │ │ │ ├── SkClipStack.h
│ │ │ │ │ │ ├── SkColorFilter.h
│ │ │ │ │ │ ├── SkColor.h
│ │ │ │ │ │ ├── SkColorMatrixFilter.h
│ │ │ │ │ │ ├── SkColorMatrix.h
│ │ │ │ │ │ ├── SkColorPriv.h
│ │ │ │ │ │ ├── SkColorShader.h
│ │ │ │ │ │ ├── SkComposeShader.h
│ │ │ │ │ │ ├── SkConcaveToTriangles.h
│ │ │ │ │ │ ├── SkCordic.h
│ │ │ │ │ │ ├── SkCoreBlitters.h
│ │ │ │ │ │ ├── SkCornerPathEffect.h
│ │ │ │ │ │ ├── SkCubicClipper.h
│ │ │ │ │ │ ├── SkCubicInterval.h
│ │ │ │ │ │ ├── SkCullPoints.h
│ │ │ │ │ │ ├── SkDashPathEffect.h
│ │ │ │ │ │ ├── SkData.h
│ │ │ │ │ │ ├── SkDeque.h
│ │ │ │ │ │ ├── SkDescriptor.h
│ │ │ │ │ │ ├── SkDevice.h
│ │ │ │ │ │ ├── SkDiscretePathEffect.h
│ │ │ │ │ │ ├── SkDisplayable.h
│ │ │ │ │ │ ├── SkDisplayAdd.h
│ │ │ │ │ │ ├── SkDisplayApply.h
│ │ │ │ │ │ ├── SkDisplayBounds.h
│ │ │ │ │ │ ├── SkDisplayEvent.h
│ │ │ │ │ │ ├── SkDisplayEvents.h
│ │ │ │ │ │ ├── SkDisplayInclude.h
│ │ │ │ │ │ ├── SkDisplayInput.h
│ │ │ │ │ │ ├── SkDisplayList.h
│ │ │ │ │ │ ├── SkDisplayMath.h
│ │ │ │ │ │ ├── SkDisplayMovie.h
│ │ │ │ │ │ ├── SkDisplayNumber.h
│ │ │ │ │ │ ├── SkDisplayPost.h
│ │ │ │ │ │ ├── SkDisplayRandom.h
│ │ │ │ │ │ ├── SkDisplayScreenplay.h
│ │ │ │ │ │ ├── SkDisplayType.h
│ │ │ │ │ │ ├── SkDisplayTypes.h
│ │ │ │ │ │ ├── SkDisplayXMLParser.h
│ │ │ │ │ │ ├── SkDither.h
│ │ │ │ │ │ ├── SkDOM.h
│ │ │ │ │ │ ├── SkDraw3D.h
│ │ │ │ │ │ ├── SkDrawable.h
│ │ │ │ │ │ ├── SkDrawBitmap.h
│ │ │ │ │ │ ├── SkDrawBlur.h
│ │ │ │ │ │ ├── SkDrawClip.h
│ │ │ │ │ │ ├── SkDrawColor.h
│ │ │ │ │ │ ├── SkDrawDash.h
│ │ │ │ │ │ ├── SkDrawDiscrete.h
│ │ │ │ │ │ ├── SkDrawEmboss.h
│ │ │ │ │ │ ├── SkDrawExtraPathEffect.h
│ │ │ │ │ │ ├── SkDrawFilter.h
│ │ │ │ │ │ ├── SkDrawFull.h
│ │ │ │ │ │ ├── SkDrawGradient.h
│ │ │ │ │ │ ├── SkDrawGroup.h
│ │ │ │ │ │ ├── SkDraw.h
│ │ │ │ │ │ ├── SkDrawLine.h
│ │ │ │ │ │ ├── SkDrawLooper.h
│ │ │ │ │ │ ├── SkDrawMatrix.h
│ │ │ │ │ │ ├── SkDrawOval.h
│ │ │ │ │ │ ├── SkDrawPaint.h
│ │ │ │ │ │ ├── SkDrawPath.h
│ │ │ │ │ │ ├── SkDrawPoint.h
│ │ │ │ │ │ ├── SkDrawProcs.h
│ │ │ │ │ │ ├── SkDrawRectangle.h
│ │ │ │ │ │ ├── SkDrawSaveLayer.h
│ │ │ │ │ │ ├── SkDrawShader.h
│ │ │ │ │ │ ├── SkDrawTextBox.h
│ │ │ │ │ │ ├── SkDrawText.h
│ │ │ │ │ │ ├── SkDrawTo.h
│ │ │ │ │ │ ├── SkDrawTransparentShader.h
│ │ │ │ │ │ ├── SkDumpCanvas.h
│ │ │ │ │ │ ├── SkDump.h
│ │ │ │ │ │ ├── SkEdgeBuilder.h
│ │ │ │ │ │ ├── SkEdgeClipper.h
│ │ │ │ │ │ ├── SkEdge.h
│ │ │ │ │ │ ├── SkEGLContext.h
│ │ │ │ │ │ ├── SkEmbossMaskFilter.h
│ │ │ │ │ │ ├── SkEmbossMask.h
│ │ │ │ │ │ ├── SkEmbossMask_Table.h
│ │ │ │ │ │ ├── SkEndian.h
│ │ │ │ │ │ ├── SkEvent.h
│ │ │ │ │ │ ├── SkEventSink.h
│ │ │ │ │ │ ├── SkExtras.h
│ │ │ │ │ │ ├── SkFDot6.h
│ │ │ │ │ │ ├── SkFilterProc.h
│ │ │ │ │ │ ├── SkFixed.h
│ │ │ │ │ │ ├── SkFlate.h
│ │ │ │ │ │ ├── SkFlattenable.h
│ │ │ │ │ │ ├── SkFlipPixelRef.h
│ │ │ │ │ │ ├── SkFloatBits.h
│ │ │ │ │ │ ├── SkFloat.h
│ │ │ │ │ │ ├── SkFloatingPoint.h
│ │ │ │ │ │ ├── SkFontHost.h
│ │ │ │ │ │ ├── SkFP.h
│ │ │ │ │ │ ├── SkGeometry.h
│ │ │ │ │ │ ├── SkGLCanvas.h
│ │ │ │ │ │ ├── SkGlobals.h
│ │ │ │ │ │ ├── SkGlyphCache.h
│ │ │ │ │ │ ├── SkGpuCanvas.h
│ │ │ │ │ │ ├── SkGpuDeviceFactory.h
│ │ │ │ │ │ ├── SkGpuDevice.h
│ │ │ │ │ │ ├── SkGradientShader.h
│ │ │ │ │ │ ├── SkGraphics.h
│ │ │ │ │ │ ├── SkGr.h
│ │ │ │ │ │ ├── SkGroupShape.h
│ │ │ │ │ │ ├── SkGrTexturePixelRef.h
│ │ │ │ │ │ ├── SkHarfBuzzFont.h
│ │ │ │ │ │ ├── SkHitClear.h
│ │ │ │ │ │ ├── SkHitTest.h
│ │ │ │ │ │ ├── SkImageDecoder.h
│ │ │ │ │ │ ├── SkImageEncoder.h
│ │ │ │ │ │ ├── SkImageRef_ashmem.h
│ │ │ │ │ │ ├── SkImageRef_GlobalPool.h
│ │ │ │ │ │ ├── SkImageRef.h
│ │ │ │ │ │ ├── SkImageRefPool.h
│ │ │ │ │ │ ├── SkImageView.h
│ │ │ │ │ │ ├── SkIntArray.h
│ │ │ │ │ │ ├── SkInterpolator.h
│ │ │ │ │ │ ├── SkJpegUtility.h
│ │ │ │ │ │ ├── SkJS.h
│ │ │ │ │ │ ├── SkKernel33MaskFilter.h
│ │ │ │ │ │ ├── SkKey.h
│ │ │ │ │ │ ├── SkLayerDrawLooper.h
│ │ │ │ │ │ ├── SkLayer.h
│ │ │ │ │ │ ├── SkLayerRasterizer.h
│ │ │ │ │ │ ├── SkLineClipper.h
│ │ │ │ │ │ ├── SkMallocPixelRef.h
│ │ │ │ │ │ ├── SkMaskFilter.h
│ │ │ │ │ │ ├── SkMask.h
│ │ │ │ │ │ ├── SkMath.h
│ │ │ │ │ │ ├── SkMatrix.h
│ │ │ │ │ │ ├── SkMatrixParts.h
│ │ │ │ │ │ ├── SkMemberInfo.h
│ │ │ │ │ │ ├── SkMeshUtils.h
│ │ │ │ │ │ ├── SkMetaData.h
│ │ │ │ │ │ ├── SkMMapStream.h
│ │ │ │ │ │ ├── SkMovie.h
│ │ │ │ │ │ ├── SkNinePatch.h
│ │ │ │ │ │ ├── SkNWayCanvas.h
│ │ │ │ │ │ ├── SkOpArray.h
│ │ │ │ │ │ ├── SkOperand2.h
│ │ │ │ │ │ ├── SkOperand.h
│ │ │ │ │ │ ├── SkOperandInterpolator.h
│ │ │ │ │ │ ├── SkOSFile.h
│ │ │ │ │ │ ├── SkOSMenu.h
│ │ │ │ │ │ ├── SkOSWindow_Mac.h
│ │ │ │ │ │ ├── SkOSWindow_SDL.h
│ │ │ │ │ │ ├── SkOSWindow_Unix.h
│ │ │ │ │ │ ├── SkOSWindow_Win.h
│ │ │ │ │ │ ├── SkOSWindow_wxwidgets.h
│ │ │ │ │ │ ├── SkPackBits.h
│ │ │ │ │ │ ├── SkPageFlipper.h
│ │ │ │ │ │ ├── SkPaintFlagsDrawFilter.h
│ │ │ │ │ │ ├── SkPaint.h
│ │ │ │ │ │ ├── SkPaintParts.h
│ │ │ │ │ │ ├── SkParse.h
│ │ │ │ │ │ ├── SkParsePaint.h
│ │ │ │ │ │ ├── SkParsePath.h
│ │ │ │ │ │ ├── SkPathEffect.h
│ │ │ │ │ │ ├── SkPath.h
│ │ │ │ │ │ ├── SkPathHeap.h
│ │ │ │ │ │ ├── SkPathMeasure.h
│ │ │ │ │ │ ├── SkPathParts.h
│ │ │ │ │ │ ├── SkPDFCatalog.h
│ │ │ │ │ │ ├── SkPDFDevice.h
│ │ │ │ │ │ ├── SkPDFDocument.h
│ │ │ │ │ │ ├── SkPDFFont.h
│ │ │ │ │ │ ├── SkPDFFormXObject.h
│ │ │ │ │ │ ├── SkPDFGraphicState.h
│ │ │ │ │ │ ├── SkPDFImage.h
│ │ │ │ │ │ ├── SkPDFPage.h
│ │ │ │ │ │ ├── SkPDFShader.h
│ │ │ │ │ │ ├── SkPDFStream.h
│ │ │ │ │ │ ├── SkPDFTypes.h
│ │ │ │ │ │ ├── SkPDFUtils.h
│ │ │ │ │ │ ├── SkPerspIter.h
│ │ │ │ │ │ ├── SkPictureFlat.h
│ │ │ │ │ │ ├── SkPicture.h
│ │ │ │ │ │ ├── SkPicturePlayback.h
│ │ │ │ │ │ ├── SkPictureRecord.h
│ │ │ │ │ │ ├── SkPixelRef.h
│ │ │ │ │ │ ├── SkPixelXorXfermode.h
│ │ │ │ │ │ ├── SkPoint.h
│ │ │ │ │ │ ├── SkPorterDuff.h
│ │ │ │ │ │ ├── SkPostConfig.h
│ │ │ │ │ │ ├── SkPostParts.h
│ │ │ │ │ │ ├── SkPreConfig.h
│ │ │ │ │ │ ├── sk_predefined_gamma.h
│ │ │ │ │ │ ├── SkProgressBarView.h
│ │ │ │ │ │ ├── SkProxyCanvas.h
│ │ │ │ │ │ ├── SkPtrRecorder.h
│ │ │ │ │ │ ├── SkQuadClipper.h
│ │ │ │ │ │ ├── SkRadialGradient_Table.h
│ │ │ │ │ │ ├── SkRandom.h
│ │ │ │ │ │ ├── SkRasterizer.h
│ │ │ │ │ │ ├── SkReader32.h
│ │ │ │ │ │ ├── SkRect.h
│ │ │ │ │ │ ├── SkRectShape.h
│ │ │ │ │ │ ├── SkRefCnt.h
│ │ │ │ │ │ ├── SkRefDict.h
│ │ │ │ │ │ ├── SkRegion.h
│ │ │ │ │ │ ├── SkRegionPriv.h
│ │ │ │ │ │ ├── SkRelay.h
│ │ │ │ │ │ ├── SkScalarCompare.h
│ │ │ │ │ │ ├── SkScalar.h
│ │ │ │ │ │ ├── SkScaledBitmapSampler.h
│ │ │ │ │ │ ├── SkScalerContext.h
│ │ │ │ │ │ ├── SkScan.h
│ │ │ │ │ │ ├── SkScanPriv.h
│ │ │ │ │ │ ├── SkScript2.h
│ │ │ │ │ │ ├── SkScriptCallBack.h
│ │ │ │ │ │ ├── SkScript.h
│ │ │ │ │ │ ├── SkScriptRuntime.h
│ │ │ │ │ │ ├── SkScrollBarView.h
│ │ │ │ │ │ ├── SkSfntUtils.h
│ │ │ │ │ │ ├── SkShader.h
│ │ │ │ │ │ ├── SkShape.h
│ │ │ │ │ │ ├── SkSinTable.h
│ │ │ │ │ │ ├── SkSize.h
│ │ │ │ │ │ ├── SkSnapshot.h
│ │ │ │ │ │ ├── SkSpriteBlitter.h
│ │ │ │ │ │ ├── SkSpriteBlitterTemplate.h
│ │ │ │ │ │ ├── SkStackViewLayout.h
│ │ │ │ │ │ ├── sk_stdint.h
│ │ │ │ │ │ ├── SkStream.h
│ │ │ │ │ │ ├── SkStream_Win.h
│ │ │ │ │ │ ├── SkString.h
│ │ │ │ │ │ ├── SkStroke.h
│ │ │ │ │ │ ├── SkStrokerPriv.h
│ │ │ │ │ │ ├── SkSVGAttribute.h
│ │ │ │ │ │ ├── SkSVGBase.h
│ │ │ │ │ │ ├── SkSVGCircle.h
│ │ │ │ │ │ ├── SkSVGClipPath.h
│ │ │ │ │ │ ├── SkSVGDefs.h
│ │ │ │ │ │ ├── SkSVGElements.h
│ │ │ │ │ │ ├── SkSVGEllipse.h
│ │ │ │ │ │ ├── SkSVGFeColorMatrix.h
│ │ │ │ │ │ ├── SkSVGFilter.h
│ │ │ │ │ │ ├── SkSVGG.h
│ │ │ │ │ │ ├── SkSVGGradient.h
│ │ │ │ │ │ ├── SkSVGGroup.h
│ │ │ │ │ │ ├── SkSVGImage.h
│ │ │ │ │ │ ├── SkSVGLinearGradient.h
│ │ │ │ │ │ ├── SkSVGLine.h
│ │ │ │ │ │ ├── SkSVGMask.h
│ │ │ │ │ │ ├── SkSVGMetadata.h
│ │ │ │ │ │ ├── SkSVGPaintState.h
│ │ │ │ │ │ ├── SkSVGParser.h
│ │ │ │ │ │ ├── SkSVGPath.h
│ │ │ │ │ │ ├── SkSVGPolygon.h
│ │ │ │ │ │ ├── SkSVGPolyline.h
│ │ │ │ │ │ ├── SkSVGRadialGradient.h
│ │ │ │ │ │ ├── SkSVGRect.h
│ │ │ │ │ │ ├── SkSVGStop.h
│ │ │ │ │ │ ├── SkSVGSVG.h
│ │ │ │ │ │ ├── SkSVGSymbol.h
│ │ │ │ │ │ ├── SkSVGText.h
│ │ │ │ │ │ ├── SkSVGTypes.h
│ │ │ │ │ │ ├── SkSVGUse.h
│ │ │ │ │ │ ├── SkSystemEventTypes.h
│ │ │ │ │ │ ├── SkTableMaskFilter.h
│ │ │ │ │ │ ├── SkTagList.h
│ │ │ │ │ │ ├── SkTDArray_Experimental.h
│ │ │ │ │ │ ├── SkTDArray.h
│ │ │ │ │ │ ├── SkTDict.h
│ │ │ │ │ │ ├── SkTDStack.h
│ │ │ │ │ │ ├── SkTemplates.h
│ │ │ │ │ │ ├── SkTemplatesPriv.h
│ │ │ │ │ │ ├── SkTextBox.h
│ │ │ │ │ │ ├── SkTextFormatParams.h
│ │ │ │ │ │ ├── SkTextLayout.h
│ │ │ │ │ │ ├── SkTextOnPath.h
│ │ │ │ │ │ ├── SkTextToPath.h
│ │ │ │ │ │ ├── SkThread.h
│ │ │ │ │ │ ├── SkThread_platform.h
│ │ │ │ │ │ ├── SkTime.h
│ │ │ │ │ │ ├── SkTLazy.h
│ │ │ │ │ │ ├── SkTouchGesture.h
│ │ │ │ │ │ ├── SkTransparentShader.h
│ │ │ │ │ │ ├── SkTRegistry.h
│ │ │ │ │ │ ├── SkTScopedPtr.h
│ │ │ │ │ │ ├── SkTSearch.h
│ │ │ │ │ │ ├── SkTSort.h
│ │ │ │ │ │ ├── SkTypedArray.h
│ │ │ │ │ │ ├── SkTypeface.h
│ │ │ │ │ │ ├── SkTypeface_mac.h
│ │ │ │ │ │ ├── SkTypeface_win.h
│ │ │ │ │ │ ├── SkTypes.h
│ │ │ │ │ │ ├── SkUIView.h
│ │ │ │ │ │ ├── SkUnitMapper.h
│ │ │ │ │ │ ├── SkUnitMappers.h
│ │ │ │ │ │ ├── SkUnPreMultiply.h
│ │ │ │ │ │ ├── SkUserConfig.h
│ │ │ │ │ │ ├── SkUtils.h
│ │ │ │ │ │ ├── SkUtils_opts_SSE2.h
│ │ │ │ │ │ ├── SkView.h
│ │ │ │ │ │ ├── SkViewInflate.h
│ │ │ │ │ │ ├── SkViewPriv.h
│ │ │ │ │ │ ├── SkWidget.h
│ │ │ │ │ │ ├── SkWidgetViews.h
│ │ │ │ │ │ ├── SkWindow.h
│ │ │ │ │ │ ├── SkWriter32.h
│ │ │ │ │ │ ├── SkXfermode.h
│ │ │ │ │ │ ├── SkXMLAnimatorWriter.h
│ │ │ │ │ │ ├── SkXMLParser.h
│ │ │ │ │ │ ├── SkXMLWriter.h
│ │ │ │ │ │ └── XkeysToSkKeys.h
│ │ │ │ │ └── libtiff
│ │ │ │ │ ├── tiffconf.h
│ │ │ │ │ ├── tiff.h
│ │ │ │ │ ├── tiffio.h
│ │ │ │ │ └── tiffvers.h
│ │ │ │ └── libraries
│ │ │ │ ├── armle-v7
│ │ │ │ │ ├── libgrskia.so
│ │ │ │ │ └── libtiff.a
│ │ │ │ └── x86
│ │ │ │ ├── libgrskia.so
│ │ │ │ └── libtiff.a
│ │ │ ├── ios
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ ├── typecheck-gcc.h
│ │ │ │ │ └── types.h
│ │ │ │ └── libraries
│ │ │ │ └── libcurl.a
│ │ │ ├── linux
│ │ │ │ ├── curl
│ │ │ │ │ ├── curlbuild.h
│ │ │ │ │ ├── curl.h
│ │ │ │ │ ├── curlrules.h
│ │ │ │ │ ├── curlver.h
│ │ │ │ │ ├── easy.h
│ │ │ │ │ ├── mprintf.h
│ │ │ │ │ ├── multi.h
│ │ │ │ │ ├── stdcheaders.h
│ │ │ │ │ └── typecheck-gcc.h
│ │ │ │ ├── glew-1.7.0
│ │ │ │ │ └── glew-1.7.0.tgz
│ │ │ │ ├── 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
│ │ │ │ │ │ └── libxml2.a
│ │ │ │ │ ├── libcurl.a
│ │ │ │ │ ├── libfreetype.a
│ │ │ │ │ ├── libjpeg.a
│ │ │ │ │ ├── libpng15.a
│ │ │ │ │ ├── libpng.a
│ │ │ │ │ ├── libtiff.a
│ │ │ │ │ └── libxml2.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
│ │ │ │ └── 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
│ │ │ │ ├── Makefile
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── 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
│ │ │ │ ├── xmlversion.h.in
│ │ │ │ ├── xmlwriter.h
│ │ │ │ ├── xpath.h
│ │ │ │ ├── xpathInternals.h
│ │ │ │ └── xpointer.h
│ │ │ └── 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
│ │ │ │ ├── libxml2.dll
│ │ │ │ ├── libxml2.lib
│ │ │ │ ├── libzlib.lib
│ │ │ │ ├── pthreadVCE2.dll
│ │ │ │ ├── pthreadVCE2.lib
│ │ │ │ └── zlib1.dll
│ │ │ ├── libtiff
│ │ │ │ ├── tiffconf.h
│ │ │ │ ├── tiff.h
│ │ │ │ ├── tiffio.h
│ │ │ │ └── tiffvers.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
│ │ │ ├── OGLES
│ │ │ │ └── GL
│ │ │ │ ├── glew.h
│ │ │ │ ├── glxew.h
│ │ │ │ └── wglew.h
│ │ │ ├── pthread
│ │ │ │ ├── pthread.h
│ │ │ │ ├── sched.h
│ │ │ │ └── semaphore.h
│ │ │ ├── third_party_versions.txt
│ │ │ └── zlib
│ │ │ ├── zconf.h
│ │ │ └── zlib.h
│ │ └── win32
│ │ ├── CCAccelerometer.cpp
│ │ ├── CCAccelerometer.h
│ │ ├── CCApplication.cpp
│ │ ├── CCApplication.h
│ │ ├── CCCommon.cpp
│ │ ├── CCEGLView.cpp
│ │ ├── CCEGLView.h
│ │ ├── CCFileUtils.cpp
│ │ ├── CCGL.h
│ │ ├── CCImage.cpp
│ │ ├── CCPlatformDefine.h
│ │ ├── CCStdC.cpp
│ │ ├── CCStdC.h
│ │ └── compat
│ │ └── stdint.h
│ ├── proj.blackberry
│ ├── proj.ios
│ │ ├── cocos2dx-Prefix.pch
│ │ └── cocos2dx.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.linux
│ │ └── Makefile
│ ├── proj.mac
│ │ ├── cocos2dx-Prefix.pch
│ │ └── cocos2dx.xcodeproj
│ │ └── project.pbxproj
│ ├── proj.win32
│ │ ├── cocos2d.vcproj
│ │ ├── 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
│ │ ├── CCCommon.obj
│ │ ├── CCConfiguration.obj
│ │ ├── CCDictionary.obj
│ │ ├── CCDirector.obj
│ │ ├── CCDrawingPrimitives.obj
│ │ ├── CCEGLView.obj
│ │ ├── CCEGLViewProtocol.obj
│ │ ├── CCFileUtils.obj
│ │ ├── CCGeometry.obj
│ │ ├── CCGLProgram.obj
│ │ ├── ccGLStateCache.obj
│ │ ├── CCGrabber.obj
│ │ ├── CCGrid.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
│ │ ├── 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
│ │ ├── 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.dll.intermediate.manifest
│ │ ├── libcocos2d.lastbuildstate
│ │ ├── libcocos2d.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── mat3.obj
│ │ ├── mat4.obj
│ │ ├── mat4stack.obj
│ │ ├── matrix.obj
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── neon_matrix_impl.obj
│ │ ├── plane.obj
│ │ ├── platform.obj
│ │ ├── quaternion.obj
│ │ ├── ray2.obj
│ │ ├── TGAlib.obj
│ │ ├── TransformUtils.obj
│ │ ├── unzip.obj
│ │ ├── utility.obj
│ │ ├── vc100.idb
│ │ ├── vc100.pdb
│ │ ├── vec2.obj
│ │ ├── vec3.obj
│ │ ├── vec4.obj
│ │ └── ZipUtils.obj
│ ├── 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_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
│ ├── 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
│ │ ├── CCUserDefault.cpp
│ │ ├── CCUserDefault.h
│ │ ├── ccUtils.cpp
│ │ ├── ccUtils.h
│ │ ├── CCVertex.cpp
│ │ ├── CCVertex.h
│ │ ├── data_support
│ │ │ ├── ccCArray.cpp
│ │ │ ├── ccCArray.h
│ │ │ ├── uthash.h
│ │ │ └── utlist.h
│ │ ├── image_support
│ │ │ ├── TGAlib.cpp
│ │ │ └── TGAlib.h
│ │ ├── TransformUtils.cpp
│ │ ├── TransformUtils.h
│ │ └── 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
│ │ ├── 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
│ ├── 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
│ │ └── SimpleAudioEngine.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
│ ├── proj.blackberry
│ ├── proj.linux
│ │ └── Makefile
│ ├── proj.win32
│ │ ├── CocosDenshion.vcproj
│ │ ├── CocosDenshion.vcproj.user
│ │ ├── 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.dll.intermediate.manifest
│ │ ├── libCocosDenshion.lastbuildstate
│ │ ├── libCocosDenshion.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── MciPlayer.obj
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── SimpleAudioEngine.obj
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── 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
│ └── win32
│ ├── MciPlayer.cpp
│ ├── MciPlayer.h
│ └── SimpleAudioEngine.cpp
├── proj.win32
│ ├── Debug.win32
│ │ ├── AppDelegate.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── HelloWorldScene.obj
│ │ ├── link.5888-cvtres.read.1.tlog
│ │ ├── link.5888-cvtres.write.1.tlog
│ │ ├── link.5888.read.1.tlog
│ │ ├── link.5888.write.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── main.obj
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── MyCocos2dApplication.res
│ │ ├── MyCocos2dApplication.win32.Build.CppClean.log
│ │ ├── MyCocos2dApplication.win32.exe.embed.manifest
│ │ ├── MyCocos2dApplication.win32.exe.embed.manifest.res
│ │ ├── MyCocos2dApplication.win32.exe.intermediate.manifest
│ │ ├── MyCocos2dApplication.win32.lastbuildstate
│ │ ├── MyCocos2dApplication.win32.log
│ │ ├── MyCocos2dApplication.win32_manifest.rc
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ ├── rc.write.1.tlog
│ │ ├── vc100.idb
│ │ └── vc100.pdb
│ ├── GameConst.h
│ ├── GameEnum.h
│ ├── main.cpp
│ ├── main.h
│ ├── MainLayer.cpp
│ ├── MainLayer.h
│ ├── MyCocos2dApplication.aps
│ ├── MyCocos2dApplication.rc
│ ├── MyCocos2dApplication.win32.vcxproj
│ ├── MyCocos2dApplication.win32.vcxproj.filters
│ ├── MyCocos2dApplication.win32.vcxproj.user
│ ├── PaoPao.cpp
│ ├── PaoPao.h
│ ├── Release.win32
│ │ ├── AppDelegate.obj
│ │ ├── cl.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── HelloWorldScene.obj
│ │ ├── link.command.1.tlog
│ │ ├── link-cvtres.read.1.tlog
│ │ ├── link-cvtres.write.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── MainLayer.obj
│ │ ├── main.obj
│ │ ├── mt.command.1.tlog
│ │ ├── mt.read.1.tlog
│ │ ├── mt.write.1.tlog
│ │ ├── MyCocos2dApplication.res
│ │ ├── MyCocos2dApplication.win32.Build.CppClean.log
│ │ ├── MyCocos2dApplication.win32.exe.intermediate.manifest
│ │ ├── MyCocos2dApplication.win32.lastbuildstate
│ │ ├── MyCocos2dApplication.win32.log
│ │ ├── PaoPao.obj
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ └── rc.write.1.tlog
│ ├── res
│ │ └── MyCocos2dApplication.ico
│ └── resource.h
└── Resources
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── 7.png
├── back.png
├── CloseNormal.png
├── CloseSelected.png
├── HelloWorld.png
├── Play.jpg
└── Play.png
173 directories, 1567 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论