├── .gitignore ├── README.md ├── cmake_2008 ├── CMakeLists.txt ├── README.md ├── SkUserConfig.h.in ├── cmake_build ├── include │ ├── SkUserConfig.h │ └── skia.h ├── skia.vcproj ├── skimake.sln └── skimake.suo ├── demo.png ├── include ├── animator │ ├── SkAnimator.h │ └── SkAnimatorView.h ├── config │ ├── SkUserConfig.h │ └── stdint.h ├── core │ ├── SkAdvancedTypefaceMetrics.h │ ├── SkAnnotation.h │ ├── SkBitmap.h │ ├── SkBitmapDevice.h │ ├── SkBlitRow.h │ ├── SkBounder.h │ ├── SkCanvas.h │ ├── SkChecksum.h │ ├── SkChunkAlloc.h │ ├── SkClipStack.h │ ├── SkColor.h │ ├── SkColorFilter.h │ ├── SkColorPriv.h │ ├── SkColorShader.h │ ├── SkColorTable.h │ ├── SkComposeShader.h │ ├── SkData.h │ ├── SkDataTable.h │ ├── SkDeque.h │ ├── SkDevice.h │ ├── SkDeviceProperties.h │ ├── SkDither.h │ ├── SkDocument.h │ ├── SkDraw.h │ ├── SkDrawFilter.h │ ├── SkDrawLooper.h │ ├── SkDynamicAnnotations.h │ ├── SkEmptyShader.h │ ├── SkEndian.h │ ├── SkError.h │ ├── SkFixed.h │ ├── SkFlate.h │ ├── SkFlattenable.h │ ├── SkFlattenableBuffers.h │ ├── SkFlattenableSerialization.h │ ├── SkFloatBits.h │ ├── SkFloatingPoint.h │ ├── SkFont.h │ ├── SkFontHost.h │ ├── SkFontLCDConfig.h │ ├── SkGeometry.h │ ├── SkGraphics.h │ ├── SkImage.h │ ├── SkImageDecoder.h │ ├── SkImageEncoder.h │ ├── SkImageFilter.h │ ├── SkImageGenerator.h │ ├── SkImageInfo.h │ ├── SkInstCnt.h │ ├── SkLineClipper.h │ ├── SkMallocPixelRef.h │ ├── SkMask.h │ ├── SkMaskFilter.h │ ├── SkMath.h │ ├── SkMatrix.h │ ├── SkMetaData.h │ ├── SkOSFile.h │ ├── SkOnce.h │ ├── SkPackBits.h │ ├── SkPaint.h │ ├── SkPaintOptionsAndroid.h │ ├── SkPath.h │ ├── SkPathEffect.h │ ├── SkPathMeasure.h │ ├── SkPathRef.h │ ├── SkPicture.h │ ├── SkPixelRef.h │ ├── SkPoint.h │ ├── SkPostConfig.h │ ├── SkPreConfig.h │ ├── SkRRect.h │ ├── SkRasterizer.h │ ├── SkReadBuffer.h │ ├── SkReader32.h │ ├── SkRect.h │ ├── SkRefCnt.h │ ├── SkRegion.h │ ├── SkScalar.h │ ├── SkShader.h │ ├── SkSize.h │ ├── SkStream.h │ ├── SkString.h │ ├── SkStringUtils.h │ ├── SkStrokeRec.h │ ├── SkSurface.h │ ├── SkTArray.h │ ├── SkTDArray.h │ ├── SkTDStack.h │ ├── SkTDict.h │ ├── SkTInternalLList.h │ ├── SkTLazy.h │ ├── SkTRegistry.h │ ├── SkTSearch.h │ ├── SkTemplates.h │ ├── SkThread.h │ ├── SkTileGridPicture.h │ ├── SkTime.h │ ├── SkTypeface.h │ ├── SkTypes.h │ ├── SkUnPreMultiply.h │ ├── SkUnitMapper.h │ ├── SkUtils.h │ ├── SkWeakRefCnt.h │ ├── SkWriteBuffer.h │ ├── SkWriter32.h │ └── SkXfermode.h ├── device │ └── xps │ │ ├── SkConstexprMath.h │ │ └── SkXPSDevice.h ├── effects │ ├── Sk1DPathEffect.h │ ├── Sk2DPathEffect.h │ ├── SkAlphaThresholdFilter.h │ ├── SkArithmeticMode.h │ ├── SkAvoidXfermode.h │ ├── SkBicubicImageFilter.h │ ├── SkBitmapSource.h │ ├── SkBlurDrawLooper.h │ ├── SkBlurImageFilter.h │ ├── SkBlurMaskFilter.h │ ├── SkColorFilterImageFilter.h │ ├── SkColorMatrix.h │ ├── SkColorMatrixFilter.h │ ├── SkComposeImageFilter.h │ ├── SkCornerPathEffect.h │ ├── SkDashPathEffect.h │ ├── SkDiscretePathEffect.h │ ├── SkDisplacementMapEffect.h │ ├── SkDrawExtraPathEffect.h │ ├── SkDropShadowImageFilter.h │ ├── SkEmbossMaskFilter.h │ ├── SkGradientShader.h │ ├── SkKernel33MaskFilter.h │ ├── SkLayerDrawLooper.h │ ├── SkLayerRasterizer.h │ ├── SkLerpXfermode.h │ ├── SkLightingImageFilter.h │ ├── SkLumaColorFilter.h │ ├── SkMagnifierImageFilter.h │ ├── SkMatrixConvolutionImageFilter.h │ ├── SkMatrixImageFilter.h │ ├── SkMergeImageFilter.h │ ├── SkMorphologyImageFilter.h │ ├── SkOffsetImageFilter.h │ ├── SkPaintFlagsDrawFilter.h │ ├── SkPerlinNoiseShader.h │ ├── SkPictureImageFilter.h │ ├── SkPixelXorXfermode.h │ ├── SkPorterDuff.h │ ├── SkRectShaderImageFilter.h │ ├── SkStippleMaskFilter.h │ ├── SkTableColorFilter.h │ ├── SkTableMaskFilter.h │ ├── SkTestImageFilters.h │ ├── SkTileImageFilter.h │ ├── SkTransparentShader.h │ └── SkXfermodeImageFilter.h ├── gpu │ ├── GrBackendEffectFactory.h │ ├── GrClipData.h │ ├── GrColor.h │ ├── GrConfig.h │ ├── GrContext.h │ ├── GrContextFactory.h │ ├── GrCoordTransform.h │ ├── GrDrawEffect.h │ ├── GrEffect.h │ ├── GrEffectStage.h │ ├── GrEffectUnitTest.h │ ├── GrFontScaler.h │ ├── GrGlyph.h │ ├── GrKey.h │ ├── GrPaint.h │ ├── GrPathRendererChain.h │ ├── GrPoint.h │ ├── GrRect.h │ ├── GrRenderTarget.h │ ├── GrResource.h │ ├── GrSurface.h │ ├── GrTBackendEffectFactory.h │ ├── GrTexture.h │ ├── GrTextureAccess.h │ ├── GrTypes.h │ ├── GrTypesPriv.h │ ├── GrUserConfig.h │ ├── SkGpuDevice.h │ ├── SkGr.h │ ├── SkGrPixelRef.h │ ├── SkGrTexturePixelRef.h │ └── gl │ │ ├── GrGLConfig.h │ │ ├── GrGLConfig_chrome.h │ │ ├── GrGLExtensions.h │ │ ├── GrGLFunctions.h │ │ ├── GrGLInterface.h │ │ ├── SkANGLEGLContext.h │ │ ├── SkDebugGLContext.h │ │ ├── SkGLContextHelper.h │ │ ├── SkMesaGLContext.h │ │ ├── SkNativeGLContext.h │ │ └── SkNullGLContext.h ├── images │ ├── SkForceLinking.h │ ├── SkImageRef.h │ ├── SkImageRef_GlobalPool.h │ ├── SkImages.h │ ├── SkMovie.h │ └── SkPageFlipper.h ├── pathops │ └── SkPathOps.h ├── pdf │ ├── SkPDFDevice.h │ └── SkPDFDocument.h ├── pipe │ └── SkGPipe.h ├── ports │ ├── SkFontConfigInterface.h │ ├── SkFontMgr.h │ ├── SkFontMgr_indirect.h │ ├── SkFontStyle.h │ ├── SkHarfBuzzFont.h │ ├── SkRemotableFontMgr.h │ ├── SkTypeface_android.h │ ├── SkTypeface_mac.h │ └── SkTypeface_win.h ├── svg │ ├── SkSVGAttribute.h │ ├── SkSVGBase.h │ ├── SkSVGPaintState.h │ ├── SkSVGParser.h │ └── SkSVGTypes.h ├── text │ └── SkTextLayout.h ├── utils │ ├── SkBoundaryPatch.h │ ├── SkCamera.h │ ├── SkCanvasStateUtils.h │ ├── SkCondVar.h │ ├── SkCountdown.h │ ├── SkCubicInterval.h │ ├── SkCullPoints.h │ ├── SkDebugUtils.h │ ├── SkDeferredCanvas.h │ ├── SkDumpCanvas.h │ ├── SkEventTracer.h │ ├── SkFrontBufferedStream.h │ ├── SkInterpolator.h │ ├── SkJSON.h │ ├── SkJSONCPP.h │ ├── SkLayer.h │ ├── SkLua.h │ ├── SkLuaCanvas.h │ ├── SkMatrix44.h │ ├── SkMeshUtils.h │ ├── SkNWayCanvas.h │ ├── SkNinePatch.h │ ├── SkNoSaveLayerCanvas.h │ ├── SkNullCanvas.h │ ├── SkParse.h │ ├── SkParsePaint.h │ ├── SkParsePath.h │ ├── SkPathUtils.h │ ├── SkPictureUtils.h │ ├── SkProxyCanvas.h │ ├── SkRTConf.h │ ├── SkRandom.h │ ├── SkRunnable.h │ ├── SkThreadPool.h │ ├── SkUnitMappers.h │ ├── SkWGL.h │ ├── ios │ │ └── SkStream_NSData.h │ ├── mac │ │ └── SkCGUtils.h │ └── win │ │ ├── SkAutoCoInitialize.h │ │ ├── SkHRESULT.h │ │ ├── SkIStream.h │ │ └── SkTScopedComPtr.h ├── views │ ├── SkApplication.h │ ├── SkBGViewArtist.h │ ├── SkEvent.h │ ├── SkEventSink.h │ ├── SkKey.h │ ├── SkOSMenu.h │ ├── SkOSWindow_Android.h │ ├── SkOSWindow_Mac.h │ ├── SkOSWindow_NaCl.h │ ├── SkOSWindow_SDL.h │ ├── SkOSWindow_Unix.h │ ├── SkOSWindow_Win.h │ ├── SkOSWindow_iOS.h │ ├── SkStackViewLayout.h │ ├── SkSystemEventTypes.h │ ├── SkTextBox.h │ ├── SkTouchGesture.h │ ├── SkView.h │ ├── SkViewInflate.h │ ├── SkWidget.h │ ├── SkWindow.h │ ├── android │ │ └── AndroidKeyToSkKey.h │ ├── animated │ │ ├── SkBorderView.h │ │ ├── SkImageView.h │ │ ├── SkProgressBarView.h │ │ ├── SkScrollBarView.h │ │ └── SkWidgetViews.h │ └── unix │ │ ├── XkeysToSkKeys.h │ │ └── keysym2ucs.h └── xml │ ├── SkBML_WXMLParser.h │ ├── SkBML_XMLParser.h │ ├── SkDOM.h │ ├── SkJS.h │ ├── SkXMLParser.h │ └── SkXMLWriter.h ├── out_2008 ├── alltargets.vcproj ├── gyp │ ├── SampleApp.sln │ ├── SampleApp.suo │ ├── SampleApp.vcproj │ ├── SampleApp.vcproj.REDRAIN-PC.Redrain.user │ ├── SkiaExamples.vcproj │ ├── angle.sln │ ├── angle.vcproj │ ├── angle.vcproj.REDRAIN-PC.Redrain.user │ ├── animator.sln │ ├── animator.vcproj │ ├── animator.vcproj.REDRAIN-PC.Redrain.user │ ├── bbh_shootout.vcproj │ ├── bbh_shootout.vcproj.REDRAIN-PC.Redrain.user │ ├── bench.sln │ ├── bench.vcproj │ ├── bench.vcproj.REDRAIN-PC.Redrain.user │ ├── bench_pictures.vcproj │ ├── bench_pictures.vcproj.REDRAIN-PC.Redrain.user │ ├── bench_record.vcproj │ ├── bench_record.vcproj.REDRAIN-PC.Redrain.user │ ├── bench_timer.vcproj │ ├── bench_timer.vcproj.REDRAIN-PC.Redrain.user │ ├── chop_transparency.vcproj │ ├── chop_transparency.vcproj.REDRAIN-PC.Redrain.user │ ├── core.sln │ ├── core.vcproj │ ├── core.vcproj.REDRAIN-PC.Redrain.user │ ├── debugger.sln │ ├── debugger.vcproj │ ├── debugger.vcproj.REDRAIN-PC.Redrain.user │ ├── debugger_qt_mocs.rules │ ├── debugger_qt_mocs.vcproj │ ├── debugger_qt_mocs.vcproj.REDRAIN-PC.Redrain.user │ ├── dm.sln │ ├── dm.vcproj │ ├── dm.vcproj.REDRAIN-PC.Redrain.user │ ├── effects.sln │ ├── effects.vcproj │ ├── effects.vcproj.REDRAIN-PC.Redrain.user │ ├── everything.sln │ ├── everything.vcproj │ ├── everything.vcproj.REDRAIN-PC.Redrain.user │ ├── experimental.sln │ ├── experimental.vcproj │ ├── experimental.vcproj.REDRAIN-PC.Redrain.user │ ├── filter.vcproj │ ├── filter.vcproj.REDRAIN-PC.Redrain.user │ ├── flags.sln │ ├── flags.vcproj │ ├── flags.vcproj.REDRAIN-PC.Redrain.user │ ├── fontconfig.sln │ ├── fontconfig.vcproj │ ├── fontconfig.vcproj.REDRAIN-PC.Redrain.user │ ├── freetype.sln │ ├── freetype.vcproj │ ├── freetype_poppler.vcproj │ ├── freetype_poppler.vcproj.REDRAIN-PC.Redrain.user │ ├── freetype_static.vcproj │ ├── gm.sln │ ├── gm.vcproj │ ├── gm.vcproj.REDRAIN-PC.Redrain.user │ ├── gm_expectations.vcproj │ ├── gm_expectations.vcproj.REDRAIN-PC.Redrain.user │ ├── gpu.sln │ ├── gputest.sln │ ├── iconv.sln │ ├── iconv.vcproj │ ├── iconv.vcproj.REDRAIN-PC.Redrain.user │ ├── images.sln │ ├── images.vcproj │ ├── images.vcproj.REDRAIN-PC.Redrain.user │ ├── jsoncpp.sln │ ├── jsoncpp.vcproj │ ├── jsoncpp.vcproj.REDRAIN-PC.Redrain.user │ ├── libfontconfig.vcproj │ ├── libfontconfig.vcproj.REDRAIN-PC.Redrain.user │ ├── libjpeg.sln │ ├── libjpeg.vcproj │ ├── libjpeg.vcproj.REDRAIN-PC.Redrain.user │ ├── libpng.sln │ ├── libpng.vcproj │ ├── libpoppler-cpp-gpl.vcproj │ ├── libpoppler-cpp-gpl.vcproj.REDRAIN-PC.Redrain.user │ ├── libpoppler-gpl.vcproj │ ├── libpoppler-gpl.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp.sln │ ├── libwebp.vcproj │ ├── libwebp.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_dec.vcproj │ ├── libwebp_dec.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_demux.vcproj │ ├── libwebp_demux.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_dsp.vcproj │ ├── libwebp_dsp.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_dsp_neon.vcproj │ ├── libwebp_dsp_neon.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_enc.vcproj │ ├── libwebp_enc.vcproj.REDRAIN-PC.Redrain.user │ ├── libwebp_utils.vcproj │ ├── libwebp_utils.vcproj.REDRAIN-PC.Redrain.user │ ├── lua.sln │ ├── lua.vcproj │ ├── lua.vcproj.REDRAIN-PC.Redrain.user │ ├── lua_app.vcproj │ ├── lua_app.vcproj.REDRAIN-PC.Redrain.user │ ├── lua_pictures.vcproj │ ├── lua_pictures.vcproj.REDRAIN-PC.Redrain.user │ ├── most.sln │ ├── most.vcproj │ ├── most.vcproj.REDRAIN-PC.Redrain.user │ ├── opts.sln │ ├── opts.vcproj │ ├── opts.vcproj.REDRAIN-PC.Redrain.user │ ├── opts_neon.vcproj │ ├── opts_ssse3.vcproj │ ├── opts_ssse3.vcproj.REDRAIN-PC.Redrain.user │ ├── pathops_unittest.sln │ ├── pathops_unittest.vcproj │ ├── pdf.sln │ ├── pdf.vcproj │ ├── pdf.vcproj.REDRAIN-PC.Redrain.user │ ├── pdfviewer.sln │ ├── pdfviewer.vcproj │ ├── pdfviewer.vcproj.REDRAIN-PC.Redrain.user │ ├── pdfviewer_lib.sln │ ├── pdfviewer_lib.vcproj │ ├── pdfviewer_lib.vcproj.REDRAIN-PC.Redrain.user │ ├── picture_renderer.vcproj │ ├── picture_renderer.vcproj.REDRAIN-PC.Redrain.user │ ├── picture_utils.vcproj │ ├── picture_utils.vcproj.REDRAIN-PC.Redrain.user │ ├── pinspect.vcproj │ ├── pinspect.vcproj.REDRAIN-PC.Redrain.user │ ├── poppler.sln │ ├── ports.sln │ ├── ports.vcproj │ ├── ports.vcproj.REDRAIN-PC.Redrain.user │ ├── record.sln │ ├── record.vcproj │ ├── record.vcproj.REDRAIN-PC.Redrain.user │ ├── render_pdfs.vcproj │ ├── render_pdfs.vcproj.REDRAIN-PC.Redrain.user │ ├── render_pictures.vcproj │ ├── render_pictures.vcproj.REDRAIN-PC.Redrain.user │ ├── sfnt.sln │ ├── sfnt.vcproj │ ├── sfnt.vcproj.REDRAIN-PC.Redrain.user │ ├── skdiff.vcproj │ ├── skdiff.vcproj.REDRAIN-PC.Redrain.user │ ├── skflate.sln │ ├── skflate.vcproj │ ├── skflate.vcproj.REDRAIN-PC.Redrain.user │ ├── skgpu.vcproj │ ├── skgpu.vcproj.REDRAIN-PC.Redrain.user │ ├── skgputest.vcproj │ ├── skgputest.vcproj.REDRAIN-PC.Redrain.user │ ├── skhello.vcproj │ ├── skhello.vcproj.REDRAIN-PC.Redrain.user │ ├── skia_lib.sln │ ├── skia_lib.suo │ ├── skia_lib.vcproj │ ├── skia_lib.vcproj.REDRAIN-PC.Redrain.user │ ├── skimage.vcproj │ ├── skimage.vcproj.REDRAIN-PC.Redrain.user │ ├── skimagediff.vcproj │ ├── skpdiff.vcproj │ ├── skpdiff.vcproj.REDRAIN-PC.Redrain.user │ ├── skpinfo.vcproj │ ├── skpinfo.vcproj.REDRAIN-PC.Redrain.user │ ├── skpmaker.vcproj │ ├── skpmaker.vcproj.REDRAIN-PC.Redrain.user │ ├── skpskgr_test.sln │ ├── skpskgr_test.vcproj │ ├── test_image_decoder.vcproj │ ├── test_image_decoder.vcproj.REDRAIN-PC.Redrain.user │ ├── tests.sln │ ├── tests.vcproj │ ├── tests.vcproj.REDRAIN-PC.Redrain.user │ ├── tools.sln │ ├── tools.vcproj │ ├── tools.vcproj.REDRAIN-PC.Redrain.user │ ├── utils.sln │ ├── utils.vcproj │ ├── utils.vcproj.REDRAIN-PC.Redrain.user │ ├── views.sln │ ├── views.vcproj │ ├── views.vcproj.REDRAIN-PC.Redrain.user │ ├── views_animated.sln │ ├── views_animated.vcproj │ ├── views_animated.vcproj.REDRAIN-PC.Redrain.user │ ├── win_lcid.vcproj │ ├── xml.sln │ ├── xml.vcproj │ ├── xml.vcproj.REDRAIN-PC.Redrain.user │ ├── xps.sln │ ├── xps.vcproj │ ├── xps.vcproj.REDRAIN-PC.Redrain.user │ ├── zlib.sln │ └── zlib.vcproj ├── skia.sln └── skia.suo ├── skia_dll.png ├── skiatest ├── out │ ├── 01415.ico │ ├── bk.png │ ├── horse.gif │ ├── out.png │ └── skiaTest.exe ├── skiatest.sln ├── skiatest.suo └── skiatest │ ├── ReadMe.txt │ ├── Resource.h │ ├── skiatest.cpp │ ├── skiatest.h │ ├── skiatest.ico │ ├── skiatest.rc │ ├── skiatest.vcproj │ ├── small.ico │ ├── stb_image.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── src ├── animator │ ├── SkAnimate.h │ ├── SkAnimate3DSchema.xsd │ ├── SkAnimate3DSchema.xsx │ ├── SkAnimateActive.cpp │ ├── SkAnimateActive.h │ ├── SkAnimateBase.cpp │ ├── SkAnimateBase.h │ ├── SkAnimateField.cpp │ ├── SkAnimateMaker.cpp │ ├── SkAnimateMaker.h │ ├── SkAnimateProperties.h │ ├── SkAnimateSchema.xsd │ ├── SkAnimateSchema.xsx │ ├── SkAnimateSet.cpp │ ├── SkAnimateSet.h │ ├── SkAnimator.cpp │ ├── SkAnimatorScript.cpp │ ├── SkAnimatorScript.h │ ├── SkAnimatorScript2.cpp │ ├── SkAnimatorScript2.h │ ├── SkBoundable.cpp │ ├── SkBoundable.h │ ├── SkBuildCondensedInfo.cpp │ ├── SkCondensedDebug.cpp │ ├── SkCondensedRelease.cpp │ ├── SkDisplayAdd.cpp │ ├── SkDisplayAdd.h │ ├── SkDisplayApply.cpp │ ├── SkDisplayApply.h │ ├── SkDisplayBounds.cpp │ ├── SkDisplayBounds.h │ ├── SkDisplayEvent.cpp │ ├── SkDisplayEvent.h │ ├── SkDisplayEvents.cpp │ ├── SkDisplayEvents.h │ ├── SkDisplayInclude.cpp │ ├── SkDisplayInclude.h │ ├── SkDisplayInput.cpp │ ├── SkDisplayInput.h │ ├── SkDisplayList.cpp │ ├── SkDisplayList.h │ ├── SkDisplayMath.cpp │ ├── SkDisplayMath.h │ ├── SkDisplayMovie.cpp │ ├── SkDisplayMovie.h │ ├── SkDisplayNumber.cpp │ ├── SkDisplayNumber.h │ ├── SkDisplayPost.cpp │ ├── SkDisplayPost.h │ ├── SkDisplayRandom.cpp │ ├── SkDisplayRandom.h │ ├── SkDisplayScreenplay.cpp │ ├── SkDisplayScreenplay.h │ ├── SkDisplayType.cpp │ ├── SkDisplayType.h │ ├── SkDisplayTypes.cpp │ ├── SkDisplayTypes.h │ ├── SkDisplayXMLParser.cpp │ ├── SkDisplayXMLParser.h │ ├── SkDisplayable.cpp │ ├── SkDisplayable.h │ ├── SkDraw3D.cpp │ ├── SkDraw3D.h │ ├── SkDrawBitmap.cpp │ ├── SkDrawBitmap.h │ ├── SkDrawBlur.cpp │ ├── SkDrawBlur.h │ ├── SkDrawClip.cpp │ ├── SkDrawClip.h │ ├── SkDrawColor.cpp │ ├── SkDrawColor.h │ ├── SkDrawDash.cpp │ ├── SkDrawDash.h │ ├── SkDrawDiscrete.cpp │ ├── SkDrawDiscrete.h │ ├── SkDrawEmboss.cpp │ ├── SkDrawEmboss.h │ ├── SkDrawExtraPathEffect.cpp │ ├── SkDrawFull.cpp │ ├── SkDrawFull.h │ ├── SkDrawGradient.cpp │ ├── SkDrawGradient.h │ ├── SkDrawGroup.cpp │ ├── SkDrawGroup.h │ ├── SkDrawLine.cpp │ ├── SkDrawLine.h │ ├── SkDrawMatrix.cpp │ ├── SkDrawMatrix.h │ ├── SkDrawOval.cpp │ ├── SkDrawOval.h │ ├── SkDrawPaint.cpp │ ├── SkDrawPaint.h │ ├── SkDrawPath.cpp │ ├── SkDrawPath.h │ ├── SkDrawPoint.cpp │ ├── SkDrawPoint.h │ ├── SkDrawRectangle.cpp │ ├── SkDrawRectangle.h │ ├── SkDrawSaveLayer.cpp │ ├── SkDrawSaveLayer.h │ ├── SkDrawShader.cpp │ ├── SkDrawShader.h │ ├── SkDrawText.cpp │ ├── SkDrawText.h │ ├── SkDrawTextBox.cpp │ ├── SkDrawTextBox.h │ ├── SkDrawTo.cpp │ ├── SkDrawTo.h │ ├── SkDrawTransparentShader.cpp │ ├── SkDrawTransparentShader.h │ ├── SkDrawable.cpp │ ├── SkDrawable.h │ ├── SkDump.cpp │ ├── SkDump.h │ ├── SkExtraPathEffects.xsd │ ├── SkExtras.h │ ├── SkGetCondensedInfo.cpp │ ├── SkHitClear.cpp │ ├── SkHitClear.h │ ├── SkHitTest.cpp │ ├── SkHitTest.h │ ├── SkIntArray.h │ ├── SkMatrixParts.cpp │ ├── SkMatrixParts.h │ ├── SkMemberInfo.cpp │ ├── SkMemberInfo.h │ ├── SkOpArray.cpp │ ├── SkOpArray.h │ ├── SkOperand.h │ ├── SkOperand2.h │ ├── SkOperandInterpolator.h │ ├── SkOperandIterpolator.cpp │ ├── SkPaintParts.cpp │ ├── SkPaintParts.h │ ├── SkParseSVGPath.cpp │ ├── SkPathParts.cpp │ ├── SkPathParts.h │ ├── SkPostParts.cpp │ ├── SkPostParts.h │ ├── SkScript.cpp │ ├── SkScript.h │ ├── SkScript2.h │ ├── SkScriptCallBack.h │ ├── SkScriptDecompile.cpp │ ├── SkScriptRuntime.cpp │ ├── SkScriptRuntime.h │ ├── SkScriptTokenizer.cpp │ ├── SkSnapshot.cpp │ ├── SkSnapshot.h │ ├── SkTDArray_Experimental.h │ ├── SkTextOnPath.cpp │ ├── SkTextOnPath.h │ ├── SkTextToPath.cpp │ ├── SkTextToPath.h │ ├── SkTime.cpp │ ├── SkTypedArray.cpp │ ├── SkTypedArray.h │ ├── SkXMLAnimatorWriter.cpp │ ├── SkXMLAnimatorWriter.h │ └── thingstodo.txt ├── core │ ├── ARGB32_Clamp_Bilinear_BitmapShader.h │ ├── SkAAClip.cpp │ ├── SkAAClip.h │ ├── SkAdvancedTypefaceMetrics.cpp │ ├── SkAlphaRuns.cpp │ ├── SkAnnotation.cpp │ ├── SkAntiRun.h │ ├── SkAutoKern.h │ ├── SkBBoxHierarchy.h │ ├── SkBBoxHierarchyRecord.cpp │ ├── SkBBoxHierarchyRecord.h │ ├── SkBBoxRecord.cpp │ ├── SkBBoxRecord.h │ ├── SkBitmap.cpp │ ├── SkBitmapDevice.cpp │ ├── SkBitmapFilter.cpp │ ├── SkBitmapFilter.h │ ├── SkBitmapHeap.cpp │ ├── SkBitmapHeap.h │ ├── SkBitmapProcShader.cpp │ ├── SkBitmapProcShader.h │ ├── SkBitmapProcState.cpp │ ├── SkBitmapProcState.h │ ├── SkBitmapProcState_filter.h │ ├── SkBitmapProcState_matrix.h │ ├── SkBitmapProcState_matrixProcs.cpp │ ├── SkBitmapProcState_procs.h │ ├── SkBitmapProcState_sample.h │ ├── SkBitmapProcState_shaderproc.h │ ├── SkBitmapProcState_utils.h │ ├── SkBitmapScaler.cpp │ ├── SkBitmapScaler.h │ ├── SkBitmap_scroll.cpp │ ├── SkBlitBWMaskTemplate.h │ ├── SkBlitMask.h │ ├── SkBlitMask_D32.cpp │ ├── SkBlitRow_D16.cpp │ ├── SkBlitRow_D32.cpp │ ├── SkBlitter.cpp │ ├── SkBlitter.h │ ├── SkBlitter_A8.cpp │ ├── SkBlitter_ARGB32.cpp │ ├── SkBlitter_RGB16.cpp │ ├── SkBlitter_Sprite.cpp │ ├── SkBuffer.cpp │ ├── SkBuffer.h │ ├── SkCanvas.cpp │ ├── SkChunkAlloc.cpp │ ├── SkClipStack.cpp │ ├── SkColor.cpp │ ├── SkColorFilter.cpp │ ├── SkColorTable.cpp │ ├── SkComposeShader.cpp │ ├── SkConfig8888.cpp │ ├── SkConfig8888.h │ ├── SkConvolver.cpp │ ├── SkConvolver.h │ ├── SkCoreBlitters.h │ ├── SkCubicClipper.cpp │ ├── SkCubicClipper.h │ ├── SkData.cpp │ ├── SkDataTable.cpp │ ├── SkDebug.cpp │ ├── SkDeque.cpp │ ├── SkDescriptor.h │ ├── SkDevice.cpp │ ├── SkDeviceImageFilterProxy.h │ ├── SkDeviceLooper.cpp │ ├── SkDeviceLooper.h │ ├── SkDeviceProfile.cpp │ ├── SkDeviceProfile.h │ ├── SkDiscardableMemory.h │ ├── SkDistanceFieldGen.cpp │ ├── SkDistanceFieldGen.h │ ├── SkDither.cpp │ ├── SkDraw.cpp │ ├── SkDrawLooper.cpp │ ├── SkDrawProcs.h │ ├── SkEdge.cpp │ ├── SkEdge.h │ ├── SkEdgeBuilder.cpp │ ├── SkEdgeBuilder.h │ ├── SkEdgeClipper.cpp │ ├── SkEdgeClipper.h │ ├── SkError.cpp │ ├── SkErrorInternals.h │ ├── SkFDot6.h │ ├── SkFilterProc.cpp │ ├── SkFilterProc.h │ ├── SkFilterShader.cpp │ ├── SkFilterShader.h │ ├── SkFlate.cpp │ ├── SkFlattenable.cpp │ ├── SkFlattenableSerialization.cpp │ ├── SkFloat.cpp │ ├── SkFloat.h │ ├── SkFloatBits.cpp │ ├── SkFont.cpp │ ├── SkFontDescriptor.cpp │ ├── SkFontDescriptor.h │ ├── SkFontHost.cpp │ ├── SkFontStream.cpp │ ├── SkFontStream.h │ ├── SkGeometry.cpp │ ├── SkGlyph.h │ ├── SkGlyphCache.cpp │ ├── SkGlyphCache.h │ ├── SkGlyphCache_Globals.h │ ├── SkGraphics.cpp │ ├── SkImageFilter.cpp │ ├── SkImageInfo.cpp │ ├── SkInstCnt.cpp │ ├── SkLineClipper.cpp │ ├── SkMallocPixelRef.cpp │ ├── SkMask.cpp │ ├── SkMaskFilter.cpp │ ├── SkMaskGamma.cpp │ ├── SkMaskGamma.h │ ├── SkMath.cpp │ ├── SkMathPriv.h │ ├── SkMatrix.cpp │ ├── SkMatrixClipStateMgr.cpp │ ├── SkMatrixClipStateMgr.h │ ├── SkMatrixUtils.h │ ├── SkMessageBus.h │ ├── SkMetaData.cpp │ ├── SkMipMap.cpp │ ├── SkMipMap.h │ ├── SkOffsetTable.h │ ├── SkOrderedReadBuffer.h │ ├── SkPackBits.cpp │ ├── SkPaint.cpp │ ├── SkPaintDefaults.h │ ├── SkPaintOptionsAndroid.cpp │ ├── SkPaintPriv.cpp │ ├── SkPaintPriv.h │ ├── SkPath.cpp │ ├── SkPathEffect.cpp │ ├── SkPathHeap.cpp │ ├── SkPathHeap.h │ ├── SkPathMeasure.cpp │ ├── SkPathRef.cpp │ ├── SkPerspIter.h │ ├── SkPicture.cpp │ ├── SkPictureFlat.cpp │ ├── SkPictureFlat.h │ ├── SkPicturePlayback.cpp │ ├── SkPicturePlayback.h │ ├── SkPictureRecord.cpp │ ├── SkPictureRecord.h │ ├── SkPictureShader.cpp │ ├── SkPictureShader.h │ ├── SkPictureStateTree.cpp │ ├── SkPictureStateTree.h │ ├── SkPixelRef.cpp │ ├── SkPoint.cpp │ ├── SkProcSpriteBlitter.cpp │ ├── SkPtrRecorder.cpp │ ├── SkPtrRecorder.h │ ├── SkQuadClipper.cpp │ ├── SkQuadClipper.h │ ├── SkQuadTree.cpp │ ├── SkQuadTree.h │ ├── SkQuadTreePicture.cpp │ ├── SkQuadTreePicture.h │ ├── SkRRect.cpp │ ├── SkRTree.cpp │ ├── SkRTree.h │ ├── SkRasterClip.cpp │ ├── SkRasterClip.h │ ├── SkRasterizer.cpp │ ├── SkReadBuffer.cpp │ ├── SkRect.cpp │ ├── SkRefDict.cpp │ ├── SkRefDict.h │ ├── SkRegion.cpp │ ├── SkRegionPriv.h │ ├── SkRegion_path.cpp │ ├── SkScalar.cpp │ ├── SkScaledImageCache.cpp │ ├── SkScaledImageCache.h │ ├── SkScalerContext.cpp │ ├── SkScalerContext.h │ ├── SkScan.cpp │ ├── SkScan.h │ ├── SkScanPriv.h │ ├── SkScan_AntiPath.cpp │ ├── SkScan_Antihair.cpp │ ├── SkScan_Hairline.cpp │ ├── SkScan_Path.cpp │ ├── SkShader.cpp │ ├── SkSinTable.h │ ├── SkSmallAllocator.h │ ├── SkSpriteBlitter.h │ ├── SkSpriteBlitterTemplate.h │ ├── SkSpriteBlitter_ARGB32.cpp │ ├── SkSpriteBlitter_RGB16.cpp │ ├── SkStream.cpp │ ├── SkString.cpp │ ├── SkStringUtils.cpp │ ├── SkStroke.cpp │ ├── SkStroke.h │ ├── SkStrokeRec.cpp │ ├── SkStrokerPriv.cpp │ ├── SkStrokerPriv.h │ ├── SkTDynamicHash.h │ ├── SkTInternalSList.h │ ├── SkTLList.h │ ├── SkTLS.cpp │ ├── SkTLS.h │ ├── SkTObjectPool.h │ ├── SkTRefArray.h │ ├── SkTSearch.cpp │ ├── SkTSort.h │ ├── SkTextFormatParams.h │ ├── SkTextToPathIter.h │ ├── SkTileGrid.cpp │ ├── SkTileGrid.h │ ├── SkTileGridPicture.cpp │ ├── SkTraceEvent.h │ ├── SkTypeface.cpp │ ├── SkTypefaceCache.cpp │ ├── SkTypefaceCache.h │ ├── SkTypefacePriv.h │ ├── SkUnPreMultiply.cpp │ ├── SkUtils.cpp │ ├── SkUtilsArm.cpp │ ├── SkUtilsArm.h │ ├── SkValidatingReadBuffer.cpp │ ├── SkValidatingReadBuffer.h │ ├── SkValidationUtils.h │ ├── SkWriteBuffer.cpp │ ├── SkWriter32.cpp │ ├── SkXfermode.cpp │ ├── SkXfermode_proccoeff.h │ └── stdint.h ├── device │ └── xps │ │ └── SkXPSDevice.cpp ├── doc │ ├── SkDocument.cpp │ └── SkDocument_PDF.cpp ├── effects │ ├── Sk1DPathEffect.cpp │ ├── Sk2DPathEffect.cpp │ ├── SkAlphaThresholdFilter.cpp │ ├── SkArithmeticMode.cpp │ ├── SkAvoidXfermode.cpp │ ├── SkBicubicImageFilter.cpp │ ├── SkBitmapSource.cpp │ ├── SkBlurDrawLooper.cpp │ ├── SkBlurImageFilter.cpp │ ├── SkBlurMask.cpp │ ├── SkBlurMask.h │ ├── SkBlurMaskFilter.cpp │ ├── SkColorFilterImageFilter.cpp │ ├── SkColorFilters.cpp │ ├── SkColorMatrix.cpp │ ├── SkColorMatrixFilter.cpp │ ├── SkComposeImageFilter.cpp │ ├── SkCornerPathEffect.cpp │ ├── SkDashPathEffect.cpp │ ├── SkDiscretePathEffect.cpp │ ├── SkDisplacementMapEffect.cpp │ ├── SkDropShadowImageFilter.cpp │ ├── SkEmbossMask.cpp │ ├── SkEmbossMask.h │ ├── SkEmbossMaskFilter.cpp │ ├── SkEmbossMask_Table.h │ ├── SkGpuBlurUtils.cpp │ ├── SkGpuBlurUtils.h │ ├── SkKernel33MaskFilter.cpp │ ├── SkLayerDrawLooper.cpp │ ├── SkLayerRasterizer.cpp │ ├── SkLerpXfermode.cpp │ ├── SkLightingImageFilter.cpp │ ├── SkLumaColorFilter.cpp │ ├── SkMagnifierImageFilter.cpp │ ├── SkMatrixConvolutionImageFilter.cpp │ ├── SkMatrixImageFilter.cpp │ ├── SkMergeImageFilter.cpp │ ├── SkMorphologyImageFilter.cpp │ ├── SkOffsetImageFilter.cpp │ ├── SkPaintFlagsDrawFilter.cpp │ ├── SkPerlinNoiseShader.cpp │ ├── SkPictureImageFilter.cpp │ ├── SkPixelXorXfermode.cpp │ ├── SkPorterDuff.cpp │ ├── SkRectShaderImageFilter.cpp │ ├── SkStippleMaskFilter.cpp │ ├── SkTableColorFilter.cpp │ ├── SkTableMaskFilter.cpp │ ├── SkTestImageFilters.cpp │ ├── SkTileImageFilter.cpp │ ├── SkTransparentShader.cpp │ ├── SkXfermodeImageFilter.cpp │ └── gradients │ │ ├── SkBitmapCache.cpp │ │ ├── SkBitmapCache.h │ │ ├── SkClampRange.cpp │ │ ├── SkClampRange.h │ │ ├── SkGradientShader.cpp │ │ ├── SkGradientShaderPriv.h │ │ ├── SkLinearGradient.cpp │ │ ├── SkLinearGradient.h │ │ ├── SkRadialGradient.cpp │ │ ├── SkRadialGradient.h │ │ ├── SkRadialGradient_Table.h │ │ ├── SkSweepGradient.cpp │ │ ├── SkSweepGradient.h │ │ ├── SkTwoPointConicalGradient.cpp │ │ ├── SkTwoPointConicalGradient.h │ │ ├── SkTwoPointConicalGradient_gpu.cpp │ │ ├── SkTwoPointConicalGradient_gpu.h │ │ ├── SkTwoPointRadialGradient.cpp │ │ └── SkTwoPointRadialGradient.h ├── fonts │ ├── SkFontMgr_fontconfig.cpp │ ├── SkFontMgr_indirect.cpp │ ├── SkGScalerContext.cpp │ ├── SkGScalerContext.h │ └── SkRemotableFontMgr.cpp ├── gpu │ ├── GrAAConvexPathRenderer.cpp │ ├── GrAAConvexPathRenderer.h │ ├── GrAAHairLinePathRenderer.cpp │ ├── GrAAHairLinePathRenderer.h │ ├── GrAARectRenderer.cpp │ ├── GrAARectRenderer.h │ ├── GrAddPathRenderers_default.cpp │ ├── GrAllocPool.cpp │ ├── GrAllocPool.h │ ├── GrAllocator.h │ ├── GrAtlas.cpp │ ├── GrAtlas.h │ ├── GrBinHashKey.h │ ├── GrBitmapTextContext.cpp │ ├── GrBitmapTextContext.h │ ├── GrBlend.cpp │ ├── GrBlend.h │ ├── GrBufferAllocPool.cpp │ ├── GrBufferAllocPool.h │ ├── GrCacheID.cpp │ ├── GrClipData.cpp │ ├── GrClipMaskCache.cpp │ ├── GrClipMaskCache.h │ ├── GrClipMaskManager.cpp │ ├── GrClipMaskManager.h │ ├── GrContext.cpp │ ├── GrDefaultPathRenderer.cpp │ ├── GrDefaultPathRenderer.h │ ├── GrDistanceFieldTextContext.cpp │ ├── GrDistanceFieldTextContext.h │ ├── GrDrawState.cpp │ ├── GrDrawState.h │ ├── GrDrawTarget.cpp │ ├── GrDrawTarget.h │ ├── GrDrawTargetCaps.h │ ├── GrEffect.cpp │ ├── GrGeometryBuffer.h │ ├── GrGpu.cpp │ ├── GrGpu.h │ ├── GrGpuFactory.cpp │ ├── GrInOrderDrawBuffer.cpp │ ├── GrInOrderDrawBuffer.h │ ├── GrIndexBuffer.h │ ├── GrLayerCache.cpp │ ├── GrLayerCache.h │ ├── GrMemoryPool.cpp │ ├── GrMemoryPool.h │ ├── GrOrderedSet.h │ ├── GrOvalRenderer.cpp │ ├── GrOvalRenderer.h │ ├── GrPaint.cpp │ ├── GrPath.cpp │ ├── GrPath.h │ ├── GrPathRenderer.cpp │ ├── GrPathRenderer.h │ ├── GrPathRendererChain.cpp │ ├── GrPathUtils.cpp │ ├── GrPathUtils.h │ ├── GrPictureUtils.cpp │ ├── GrPictureUtils.h │ ├── GrPlotMgr.h │ ├── GrRectanizer.cpp │ ├── GrRectanizer.h │ ├── GrRectanizer_skyline.cpp │ ├── GrRedBlackTree.h │ ├── GrReducedClip.cpp │ ├── GrReducedClip.h │ ├── GrRenderTarget.cpp │ ├── GrResource.cpp │ ├── GrResourceCache.cpp │ ├── GrResourceCache.h │ ├── GrSWMaskHelper.cpp │ ├── GrSWMaskHelper.h │ ├── GrSoftwarePathRenderer.cpp │ ├── GrSoftwarePathRenderer.h │ ├── GrStencil.cpp │ ├── GrStencil.h │ ├── GrStencilAndCoverPathRenderer.cpp │ ├── GrStencilAndCoverPathRenderer.h │ ├── GrStencilBuffer.cpp │ ├── GrStencilBuffer.h │ ├── GrSurface.cpp │ ├── GrTBSearch.h │ ├── GrTHashTable.h │ ├── GrTMultiMap.h │ ├── GrTemplates.h │ ├── GrTest.cpp │ ├── GrTest.h │ ├── GrTextContext.cpp │ ├── GrTextContext.h │ ├── GrTextStrike.cpp │ ├── GrTextStrike.h │ ├── GrTextStrike_impl.h │ ├── GrTexture.cpp │ ├── GrTextureAccess.cpp │ ├── GrTraceMarker.cpp │ ├── GrTraceMarker.h │ ├── GrTracing.h │ ├── GrVertexBuffer.h │ ├── SkGpuDevice.cpp │ ├── SkGr.cpp │ ├── SkGrFontScaler.cpp │ ├── SkGrPixelRef.cpp │ ├── SkGrTexturePixelRef.cpp │ ├── effects │ │ ├── Gr1DKernelEffect.h │ │ ├── GrBezierEffect.cpp │ │ ├── GrBezierEffect.h │ │ ├── GrBicubicEffect.cpp │ │ ├── GrBicubicEffect.h │ │ ├── GrConfigConversionEffect.cpp │ │ ├── GrConfigConversionEffect.h │ │ ├── GrConvexPolyEffect.cpp │ │ ├── GrConvexPolyEffect.h │ │ ├── GrConvolutionEffect.cpp │ │ ├── GrConvolutionEffect.h │ │ ├── GrCustomCoordsTextureEffect.cpp │ │ ├── GrCustomCoordsTextureEffect.h │ │ ├── GrDistanceFieldTextureEffect.cpp │ │ ├── GrDistanceFieldTextureEffect.h │ │ ├── GrOvalEffect.cpp │ │ ├── GrOvalEffect.h │ │ ├── GrRRectEffect.cpp │ │ ├── GrRRectEffect.h │ │ ├── GrSimpleTextureEffect.cpp │ │ ├── GrSimpleTextureEffect.h │ │ ├── GrSingleTextureEffect.cpp │ │ ├── GrSingleTextureEffect.h │ │ ├── GrTextureDomain.cpp │ │ ├── GrTextureDomain.h │ │ ├── GrTextureStripAtlas.cpp │ │ ├── GrTextureStripAtlas.h │ │ └── GrVertexEffect.h │ └── gl │ │ ├── GrGLBufferImpl.cpp │ │ ├── GrGLBufferImpl.h │ │ ├── GrGLCaps.cpp │ │ ├── GrGLCaps.h │ │ ├── GrGLContext.cpp │ │ ├── GrGLContext.h │ │ ├── GrGLCreateNativeInterface_none.cpp │ │ ├── GrGLCreateNullInterface.cpp │ │ ├── GrGLDefaultInterface_native.cpp │ │ ├── GrGLDefaultInterface_none.cpp │ │ ├── GrGLDefines.h │ │ ├── GrGLEffect.h │ │ ├── GrGLExtensions.cpp │ │ ├── GrGLIRect.h │ │ ├── GrGLIndexBuffer.cpp │ │ ├── GrGLIndexBuffer.h │ │ ├── GrGLInterface.cpp │ │ ├── GrGLNoOpInterface.cpp │ │ ├── GrGLNoOpInterface.h │ │ ├── GrGLPath.cpp │ │ ├── GrGLPath.h │ │ ├── GrGLProgram.cpp │ │ ├── GrGLProgram.h │ │ ├── GrGLProgramDesc.cpp │ │ ├── GrGLProgramDesc.h │ │ ├── GrGLProgramEffects.cpp │ │ ├── GrGLProgramEffects.h │ │ ├── GrGLRenderTarget.cpp │ │ ├── GrGLRenderTarget.h │ │ ├── GrGLSL.cpp │ │ ├── GrGLSL.h │ │ ├── GrGLSL_impl.h │ │ ├── GrGLShaderBuilder.cpp │ │ ├── GrGLShaderBuilder.h │ │ ├── GrGLShaderVar.h │ │ ├── GrGLStencilBuffer.cpp │ │ ├── GrGLStencilBuffer.h │ │ ├── GrGLTexture.cpp │ │ ├── GrGLTexture.h │ │ ├── GrGLUniformHandle.h │ │ ├── GrGLUniformManager.cpp │ │ ├── GrGLUniformManager.h │ │ ├── GrGLUtil.cpp │ │ ├── GrGLUtil.h │ │ ├── GrGLVertexArray.cpp │ │ ├── GrGLVertexArray.h │ │ ├── GrGLVertexBuffer.cpp │ │ ├── GrGLVertexBuffer.h │ │ ├── GrGLVertexEffect.h │ │ ├── GrGpuGL.cpp │ │ ├── GrGpuGL.h │ │ ├── GrGpuGL_program.cpp │ │ ├── SkGLContextHelper.cpp │ │ ├── SkNullGLContext.cpp │ │ ├── android │ │ ├── GrGLCreateNativeInterface_android.cpp │ │ └── SkNativeGLContext_android.cpp │ │ ├── angle │ │ ├── GrGLCreateANGLEInterface.cpp │ │ └── SkANGLEGLContext.cpp │ │ ├── debug │ │ ├── GrBufferObj.cpp │ │ ├── GrBufferObj.h │ │ ├── GrDebugGL.cpp │ │ ├── GrDebugGL.h │ │ ├── GrFBBindableObj.h │ │ ├── GrFakeRefObj.h │ │ ├── GrFrameBufferObj.cpp │ │ ├── GrFrameBufferObj.h │ │ ├── GrGLCreateDebugInterface.cpp │ │ ├── GrProgramObj.cpp │ │ ├── GrProgramObj.h │ │ ├── GrRenderBufferObj.h │ │ ├── GrShaderObj.cpp │ │ ├── GrShaderObj.h │ │ ├── GrTextureObj.cpp │ │ ├── GrTextureObj.h │ │ ├── GrTextureUnitObj.cpp │ │ ├── GrTextureUnitObj.h │ │ ├── GrVertexArrayObj.h │ │ └── SkDebugGLContext.cpp │ │ ├── iOS │ │ ├── GrGLCreateNativeInterface_iOS.cpp │ │ └── SkNativeGLContext_iOS.mm │ │ ├── mac │ │ ├── GrGLCreateNativeInterface_mac.cpp │ │ └── SkNativeGLContext_mac.cpp │ │ ├── mesa │ │ ├── GrGLCreateMesaInterface.cpp │ │ ├── SkMesaGLContext.cpp │ │ └── osmesa_wrapper.h │ │ ├── nacl │ │ └── SkNativeGLContext_nacl.cpp │ │ ├── unix │ │ ├── GrGLCreateNativeInterface_unix.cpp │ │ └── SkNativeGLContext_unix.cpp │ │ └── win │ │ ├── GrGLCreateNativeInterface_win.cpp │ │ └── SkNativeGLContext_win.cpp ├── image │ ├── SkImage.cpp │ ├── SkImagePriv.cpp │ ├── SkImagePriv.h │ ├── SkImage_Base.h │ ├── SkImage_Codec.cpp │ ├── SkImage_Gpu.cpp │ ├── SkImage_Picture.cpp │ ├── SkImage_Raster.cpp │ ├── SkSurface.cpp │ ├── SkSurface_Base.h │ ├── SkSurface_Gpu.cpp │ ├── SkSurface_Picture.cpp │ └── SkSurface_Raster.cpp ├── images │ ├── SkDecodingImageGenerator.cpp │ ├── SkDecodingImageGenerator.h │ ├── SkForceLinking.cpp │ ├── SkImageDecoder.cpp │ ├── SkImageDecoder_FactoryDefault.cpp │ ├── SkImageDecoder_FactoryRegistrar.cpp │ ├── SkImageDecoder_libbmp.cpp │ ├── SkImageDecoder_libgif.cpp │ ├── SkImageDecoder_libico.cpp │ ├── SkImageDecoder_libjpeg.cpp │ ├── SkImageDecoder_libpng.cpp │ ├── SkImageDecoder_libwebp.cpp │ ├── SkImageDecoder_wbmp.cpp │ ├── SkImageEncoder.cpp │ ├── SkImageEncoder_Factory.cpp │ ├── SkImageEncoder_argb.cpp │ ├── SkImageRef.cpp │ ├── SkImageRefPool.cpp │ ├── SkImageRefPool.h │ ├── SkImageRef_GlobalPool.cpp │ ├── SkImageRef_ashmem.cpp │ ├── SkImageRef_ashmem.h │ ├── SkImages.cpp │ ├── SkJpegUtility.cpp │ ├── SkJpegUtility.h │ ├── SkMovie.cpp │ ├── SkMovie_gif.cpp │ ├── SkPageFlipper.cpp │ ├── SkScaledBitmapSampler.cpp │ ├── SkScaledBitmapSampler.h │ ├── SkStreamHelpers.cpp │ ├── SkStreamHelpers.h │ ├── bmpdecoderhelper.cpp │ ├── bmpdecoderhelper.h │ └── transform_scanline.h ├── lazy │ ├── SkCachingPixelRef.cpp │ ├── SkCachingPixelRef.h │ ├── SkDiscardableMemoryPool.cpp │ ├── SkDiscardableMemoryPool.h │ ├── SkDiscardablePixelRef.cpp │ └── SkDiscardablePixelRef.h ├── opts │ ├── SkBitmapFilter_opts_SSE2.cpp │ ├── SkBitmapFilter_opts_SSE2.h │ ├── SkBitmapProcState_arm_neon.cpp │ ├── SkBitmapProcState_filter_neon.h │ ├── SkBitmapProcState_matrixProcs_neon.cpp │ ├── SkBitmapProcState_matrix_neon.h │ ├── SkBitmapProcState_opts_SSE2.cpp │ ├── SkBitmapProcState_opts_SSE2.h │ ├── SkBitmapProcState_opts_SSSE3.cpp │ ├── SkBitmapProcState_opts_SSSE3.h │ ├── SkBitmapProcState_opts_arm.cpp │ ├── SkBitmapProcState_opts_none.cpp │ ├── SkBlitMask_opts_arm.cpp │ ├── SkBlitMask_opts_arm_neon.cpp │ ├── SkBlitMask_opts_arm_neon.h │ ├── SkBlitMask_opts_none.cpp │ ├── SkBlitRect_opts_SSE2.cpp │ ├── SkBlitRect_opts_SSE2.h │ ├── SkBlitRow_opts_SSE2.cpp │ ├── SkBlitRow_opts_SSE2.h │ ├── SkBlitRow_opts_arm.cpp │ ├── SkBlitRow_opts_arm_neon.cpp │ ├── SkBlitRow_opts_arm_neon.h │ ├── SkBlitRow_opts_none.cpp │ ├── SkBlurImage_opts.h │ ├── SkBlurImage_opts_SSE2.cpp │ ├── SkBlurImage_opts_SSE2.h │ ├── SkBlurImage_opts_arm.cpp │ ├── SkBlurImage_opts_neon.cpp │ ├── SkBlurImage_opts_neon.h │ ├── SkBlurImage_opts_none.cpp │ ├── SkCachePreload_arm.h │ ├── SkColor_opts_SSE2.h │ ├── SkColor_opts_neon.h │ ├── SkMorphology_opts.h │ ├── SkMorphology_opts_SSE2.cpp │ ├── SkMorphology_opts_SSE2.h │ ├── SkMorphology_opts_arm.cpp │ ├── SkMorphology_opts_neon.cpp │ ├── SkMorphology_opts_neon.h │ ├── SkMorphology_opts_none.cpp │ ├── SkUtils_opts_SSE2.cpp │ ├── SkUtils_opts_SSE2.h │ ├── SkUtils_opts_arm.cpp │ ├── SkUtils_opts_none.cpp │ ├── SkXfermode_opts_SSE2.cpp │ ├── SkXfermode_opts_SSE2.h │ ├── SkXfermode_opts_arm.cpp │ ├── SkXfermode_opts_arm_neon.cpp │ ├── SkXfermode_opts_arm_neon.h │ ├── SkXfermode_opts_none.cpp │ ├── memset.arm.S │ ├── memset16_neon.S │ ├── memset32_neon.S │ └── opts_check_SSE2.cpp ├── pathops │ ├── SkAddIntersections.cpp │ ├── SkAddIntersections.h │ ├── SkDCubicIntersection.cpp │ ├── SkDCubicLineIntersection.cpp │ ├── SkDCubicToQuads.cpp │ ├── SkDLineIntersection.cpp │ ├── SkDQuadImplicit.cpp │ ├── SkDQuadImplicit.h │ ├── SkDQuadIntersection.cpp │ ├── SkDQuadLineIntersection.cpp │ ├── SkIntersectionHelper.h │ ├── SkIntersections.cpp │ ├── SkIntersections.h │ ├── SkLineParameters.h │ ├── SkOpAngle.cpp │ ├── SkOpAngle.h │ ├── SkOpContour.cpp │ ├── SkOpContour.h │ ├── SkOpEdgeBuilder.cpp │ ├── SkOpEdgeBuilder.h │ ├── SkOpSegment.cpp │ ├── SkOpSegment.h │ ├── SkOpSpan.h │ ├── SkPathOpsBounds.cpp │ ├── SkPathOpsBounds.h │ ├── SkPathOpsCommon.cpp │ ├── SkPathOpsCommon.h │ ├── SkPathOpsCubic.cpp │ ├── SkPathOpsCubic.h │ ├── SkPathOpsCurve.h │ ├── SkPathOpsDebug.cpp │ ├── SkPathOpsDebug.h │ ├── SkPathOpsLine.cpp │ ├── SkPathOpsLine.h │ ├── SkPathOpsOp.cpp │ ├── SkPathOpsPoint.cpp │ ├── SkPathOpsPoint.h │ ├── SkPathOpsQuad.cpp │ ├── SkPathOpsQuad.h │ ├── SkPathOpsRect.cpp │ ├── SkPathOpsRect.h │ ├── SkPathOpsSimplify.cpp │ ├── SkPathOpsTriangle.cpp │ ├── SkPathOpsTriangle.h │ ├── SkPathOpsTypes.cpp │ ├── SkPathOpsTypes.h │ ├── SkPathWriter.cpp │ ├── SkPathWriter.h │ ├── SkQuarticRoot.cpp │ ├── SkQuarticRoot.h │ ├── SkReduceOrder.cpp │ └── SkReduceOrder.h ├── pdf │ ├── SkPDFCatalog.cpp │ ├── SkPDFCatalog.h │ ├── SkPDFDevice.cpp │ ├── SkPDFDeviceFlattener.cpp │ ├── SkPDFDeviceFlattener.h │ ├── SkPDFDocument.cpp │ ├── SkPDFFont.cpp │ ├── SkPDFFont.h │ ├── SkPDFFontImpl.h │ ├── SkPDFFormXObject.cpp │ ├── SkPDFFormXObject.h │ ├── SkPDFGraphicState.cpp │ ├── SkPDFGraphicState.h │ ├── SkPDFImage.cpp │ ├── SkPDFImage.h │ ├── SkPDFPage.cpp │ ├── SkPDFPage.h │ ├── SkPDFResourceDict.cpp │ ├── SkPDFResourceDict.h │ ├── SkPDFShader.cpp │ ├── SkPDFShader.h │ ├── SkPDFStream.cpp │ ├── SkPDFStream.h │ ├── SkPDFTypes.cpp │ ├── SkPDFTypes.h │ ├── SkPDFUtils.cpp │ ├── SkPDFUtils.h │ └── SkTSet.h ├── pipe │ ├── SkGPipePriv.h │ ├── SkGPipeRead.cpp │ ├── SkGPipeWrite.cpp │ └── utils │ │ ├── SamplePipeControllers.cpp │ │ └── SamplePipeControllers.h ├── ports │ ├── SkAtomics_android.h │ ├── SkAtomics_none.h │ ├── SkAtomics_sync.h │ ├── SkAtomics_win.h │ ├── SkDebug_android.cpp │ ├── SkDebug_nacl.cpp │ ├── SkDebug_stdio.cpp │ ├── SkDebug_win.cpp │ ├── SkDiscardableMemory_ashmem.cpp │ ├── SkDiscardableMemory_none.cpp │ ├── SkFontConfigInterface_android.cpp │ ├── SkFontConfigInterface_direct.cpp │ ├── SkFontConfigParser_android.cpp │ ├── SkFontConfigParser_android.h │ ├── SkFontConfigTypeface.h │ ├── SkFontHost_FreeType.cpp │ ├── SkFontHost_FreeType_common.cpp │ ├── SkFontHost_FreeType_common.h │ ├── SkFontHost_fontconfig.cpp │ ├── SkFontHost_linux.cpp │ ├── SkFontHost_mac.cpp │ ├── SkFontHost_none.cpp │ ├── SkFontHost_win.cpp │ ├── SkFontHost_win_dw.cpp │ ├── SkFontMgr_default_dw.cpp │ ├── SkFontMgr_default_gdi.cpp │ ├── SkGlobalInitialization_chromium.cpp │ ├── SkGlobalInitialization_default.cpp │ ├── SkImageDecoder_CG.cpp │ ├── SkImageDecoder_WIC.cpp │ ├── SkImageDecoder_empty.cpp │ ├── SkMemory_malloc.cpp │ ├── SkMemory_mozalloc.cpp │ ├── SkMutex_none.h │ ├── SkMutex_pthread.h │ ├── SkMutex_win.h │ ├── SkOSFile_none.cpp │ ├── SkOSFile_posix.cpp │ ├── SkOSFile_stdio.cpp │ ├── SkOSFile_win.cpp │ ├── SkRemotableFontMgr_win_dw.cpp │ ├── SkTLS_none.cpp │ ├── SkTLS_pthread.cpp │ ├── SkTLS_win.cpp │ ├── SkTime_Unix.cpp │ ├── SkTime_win.cpp │ └── SkXMLParser_empty.cpp ├── record │ ├── SkRecord.h │ ├── SkRecordCulling.cpp │ ├── SkRecordCulling.h │ ├── SkRecordDraw.cpp │ ├── SkRecordDraw.h │ ├── SkRecorder.cpp │ ├── SkRecorder.h │ └── SkRecords.h ├── sfnt │ ├── SkIBMFamilyClass.h │ ├── SkOTTableTypes.h │ ├── SkOTTable_OS_2.h │ ├── SkOTTable_OS_2_V0.h │ ├── SkOTTable_OS_2_V1.h │ ├── SkOTTable_OS_2_V2.h │ ├── SkOTTable_OS_2_V3.h │ ├── SkOTTable_OS_2_V4.h │ ├── SkOTTable_OS_2_VA.h │ ├── SkOTTable_glyf.h │ ├── SkOTTable_head.h │ ├── SkOTTable_hhea.h │ ├── SkOTTable_loca.h │ ├── SkOTTable_maxp.h │ ├── SkOTTable_maxp_CFF.h │ ├── SkOTTable_maxp_TT.h │ ├── SkOTTable_name.cpp │ ├── SkOTTable_name.h │ ├── SkOTTable_post.h │ ├── SkOTUtils.cpp │ ├── SkOTUtils.h │ ├── SkPanose.h │ ├── SkPreprocessorSeq.h │ ├── SkSFNTHeader.h │ ├── SkTTCFHeader.h │ └── SkTypedEnum.h ├── svg │ ├── SkSVG.cpp │ ├── SkSVGCircle.cpp │ ├── SkSVGCircle.h │ ├── SkSVGClipPath.cpp │ ├── SkSVGClipPath.h │ ├── SkSVGDefs.cpp │ ├── SkSVGDefs.h │ ├── SkSVGElements.cpp │ ├── SkSVGElements.h │ ├── SkSVGEllipse.cpp │ ├── SkSVGEllipse.h │ ├── SkSVGFeColorMatrix.cpp │ ├── SkSVGFeColorMatrix.h │ ├── SkSVGFilter.cpp │ ├── SkSVGFilter.h │ ├── SkSVGG.cpp │ ├── SkSVGG.h │ ├── SkSVGGradient.cpp │ ├── SkSVGGradient.h │ ├── SkSVGGroup.cpp │ ├── SkSVGGroup.h │ ├── SkSVGImage.cpp │ ├── SkSVGImage.h │ ├── SkSVGLine.cpp │ ├── SkSVGLine.h │ ├── SkSVGLinearGradient.cpp │ ├── SkSVGLinearGradient.h │ ├── SkSVGMask.cpp │ ├── SkSVGMask.h │ ├── SkSVGMetadata.cpp │ ├── SkSVGMetadata.h │ ├── SkSVGPaintState.cpp │ ├── SkSVGParser.cpp │ ├── SkSVGPath.cpp │ ├── SkSVGPath.h │ ├── SkSVGPolygon.cpp │ ├── SkSVGPolygon.h │ ├── SkSVGPolyline.cpp │ ├── SkSVGPolyline.h │ ├── SkSVGRadialGradient.cpp │ ├── SkSVGRadialGradient.h │ ├── SkSVGRect.cpp │ ├── SkSVGRect.h │ ├── SkSVGSVG.cpp │ ├── SkSVGSVG.h │ ├── SkSVGStop.cpp │ ├── SkSVGStop.h │ ├── SkSVGSymbol.cpp │ ├── SkSVGSymbol.h │ ├── SkSVGText.cpp │ ├── SkSVGText.h │ ├── SkSVGUse.cpp │ └── SkSVGUse.h ├── utils │ ├── SkBase64.cpp │ ├── SkBase64.h │ ├── SkBitSet.cpp │ ├── SkBitSet.h │ ├── SkBitmapHasher.cpp │ ├── SkBitmapHasher.h │ ├── SkBoundaryPatch.cpp │ ├── SkCamera.cpp │ ├── SkCanvasStack.cpp │ ├── SkCanvasStack.h │ ├── SkCanvasStateUtils.cpp │ ├── SkCondVar.cpp │ ├── SkCountdown.cpp │ ├── SkCubicInterval.cpp │ ├── SkCullPoints.cpp │ ├── SkDeferredCanvas.cpp │ ├── SkDumpCanvas.cpp │ ├── SkEventTracer.cpp │ ├── SkFloatUtils.h │ ├── SkFrontBufferedStream.cpp │ ├── SkGatherPixelRefsAndRects.cpp │ ├── SkGatherPixelRefsAndRects.h │ ├── SkInterpolator.cpp │ ├── SkLayer.cpp │ ├── SkLua.cpp │ ├── SkLuaCanvas.cpp │ ├── SkMD5.cpp │ ├── SkMD5.h │ ├── SkMatrix44.cpp │ ├── SkMeshUtils.cpp │ ├── SkNWayCanvas.cpp │ ├── SkNinePatch.cpp │ ├── SkNullCanvas.cpp │ ├── SkOSFile.cpp │ ├── SkPDFRasterizer.cpp │ ├── SkPDFRasterizer.h │ ├── SkParse.cpp │ ├── SkParseColor.cpp │ ├── SkParsePath.cpp │ ├── SkPathUtils.cpp │ ├── SkPictureUtils.cpp │ ├── SkProxyCanvas.cpp │ ├── SkRTConf.cpp │ ├── SkSHA1.cpp │ ├── SkSHA1.h │ ├── SkTFitsIn.h │ ├── SkTLogic.h │ ├── SkThreadUtils.h │ ├── SkThreadUtils_pthread.cpp │ ├── SkThreadUtils_pthread.h │ ├── SkThreadUtils_pthread_linux.cpp │ ├── SkThreadUtils_pthread_mach.cpp │ ├── SkThreadUtils_pthread_other.cpp │ ├── SkThreadUtils_win.cpp │ ├── SkThreadUtils_win.h │ ├── SkUnitMappers.cpp │ ├── android │ │ ├── ashmem.cpp │ │ └── ashmem.h │ ├── debugger │ │ ├── SkDebugCanvas.cpp │ │ ├── SkDebugCanvas.h │ │ ├── SkDrawCommand.cpp │ │ ├── SkDrawCommand.h │ │ ├── SkObjectParser.cpp │ │ └── SkObjectParser.h │ ├── ios │ │ ├── SkFontHost_iOS.mm │ │ ├── SkImageDecoder_iOS.mm │ │ ├── SkOSFile_iOS.mm │ │ └── SkStream_NSData.mm │ ├── mac │ │ ├── SkCreateCGImageRef.cpp │ │ └── SkStream_mac.cpp │ └── win │ │ ├── SkAutoCoInitialize.cpp │ │ ├── SkDWrite.cpp │ │ ├── SkDWrite.h │ │ ├── SkDWriteFontFileStream.cpp │ │ ├── SkDWriteFontFileStream.h │ │ ├── SkDWriteGeometrySink.cpp │ │ ├── SkDWriteGeometrySink.h │ │ ├── SkHRESULT.cpp │ │ ├── SkIStream.cpp │ │ └── SkWGL_win.cpp ├── views │ ├── SkBGViewArtist.cpp │ ├── SkEvent.cpp │ ├── SkEventSink.cpp │ ├── SkOSMenu.cpp │ ├── SkParsePaint.cpp │ ├── SkProgressView.cpp │ ├── SkStackViewLayout.cpp │ ├── SkTagList.cpp │ ├── SkTagList.h │ ├── SkTextBox.cpp │ ├── SkTouchGesture.cpp │ ├── SkView.cpp │ ├── SkViewInflate.cpp │ ├── SkViewPriv.cpp │ ├── SkViewPriv.h │ ├── SkWidgets.cpp │ ├── SkWindow.cpp │ ├── animated │ │ ├── SkBorderView.cpp │ │ ├── SkImageView.cpp │ │ ├── SkProgressBarView.cpp │ │ ├── SkScrollBarView.cpp │ │ ├── SkStaticTextView.cpp │ │ └── SkWidgetViews.cpp │ ├── ios │ │ └── SkOSWindow_iOS.mm │ ├── mac │ │ ├── SampleApp-Info.plist │ │ ├── SampleApp.xib │ │ ├── SampleAppDelegate.h │ │ ├── SampleAppDelegate.mm │ │ ├── SkEventNotifier.h │ │ ├── SkEventNotifier.mm │ │ ├── SkNSView.h │ │ ├── SkNSView.mm │ │ ├── SkOSWindow_Mac.cpp │ │ ├── SkOSWindow_Mac.mm │ │ ├── SkOptionsTableView.h │ │ ├── SkOptionsTableView.mm │ │ ├── SkSampleNSView.h │ │ ├── SkSampleNSView.mm │ │ ├── SkTextFieldCell.h │ │ ├── SkTextFieldCell.m │ │ └── skia_mac.mm │ ├── sdl │ │ └── SkOSWindow_SDL.cpp │ ├── unix │ │ ├── SkOSWindow_Unix.cpp │ │ ├── keysym2ucs.c │ │ └── skia_unix.cpp │ └── win │ │ ├── SkOSWindow_win.cpp │ │ └── skia_win.cpp └── xml │ ├── SkBML_Verbs.h │ ├── SkBML_XMLParser.cpp │ ├── SkDOM.cpp │ ├── SkJS.cpp │ ├── SkJSDisplayable.cpp │ ├── SkXMLParser.cpp │ ├── SkXMLPullParser.cpp │ └── SkXMLWriter.cpp └── third_party ├── README ├── bson_c ├── APACHE-2.0.txt ├── src │ ├── bson.c │ ├── bson.h │ ├── encoding.c │ ├── encoding.h │ └── numbers.c └── test │ ├── bson_subobject_test.c │ └── bson_test.c ├── externals ├── angle │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── DEPS │ ├── LICENSE │ ├── build │ │ ├── all.gyp │ │ ├── common.gypi │ │ └── gyp_angle │ ├── codereview.settings │ ├── 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_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 │ │ │ ├── egl.h │ │ │ ├── eglext.h │ │ │ └── eglplatform.h │ │ ├── GLES2 │ │ │ ├── gl2.h │ │ │ ├── gl2ext.h │ │ │ └── gl2platform.h │ │ ├── GLSLANG │ │ │ └── ShaderLang.h │ │ └── KHR │ │ │ └── khrplatform.h │ ├── samples │ │ ├── build_samples.gyp │ │ ├── gles2_book │ │ │ ├── Common │ │ │ │ ├── Win32 │ │ │ │ │ ├── esUtil_TGA.c │ │ │ │ │ └── esUtil_win32.c │ │ │ │ ├── esShader.c │ │ │ │ ├── esShapes.c │ │ │ │ ├── esTransform.c │ │ │ │ ├── esUtil.c │ │ │ │ ├── esUtil.h │ │ │ │ ├── esUtil.vcxproj │ │ │ │ ├── esUtil.vcxproj.filters │ │ │ │ └── esUtil_win.h │ │ │ ├── Hello_Triangle │ │ │ │ ├── Hello_Triangle.c │ │ │ │ └── Hello_Triangle.vcxproj │ │ │ ├── MipMap2D │ │ │ │ ├── MipMap2D.c │ │ │ │ └── MipMap2D.vcxproj │ │ │ ├── MultiTexture │ │ │ │ ├── MultiTexture.c │ │ │ │ ├── MultiTexture.vcxproj │ │ │ │ ├── basemap.tga │ │ │ │ └── lightmap.tga │ │ │ ├── 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 │ │ ├── samples.sln │ │ └── translator │ │ │ ├── essl_to_glsl.vcproj │ │ │ ├── essl_to_hlsl.vcxproj │ │ │ ├── essl_to_hlsl.vcxproj.filters │ │ │ └── translator.cpp │ ├── src │ │ ├── ANGLE.sln │ │ ├── build_angle.gyp │ │ ├── build_angle.gypi │ │ ├── common │ │ │ ├── RefCountObject.cpp │ │ │ ├── RefCountObject.h │ │ │ ├── angleutils.h │ │ │ ├── debug.cpp │ │ │ ├── debug.h │ │ │ ├── system.h │ │ │ └── version.h │ │ ├── compiler │ │ │ ├── BaseTypes.h │ │ │ ├── BuiltInFunctionEmulator.cpp │ │ │ ├── BuiltInFunctionEmulator.h │ │ │ ├── CodeGenGLSL.cpp │ │ │ ├── CodeGenHLSL.cpp │ │ │ ├── Common.h │ │ │ ├── Compiler.cpp │ │ │ ├── ConstantUnion.h │ │ │ ├── DetectCallDepth.cpp │ │ │ ├── DetectCallDepth.h │ │ │ ├── DetectDiscontinuity.cpp │ │ │ ├── DetectDiscontinuity.h │ │ │ ├── Diagnostics.cpp │ │ │ ├── Diagnostics.h │ │ │ ├── DirectiveHandler.cpp │ │ │ ├── DirectiveHandler.h │ │ │ ├── ExtensionBehavior.h │ │ │ ├── ForLoopUnroll.cpp │ │ │ ├── ForLoopUnroll.h │ │ │ ├── HashNames.h │ │ │ ├── InfoSink.cpp │ │ │ ├── InfoSink.h │ │ │ ├── Initialize.cpp │ │ │ ├── Initialize.h │ │ │ ├── InitializeDll.cpp │ │ │ ├── InitializeDll.h │ │ │ ├── InitializeGlobals.h │ │ │ ├── InitializeParseContext.cpp │ │ │ ├── InitializeParseContext.h │ │ │ ├── IntermTraverse.cpp │ │ │ ├── Intermediate.cpp │ │ │ ├── MMap.h │ │ │ ├── MapLongVariableNames.cpp │ │ │ ├── MapLongVariableNames.h │ │ │ ├── OutputESSL.cpp │ │ │ ├── OutputESSL.h │ │ │ ├── OutputGLSL.cpp │ │ │ ├── OutputGLSL.h │ │ │ ├── OutputGLSLBase.cpp │ │ │ ├── OutputGLSLBase.h │ │ │ ├── OutputHLSL.cpp │ │ │ ├── OutputHLSL.h │ │ │ ├── ParseHelper.cpp │ │ │ ├── ParseHelper.h │ │ │ ├── PoolAlloc.cpp │ │ │ ├── PoolAlloc.h │ │ │ ├── Pragma.h │ │ │ ├── QualifierAlive.cpp │ │ │ ├── QualifierAlive.h │ │ │ ├── RemoveTree.cpp │ │ │ ├── RemoveTree.h │ │ │ ├── RenameFunction.h │ │ │ ├── SearchSymbol.cpp │ │ │ ├── SearchSymbol.h │ │ │ ├── ShHandle.h │ │ │ ├── ShaderLang.cpp │ │ │ ├── SymbolTable.cpp │ │ │ ├── SymbolTable.h │ │ │ ├── TranslatorESSL.cpp │ │ │ ├── TranslatorESSL.h │ │ │ ├── TranslatorGLSL.cpp │ │ │ ├── TranslatorGLSL.h │ │ │ ├── TranslatorHLSL.cpp │ │ │ ├── TranslatorHLSL.h │ │ │ ├── Types.h │ │ │ ├── UnfoldShortCircuit.cpp │ │ │ ├── UnfoldShortCircuit.h │ │ │ ├── ValidateLimitations.cpp │ │ │ ├── ValidateLimitations.h │ │ │ ├── VariableInfo.cpp │ │ │ ├── VariableInfo.h │ │ │ ├── VariablePacker.cpp │ │ │ ├── VariablePacker.h │ │ │ ├── VersionGLSL.cpp │ │ │ ├── VersionGLSL.h │ │ │ ├── builtin_symbol_table.cpp │ │ │ ├── builtin_symbol_table.h │ │ │ ├── builtin_symbols.json │ │ │ ├── debug.cpp │ │ │ ├── debug.h │ │ │ ├── depgraph │ │ │ │ ├── DependencyGraph.cpp │ │ │ │ ├── DependencyGraph.h │ │ │ │ ├── DependencyGraphBuilder.cpp │ │ │ │ ├── DependencyGraphBuilder.h │ │ │ │ ├── DependencyGraphOutput.cpp │ │ │ │ ├── DependencyGraphOutput.h │ │ │ │ └── DependencyGraphTraverse.cpp │ │ │ ├── generate_builtin_symbol_table.py │ │ │ ├── generate_parser.sh │ │ │ ├── glslang.h │ │ │ ├── glslang.l │ │ │ ├── glslang.y │ │ │ ├── glslang_lex.cpp │ │ │ ├── glslang_tab.cpp │ │ │ ├── glslang_tab.h │ │ │ ├── intermOut.cpp │ │ │ ├── intermediate.h │ │ │ ├── localintermediate.h │ │ │ ├── osinclude.h │ │ │ ├── ossource_posix.cpp │ │ │ ├── ossource_win.cpp │ │ │ ├── parseConst.cpp │ │ │ ├── preprocessor │ │ │ │ ├── DiagnosticsBase.cpp │ │ │ │ ├── DiagnosticsBase.h │ │ │ │ ├── DirectiveHandlerBase.cpp │ │ │ │ ├── DirectiveHandlerBase.h │ │ │ │ ├── DirectiveParser.cpp │ │ │ │ ├── DirectiveParser.h │ │ │ │ ├── ExpressionParser.cpp │ │ │ │ ├── ExpressionParser.h │ │ │ │ ├── ExpressionParser.y │ │ │ │ ├── Input.cpp │ │ │ │ ├── Input.h │ │ │ │ ├── Lexer.cpp │ │ │ │ ├── Lexer.h │ │ │ │ ├── Macro.cpp │ │ │ │ ├── Macro.h │ │ │ │ ├── MacroExpander.cpp │ │ │ │ ├── MacroExpander.h │ │ │ │ ├── Preprocessor.cpp │ │ │ │ ├── Preprocessor.h │ │ │ │ ├── SourceLocation.h │ │ │ │ ├── Token.cpp │ │ │ │ ├── Token.h │ │ │ │ ├── Tokenizer.cpp │ │ │ │ ├── Tokenizer.h │ │ │ │ ├── Tokenizer.l │ │ │ │ ├── generate_parser.sh │ │ │ │ ├── length_limits.h │ │ │ │ ├── numeric_lex.h │ │ │ │ ├── pp_utils.h │ │ │ │ ├── preprocessor.vcxproj │ │ │ │ └── preprocessor.vcxproj.filters │ │ │ ├── timing │ │ │ │ ├── RestrictFragmentShaderTiming.cpp │ │ │ │ ├── RestrictFragmentShaderTiming.h │ │ │ │ ├── RestrictVertexShaderTiming.cpp │ │ │ │ └── RestrictVertexShaderTiming.h │ │ │ ├── translator_common.vcxproj │ │ │ ├── translator_common.vcxproj.filters │ │ │ ├── translator_hlsl.vcxproj │ │ │ ├── translator_hlsl.vcxproj.filters │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── libEGL │ │ │ ├── Config.cpp │ │ │ ├── Config.h │ │ │ ├── Display.cpp │ │ │ ├── Display.h │ │ │ ├── ShaderCache.h │ │ │ ├── Surface.cpp │ │ │ ├── Surface.h │ │ │ ├── libEGL.cpp │ │ │ ├── libEGL.def │ │ │ ├── libEGL.rc │ │ │ ├── libEGL.vcxproj │ │ │ ├── libEGL.vcxproj.filters │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ └── resource.h │ │ ├── libGLESv2 │ │ │ ├── BinaryStream.h │ │ │ ├── Blit.cpp │ │ │ ├── Blit.h │ │ │ ├── Buffer.cpp │ │ │ ├── Buffer.h │ │ │ ├── Context.cpp │ │ │ ├── Context.h │ │ │ ├── D3DConstantTable.cpp │ │ │ ├── D3DConstantTable.h │ │ │ ├── Fence.cpp │ │ │ ├── Fence.h │ │ │ ├── Float16ToFloat32.cpp │ │ │ ├── Float16ToFloat32.py │ │ │ ├── Framebuffer.cpp │ │ │ ├── Framebuffer.h │ │ │ ├── HandleAllocator.cpp │ │ │ ├── HandleAllocator.h │ │ │ ├── IndexDataManager.cpp │ │ │ ├── IndexDataManager.h │ │ │ ├── Program.cpp │ │ │ ├── Program.h │ │ │ ├── ProgramBinary.cpp │ │ │ ├── ProgramBinary.h │ │ │ ├── Query.cpp │ │ │ ├── Query.h │ │ │ ├── Renderbuffer.cpp │ │ │ ├── Renderbuffer.h │ │ │ ├── ResourceManager.cpp │ │ │ ├── ResourceManager.h │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── Texture.cpp │ │ │ ├── Texture.h │ │ │ ├── TextureSSE2.cpp │ │ │ ├── VertexDataManager.cpp │ │ │ ├── VertexDataManager.h │ │ │ ├── libGLESv2.cpp │ │ │ ├── libGLESv2.def │ │ │ ├── libGLESv2.rc │ │ │ ├── libGLESv2.vcxproj │ │ │ ├── libGLESv2.vcxproj.filters │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── mathutil.h │ │ │ ├── resource.h │ │ │ ├── shaders │ │ │ │ ├── Blit.ps │ │ │ │ ├── Blit.vs │ │ │ │ ├── componentmaskps.h │ │ │ │ ├── flipyvs.h │ │ │ │ ├── generate_shaders.bat │ │ │ │ ├── luminanceps.h │ │ │ │ ├── passthroughps.h │ │ │ │ └── standardvs.h │ │ │ ├── utilities.cpp │ │ │ ├── utilities.h │ │ │ └── vertexconversion.h │ │ └── third_party │ │ │ └── compiler │ │ │ ├── ArrayBoundsClamper.cpp │ │ │ ├── ArrayBoundsClamper.h │ │ │ ├── LICENSE │ │ │ └── README.angle │ └── tests │ │ ├── build_tests.gyp │ │ ├── compiler_tests │ │ ├── ExpressionLimit_test.cpp │ │ └── VariablePacker_test.cpp │ │ └── preprocessor_tests │ │ ├── MockDiagnostics.h │ │ ├── MockDirectiveHandler.h │ │ ├── PreprocessorTest.cpp │ │ ├── PreprocessorTest.h │ │ ├── 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 │ │ ├── number_test.cpp │ │ ├── operator_test.cpp │ │ ├── pragma_test.cpp │ │ ├── space_test.cpp │ │ ├── token_test.cpp │ │ └── version_test.cpp ├── fontconfig │ ├── AUTHORS │ ├── COPYING │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── Tools.mk │ ├── autogen.sh │ ├── conf.d │ │ ├── 10-autohint.conf │ │ ├── 10-no-sub-pixel.conf │ │ ├── 10-scale-bitmap-fonts.conf │ │ ├── 10-sub-pixel-bgr.conf │ │ ├── 10-sub-pixel-rgb.conf │ │ ├── 10-sub-pixel-vbgr.conf │ │ ├── 10-sub-pixel-vrgb.conf │ │ ├── 10-unhinted.conf │ │ ├── 11-lcdfilter-default.conf │ │ ├── 11-lcdfilter-legacy.conf │ │ ├── 11-lcdfilter-light.conf │ │ ├── 20-unhint-small-vera.conf │ │ ├── 25-unhint-nonlatin.conf │ │ ├── 30-metric-aliases.conf │ │ ├── 30-urw-aliases.conf │ │ ├── 40-nonlatin.conf │ │ ├── 45-latin.conf │ │ ├── 49-sansserif.conf │ │ ├── 50-user.conf │ │ ├── 51-local.conf │ │ ├── 60-latin.conf │ │ ├── 65-fonts-persian.conf │ │ ├── 65-khmer.conf │ │ ├── 65-nonlatin.conf │ │ ├── 69-unifont.conf │ │ ├── 70-no-bitmaps.conf │ │ ├── 70-yes-bitmaps.conf │ │ ├── 80-delicious.conf │ │ ├── 90-synthetic.conf │ │ ├── Makefile.am │ │ └── README.in │ ├── config-fixups.h │ ├── config │ │ ├── Makedefs.in │ │ ├── config-subst │ │ ├── config.guess │ │ ├── config.sub │ │ └── install.sh │ ├── configure.ac │ ├── doc │ │ ├── Makefile.am │ │ ├── check-missing-doc │ │ ├── confdir.sgml.in │ │ ├── edit-sgml.c │ │ ├── fcatomic.fncs │ │ ├── fcblanks.fncs │ │ ├── fccache.fncs │ │ ├── fccharset.fncs │ │ ├── fcconfig.fncs │ │ ├── fcconstant.fncs │ │ ├── fcdircache.fncs │ │ ├── fcfile.fncs │ │ ├── fcfontset.fncs │ │ ├── fcformat.fncs │ │ ├── fcfreetype.fncs │ │ ├── fcinit.fncs │ │ ├── fclangset.fncs │ │ ├── fcmatrix.fncs │ │ ├── fcobjectset.fncs │ │ ├── fcobjecttype.fncs │ │ ├── fcpattern.fncs │ │ ├── fcstring.fncs │ │ ├── fcstrset.fncs │ │ ├── fcvalue.fncs │ │ ├── fontconfig-devel.sgml │ │ ├── fontconfig-user.sgml │ │ ├── func.sgml │ │ └── version.sgml.in │ ├── fc-cache │ │ ├── Makefile.am │ │ ├── fc-cache.c │ │ └── fc-cache.sgml │ ├── fc-case │ │ ├── CaseFolding.txt │ │ ├── Makefile.am │ │ ├── fc-case.c │ │ └── fccase.tmpl.h │ ├── fc-cat │ │ ├── Makefile.am │ │ ├── fc-cat.c │ │ └── fc-cat.sgml │ ├── fc-glyphname │ │ ├── Makefile.am │ │ ├── fc-glyphname.c │ │ ├── fcglyphname.tmpl.h │ │ └── zapfdingbats.txt │ ├── fc-lang │ │ ├── Makefile.am │ │ ├── aa.orth │ │ ├── ab.orth │ │ ├── af.orth │ │ ├── ak.orth │ │ ├── am.orth │ │ ├── an.orth │ │ ├── ar.orth │ │ ├── as.orth │ │ ├── ast.orth │ │ ├── av.orth │ │ ├── ay.orth │ │ ├── az_az.orth │ │ ├── az_ir.orth │ │ ├── ba.orth │ │ ├── be.orth │ │ ├── ber_dz.orth │ │ ├── ber_ma.orth │ │ ├── bg.orth │ │ ├── bh.orth │ │ ├── bho.orth │ │ ├── bi.orth │ │ ├── bin.orth │ │ ├── bm.orth │ │ ├── bn.orth │ │ ├── bo.orth │ │ ├── br.orth │ │ ├── brx.orth │ │ ├── bs.orth │ │ ├── bua.orth │ │ ├── byn.orth │ │ ├── ca.orth │ │ ├── ce.orth │ │ ├── ch.orth │ │ ├── chm.orth │ │ ├── chr.orth │ │ ├── co.orth │ │ ├── crh.orth │ │ ├── cs.orth │ │ ├── csb.orth │ │ ├── cu.orth │ │ ├── cv.orth │ │ ├── cy.orth │ │ ├── da.orth │ │ ├── de.orth │ │ ├── doi.orth │ │ ├── dv.orth │ │ ├── dz.orth │ │ ├── ee.orth │ │ ├── el.orth │ │ ├── en.orth │ │ ├── eo.orth │ │ ├── es.orth │ │ ├── et.orth │ │ ├── eu.orth │ │ ├── fa.orth │ │ ├── fat.orth │ │ ├── fc-lang.c │ │ ├── fc-lang.man │ │ ├── fclang.tmpl.h │ │ ├── ff.orth │ │ ├── fi.orth │ │ ├── fil.orth │ │ ├── fj.orth │ │ ├── fo.orth │ │ ├── fr.orth │ │ ├── fur.orth │ │ ├── fy.orth │ │ ├── ga.orth │ │ ├── gd.orth │ │ ├── gez.orth │ │ ├── gl.orth │ │ ├── gn.orth │ │ ├── gu.orth │ │ ├── gv.orth │ │ ├── ha.orth │ │ ├── haw.orth │ │ ├── he.orth │ │ ├── hi.orth │ │ ├── hne.orth │ │ ├── ho.orth │ │ ├── hr.orth │ │ ├── hsb.orth │ │ ├── ht.orth │ │ ├── hu.orth │ │ ├── hy.orth │ │ ├── hz.orth │ │ ├── ia.orth │ │ ├── id.orth │ │ ├── ie.orth │ │ ├── ig.orth │ │ ├── ii.orth │ │ ├── ik.orth │ │ ├── io.orth │ │ ├── is.orth │ │ ├── iso-3166.txt │ │ ├── iso639-1 │ │ ├── iso639-2 │ │ ├── it.orth │ │ ├── iu.orth │ │ ├── ja.orth │ │ ├── jv.orth │ │ ├── ka.orth │ │ ├── kaa.orth │ │ ├── kab.orth │ │ ├── ki.orth │ │ ├── kj.orth │ │ ├── kk.orth │ │ ├── kl.orth │ │ ├── km.orth │ │ ├── kn.orth │ │ ├── ko.orth │ │ ├── kok.orth │ │ ├── kr.orth │ │ ├── ks.orth │ │ ├── ku_am.orth │ │ ├── ku_iq.orth │ │ ├── ku_ir.orth │ │ ├── ku_tr.orth │ │ ├── kum.orth │ │ ├── kv.orth │ │ ├── kw.orth │ │ ├── kwm.orth │ │ ├── ky.orth │ │ ├── la.orth │ │ ├── lah.orth │ │ ├── lb.orth │ │ ├── lez.orth │ │ ├── lg.orth │ │ ├── li.orth │ │ ├── ln.orth │ │ ├── lo.orth │ │ ├── lt.orth │ │ ├── lv.orth │ │ ├── mai.orth │ │ ├── mg.orth │ │ ├── mh.orth │ │ ├── mi.orth │ │ ├── mk.orth │ │ ├── ml.orth │ │ ├── mn_cn.orth │ │ ├── mn_mn.orth │ │ ├── mni.orth │ │ ├── mo.orth │ │ ├── mr.orth │ │ ├── ms.orth │ │ ├── mt.orth │ │ ├── my.orth │ │ ├── na.orth │ │ ├── nb.orth │ │ ├── nds.orth │ │ ├── ne.orth │ │ ├── ng.orth │ │ ├── nl.orth │ │ ├── nn.orth │ │ ├── no.orth │ │ ├── nqo.orth │ │ ├── nr.orth │ │ ├── nso.orth │ │ ├── nv.orth │ │ ├── ny.orth │ │ ├── oc.orth │ │ ├── om.orth │ │ ├── or.orth │ │ ├── os.orth │ │ ├── ota.orth │ │ ├── pa.orth │ │ ├── pa_pk.orth │ │ ├── pap_an.orth │ │ ├── pap_aw.orth │ │ ├── pes.orth │ │ ├── pl.orth │ │ ├── prs.orth │ │ ├── ps_af.orth │ │ ├── ps_pk.orth │ │ ├── pt.orth │ │ ├── qu.orth │ │ ├── rm.orth │ │ ├── rn.orth │ │ ├── ro.orth │ │ ├── ru.orth │ │ ├── rw.orth │ │ ├── sa.orth │ │ ├── sah.orth │ │ ├── sat.orth │ │ ├── sc.orth │ │ ├── sco.orth │ │ ├── sd.orth │ │ ├── se.orth │ │ ├── sel.orth │ │ ├── sg.orth │ │ ├── sh.orth │ │ ├── shs.orth │ │ ├── si.orth │ │ ├── sid.orth │ │ ├── sk.orth │ │ ├── sl.orth │ │ ├── sm.orth │ │ ├── sma.orth │ │ ├── smj.orth │ │ ├── smn.orth │ │ ├── sms.orth │ │ ├── sn.orth │ │ ├── so.orth │ │ ├── sq.orth │ │ ├── sr.orth │ │ ├── ss.orth │ │ ├── st.orth │ │ ├── su.orth │ │ ├── sv.orth │ │ ├── sw.orth │ │ ├── syr.orth │ │ ├── ta.orth │ │ ├── te.orth │ │ ├── tg.orth │ │ ├── th.orth │ │ ├── ti_er.orth │ │ ├── ti_et.orth │ │ ├── tig.orth │ │ ├── tk.orth │ │ ├── tl.orth │ │ ├── tn.orth │ │ ├── to.orth │ │ ├── tr.orth │ │ ├── ts.orth │ │ ├── tt.orth │ │ ├── tw.orth │ │ ├── ty.orth │ │ ├── tyv.orth │ │ ├── ug.orth │ │ ├── uk.orth │ │ ├── ur.orth │ │ ├── uz.orth │ │ ├── ve.orth │ │ ├── vi.orth │ │ ├── vo.orth │ │ ├── vot.orth │ │ ├── wa.orth │ │ ├── wal.orth │ │ ├── wen.orth │ │ ├── wo.orth │ │ ├── xh.orth │ │ ├── yap.orth │ │ ├── yi.orth │ │ ├── yo.orth │ │ ├── za.orth │ │ ├── zh_cn.orth │ │ ├── zh_hk.orth │ │ ├── zh_mo.orth │ │ ├── zh_sg.orth │ │ ├── zh_tw.orth │ │ └── zu.orth │ ├── fc-list │ │ ├── Makefile.am │ │ ├── fc-list.c │ │ └── fc-list.sgml │ ├── fc-match │ │ ├── Makefile.am │ │ ├── fc-match.c │ │ └── fc-match.sgml │ ├── fc-pattern │ │ ├── Makefile.am │ │ ├── fc-pattern.c │ │ └── fc-pattern.sgml │ ├── fc-query │ │ ├── Makefile.am │ │ ├── fc-query.c │ │ └── fc-query.sgml │ ├── fc-scan │ │ ├── Makefile.am │ │ ├── fc-scan.c │ │ └── fc-scan.sgml │ ├── fc-validate │ │ ├── Makefile.am │ │ ├── fc-validate.c │ │ └── fc-validate.sgml │ ├── fontconfig-zip.in │ ├── fontconfig.pc.in │ ├── fontconfig.spec.in │ ├── fontconfig │ │ ├── Makefile.am │ │ ├── fcfreetype.h │ │ ├── fcprivate.h │ │ └── fontconfig.h │ ├── fonts.conf.in │ ├── fonts.dtd │ ├── local.conf │ ├── m4 │ │ ├── ax_cc_for_build.m4 │ │ ├── ax_create_stdint_h.m4 │ │ └── ax_pthread.m4 │ ├── new-version.sh │ ├── src │ │ ├── Makefile.am │ │ ├── fcarch.c │ │ ├── fcarch.h │ │ ├── fcatomic.c │ │ ├── fcatomic.h │ │ ├── fcblanks.c │ │ ├── fccache.c │ │ ├── fccfg.c │ │ ├── fccharset.c │ │ ├── fccompat.c │ │ ├── fcdbg.c │ │ ├── fcdefault.c │ │ ├── fcdeprecate.h │ │ ├── fcdir.c │ │ ├── fcformat.c │ │ ├── fcfreetype.c │ │ ├── fcfs.c │ │ ├── fcftint.h │ │ ├── fchash.c │ │ ├── fcinit.c │ │ ├── fcint.h │ │ ├── fclang.c │ │ ├── fclist.c │ │ ├── fcmatch.c │ │ ├── fcmatrix.c │ │ ├── fcmutex.h │ │ ├── fcname.c │ │ ├── fcobjs.c │ │ ├── fcobjs.h │ │ ├── fcobjshash.gperf.h │ │ ├── fcpat.c │ │ ├── fcserialize.c │ │ ├── fcstat.c │ │ ├── fcstr.c │ │ ├── fcwindows.h │ │ ├── fcxml.c │ │ ├── ftglue.c │ │ ├── ftglue.h │ │ └── makealias │ └── test │ │ ├── 4x6.pcf │ │ ├── 8x16.pcf │ │ ├── Makefile.am │ │ ├── fonts.conf.in │ │ ├── out.expected │ │ ├── run-test.sh │ │ └── test-pthread.c ├── freetype │ ├── .mailmap │ ├── ChangeLog │ ├── ChangeLog.20 │ ├── ChangeLog.21 │ ├── ChangeLog.22 │ ├── ChangeLog.23 │ ├── Jamfile │ ├── Jamrules │ ├── Makefile │ ├── README │ ├── autogen.sh │ ├── builds │ │ ├── amiga │ │ │ ├── README │ │ │ ├── include │ │ │ │ └── freetype │ │ │ │ │ └── config │ │ │ │ │ ├── ftconfig.h │ │ │ │ │ └── ftmodule.h │ │ │ ├── makefile │ │ │ ├── makefile.os4 │ │ │ ├── smakefile │ │ │ └── src │ │ │ │ └── base │ │ │ │ ├── ftdebug.c │ │ │ │ └── ftsystem.c │ │ ├── ansi │ │ │ ├── ansi-def.mk │ │ │ └── ansi.mk │ │ ├── atari │ │ │ ├── ATARI.H │ │ │ ├── FNames.SIC │ │ │ ├── FREETYPE.PRJ │ │ │ ├── README.TXT │ │ │ ├── deflinejoiner.awk │ │ │ └── gen-purec-patch.sh │ │ ├── beos │ │ │ ├── beos-def.mk │ │ │ ├── beos.mk │ │ │ └── detect.mk │ │ ├── compiler │ │ │ ├── ansi-cc.mk │ │ │ ├── bcc-dev.mk │ │ │ ├── bcc.mk │ │ │ ├── emx.mk │ │ │ ├── gcc-dev.mk │ │ │ ├── gcc.mk │ │ │ ├── intelc.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── visualage.mk │ │ │ ├── visualc.mk │ │ │ ├── watcom.mk │ │ │ └── win-lcc.mk │ │ ├── detect.mk │ │ ├── dos │ │ │ ├── detect.mk │ │ │ ├── dos-def.mk │ │ │ ├── dos-emx.mk │ │ │ ├── dos-gcc.mk │ │ │ └── dos-wat.mk │ │ ├── exports.mk │ │ ├── freetype.mk │ │ ├── link_dos.mk │ │ ├── link_std.mk │ │ ├── mac │ │ │ ├── FreeType.m68k_cfm.make.txt │ │ │ ├── FreeType.m68k_far.make.txt │ │ │ ├── FreeType.ppc_carbon.make.txt │ │ │ ├── FreeType.ppc_classic.make.txt │ │ │ ├── README │ │ │ ├── ascii2mpw.py │ │ │ ├── ftlib.prj.xml │ │ │ └── ftmac.c │ │ ├── modules.mk │ │ ├── newline │ │ ├── os2 │ │ │ ├── detect.mk │ │ │ ├── os2-def.mk │ │ │ ├── os2-dev.mk │ │ │ └── os2-gcc.mk │ │ ├── symbian │ │ │ ├── bld.inf │ │ │ └── freetype.mmp │ │ ├── toplevel.mk │ │ ├── unix │ │ │ ├── configure.raw │ │ │ ├── detect.mk │ │ │ ├── freetype-config.in │ │ │ ├── freetype2.in │ │ │ ├── freetype2.m4 │ │ │ ├── ft-munmap.m4 │ │ │ ├── ft2unix.h │ │ │ ├── ftconfig.in │ │ │ ├── ftsystem.c │ │ │ ├── install.mk │ │ │ ├── mkinstalldirs │ │ │ ├── unix-cc.in │ │ │ ├── unix-def.in │ │ │ ├── unix-dev.mk │ │ │ ├── unix-lcc.mk │ │ │ ├── unix.mk │ │ │ └── unixddef.mk │ │ ├── vms │ │ │ ├── ftconfig.h │ │ │ └── ftsystem.c │ │ ├── win32 │ │ │ ├── detect.mk │ │ │ ├── ftdebug.c │ │ │ ├── vc2005 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── vc2008 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── vc2010 │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcxproj │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ └── index.html │ │ │ ├── visualc │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.sln │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── visualce │ │ │ │ ├── freetype.dsp │ │ │ │ ├── freetype.dsw │ │ │ │ ├── freetype.vcproj │ │ │ │ └── index.html │ │ │ ├── w32-bcc.mk │ │ │ ├── w32-bccd.mk │ │ │ ├── w32-dev.mk │ │ │ ├── w32-gcc.mk │ │ │ ├── w32-icc.mk │ │ │ ├── w32-intl.mk │ │ │ ├── w32-lcc.mk │ │ │ ├── w32-mingw32.mk │ │ │ ├── w32-vcc.mk │ │ │ ├── w32-wat.mk │ │ │ └── win32-def.mk │ │ └── wince │ │ │ ├── ftdebug.c │ │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ ├── configure │ ├── devel │ │ ├── ft2build.h │ │ └── ftoption.h │ ├── docs │ │ ├── CHANGES │ │ ├── CUSTOMIZE │ │ ├── DEBUG │ │ ├── FTL.TXT │ │ ├── GPLv2.TXT │ │ ├── INSTALL │ │ ├── INSTALL.ANY │ │ ├── INSTALL.CROSS │ │ ├── INSTALL.GNU │ │ ├── INSTALL.MAC │ │ ├── INSTALL.UNIX │ │ ├── INSTALL.VMS │ │ ├── LICENSE.TXT │ │ ├── MAKEPP │ │ ├── PROBLEMS │ │ ├── TODO │ │ ├── VERSION.DLL │ │ ├── formats.txt │ │ ├── raster.txt │ │ ├── reference │ │ │ └── README │ │ └── release │ ├── 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 │ ├── modules.cfg │ ├── objs │ │ └── README │ ├── src │ │ ├── Jamfile │ │ ├── autofit │ │ │ ├── Jamfile │ │ │ ├── afangles.c │ │ │ ├── afangles.h │ │ │ ├── afcjk.c │ │ │ ├── afcjk.h │ │ │ ├── afdummy.c │ │ │ ├── afdummy.h │ │ │ ├── aferrors.h │ │ │ ├── afglobal.c │ │ │ ├── afglobal.h │ │ │ ├── afhints.c │ │ │ ├── afhints.h │ │ │ ├── afindic.c │ │ │ ├── afindic.h │ │ │ ├── aflatin.c │ │ │ ├── aflatin.h │ │ │ ├── aflatin2.c │ │ │ ├── aflatin2.h │ │ │ ├── afloader.c │ │ │ ├── afloader.h │ │ │ ├── afmodule.c │ │ │ ├── afmodule.h │ │ │ ├── afpic.c │ │ │ ├── afpic.h │ │ │ ├── aftypes.h │ │ │ ├── afwarp.c │ │ │ ├── afwarp.h │ │ │ ├── autofit.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── base │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── rules.mk │ │ ├── bdf │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── bdf.c │ │ │ ├── bdf.h │ │ │ ├── bdfdrivr.c │ │ │ ├── bdfdrivr.h │ │ │ ├── bdferror.h │ │ │ ├── bdflib.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── bzip2 │ │ │ ├── Jamfile │ │ │ ├── ftbzip2.c │ │ │ └── rules.mk │ │ ├── cache │ │ │ ├── Jamfile │ │ │ ├── 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 │ │ │ └── rules.mk │ │ ├── cff │ │ │ ├── Jamfile │ │ │ ├── cf2arrst.c │ │ │ ├── cf2arrst.h │ │ │ ├── cf2blues.c │ │ │ ├── cf2blues.h │ │ │ ├── cf2error.c │ │ │ ├── cf2error.h │ │ │ ├── cf2fixed.h │ │ │ ├── cf2font.c │ │ │ ├── cf2font.h │ │ │ ├── cf2ft.c │ │ │ ├── cf2ft.h │ │ │ ├── cf2glue.h │ │ │ ├── cf2hints.c │ │ │ ├── cf2hints.h │ │ │ ├── cf2intrp.c │ │ │ ├── cf2intrp.h │ │ │ ├── cf2read.c │ │ │ ├── cf2read.h │ │ │ ├── cf2stack.c │ │ │ ├── cf2stack.h │ │ │ ├── cf2types.h │ │ │ ├── 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 │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── cid │ │ │ ├── Jamfile │ │ │ ├── ciderrs.h │ │ │ ├── cidgload.c │ │ │ ├── cidgload.h │ │ │ ├── cidload.c │ │ │ ├── cidload.h │ │ │ ├── cidobjs.c │ │ │ ├── cidobjs.h │ │ │ ├── cidparse.c │ │ │ ├── cidparse.h │ │ │ ├── cidriver.c │ │ │ ├── cidriver.h │ │ │ ├── cidtoken.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── type1cid.c │ │ ├── gxvalid │ │ │ ├── Jamfile │ │ │ ├── README │ │ │ ├── gxvalid.c │ │ │ ├── gxvalid.h │ │ │ ├── gxvbsln.c │ │ │ ├── gxvcommn.c │ │ │ ├── gxvcommn.h │ │ │ ├── gxverror.h │ │ │ ├── gxvfeat.c │ │ │ ├── gxvfeat.h │ │ │ ├── gxvfgen.c │ │ │ ├── gxvjust.c │ │ │ ├── gxvkern.c │ │ │ ├── gxvlcar.c │ │ │ ├── gxvmod.c │ │ │ ├── gxvmod.h │ │ │ ├── gxvmort.c │ │ │ ├── gxvmort.h │ │ │ ├── gxvmort0.c │ │ │ ├── gxvmort1.c │ │ │ ├── gxvmort2.c │ │ │ ├── gxvmort4.c │ │ │ ├── gxvmort5.c │ │ │ ├── gxvmorx.c │ │ │ ├── gxvmorx.h │ │ │ ├── gxvmorx0.c │ │ │ ├── gxvmorx1.c │ │ │ ├── gxvmorx2.c │ │ │ ├── gxvmorx4.c │ │ │ ├── gxvmorx5.c │ │ │ ├── gxvopbd.c │ │ │ ├── gxvprop.c │ │ │ ├── gxvtrak.c │ │ │ ├── module.mk │ │ │ └── rules.mk │ │ ├── gzip │ │ │ ├── Jamfile │ │ │ ├── adler32.c │ │ │ ├── ftgzip.c │ │ │ ├── infblock.c │ │ │ ├── infblock.h │ │ │ ├── infcodes.c │ │ │ ├── infcodes.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── infutil.c │ │ │ ├── infutil.h │ │ │ ├── rules.mk │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── lzw │ │ │ ├── Jamfile │ │ │ ├── ftlzw.c │ │ │ ├── ftzopen.c │ │ │ ├── ftzopen.h │ │ │ └── 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 │ │ │ ├── README │ │ │ ├── module.mk │ │ │ ├── pcf.c │ │ │ ├── pcf.h │ │ │ ├── pcfdrivr.c │ │ │ ├── pcfdrivr.h │ │ │ ├── pcferror.h │ │ │ ├── pcfread.c │ │ │ ├── pcfread.h │ │ │ ├── pcfutil.c │ │ │ ├── pcfutil.h │ │ │ └── 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 │ │ │ ├── Jamfile │ │ │ ├── afmparse.c │ │ │ ├── afmparse.h │ │ │ ├── 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 │ │ │ ├── Jamfile │ │ │ ├── ftmisc.h │ │ │ ├── ftraster.c │ │ │ ├── ftraster.h │ │ │ ├── ftrend1.c │ │ │ ├── ftrend1.h │ │ │ ├── module.mk │ │ │ ├── raster.c │ │ │ ├── rasterrs.h │ │ │ ├── rastpic.c │ │ │ ├── rastpic.h │ │ │ └── rules.mk │ │ ├── sfnt │ │ │ ├── Jamfile │ │ │ ├── module.mk │ │ │ ├── pngshim.c │ │ │ ├── pngshim.h │ │ │ ├── rules.mk │ │ │ ├── sfdriver.c │ │ │ ├── sfdriver.h │ │ │ ├── sferrors.h │ │ │ ├── sfnt.c │ │ │ ├── sfntpic.c │ │ │ ├── sfntpic.h │ │ │ ├── sfobjs.c │ │ │ ├── sfobjs.h │ │ │ ├── ttbdf.c │ │ │ ├── ttbdf.h │ │ │ ├── ttcmap.c │ │ │ ├── ttcmap.h │ │ │ ├── ttcmapc.h │ │ │ ├── ttkern.c │ │ │ ├── ttkern.h │ │ │ ├── ttload.c │ │ │ ├── ttload.h │ │ │ ├── ttmtx.c │ │ │ ├── ttmtx.h │ │ │ ├── ttpost.c │ │ │ ├── ttpost.h │ │ │ ├── ttsbit.c │ │ │ └── ttsbit.h │ │ ├── smooth │ │ │ ├── Jamfile │ │ │ ├── ftgrays.c │ │ │ ├── ftgrays.h │ │ │ ├── ftsmerrs.h │ │ │ ├── ftsmooth.c │ │ │ ├── ftsmooth.h │ │ │ ├── ftspic.c │ │ │ ├── ftspic.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ └── smooth.c │ │ ├── tools │ │ │ ├── Jamfile │ │ │ ├── apinames.c │ │ │ ├── chktrcmp.py │ │ │ ├── cordic.py │ │ │ ├── docmaker │ │ │ │ ├── content.py │ │ │ │ ├── docbeauty.py │ │ │ │ ├── docmaker.py │ │ │ │ ├── formatter.py │ │ │ │ ├── sources.py │ │ │ │ ├── tohtml.py │ │ │ │ └── utils.py │ │ │ ├── ftrandom │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ftrandom.c │ │ │ ├── glnames.py │ │ │ ├── test_afm.c │ │ │ ├── test_bbox.c │ │ │ └── test_trig.c │ │ ├── truetype │ │ │ ├── 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 │ │ │ ├── ttsubpix.c │ │ │ └── ttsubpix.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 │ │ │ ├── Jamfile │ │ │ ├── fnterrs.h │ │ │ ├── module.mk │ │ │ ├── rules.mk │ │ │ ├── winfnt.c │ │ │ └── winfnt.h │ ├── version.sed │ └── vms_make.com ├── gyp │ ├── AUTHORS │ ├── DEPS │ ├── LICENSE │ ├── OWNERS │ ├── PRESUBMIT.py │ ├── buildbot │ │ └── buildbot_run.py │ ├── codereview.settings │ ├── data │ │ └── win │ │ │ └── large-pdb-shim.cc │ ├── gyp │ ├── gyp.bat │ ├── gyp_dummy.c │ ├── gyp_main.py │ ├── gyptest.py │ ├── pylib │ │ └── gyp │ │ │ ├── MSVSNew.py │ │ │ ├── MSVSNew.pyc │ │ │ ├── MSVSProject.py │ │ │ ├── MSVSProject.pyc │ │ │ ├── MSVSSettings.py │ │ │ ├── MSVSSettings.pyc │ │ │ ├── MSVSSettings_test.py │ │ │ ├── MSVSToolFile.py │ │ │ ├── MSVSToolFile.pyc │ │ │ ├── MSVSUserFile.py │ │ │ ├── MSVSUserFile.pyc │ │ │ ├── MSVSUtil.py │ │ │ ├── MSVSUtil.pyc │ │ │ ├── MSVSVersion.py │ │ │ ├── MSVSVersion.pyc │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── common.py │ │ │ ├── common.pyc │ │ │ ├── common_test.py │ │ │ ├── easy_xml.py │ │ │ ├── easy_xml.pyc │ │ │ ├── easy_xml_test.py │ │ │ ├── flock_tool.py │ │ │ ├── generator │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── android.py │ │ │ ├── cmake.py │ │ │ ├── dump_dependency_json.py │ │ │ ├── eclipse.py │ │ │ ├── gypd.py │ │ │ ├── gypsh.py │ │ │ ├── make.py │ │ │ ├── msvs.py │ │ │ ├── msvs.pyc │ │ │ ├── msvs_test.py │ │ │ ├── ninja.py │ │ │ ├── ninja.pyc │ │ │ ├── ninja_test.py │ │ │ ├── xcode.py │ │ │ └── xcode_test.py │ │ │ ├── input.py │ │ │ ├── input.pyc │ │ │ ├── input_test.py │ │ │ ├── mac_tool.py │ │ │ ├── msvs_emulation.py │ │ │ ├── msvs_emulation.pyc │ │ │ ├── ninja_syntax.py │ │ │ ├── ninja_syntax.pyc │ │ │ ├── win_tool.py │ │ │ ├── xcode_emulation.py │ │ │ ├── xcode_emulation.pyc │ │ │ ├── xcodeproj_file.py │ │ │ └── xml_fix.py │ ├── pylintrc │ ├── samples │ │ ├── samples │ │ └── samples.bat │ ├── setup.py │ ├── test │ │ ├── actions-bare │ │ │ ├── gyptest-bare.py │ │ │ └── src │ │ │ │ ├── bare.gyp │ │ │ │ └── bare.py │ │ ├── actions-multiple │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── actions.gyp │ │ │ │ ├── copy.py │ │ │ │ ├── filter.py │ │ │ │ ├── foo.c │ │ │ │ ├── input.txt │ │ │ │ └── main.c │ │ ├── actions-none │ │ │ ├── gyptest-none.py │ │ │ └── src │ │ │ │ ├── fake_cross.py │ │ │ │ ├── foo.cc │ │ │ │ └── none_with_source_files.gyp │ │ ├── actions-subdir │ │ │ ├── gyptest-action.py │ │ │ └── src │ │ │ │ ├── make-file.py │ │ │ │ ├── none.gyp │ │ │ │ └── subdir │ │ │ │ ├── make-subdir-file.py │ │ │ │ └── subdir.gyp │ │ ├── actions │ │ │ ├── generated-header │ │ │ │ ├── action.py │ │ │ │ ├── main.cc │ │ │ │ └── test.gyp │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-errors.py │ │ │ ├── gyptest-generated-header.py │ │ │ └── src │ │ │ │ ├── action_missing_name.gyp │ │ │ │ ├── actions.gyp │ │ │ │ ├── confirm-dep-files.py │ │ │ │ ├── subdir1 │ │ │ │ ├── counter.py │ │ │ │ ├── executable.gyp │ │ │ │ ├── make-prog1.py │ │ │ │ ├── make-prog2.py │ │ │ │ └── program.c │ │ │ │ ├── subdir2 │ │ │ │ ├── make-file.py │ │ │ │ └── none.gyp │ │ │ │ └── subdir3 │ │ │ │ ├── generate_main.py │ │ │ │ └── null_input.gyp │ │ ├── additional-targets │ │ │ ├── gyptest-additional.py │ │ │ └── src │ │ │ │ ├── all.gyp │ │ │ │ └── dir1 │ │ │ │ ├── actions.gyp │ │ │ │ ├── emit.py │ │ │ │ └── lib1.c │ │ ├── assembly │ │ │ ├── gyptest-assembly.py │ │ │ ├── gyptest-override.py │ │ │ └── src │ │ │ │ ├── as.bat │ │ │ │ ├── assembly.gyp │ │ │ │ ├── lib1.S │ │ │ │ ├── lib1.c │ │ │ │ ├── override.gyp │ │ │ │ ├── override_asm.asm │ │ │ │ └── program.c │ │ ├── build-option │ │ │ ├── gyptest-build.py │ │ │ ├── hello.c │ │ │ └── hello.gyp │ │ ├── builddir │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── builddir.gypi │ │ │ │ ├── func1.c │ │ │ │ ├── func2.c │ │ │ │ ├── func3.c │ │ │ │ ├── func4.c │ │ │ │ ├── func5.c │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ └── subdir2 │ │ │ │ ├── prog2.c │ │ │ │ ├── prog2.gyp │ │ │ │ └── subdir3 │ │ │ │ ├── prog3.c │ │ │ │ ├── prog3.gyp │ │ │ │ └── subdir4 │ │ │ │ ├── prog4.c │ │ │ │ ├── prog4.gyp │ │ │ │ └── subdir5 │ │ │ │ ├── prog5.c │ │ │ │ └── prog5.gyp │ │ ├── cflags │ │ │ ├── cflags.c │ │ │ ├── cflags.gyp │ │ │ └── gyptest-cflags.py │ │ ├── compilable │ │ │ ├── gyptest-headers.py │ │ │ └── src │ │ │ │ ├── headers.gyp │ │ │ │ ├── lib1.cpp │ │ │ │ ├── lib1.hpp │ │ │ │ └── program.cpp │ │ ├── compiler-override │ │ │ ├── compiler-global-settings.gyp.in │ │ │ ├── compiler-host.gyp │ │ │ ├── compiler.gyp │ │ │ ├── cxxtest.cc │ │ │ ├── gyptest-compiler-env.py │ │ │ ├── gyptest-compiler-global-settings.py │ │ │ ├── my_cc.py │ │ │ ├── my_cxx.py │ │ │ ├── my_ld.py │ │ │ └── test.c │ │ ├── configurations │ │ │ ├── basics │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-configurations.py │ │ │ ├── inheritance │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-inheritance.py │ │ │ ├── invalid │ │ │ │ ├── actions.gyp │ │ │ │ ├── all_dependent_settings.gyp │ │ │ │ ├── configurations.gyp │ │ │ │ ├── dependencies.gyp │ │ │ │ ├── direct_dependent_settings.gyp │ │ │ │ ├── gyptest-configurations.py │ │ │ │ ├── libraries.gyp │ │ │ │ ├── link_settings.gyp │ │ │ │ ├── sources.gyp │ │ │ │ ├── standalone_static_library.gyp │ │ │ │ ├── target_name.gyp │ │ │ │ └── type.gyp │ │ │ ├── target_platform │ │ │ │ ├── configurations.gyp │ │ │ │ ├── front.c │ │ │ │ ├── gyptest-target_platform.py │ │ │ │ ├── left.c │ │ │ │ └── right.c │ │ │ └── x64 │ │ │ │ ├── configurations.c │ │ │ │ ├── configurations.gyp │ │ │ │ └── gyptest-x86.py │ │ ├── copies │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-attribs.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-samedir.py │ │ │ ├── gyptest-slash.py │ │ │ ├── gyptest-updir.py │ │ │ └── src │ │ │ │ ├── copies-attribs.gyp │ │ │ │ ├── copies-samedir.gyp │ │ │ │ ├── copies-slash.gyp │ │ │ │ ├── copies-updir.gyp │ │ │ │ ├── copies.gyp │ │ │ │ ├── directory │ │ │ │ ├── file3 │ │ │ │ ├── file4 │ │ │ │ └── subdir │ │ │ │ │ └── file5 │ │ │ │ ├── executable-file.sh │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ └── parentdir │ │ │ │ └── subdir │ │ │ │ └── file6 │ │ ├── custom-generator │ │ │ ├── gyptest-custom-generator.py │ │ │ ├── mygenerator.py │ │ │ └── test.gyp │ │ ├── cxxflags │ │ │ ├── cxxflags.cc │ │ │ ├── cxxflags.gyp │ │ │ └── gyptest-cxxflags.py │ │ ├── defines-escaping │ │ │ ├── defines-escaping.c │ │ │ ├── defines-escaping.gyp │ │ │ └── gyptest-defines-escaping.py │ │ ├── defines │ │ │ ├── defines-env.gyp │ │ │ ├── defines.c │ │ │ ├── defines.gyp │ │ │ ├── gyptest-define-override.py │ │ │ ├── gyptest-defines-env-regyp.py │ │ │ ├── gyptest-defines-env.py │ │ │ └── gyptest-defines.py │ │ ├── dependencies │ │ │ ├── a.c │ │ │ ├── b │ │ │ │ ├── b.c │ │ │ │ ├── b.gyp │ │ │ │ └── b3.c │ │ │ ├── c │ │ │ │ ├── c.c │ │ │ │ ├── c.gyp │ │ │ │ └── d.c │ │ │ ├── double_dependency.gyp │ │ │ ├── double_dependent.gyp │ │ │ ├── extra_targets.gyp │ │ │ ├── gyptest-double-dependency.py │ │ │ ├── gyptest-extra-targets.py │ │ │ ├── gyptest-lib-only.py │ │ │ ├── gyptest-none-traversal.py │ │ │ ├── gyptest-sharedlib-linksettings.py │ │ │ ├── lib_only.gyp │ │ │ ├── main.c │ │ │ ├── none_traversal.gyp │ │ │ └── sharedlib-linksettings │ │ │ │ ├── program.c │ │ │ │ ├── sharedlib.c │ │ │ │ ├── staticlib.c │ │ │ │ └── test.gyp │ │ ├── dependency-copy │ │ │ ├── gyptest-copy.py │ │ │ └── src │ │ │ │ ├── copies.gyp │ │ │ │ ├── file1.c │ │ │ │ └── file2.c │ │ ├── errors │ │ │ ├── duplicate_basenames.gyp │ │ │ ├── duplicate_node.gyp │ │ │ ├── duplicate_rule.gyp │ │ │ ├── duplicate_targets.gyp │ │ │ ├── gyptest-errors.py │ │ │ ├── missing_dep.gyp │ │ │ └── missing_targets.gyp │ │ ├── escaping │ │ │ ├── colon │ │ │ │ └── test.gyp │ │ │ └── gyptest-colon.py │ │ ├── exclusion │ │ │ ├── exclusion.gyp │ │ │ ├── gyptest-exclusion.py │ │ │ └── hello.c │ │ ├── external-cross-compile │ │ │ ├── gyptest-cross.py │ │ │ └── src │ │ │ │ ├── bogus1.cc │ │ │ │ ├── bogus2.c │ │ │ │ ├── cross.gyp │ │ │ │ ├── cross_compile.gypi │ │ │ │ ├── fake_cross.py │ │ │ │ ├── program.cc │ │ │ │ ├── test1.cc │ │ │ │ ├── test2.c │ │ │ │ ├── test3.cc │ │ │ │ ├── test4.c │ │ │ │ └── tochar.py │ │ ├── generator-output │ │ │ ├── actions │ │ │ │ ├── actions.gyp │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── subdir1 │ │ │ │ │ ├── actions-out │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── make-prog1.py │ │ │ │ │ ├── make-prog2.py │ │ │ │ │ └── program.c │ │ │ │ └── subdir2 │ │ │ │ │ ├── actions-out │ │ │ │ │ └── README.txt │ │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ │ ├── make-file.py │ │ │ │ │ └── none.gyp │ │ │ ├── copies │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── copies-out │ │ │ │ │ └── README.txt │ │ │ │ ├── copies.gyp │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ └── subdir │ │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ │ ├── copies-out │ │ │ │ │ └── README.txt │ │ │ │ │ ├── file3 │ │ │ │ │ ├── file4 │ │ │ │ │ └── subdir.gyp │ │ │ ├── gyptest-actions.py │ │ │ ├── gyptest-copies.py │ │ │ ├── gyptest-mac-bundle.py │ │ │ ├── gyptest-relocate.py │ │ │ ├── gyptest-rules.py │ │ │ ├── gyptest-subdir2-deep.py │ │ │ ├── gyptest-symlink.py │ │ │ ├── gyptest-top-all.py │ │ │ ├── mac-bundle │ │ │ │ ├── Info.plist │ │ │ │ ├── app.order │ │ │ │ ├── header.h │ │ │ │ ├── main.c │ │ │ │ ├── resource.sb │ │ │ │ └── test.gyp │ │ │ ├── rules │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── copy-file.py │ │ │ │ ├── rules.gyp │ │ │ │ ├── subdir1 │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── define3.in0 │ │ │ │ │ ├── define4.in0 │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── function1.in1 │ │ │ │ │ ├── function2.in1 │ │ │ │ │ └── program.c │ │ │ │ └── subdir2 │ │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ │ ├── file1.in0 │ │ │ │ │ ├── file2.in0 │ │ │ │ │ ├── file3.in1 │ │ │ │ │ ├── file4.in1 │ │ │ │ │ ├── none.gyp │ │ │ │ │ └── rules-out │ │ │ │ │ └── README.txt │ │ │ └── src │ │ │ │ ├── build │ │ │ │ └── README.txt │ │ │ │ ├── inc.h │ │ │ │ ├── inc1 │ │ │ │ └── include1.h │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ ├── subdir2 │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── deeper │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── deeper.c │ │ │ │ │ ├── deeper.gyp │ │ │ │ │ └── deeper.h │ │ │ │ ├── inc2 │ │ │ │ │ └── include2.h │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ │ │ ├── subdir3 │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ ├── inc3 │ │ │ │ │ └── include3.h │ │ │ │ ├── prog3.c │ │ │ │ └── prog3.gyp │ │ │ │ └── symroot.gypi │ │ ├── gyp-defines │ │ │ ├── defines.gyp │ │ │ ├── echo.py │ │ │ ├── gyptest-multiple-values.py │ │ │ └── gyptest-regyp.py │ │ ├── hard_dependency │ │ │ ├── gyptest-exported-hard-dependency.py │ │ │ ├── gyptest-no-exported-hard-dependency.py │ │ │ └── src │ │ │ │ ├── a.c │ │ │ │ ├── a.h │ │ │ │ ├── b.c │ │ │ │ ├── b.h │ │ │ │ ├── c.c │ │ │ │ ├── c.h │ │ │ │ ├── d.c │ │ │ │ ├── emit.py │ │ │ │ └── hard_dependency.gyp │ │ ├── hello │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-disable-regyp.py │ │ │ ├── gyptest-regyp-output.py │ │ │ ├── gyptest-regyp.py │ │ │ ├── gyptest-target.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ ├── hello2.c │ │ │ └── hello2.gyp │ │ ├── home_dot_gyp │ │ │ ├── gyptest-home-includes-config-arg.py │ │ │ ├── gyptest-home-includes-config-env.py │ │ │ ├── gyptest-home-includes-regyp.py │ │ │ ├── gyptest-home-includes.py │ │ │ ├── home │ │ │ │ └── .gyp │ │ │ │ │ └── include.gypi │ │ │ ├── home2 │ │ │ │ ├── .gyp │ │ │ │ │ └── include.gypi │ │ │ │ └── .gyp_new │ │ │ │ │ └── include.gypi │ │ │ └── src │ │ │ │ ├── all.gyp │ │ │ │ └── printfoo.c │ │ ├── include_dirs │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── inc.h │ │ │ │ ├── inc1 │ │ │ │ └── include1.h │ │ │ │ ├── includes.c │ │ │ │ ├── includes.gyp │ │ │ │ ├── shadow1 │ │ │ │ └── shadow.h │ │ │ │ ├── shadow2 │ │ │ │ └── shadow.h │ │ │ │ └── subdir │ │ │ │ ├── inc.h │ │ │ │ ├── inc2 │ │ │ │ └── include2.h │ │ │ │ ├── subdir_includes.c │ │ │ │ └── subdir_includes.gyp │ │ ├── intermediate_dir │ │ │ ├── gyptest-intermediate-dir.py │ │ │ └── src │ │ │ │ ├── script.py │ │ │ │ ├── shared_infile.txt │ │ │ │ ├── test.gyp │ │ │ │ └── test2.gyp │ │ ├── ios │ │ │ ├── app-bundle │ │ │ │ ├── TestApp │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ │ └── Main_iPhone.storyboard │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ ├── check_no_signature.py │ │ │ │ │ ├── main.m │ │ │ │ │ ├── only-compile-in-32-bits.m │ │ │ │ │ └── only-compile-in-64-bits.m │ │ │ │ ├── test-archs.gyp │ │ │ │ ├── test-device.gyp │ │ │ │ └── test.gyp │ │ │ ├── deployment-target │ │ │ │ ├── check-version-min.c │ │ │ │ └── deployment-target.gyp │ │ │ ├── gyptest-app-ios.py │ │ │ ├── gyptest-archs.py │ │ │ ├── gyptest-deployment-target.py │ │ │ └── gyptest-per-config-settings.py │ │ ├── lib │ │ │ ├── README.txt │ │ │ ├── TestCmd.py │ │ │ ├── TestCommon.py │ │ │ └── TestGyp.py │ │ ├── library │ │ │ ├── gyptest-shared-obj-install-path.py │ │ │ ├── gyptest-shared.py │ │ │ ├── gyptest-static.py │ │ │ └── src │ │ │ │ ├── lib1.c │ │ │ │ ├── lib1_moveable.c │ │ │ │ ├── lib2.c │ │ │ │ ├── lib2_moveable.c │ │ │ │ ├── library.gyp │ │ │ │ ├── program.c │ │ │ │ └── shared_dependency.gyp │ │ ├── library_dirs │ │ │ ├── gyptest-library-dirs.py │ │ │ └── subdir │ │ │ │ ├── README.txt │ │ │ │ ├── hello.cc │ │ │ │ ├── mylib.cc │ │ │ │ ├── mylib.h │ │ │ │ ├── test-win.gyp │ │ │ │ └── test.gyp │ │ ├── link-objects │ │ │ ├── base.c │ │ │ ├── extra.c │ │ │ ├── gyptest-all.py │ │ │ └── link-objects.gyp │ │ ├── linux │ │ │ ├── gyptest-implicit-rpath.py │ │ │ └── implicit-rpath │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ ├── mac │ │ │ ├── action-envvars │ │ │ │ └── action │ │ │ │ │ ├── action.gyp │ │ │ │ │ └── action.sh │ │ │ ├── app-bundle │ │ │ │ ├── TestApp │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ │ ├── utf-16be.strings │ │ │ │ │ │ └── utf-16le.strings │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ ├── TestAppAppDelegate.h │ │ │ │ │ ├── TestAppAppDelegate.m │ │ │ │ │ └── main.m │ │ │ │ ├── empty.c │ │ │ │ ├── test-error.gyp │ │ │ │ └── test.gyp │ │ │ ├── archs │ │ │ │ ├── empty_main.cc │ │ │ │ ├── file.mm │ │ │ │ ├── header.h │ │ │ │ ├── my_file.cc │ │ │ │ ├── my_main_file.cc │ │ │ │ ├── test-archs-multiarch.gyp │ │ │ │ ├── test-archs-x86_64.gyp │ │ │ │ └── test-no-archs.gyp │ │ │ ├── bundle-resources │ │ │ │ ├── change.sh │ │ │ │ ├── executable-file.sh │ │ │ │ ├── secret.txt │ │ │ │ └── test.gyp │ │ │ ├── cflags │ │ │ │ ├── ccfile.cc │ │ │ │ ├── ccfile_withcflags.cc │ │ │ │ ├── cfile.c │ │ │ │ ├── cppfile.cpp │ │ │ │ ├── cppfile_withcflags.cpp │ │ │ │ ├── cxxfile.cxx │ │ │ │ ├── cxxfile_withcflags.cxx │ │ │ │ ├── mfile.m │ │ │ │ ├── mmfile.mm │ │ │ │ ├── mmfile_withcflags.mm │ │ │ │ └── test.gyp │ │ │ ├── clang-cxx-language-standard │ │ │ │ ├── c++11.cc │ │ │ │ ├── c++98.cc │ │ │ │ └── clang-cxx-language-standard.gyp │ │ │ ├── clang-cxx-library │ │ │ │ ├── clang-cxx-library.gyp │ │ │ │ ├── libc++.cc │ │ │ │ └── libstdc++.cc │ │ │ ├── copy-dylib │ │ │ │ ├── empty.c │ │ │ │ └── test.gyp │ │ │ ├── debuginfo │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── depend-on-bundle │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── bundle.c │ │ │ │ ├── executable.c │ │ │ │ └── test.gyp │ │ │ ├── deployment-target │ │ │ │ ├── check-version-min.c │ │ │ │ └── deployment-target.gyp │ │ │ ├── framework-dirs │ │ │ │ ├── calculate.c │ │ │ │ └── framework-dirs.gyp │ │ │ ├── framework-headers │ │ │ │ ├── myframework.h │ │ │ │ ├── myframework.m │ │ │ │ └── test.gyp │ │ │ ├── framework │ │ │ │ ├── TestFramework │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ObjCVector.h │ │ │ │ │ ├── ObjCVector.mm │ │ │ │ │ ├── ObjCVectorInternal.h │ │ │ │ │ └── TestFramework_Prefix.pch │ │ │ │ ├── empty.c │ │ │ │ └── framework.gyp │ │ │ ├── global-settings │ │ │ │ └── src │ │ │ │ │ ├── dir1 │ │ │ │ │ └── dir1.gyp │ │ │ │ │ └── dir2 │ │ │ │ │ ├── dir2.gyp │ │ │ │ │ └── file.txt │ │ │ ├── gyptest-action-envvars.py │ │ │ ├── gyptest-app-error.py │ │ │ ├── gyptest-app.py │ │ │ ├── gyptest-archs.py │ │ │ ├── gyptest-bundle-resources.py │ │ │ ├── gyptest-cflags.py │ │ │ ├── gyptest-clang-cxx-language-standard.py │ │ │ ├── gyptest-clang-cxx-library.py │ │ │ ├── gyptest-copies.py │ │ │ ├── gyptest-copy-dylib.py │ │ │ ├── gyptest-debuginfo.py │ │ │ ├── gyptest-depend-on-bundle.py │ │ │ ├── gyptest-deployment-target.py │ │ │ ├── gyptest-framework-dirs.py │ │ │ ├── gyptest-framework-headers.py │ │ │ ├── gyptest-framework.py │ │ │ ├── gyptest-global-settings.py │ │ │ ├── gyptest-infoplist-process.py │ │ │ ├── gyptest-installname.py │ │ │ ├── gyptest-ldflags-passed-to-libtool.py │ │ │ ├── gyptest-ldflags.py │ │ │ ├── gyptest-libraries.py │ │ │ ├── gyptest-loadable-module.py │ │ │ ├── gyptest-missing-cfbundlesignature.py │ │ │ ├── gyptest-non-strs-flattened-to-env.py │ │ │ ├── gyptest-objc-arc.py │ │ │ ├── gyptest-objc-gc.py │ │ │ ├── gyptest-postbuild-copy-bundle.py │ │ │ ├── gyptest-postbuild-defaults.py │ │ │ ├── gyptest-postbuild-fail.py │ │ │ ├── gyptest-postbuild-multiple-configurations.py │ │ │ ├── gyptest-postbuild-static-library.py │ │ │ ├── gyptest-postbuild.py │ │ │ ├── gyptest-prefixheader.py │ │ │ ├── gyptest-rebuild.py │ │ │ ├── gyptest-rpath.py │ │ │ ├── gyptest-sdkroot.py │ │ │ ├── gyptest-sourceless-module.py │ │ │ ├── gyptest-strip-default.py │ │ │ ├── gyptest-strip.py │ │ │ ├── gyptest-type-envvars.py │ │ │ ├── gyptest-unicode-settings.py │ │ │ ├── gyptest-xcode-env-order.py │ │ │ ├── gyptest-xcode-gcc-clang.py │ │ │ ├── gyptest-xcode-gcc.py │ │ │ ├── gyptest-xctest.py │ │ │ ├── infoplist-process │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ ├── test1.gyp │ │ │ │ ├── test2.gyp │ │ │ │ └── test3.gyp │ │ │ ├── installname │ │ │ │ ├── Info.plist │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── ldflags-libtool │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── ldflags │ │ │ │ └── subdirectory │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── file.c │ │ │ │ │ ├── symbol_list.def │ │ │ │ │ └── test.gyp │ │ │ ├── libraries │ │ │ │ └── subdir │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hello.cc │ │ │ │ │ ├── mylib.c │ │ │ │ │ └── test.gyp │ │ │ ├── loadable-module │ │ │ │ ├── Info.plist │ │ │ │ ├── module.c │ │ │ │ └── test.gyp │ │ │ ├── missing-cfbundlesignature │ │ │ │ ├── Info.plist │ │ │ │ ├── Other-Info.plist │ │ │ │ ├── Third-Info.plist │ │ │ │ ├── file.c │ │ │ │ └── test.gyp │ │ │ ├── non-strs-flattened-to-env │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── objc-arc │ │ │ │ ├── c-file.c │ │ │ │ ├── cc-file.cc │ │ │ │ ├── m-file-no-arc.m │ │ │ │ ├── m-file.m │ │ │ │ ├── mm-file-no-arc.mm │ │ │ │ ├── mm-file.mm │ │ │ │ └── test.gyp │ │ │ ├── objc-gc │ │ │ │ ├── c-file.c │ │ │ │ ├── cc-file.cc │ │ │ │ ├── main.m │ │ │ │ ├── needs-gc-mm.mm │ │ │ │ ├── needs-gc.m │ │ │ │ └── test.gyp │ │ │ ├── postbuild-copy-bundle │ │ │ │ ├── Framework-Info.plist │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── copied.txt │ │ │ │ ├── empty.c │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-copy-framework.sh │ │ │ │ ├── resource_file.sb │ │ │ │ └── test.gyp │ │ │ ├── postbuild-defaults │ │ │ │ ├── Info.plist │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-defaults.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuild-fail │ │ │ │ ├── file.c │ │ │ │ ├── postbuild-fail.sh │ │ │ │ ├── test.gyp │ │ │ │ ├── touch-dynamic.sh │ │ │ │ └── touch-static.sh │ │ │ ├── postbuild-multiple-configurations │ │ │ │ ├── main.c │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuild-static-library │ │ │ │ ├── empty.c │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ └── test.gyp │ │ │ ├── postbuilds │ │ │ │ ├── copy.sh │ │ │ │ ├── file.c │ │ │ │ ├── file_g.c │ │ │ │ ├── file_h.c │ │ │ │ ├── script │ │ │ │ │ ├── shared_library_postbuild.sh │ │ │ │ │ └── static_library_postbuild.sh │ │ │ │ ├── subdirectory │ │ │ │ │ ├── copied_file.txt │ │ │ │ │ └── nested_target.gyp │ │ │ │ └── test.gyp │ │ │ ├── prefixheader │ │ │ │ ├── file.c │ │ │ │ ├── file.cc │ │ │ │ ├── file.m │ │ │ │ ├── file.mm │ │ │ │ ├── header.h │ │ │ │ └── test.gyp │ │ │ ├── rebuild │ │ │ │ ├── TestApp-Info.plist │ │ │ │ ├── delay-touch.sh │ │ │ │ ├── empty.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── rpath │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── sdkroot │ │ │ │ ├── file.cc │ │ │ │ ├── test.gyp │ │ │ │ └── test_shorthand.sh │ │ │ ├── sourceless-module │ │ │ │ ├── empty.c │ │ │ │ ├── empty.txt │ │ │ │ ├── fun.c │ │ │ │ └── test.gyp │ │ │ ├── strip │ │ │ │ ├── file.c │ │ │ │ ├── main.c │ │ │ │ ├── strip.saves │ │ │ │ ├── subdirectory │ │ │ │ │ ├── nested_file.c │ │ │ │ │ ├── nested_strip.saves │ │ │ │ │ ├── subdirectory.gyp │ │ │ │ │ └── test_reading_save_file_from_postbuild.sh │ │ │ │ ├── test-defaults.gyp │ │ │ │ └── test.gyp │ │ │ ├── type_envvars │ │ │ │ ├── file.c │ │ │ │ ├── test.gyp │ │ │ │ ├── test_bundle_executable.sh │ │ │ │ ├── test_bundle_loadable_module.sh │ │ │ │ ├── test_bundle_shared_library.sh │ │ │ │ ├── test_nonbundle_executable.sh │ │ │ │ ├── test_nonbundle_loadable_module.sh │ │ │ │ ├── test_nonbundle_none.sh │ │ │ │ ├── test_nonbundle_shared_library.sh │ │ │ │ └── test_nonbundle_static_library.sh │ │ │ ├── unicode-settings │ │ │ │ ├── file.cc │ │ │ │ ├── test.gyp │ │ │ │ └── test_bundle_display_name.sh │ │ │ ├── xcode-env-order │ │ │ │ ├── Info.plist │ │ │ │ ├── file.ext1 │ │ │ │ ├── file.ext2 │ │ │ │ ├── file.ext3 │ │ │ │ ├── main.c │ │ │ │ └── test.gyp │ │ │ ├── xcode-gcc │ │ │ │ ├── aliasing.cc │ │ │ │ ├── test-clang.gyp │ │ │ │ ├── test.gyp │ │ │ │ ├── valid_c.c │ │ │ │ ├── valid_cc.cc │ │ │ │ ├── valid_m.m │ │ │ │ ├── valid_mm.mm │ │ │ │ ├── warn_about_invalid_offsetof_macro.cc │ │ │ │ └── warn_about_missing_newline.c │ │ │ └── xctest │ │ │ │ ├── MyClass.h │ │ │ │ ├── MyClass.m │ │ │ │ ├── TestCase.m │ │ │ │ ├── resource.txt │ │ │ │ ├── test.gyp │ │ │ │ └── test.xcodeproj │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── classes.xcscheme │ │ ├── make │ │ │ ├── dependencies.gyp │ │ │ ├── gyptest-dependencies.py │ │ │ ├── gyptest-noload.py │ │ │ ├── main.cc │ │ │ ├── main.h │ │ │ └── noload │ │ │ │ ├── all.gyp │ │ │ │ ├── lib │ │ │ │ ├── shared.c │ │ │ │ ├── shared.gyp │ │ │ │ └── shared.h │ │ │ │ └── main.c │ │ ├── make_global_settings │ │ │ ├── basics │ │ │ │ ├── gyptest-make_global_settings.py │ │ │ │ └── make_global_settings.gyp │ │ │ ├── env-wrapper │ │ │ │ ├── gyptest-wrapper.py │ │ │ │ └── wrapper.gyp │ │ │ └── wrapper │ │ │ │ ├── gyptest-wrapper.py │ │ │ │ └── wrapper.gyp │ │ ├── many-actions │ │ │ ├── file0 │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ ├── file3 │ │ │ ├── file4 │ │ │ ├── gyptest-many-actions-unsorted.py │ │ │ ├── gyptest-many-actions.py │ │ │ ├── many-actions-unsorted.gyp │ │ │ └── many-actions.gyp │ │ ├── module │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── lib1.c │ │ │ │ ├── lib2.c │ │ │ │ ├── module.gyp │ │ │ │ └── program.c │ │ ├── msvs │ │ │ ├── config_attrs │ │ │ │ ├── gyptest-config_attrs.py │ │ │ │ ├── hello.c │ │ │ │ └── hello.gyp │ │ │ ├── express │ │ │ │ ├── base │ │ │ │ │ └── base.gyp │ │ │ │ ├── express.gyp │ │ │ │ └── gyptest-express.py │ │ │ ├── external_builder │ │ │ │ ├── external.gyp │ │ │ │ ├── external_builder.py │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.cpp │ │ │ │ ├── hello.z │ │ │ │ ├── msbuild_action.py │ │ │ │ └── msbuild_rule.py │ │ │ ├── list_excluded │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.cpp │ │ │ │ ├── hello_exclude.gyp │ │ │ │ └── hello_mac.cpp │ │ │ ├── missing_sources │ │ │ │ ├── gyptest-missing.py │ │ │ │ └── hello_missing.gyp │ │ │ ├── props │ │ │ │ ├── AppName.props │ │ │ │ ├── AppName.vsprops │ │ │ │ ├── gyptest-props.py │ │ │ │ ├── hello.c │ │ │ │ └── hello.gyp │ │ │ ├── shared_output │ │ │ │ ├── common.gypi │ │ │ │ ├── gyptest-shared_output.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ └── there │ │ │ │ │ ├── there.c │ │ │ │ │ └── there.gyp │ │ │ └── uldi2010 │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ └── hello2.c │ │ ├── multiple-targets │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── common.c │ │ │ │ ├── multiple.gyp │ │ │ │ ├── prog1.c │ │ │ │ └── prog2.c │ │ ├── ninja │ │ │ ├── action_dependencies │ │ │ │ ├── gyptest-action-dependencies.py │ │ │ │ └── src │ │ │ │ │ ├── a.c │ │ │ │ │ ├── a.h │ │ │ │ │ ├── action_dependencies.gyp │ │ │ │ │ ├── b.c │ │ │ │ │ ├── b.h │ │ │ │ │ ├── c.c │ │ │ │ │ ├── c.h │ │ │ │ │ └── emit.py │ │ │ ├── chained-dependency │ │ │ │ ├── chained-dependency.gyp │ │ │ │ ├── chained.c │ │ │ │ └── gyptest-chained-dependency.py │ │ │ ├── normalize-paths-win │ │ │ │ ├── gyptest-normalize-paths.py │ │ │ │ ├── hello.cc │ │ │ │ └── normalize-paths.gyp │ │ │ ├── s-needs-no-depfiles │ │ │ │ ├── empty.s │ │ │ │ ├── gyptest-s-needs-no-depfiles.py │ │ │ │ └── s-needs-no-depfiles.gyp │ │ │ ├── solibs_avoid_relinking │ │ │ │ ├── gyptest-solibs-avoid-relinking.py │ │ │ │ ├── main.cc │ │ │ │ ├── solib.cc │ │ │ │ └── solibs_avoid_relinking.gyp │ │ │ └── use-custom-environment-files │ │ │ │ ├── gyptest-use-custom-environment-files.py │ │ │ │ ├── use-custom-environment-files.cc │ │ │ │ └── use-custom-environment-files.gyp │ │ ├── no-cpp │ │ │ ├── gyptest-no-cpp.py │ │ │ └── src │ │ │ │ ├── call-f-main.c │ │ │ │ ├── empty-main.c │ │ │ │ ├── f.cc │ │ │ │ └── test.gyp │ │ ├── no-output │ │ │ ├── gyptest-no-output.py │ │ │ └── src │ │ │ │ └── nooutput.gyp │ │ ├── product │ │ │ ├── gyptest-product.py │ │ │ ├── hello.c │ │ │ └── product.gyp │ │ ├── prune_targets │ │ │ ├── gyptest-prune-targets.py │ │ │ ├── lib1.cc │ │ │ ├── lib2.cc │ │ │ ├── lib3.cc │ │ │ ├── lib_indirect.cc │ │ │ ├── program.cc │ │ │ ├── test1.gyp │ │ │ └── test2.gyp │ │ ├── relative │ │ │ ├── foo │ │ │ │ ├── a │ │ │ │ │ ├── a.cc │ │ │ │ │ ├── a.gyp │ │ │ │ │ └── c │ │ │ │ │ │ ├── c.cc │ │ │ │ │ │ └── c.gyp │ │ │ │ └── b │ │ │ │ │ ├── b.cc │ │ │ │ │ └── b.gyp │ │ │ └── gyptest-default.py │ │ ├── rename │ │ │ ├── filecase │ │ │ │ ├── file.c │ │ │ │ ├── test-casesensitive.gyp │ │ │ │ └── test.gyp │ │ │ └── gyptest-filecase.py │ │ ├── restat │ │ │ ├── gyptest-restat.py │ │ │ └── src │ │ │ │ ├── create_intermediate.py │ │ │ │ ├── restat.gyp │ │ │ │ └── touch.py │ │ ├── rules-dirname │ │ │ ├── gyptest-dirname.py │ │ │ └── src │ │ │ │ ├── actions.gyp │ │ │ │ ├── copy-file.py │ │ │ │ └── subdir │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.gencc │ │ │ │ │ └── c.printvars │ │ │ │ ├── foo │ │ │ │ └── bar │ │ │ │ │ ├── baz.gencc │ │ │ │ │ └── baz.printvars │ │ │ │ ├── input-rule-dirname.gyp │ │ │ │ ├── main.cc │ │ │ │ └── printvars.py │ │ ├── rules-rebuild │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ ├── make-sources.py │ │ │ │ ├── prog1.in │ │ │ │ ├── prog2.in │ │ │ │ └── same_target.gyp │ │ ├── rules-use-built-dependencies │ │ │ ├── gyptest-use-built-dependencies.py │ │ │ └── src │ │ │ │ ├── main.cc │ │ │ │ └── use-built-dependencies-rule.gyp │ │ ├── rules-variables │ │ │ ├── gyptest-rules-variables.py │ │ │ └── src │ │ │ │ ├── input_ext.c │ │ │ │ ├── input_name │ │ │ │ └── test.c │ │ │ │ ├── input_path │ │ │ │ └── subdir │ │ │ │ │ └── test.c │ │ │ │ ├── subdir │ │ │ │ ├── input_dirname.c │ │ │ │ └── test.c │ │ │ │ ├── test.input_root.c │ │ │ │ └── variables.gyp │ │ ├── rules │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-input-root.py │ │ │ ├── gyptest-special-variables.py │ │ │ └── src │ │ │ │ ├── actions.gyp │ │ │ │ ├── an_asm.S │ │ │ │ ├── as.bat │ │ │ │ ├── copy-file.py │ │ │ │ ├── external │ │ │ │ ├── external.gyp │ │ │ │ ├── file1.in │ │ │ │ └── file2.in │ │ │ │ ├── input-root.gyp │ │ │ │ ├── noaction │ │ │ │ ├── file1.in │ │ │ │ └── no_action_with_rules_fails.gyp │ │ │ │ ├── rule.py │ │ │ │ ├── somefile.ext │ │ │ │ ├── special-variables.gyp │ │ │ │ ├── subdir1 │ │ │ │ ├── executable.gyp │ │ │ │ ├── function1.in │ │ │ │ ├── function2.in │ │ │ │ └── program.c │ │ │ │ ├── subdir2 │ │ │ │ ├── file1.in │ │ │ │ ├── file2.in │ │ │ │ ├── never_used.gyp │ │ │ │ ├── no_action.gyp │ │ │ │ ├── no_inputs.gyp │ │ │ │ └── none.gyp │ │ │ │ ├── subdir3 │ │ │ │ ├── executable2.gyp │ │ │ │ ├── function3.in │ │ │ │ └── program.c │ │ │ │ └── subdir4 │ │ │ │ ├── asm-function.assem │ │ │ │ ├── build-asm.gyp │ │ │ │ └── program.c │ │ ├── same-gyp-name │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-library.py │ │ │ ├── library │ │ │ │ ├── one │ │ │ │ │ └── sub.gyp │ │ │ │ ├── test.gyp │ │ │ │ └── two │ │ │ │ │ └── sub.gyp │ │ │ └── src │ │ │ │ ├── all.gyp │ │ │ │ ├── subdir1 │ │ │ │ ├── executable.gyp │ │ │ │ └── main1.cc │ │ │ │ └── subdir2 │ │ │ │ ├── executable.gyp │ │ │ │ └── main2.cc │ │ ├── same-rule-output-file-name │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── subdir1 │ │ │ │ └── subdir1.gyp │ │ │ │ ├── subdir2 │ │ │ │ └── subdir2.gyp │ │ │ │ ├── subdirs.gyp │ │ │ │ └── touch.py │ │ ├── same-source-file-name │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-default.py │ │ │ ├── gyptest-fail-shared.py │ │ │ ├── gyptest-fail-static.py │ │ │ ├── gyptest-pass-executable.py │ │ │ └── src │ │ │ │ ├── all.gyp │ │ │ │ ├── double-executable.gyp │ │ │ │ ├── double-shared.gyp │ │ │ │ ├── double-static.gyp │ │ │ │ ├── func.c │ │ │ │ ├── prog1.c │ │ │ │ ├── prog2.c │ │ │ │ ├── prog3.c │ │ │ │ ├── subdir1 │ │ │ │ └── func.c │ │ │ │ └── subdir2 │ │ │ │ └── func.c │ │ ├── same-target-name-different-directory │ │ │ ├── gyptest-all.py │ │ │ └── src │ │ │ │ ├── subdir1 │ │ │ │ └── subdir1.gyp │ │ │ │ ├── subdir2 │ │ │ │ └── subdir2.gyp │ │ │ │ ├── subdirs.gyp │ │ │ │ └── touch.py │ │ ├── same-target-name │ │ │ ├── gyptest-same-target-name.py │ │ │ └── src │ │ │ │ ├── all.gyp │ │ │ │ ├── executable1.gyp │ │ │ │ └── executable2.gyp │ │ ├── sanitize-rule-names │ │ │ ├── blah.S │ │ │ ├── gyptest-sanitize-rule-names.py │ │ │ ├── hello.cc │ │ │ ├── sanitize-rule-names.gyp │ │ │ └── script.py │ │ ├── self-dependency │ │ │ ├── common.gypi │ │ │ ├── dep.gyp │ │ │ ├── gyptest-self-dependency.py │ │ │ └── self_dependency.gyp │ │ ├── sibling │ │ │ ├── gyptest-all.py │ │ │ ├── gyptest-relocate.py │ │ │ └── src │ │ │ │ ├── build │ │ │ │ └── all.gyp │ │ │ │ ├── prog1 │ │ │ │ ├── prog1.c │ │ │ │ └── prog1.gyp │ │ │ │ └── prog2 │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ ├── small │ │ │ └── gyptest-small.py │ │ ├── standalone-static-library │ │ │ ├── gyptest-standalone-static-library.py │ │ │ ├── invalid.gyp │ │ │ ├── mylib.c │ │ │ ├── mylib.gyp │ │ │ └── prog.c │ │ ├── standalone │ │ │ ├── gyptest-standalone.py │ │ │ └── standalone.gyp │ │ ├── subdirectory │ │ │ ├── gyptest-SYMROOT-all.py │ │ │ ├── gyptest-SYMROOT-default.py │ │ │ ├── gyptest-subdir-all.py │ │ │ ├── gyptest-subdir-default.py │ │ │ ├── gyptest-subdir2-deep.py │ │ │ ├── gyptest-top-all.py │ │ │ ├── gyptest-top-default.py │ │ │ └── src │ │ │ │ ├── prog1.c │ │ │ │ ├── prog1.gyp │ │ │ │ ├── subdir │ │ │ │ ├── prog2.c │ │ │ │ ├── prog2.gyp │ │ │ │ └── subdir2 │ │ │ │ │ ├── prog3.c │ │ │ │ │ └── prog3.gyp │ │ │ │ └── symroot.gypi │ │ ├── target │ │ │ ├── gyptest-target.py │ │ │ ├── hello.c │ │ │ └── target.gyp │ │ ├── toolsets │ │ │ ├── gyptest-toolsets.py │ │ │ ├── main.cc │ │ │ ├── toolsets.cc │ │ │ ├── toolsets.gyp │ │ │ └── toolsets_shared.cc │ │ ├── toplevel-dir │ │ │ ├── gyptest-toplevel-dir.py │ │ │ └── src │ │ │ │ ├── sub1 │ │ │ │ ├── main.gyp │ │ │ │ └── prog1.c │ │ │ │ └── sub2 │ │ │ │ ├── prog2.c │ │ │ │ └── prog2.gyp │ │ ├── variables │ │ │ ├── commands │ │ │ │ ├── commands-repeated.gyp │ │ │ │ ├── commands-repeated.gyp.stdout │ │ │ │ ├── commands-repeated.gypd.golden │ │ │ │ ├── commands.gyp │ │ │ │ ├── commands.gyp.ignore-env.stdout │ │ │ │ ├── commands.gyp.stdout │ │ │ │ ├── commands.gypd.golden │ │ │ │ ├── commands.gypi │ │ │ │ ├── gyptest-commands-ignore-env.py │ │ │ │ ├── gyptest-commands-repeated.py │ │ │ │ ├── gyptest-commands.py │ │ │ │ ├── test.py │ │ │ │ └── update_golden │ │ │ ├── filelist │ │ │ │ ├── filelist.gyp.stdout │ │ │ │ ├── filelist.gypd.golden │ │ │ │ ├── gyptest-filelist-golden.py │ │ │ │ ├── gyptest-filelist.py │ │ │ │ ├── src │ │ │ │ │ ├── dummy.py │ │ │ │ │ ├── filelist.gyp │ │ │ │ │ └── filelist2.gyp │ │ │ │ └── update_golden │ │ │ ├── latelate │ │ │ │ ├── gyptest-latelate.py │ │ │ │ └── src │ │ │ │ │ ├── latelate.gyp │ │ │ │ │ └── program.cc │ │ │ └── variable-in-path │ │ │ │ ├── C1 │ │ │ │ └── hello.cc │ │ │ │ ├── gyptest-variable-in-path.py │ │ │ │ └── variable-in-path.gyp │ │ └── win │ │ │ ├── asm-files │ │ │ ├── asm-files.gyp │ │ │ ├── b.s │ │ │ ├── c.S │ │ │ └── hello.cc │ │ │ ├── batch-file-action │ │ │ ├── batch-file-action.gyp │ │ │ ├── infile │ │ │ └── somecmd.bat │ │ │ ├── command-quote │ │ │ ├── a.S │ │ │ ├── bat with spaces.bat │ │ │ ├── command-quote.gyp │ │ │ ├── go.bat │ │ │ └── subdir │ │ │ │ └── and │ │ │ │ └── another │ │ │ │ └── in-subdir.gyp │ │ │ ├── compiler-flags │ │ │ ├── additional-include-dirs.cc │ │ │ ├── additional-include-dirs.gyp │ │ │ ├── additional-options.cc │ │ │ ├── additional-options.gyp │ │ │ ├── analysis.gyp │ │ │ ├── buffer-security-check.gyp │ │ │ ├── buffer-security.cc │ │ │ ├── character-set-mbcs.cc │ │ │ ├── character-set-unicode.cc │ │ │ ├── character-set.gyp │ │ │ ├── debug-format.gyp │ │ │ ├── default-char-is-unsigned.cc │ │ │ ├── default-char-is-unsigned.gyp │ │ │ ├── disable-specific-warnings.cc │ │ │ ├── disable-specific-warnings.gyp │ │ │ ├── exception-handling-on.cc │ │ │ ├── exception-handling.gyp │ │ │ ├── force-include-files-with-precompiled.cc │ │ │ ├── force-include-files.cc │ │ │ ├── force-include-files.gyp │ │ │ ├── function-level-linking.cc │ │ │ ├── function-level-linking.gyp │ │ │ ├── hello.cc │ │ │ ├── optimizations.gyp │ │ │ ├── pdbname-override.gyp │ │ │ ├── pdbname.cc │ │ │ ├── pdbname.gyp │ │ │ ├── precomp.cc │ │ │ ├── rtti-on.cc │ │ │ ├── rtti.gyp │ │ │ ├── runtime-checks.cc │ │ │ ├── runtime-checks.gyp │ │ │ ├── runtime-library-md.cc │ │ │ ├── runtime-library-mdd.cc │ │ │ ├── runtime-library-mt.cc │ │ │ ├── runtime-library-mtd.cc │ │ │ ├── runtime-library.gyp │ │ │ ├── subdir │ │ │ │ └── header.h │ │ │ ├── treat-wchar-t-as-built-in-type.gyp │ │ │ ├── treat-wchar-t-as-built-in-type1.cc │ │ │ ├── treat-wchar-t-as-built-in-type2.cc │ │ │ ├── uninit.cc │ │ │ ├── warning-as-error.cc │ │ │ ├── warning-as-error.gyp │ │ │ ├── warning-level.gyp │ │ │ ├── warning-level1.cc │ │ │ ├── warning-level2.cc │ │ │ ├── warning-level3.cc │ │ │ └── warning-level4.cc │ │ │ ├── generator-output-different-drive │ │ │ ├── gyptest-generator-output-different-drive.py │ │ │ ├── prog.c │ │ │ └── prog.gyp │ │ │ ├── gyptest-asm-files.py │ │ │ ├── gyptest-cl-additional-include-dirs.py │ │ │ ├── gyptest-cl-additional-options.py │ │ │ ├── gyptest-cl-analysis.py │ │ │ ├── gyptest-cl-buffer-security-check.py │ │ │ ├── gyptest-cl-character-set.py │ │ │ ├── gyptest-cl-debug-format.py │ │ │ ├── gyptest-cl-default-char-is-unsigned.py │ │ │ ├── gyptest-cl-disable-specific-warnings.py │ │ │ ├── gyptest-cl-exception-handling.py │ │ │ ├── gyptest-cl-force-include-files.py │ │ │ ├── gyptest-cl-function-level-linking.py │ │ │ ├── gyptest-cl-optimizations.py │ │ │ ├── gyptest-cl-pdbname-override.py │ │ │ ├── gyptest-cl-pdbname.py │ │ │ ├── gyptest-cl-rtti.py │ │ │ ├── gyptest-cl-runtime-checks.py │ │ │ ├── gyptest-cl-runtime-library.py │ │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py │ │ │ ├── gyptest-cl-warning-as-error.py │ │ │ ├── gyptest-cl-warning-level.py │ │ │ ├── gyptest-command-quote.py │ │ │ ├── gyptest-lib-ltcg.py │ │ │ ├── gyptest-link-additional-deps.py │ │ │ ├── gyptest-link-additional-options.py │ │ │ ├── gyptest-link-aslr.py │ │ │ ├── gyptest-link-base-address.py │ │ │ ├── gyptest-link-debug-info.py │ │ │ ├── gyptest-link-default-libs.py │ │ │ ├── gyptest-link-deffile.py │ │ │ ├── gyptest-link-defrelink.py │ │ │ ├── gyptest-link-delay-load-dlls.py │ │ │ ├── gyptest-link-embed-manifest.py │ │ │ ├── gyptest-link-enable-uac.py │ │ │ ├── gyptest-link-entrypointsymbol.py │ │ │ ├── gyptest-link-fixed-base.py │ │ │ ├── gyptest-link-generate-manifest.py │ │ │ ├── gyptest-link-incremental.py │ │ │ ├── gyptest-link-large-address-aware.py │ │ │ ├── gyptest-link-large-pdb.py │ │ │ ├── gyptest-link-library-adjust.py │ │ │ ├── gyptest-link-library-directories.py │ │ │ ├── gyptest-link-ltcg.py │ │ │ ├── gyptest-link-mapfile.py │ │ │ ├── gyptest-link-nodefaultlib.py │ │ │ ├── gyptest-link-nxcompat.py │ │ │ ├── gyptest-link-opt-icf.py │ │ │ ├── gyptest-link-opt-ref.py │ │ │ ├── gyptest-link-ordering.py │ │ │ ├── gyptest-link-outputfile.py │ │ │ ├── gyptest-link-pdb.py │ │ │ ├── gyptest-link-pgo.py │ │ │ ├── gyptest-link-profile.py │ │ │ ├── gyptest-link-restat-importlib.py │ │ │ ├── gyptest-link-shard.py │ │ │ ├── gyptest-link-subsystem.py │ │ │ ├── gyptest-link-target-machine.py │ │ │ ├── gyptest-link-tsaware.py │ │ │ ├── gyptest-link-uldi.py │ │ │ ├── gyptest-link-warnings-as-errors.py │ │ │ ├── gyptest-long-command-line.py │ │ │ ├── gyptest-macro-projectname.py │ │ │ ├── gyptest-macro-targetname.py │ │ │ ├── gyptest-macro-vcinstalldir.py │ │ │ ├── gyptest-macros-containing-gyp.py │ │ │ ├── gyptest-macros-in-inputs-and-outputs.py │ │ │ ├── gyptest-midl-rules.py │ │ │ ├── gyptest-quoting-commands.py │ │ │ ├── gyptest-rc-build.py │ │ │ ├── idl-rules │ │ │ ├── basic-idl.gyp │ │ │ ├── history_indexer.idl │ │ │ └── history_indexer_user.cc │ │ │ ├── importlib │ │ │ ├── has-exports.cc │ │ │ ├── hello.cc │ │ │ └── importlib.gyp │ │ │ ├── large-pdb │ │ │ ├── dllmain.cc │ │ │ ├── large-pdb.gyp │ │ │ └── main.cc │ │ │ ├── lib-flags │ │ │ ├── answer.cc │ │ │ ├── answer.h │ │ │ └── ltcg.gyp │ │ │ ├── linker-flags │ │ │ ├── additional-deps.cc │ │ │ ├── additional-deps.gyp │ │ │ ├── additional-options.gyp │ │ │ ├── aslr.gyp │ │ │ ├── base-address.gyp │ │ │ ├── debug-info.gyp │ │ │ ├── deffile-multiple.gyp │ │ │ ├── deffile.cc │ │ │ ├── deffile.def │ │ │ ├── deffile.gyp │ │ │ ├── delay-load-dlls.gyp │ │ │ ├── delay-load.cc │ │ │ ├── embed-manifest.gyp │ │ │ ├── enable-uac.gyp │ │ │ ├── entrypointsymbol.cc │ │ │ ├── entrypointsymbol.gyp │ │ │ ├── extra.manifest │ │ │ ├── extra2.manifest │ │ │ ├── fixed-base.gyp │ │ │ ├── generate-manifest.gyp │ │ │ ├── hello.cc │ │ │ ├── incremental.gyp │ │ │ ├── inline_test.cc │ │ │ ├── inline_test.h │ │ │ ├── inline_test_main.cc │ │ │ ├── large-address-aware.gyp │ │ │ ├── library-adjust.cc │ │ │ ├── library-adjust.gyp │ │ │ ├── library-directories-define.cc │ │ │ ├── library-directories-reference.cc │ │ │ ├── library-directories.gyp │ │ │ ├── link-ordering.gyp │ │ │ ├── link-warning.cc │ │ │ ├── ltcg.gyp │ │ │ ├── main-crt.c │ │ │ ├── mapfile.cc │ │ │ ├── mapfile.gyp │ │ │ ├── no-default-libs.cc │ │ │ ├── no-default-libs.gyp │ │ │ ├── nodefaultlib.cc │ │ │ ├── nodefaultlib.gyp │ │ │ ├── nxcompat.gyp │ │ │ ├── opt-icf.cc │ │ │ ├── opt-icf.gyp │ │ │ ├── opt-ref.cc │ │ │ ├── opt-ref.gyp │ │ │ ├── outputfile.gyp │ │ │ ├── pgo.gyp │ │ │ ├── profile.gyp │ │ │ ├── program-database.gyp │ │ │ ├── subdir │ │ │ │ └── library.gyp │ │ │ ├── subsystem-windows.cc │ │ │ ├── subsystem.gyp │ │ │ ├── target-machine.gyp │ │ │ ├── tsaware.gyp │ │ │ ├── update_pgd.py │ │ │ ├── warn-as-error.gyp │ │ │ ├── x.cc │ │ │ ├── y.cc │ │ │ └── z.cc │ │ │ ├── long-command-line │ │ │ ├── function.cc │ │ │ ├── hello.cc │ │ │ └── long-command-line.gyp │ │ │ ├── precompiled │ │ │ ├── gyptest-all.py │ │ │ ├── hello.c │ │ │ ├── hello.gyp │ │ │ ├── hello2.c │ │ │ └── precomp.c │ │ │ ├── rc-build │ │ │ ├── Resource.h │ │ │ ├── hello.cpp │ │ │ ├── hello.gyp │ │ │ ├── hello.h │ │ │ ├── hello.ico │ │ │ ├── hello.rc │ │ │ ├── hello3.rc │ │ │ ├── small.ico │ │ │ ├── subdir │ │ │ │ ├── hello2.rc │ │ │ │ └── include.h │ │ │ └── targetver.h │ │ │ ├── shard │ │ │ ├── hello1.cc │ │ │ ├── hello2.cc │ │ │ ├── hello3.cc │ │ │ ├── hello4.cc │ │ │ └── shard.gyp │ │ │ ├── uldi │ │ │ ├── a.cc │ │ │ ├── b.cc │ │ │ ├── main.cc │ │ │ └── uldi.gyp │ │ │ └── vs-macros │ │ │ ├── as.py │ │ │ ├── containing-gyp.gyp │ │ │ ├── do_stuff.py │ │ │ ├── hello.cc │ │ │ ├── input-output-macros.gyp │ │ │ ├── input.S │ │ │ ├── projectname.gyp │ │ │ ├── stuff.blah │ │ │ ├── targetname.gyp │ │ │ ├── test_exists.py │ │ │ └── vcinstalldir.gyp │ └── tools │ │ ├── README │ │ ├── Xcode │ │ ├── README │ │ └── Specifications │ │ │ ├── gyp.pbfilespec │ │ │ └── gyp.xclangspec │ │ ├── emacs │ │ ├── README │ │ ├── gyp-tests.el │ │ ├── gyp.el │ │ ├── run-unit-tests.sh │ │ └── testdata │ │ │ ├── media.gyp │ │ │ └── media.gyp.fontified │ │ ├── graphviz.py │ │ ├── pretty_gyp.py │ │ ├── pretty_sln.py │ │ └── pretty_vcproj.py ├── iconv │ ├── .cvsignore │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── COPYING │ ├── COPYING.LIB │ ├── ChangeLog │ ├── DEPENDENCIES │ ├── DESIGN │ ├── HACKING │ ├── INSTALL.generic │ ├── Makefile.devel │ ├── Makefile.in │ ├── NEWS │ ├── NOTES │ ├── PORTS │ ├── README │ ├── README.djgpp │ ├── README.woe32 │ ├── THANKS │ ├── autogen.sh │ ├── build-aux │ │ ├── config.guess │ │ ├── config.sub │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── missing │ │ └── mkinstalldirs │ ├── configure.ac │ ├── djgpp │ │ ├── Makefile.maint │ │ ├── README │ │ ├── README.in │ │ ├── config.bat │ │ ├── config.sed │ │ ├── config.site │ │ ├── edtest.bat │ │ ├── fnchange.in │ │ ├── fnchange.lst │ │ ├── makefile.sed │ │ ├── sources.sed │ │ ├── stateful-check.sed │ │ ├── stateless-check.sed │ │ └── translit-check.sed │ ├── extras │ │ ├── ChangeLog │ │ ├── iconv_string.c │ │ └── iconv_string.h │ ├── gnulib-local │ │ ├── lib │ │ │ ├── alloca.in.h │ │ │ ├── error.h.diff │ │ │ ├── progname.h.diff │ │ │ ├── xalloc.h │ │ │ ├── xmalloc.c │ │ │ └── xstrdup.c │ │ ├── m4 │ │ │ └── alloca.m4 │ │ └── modules │ │ │ ├── libiconv-misc │ │ │ ├── mbstate │ │ │ └── xalloc │ ├── include │ │ ├── .cvsignore │ │ ├── export.h │ │ └── iconv.h.in │ ├── lib │ │ ├── .cvsignore │ │ ├── Makefile.in │ │ ├── aliases2.h │ │ ├── aliases_aix.h │ │ ├── aliases_dos.h │ │ ├── aliases_extra.h │ │ ├── aliases_osf1.h │ │ ├── armscii_8.h │ │ ├── ascii.h │ │ ├── atarist.h │ │ ├── big5.h │ │ ├── big5_2003.h │ │ ├── big5hkscs1999.h │ │ ├── big5hkscs2001.h │ │ ├── big5hkscs2004.h │ │ ├── big5hkscs2008.h │ │ ├── c99.h │ │ ├── ces_big5.h │ │ ├── ces_gbk.h │ │ ├── cjk_variants.h │ │ ├── cns11643.h │ │ ├── cns11643_1.h │ │ ├── cns11643_15.h │ │ ├── cns11643_2.h │ │ ├── cns11643_3.h │ │ ├── cns11643_4.h │ │ ├── cns11643_4a.h │ │ ├── cns11643_4b.h │ │ ├── cns11643_5.h │ │ ├── cns11643_6.h │ │ ├── cns11643_7.h │ │ ├── cns11643_inv.h │ │ ├── config.h.in │ │ ├── converters.h │ │ ├── cp1046.h │ │ ├── cp1124.h │ │ ├── cp1125.h │ │ ├── cp1129.h │ │ ├── cp1131.h │ │ ├── cp1133.h │ │ ├── cp1161.h │ │ ├── cp1162.h │ │ ├── cp1163.h │ │ ├── cp1250.h │ │ ├── cp1251.h │ │ ├── cp1252.h │ │ ├── cp1253.h │ │ ├── cp1254.h │ │ ├── cp1255.h │ │ ├── cp1256.h │ │ ├── cp1257.h │ │ ├── cp1258.h │ │ ├── cp437.h │ │ ├── cp737.h │ │ ├── cp775.h │ │ ├── cp850.h │ │ ├── cp852.h │ │ ├── cp853.h │ │ ├── cp855.h │ │ ├── cp856.h │ │ ├── cp857.h │ │ ├── cp858.h │ │ ├── cp860.h │ │ ├── cp861.h │ │ ├── cp862.h │ │ ├── cp863.h │ │ ├── cp864.h │ │ ├── cp865.h │ │ ├── cp866.h │ │ ├── cp869.h │ │ ├── cp874.h │ │ ├── cp922.h │ │ ├── cp932.h │ │ ├── cp932ext.h │ │ ├── cp936.h │ │ ├── cp936ext.h │ │ ├── cp943.h │ │ ├── cp949.h │ │ ├── cp950.h │ │ ├── cp950ext.h │ │ ├── dec_hanyu.h │ │ ├── dec_kanji.h │ │ ├── encodings.def │ │ ├── encodings_aix.def │ │ ├── encodings_dos.def │ │ ├── encodings_extra.def │ │ ├── encodings_local.def │ │ ├── encodings_osf1.def │ │ ├── euc_cn.h │ │ ├── euc_jisx0213.h │ │ ├── euc_jp.h │ │ ├── euc_kr.h │ │ ├── euc_tw.h │ │ ├── flushwc.h │ │ ├── gb12345.h │ │ ├── gb12345ext.h │ │ ├── gb18030.h │ │ ├── gb18030ext.h │ │ ├── gb18030uni.h │ │ ├── gb2312.h │ │ ├── gbk.h │ │ ├── gbkext1.h │ │ ├── gbkext2.h │ │ ├── gbkext_inv.h │ │ ├── genaliases.c │ │ ├── genaliases2.c │ │ ├── genflags.c │ │ ├── gentranslit.c │ │ ├── georgian_academy.h │ │ ├── georgian_ps.h │ │ ├── hkscs1999.h │ │ ├── hkscs2001.h │ │ ├── hkscs2004.h │ │ ├── hkscs2008.h │ │ ├── hp_roman8.h │ │ ├── hz.h │ │ ├── iconv.c │ │ ├── iconv_open1.h │ │ ├── iconv_open2.h │ │ ├── iso2022_cn.h │ │ ├── iso2022_cnext.h │ │ ├── iso2022_jp.h │ │ ├── iso2022_jp1.h │ │ ├── iso2022_jp2.h │ │ ├── iso2022_jp3.h │ │ ├── iso2022_kr.h │ │ ├── iso646_cn.h │ │ ├── iso646_jp.h │ │ ├── iso8859_1.h │ │ ├── iso8859_10.h │ │ ├── iso8859_11.h │ │ ├── iso8859_13.h │ │ ├── iso8859_14.h │ │ ├── iso8859_15.h │ │ ├── iso8859_16.h │ │ ├── iso8859_2.h │ │ ├── iso8859_3.h │ │ ├── iso8859_4.h │ │ ├── iso8859_5.h │ │ ├── iso8859_6.h │ │ ├── iso8859_7.h │ │ ├── iso8859_8.h │ │ ├── iso8859_9.h │ │ ├── isoir165.h │ │ ├── isoir165ext.h │ │ ├── java.h │ │ ├── jisx0201.h │ │ ├── jisx0208.h │ │ ├── jisx0212.h │ │ ├── jisx0213.h │ │ ├── johab.h │ │ ├── johab_hangul.h │ │ ├── koi8_r.h │ │ ├── koi8_ru.h │ │ ├── koi8_t.h │ │ ├── koi8_u.h │ │ ├── ksc5601.h │ │ ├── loop_unicode.h │ │ ├── loop_wchar.h │ │ ├── loops.h │ │ ├── mac_arabic.h │ │ ├── mac_centraleurope.h │ │ ├── mac_croatian.h │ │ ├── mac_cyrillic.h │ │ ├── mac_greek.h │ │ ├── mac_hebrew.h │ │ ├── mac_iceland.h │ │ ├── mac_roman.h │ │ ├── mac_romania.h │ │ ├── mac_thai.h │ │ ├── mac_turkish.h │ │ ├── mac_ukraine.h │ │ ├── mulelao.h │ │ ├── nextstep.h │ │ ├── pt154.h │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ ├── riscos1.h │ │ ├── rk1048.h │ │ ├── shift_jisx0213.h │ │ ├── sjis.h │ │ ├── tcvn.h │ │ ├── tds565.h │ │ ├── tis620.h │ │ ├── translit.def │ │ ├── translit.h │ │ ├── ucs2.h │ │ ├── ucs2be.h │ │ ├── ucs2internal.h │ │ ├── ucs2le.h │ │ ├── ucs2swapped.h │ │ ├── ucs4.h │ │ ├── ucs4be.h │ │ ├── ucs4internal.h │ │ ├── ucs4le.h │ │ ├── ucs4swapped.h │ │ ├── uhc_1.h │ │ ├── uhc_2.h │ │ ├── utf16.h │ │ ├── utf16be.h │ │ ├── utf16le.h │ │ ├── utf32.h │ │ ├── utf32be.h │ │ ├── utf32le.h │ │ ├── utf7.h │ │ ├── utf8.h │ │ ├── vietcomb.h │ │ └── viscii.h │ ├── libcharset │ │ ├── .cvsignore │ │ ├── AUTHORS │ │ ├── COPYING.LIB │ │ ├── ChangeLog │ │ ├── DEPENDENCIES │ │ ├── HACKING │ │ ├── INSTALL.generic │ │ ├── INTEGRATE │ │ ├── Makefile.devel │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── README.djgpp │ │ ├── README.woe32 │ │ ├── autoconf │ │ │ └── .cvsignore │ │ ├── autogen.sh │ │ ├── build-aux │ │ │ ├── config.guess │ │ │ ├── config.libpath │ │ │ ├── config.sub │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── mkinstalldirs │ │ ├── configure.ac │ │ ├── djgpp │ │ │ ├── Makefile.maint │ │ │ ├── README │ │ │ ├── README.in │ │ │ ├── config.bat │ │ │ ├── config.sed │ │ │ ├── config.site │ │ │ ├── fnchange.in │ │ │ └── fnchange.lst │ │ ├── include │ │ │ ├── .cvsignore │ │ │ ├── export.h │ │ │ ├── libcharset.h.in │ │ │ └── localcharset.h.in │ │ ├── lib │ │ │ ├── .cvsignore │ │ │ ├── ChangeLog │ │ │ ├── Makefile.in │ │ │ ├── config.charset │ │ │ ├── localcharset.c │ │ │ ├── ref-add.sin │ │ │ ├── ref-del.sin │ │ │ ├── relocatable.c │ │ │ └── relocatable.h │ │ ├── m4 │ │ │ ├── codeset.m4 │ │ │ ├── fcntl-o.m4 │ │ │ ├── glibc21.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ ├── relocatable-lib.m4 │ │ │ └── visibility.m4 │ │ └── tools │ │ │ ├── README │ │ │ ├── aix-3.2.5 │ │ │ ├── aix-4.1.5 │ │ │ ├── aix-4.2.0 │ │ │ ├── aix-4.3.2 │ │ │ ├── all-charsets │ │ │ ├── all-charsets-X11 │ │ │ ├── all-locales │ │ │ ├── beos-5 │ │ │ ├── cygwin-1.7.2 │ │ │ ├── darwin-6.8 │ │ │ ├── darwin-7.5 │ │ │ ├── darwin-9.5 │ │ │ ├── freebsd-3.3 │ │ │ ├── glibc-2.1.3 │ │ │ ├── glibc-2.1.90 │ │ │ ├── glibc-2.2 │ │ │ ├── glibc-2.2-XF86-3.3.6 │ │ │ ├── glibc-2.2-XF86-4.0.1f │ │ │ ├── hpux-10.01 │ │ │ ├── hpux-10.20 │ │ │ ├── hpux-11.00 │ │ │ ├── irix-6.5 │ │ │ ├── locale_charmap │ │ │ ├── locale_charset.c │ │ │ ├── locale_codeset.c │ │ │ ├── locale_monthnames.c │ │ │ ├── locale_x11encoding.c │ │ │ ├── netbsd-3.0 │ │ │ ├── openbsd-4.1 │ │ │ ├── osf1-4.0a │ │ │ ├── osf1-4.0d │ │ │ ├── osf1-5.1 │ │ │ ├── solaris-2.4 │ │ │ ├── solaris-2.5.1 │ │ │ ├── solaris-2.6 │ │ │ ├── solaris-2.6-cjk │ │ │ ├── solaris-2.7 │ │ │ ├── sunos-4.1.4 │ │ │ └── win32 │ ├── m4 │ │ ├── cp.m4 │ │ ├── eilseq.m4 │ │ ├── endian.m4 │ │ ├── fcntl-o.m4 │ │ ├── general.m4 │ │ ├── libtool.m4 │ │ ├── ln.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── proto.m4 │ ├── man │ │ ├── .cvsignore │ │ ├── Makefile.in │ │ ├── iconv.1 │ │ ├── iconv.3 │ │ ├── iconv_close.3 │ │ ├── iconv_open.3 │ │ ├── iconv_open_into.3 │ │ ├── iconv_open_into.3.html │ │ ├── iconvctl.3 │ │ └── iconvctl.3.html │ ├── os2 │ │ └── iconv.def │ ├── po │ │ ├── ChangeLog │ │ ├── LINGUAS │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── af.po │ │ ├── bg.po │ │ ├── boldquot.sed │ │ ├── ca.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── el.po │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── eo.po │ │ ├── es.po │ │ ├── et.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── ga.po │ │ ├── gl.po │ │ ├── hr.po │ │ ├── hu.po │ │ ├── id.po │ │ ├── insert-header.sin │ │ ├── it.po │ │ ├── ja.po │ │ ├── libiconv.pot │ │ ├── nl.po │ │ ├── pl.po │ │ ├── pt_BR.po │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── rm.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sl.po │ │ ├── sq.po │ │ ├── sr.po │ │ ├── sv.po │ │ ├── tr.po │ │ ├── uk.po │ │ ├── vi.po │ │ ├── wa.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── preload │ │ ├── Makefile.devel │ │ ├── Makefile.in │ │ └── configure.ac │ ├── src │ │ ├── .cvsignore │ │ ├── Makefile.in │ │ ├── iconv.c │ │ └── iconv_no_i18n.c │ ├── srclib │ │ └── Makefile.am │ ├── tests │ │ ├── .cvsignore │ │ ├── ARMSCII-8.IRREVERSIBLE.TXT │ │ ├── ARMSCII-8.TXT │ │ ├── ASCII.TXT │ │ ├── ATARIST.TXT │ │ ├── BIG5-2003.IRREVERSIBLE.TXT │ │ ├── BIG5-2003.TXT │ │ ├── BIG5-HKSCS-1999-snippet │ │ ├── BIG5-HKSCS-1999-snippet.UTF-8 │ │ ├── BIG5-HKSCS-1999.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-1999.TXT │ │ ├── BIG5-HKSCS-2001-snippet │ │ ├── BIG5-HKSCS-2001-snippet.UTF-8 │ │ ├── BIG5-HKSCS-2001.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-2001.TXT │ │ ├── BIG5-HKSCS-2004-snippet │ │ ├── BIG5-HKSCS-2004-snippet.UTF-8 │ │ ├── BIG5-HKSCS-2004.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-2004.TXT │ │ ├── BIG5-HKSCS-2008-snippet │ │ ├── BIG5-HKSCS-2008-snippet.UTF-8 │ │ ├── BIG5-HKSCS-2008.IRREVERSIBLE.TXT │ │ ├── BIG5-HKSCS-2008.TXT │ │ ├── BIG5.TXT │ │ ├── CP1046.TXT │ │ ├── CP1124.TXT │ │ ├── CP1125.TXT │ │ ├── CP1129.TXT │ │ ├── CP1131.TXT │ │ ├── CP1133.TXT │ │ ├── CP1161.IRREVERSIBLE.TXT │ │ ├── CP1161.TXT │ │ ├── CP1162.TXT │ │ ├── CP1163.IRREVERSIBLE.TXT │ │ ├── CP1163.TXT │ │ ├── CP1250.TXT │ │ ├── CP1251.TXT │ │ ├── CP1252.TXT │ │ ├── CP1253.TXT │ │ ├── CP1254.TXT │ │ ├── CP1255-snippet │ │ ├── CP1255-snippet.UTF-8 │ │ ├── CP1255.IRREVERSIBLE.TXT │ │ ├── CP1255.TXT │ │ ├── CP1256.TXT │ │ ├── CP1257.TXT │ │ ├── CP1258-snippet │ │ ├── CP1258-snippet.UTF-8 │ │ ├── CP1258.IRREVERSIBLE.TXT │ │ ├── CP1258.TXT │ │ ├── CP437.TXT │ │ ├── CP737.TXT │ │ ├── CP775.TXT │ │ ├── CP850.TXT │ │ ├── CP852.TXT │ │ ├── CP853.TXT │ │ ├── CP855.TXT │ │ ├── CP856.TXT │ │ ├── CP857.TXT │ │ ├── CP858.TXT │ │ ├── CP860.TXT │ │ ├── CP861.TXT │ │ ├── CP862.TXT │ │ ├── CP863.TXT │ │ ├── CP864.TXT │ │ ├── CP865.TXT │ │ ├── CP866.TXT │ │ ├── CP869.TXT │ │ ├── CP874.TXT │ │ ├── CP922.TXT │ │ ├── CP932.IRREVERSIBLE.TXT │ │ ├── CP932.TXT │ │ ├── CP936.TXT │ │ ├── CP949.TXT │ │ ├── CP950.IRREVERSIBLE.TXT │ │ ├── CP950.TXT │ │ ├── DEC-HANYU.IRREVERSIBLE.TXT │ │ ├── DEC-HANYU.TXT │ │ ├── DEC-KANJI.TXT │ │ ├── EUC-CN.TXT │ │ ├── EUC-JISX0213.TXT │ │ ├── EUC-JP.IRREVERSIBLE.TXT │ │ ├── EUC-JP.TXT │ │ ├── EUC-KR.TXT │ │ ├── EUC-TW.IRREVERSIBLE.TXT │ │ ├── EUC-TW.TXT │ │ ├── GB18030-BMP.TXT │ │ ├── GB18030.IRREVERSIBLE.TXT │ │ ├── GBK.TXT │ │ ├── Georgian-Academy.TXT │ │ ├── Georgian-PS.TXT │ │ ├── HP-ROMAN8.TXT │ │ ├── HZ-snippet │ │ ├── HZ-snippet.UTF-8 │ │ ├── ISO-2022-CN-EXT-snippet │ │ ├── ISO-2022-CN-EXT-snippet.UTF-8 │ │ ├── ISO-2022-CN-snippet │ │ ├── ISO-2022-CN-snippet.UTF-8 │ │ ├── ISO-2022-JP-1-snippet │ │ ├── ISO-2022-JP-1-snippet.UTF-8 │ │ ├── ISO-2022-JP-2-snippet │ │ ├── ISO-2022-JP-2-snippet.UTF-8 │ │ ├── ISO-2022-JP-3-snippet │ │ ├── ISO-2022-JP-3-snippet.UTF-8 │ │ ├── ISO-2022-JP-snippet │ │ ├── ISO-2022-JP-snippet.UTF-8 │ │ ├── ISO-2022-KR-snippet │ │ ├── ISO-2022-KR-snippet.UTF-8 │ │ ├── ISO-8859-1.TXT │ │ ├── ISO-8859-10.TXT │ │ ├── ISO-8859-11.TXT │ │ ├── ISO-8859-13.TXT │ │ ├── ISO-8859-14.TXT │ │ ├── ISO-8859-15.TXT │ │ ├── ISO-8859-16.TXT │ │ ├── ISO-8859-2.TXT │ │ ├── ISO-8859-3.TXT │ │ ├── ISO-8859-4.TXT │ │ ├── ISO-8859-5.TXT │ │ ├── ISO-8859-6.TXT │ │ ├── ISO-8859-7.TXT │ │ ├── ISO-8859-8.TXT │ │ ├── ISO-8859-9.TXT │ │ ├── ISO-IR-165.IRREVERSIBLE.TXT │ │ ├── ISO-IR-165.TXT │ │ ├── ISO646-CN.TXT │ │ ├── ISO646-JP.TXT │ │ ├── JIS_X0201.TXT │ │ ├── JOHAB.TXT │ │ ├── KOI8-R.TXT │ │ ├── KOI8-RU.TXT │ │ ├── KOI8-T.TXT │ │ ├── KOI8-U.TXT │ │ ├── MacArabic.TXT │ │ ├── MacCentralEurope.TXT │ │ ├── MacCroatian.TXT │ │ ├── MacCyrillic.TXT │ │ ├── MacGreek.TXT │ │ ├── MacHebrew.TXT │ │ ├── MacIceland.TXT │ │ ├── MacRoman.TXT │ │ ├── MacRomania.TXT │ │ ├── MacThai.TXT │ │ ├── MacTurkish.TXT │ │ ├── MacUkraine.TXT │ │ ├── Makefile.in │ │ ├── MuleLao-1.TXT │ │ ├── NEXTSTEP.TXT │ │ ├── PT154.TXT │ │ ├── Quotes.ASCII │ │ ├── Quotes.ISO-8859-1 │ │ ├── Quotes.UTF-8 │ │ ├── RISCOS-LATIN1.TXT │ │ ├── RK1048.TXT │ │ ├── SHIFT_JIS.TXT │ │ ├── SHIFT_JISX0213.TXT │ │ ├── TCVN-snippet │ │ ├── TCVN-snippet.UTF-8 │ │ ├── TCVN.IRREVERSIBLE.TXT │ │ ├── TCVN.TXT │ │ ├── TDS565.TXT │ │ ├── TIS-620.TXT │ │ ├── Translit1.ASCII │ │ ├── Translit1.ISO-8859-1 │ │ ├── TranslitFail1.ISO-8859-1 │ │ ├── UCS-2BE-snippet │ │ ├── UCS-2BE-snippet.UTF-8 │ │ ├── UCS-2LE-snippet │ │ ├── UCS-2LE-snippet.UTF-8 │ │ ├── UCS-4BE-snippet │ │ ├── UCS-4BE-snippet.UTF-8 │ │ ├── UCS-4LE-snippet │ │ ├── UCS-4LE-snippet.UTF-8 │ │ ├── UTF-16-snippet │ │ ├── UTF-16-snippet.UTF-8 │ │ ├── UTF-16BE-snippet │ │ ├── UTF-16BE-snippet.UTF-8 │ │ ├── UTF-16LE-snippet │ │ ├── UTF-16LE-snippet.UTF-8 │ │ ├── UTF-32-snippet │ │ ├── UTF-32-snippet.UTF-8 │ │ ├── UTF-32BE-snippet │ │ ├── UTF-32BE-snippet.UTF-8 │ │ ├── UTF-32LE-snippet │ │ ├── UTF-32LE-snippet.UTF-8 │ │ ├── UTF-7-snippet │ │ ├── UTF-7-snippet.UTF-8 │ │ ├── VISCII.TXT │ │ ├── check-stateful │ │ ├── check-stateful.bat │ │ ├── check-stateless │ │ ├── check-stateless.bat │ │ ├── check-subst │ │ ├── check-translit │ │ ├── check-translit.bat │ │ ├── check-translitfailure │ │ ├── gengb18030z.c │ │ ├── genutf8.c │ │ ├── table-from.c │ │ ├── table-to.c │ │ ├── test-shiftseq.c │ │ ├── test-to-wchar.c │ │ └── uniq-u.c │ ├── tools │ │ ├── 8bit_tab_to_h.c │ │ ├── JISX0213.TXT │ │ ├── Makefile │ │ ├── cjk_tab_to_h.c │ │ └── cjk_variants.c │ ├── windows │ │ ├── iconv.rc │ │ ├── libiconv.rc │ │ └── windres-options │ └── woe32dll │ │ ├── export.h │ │ └── iconv-exports.c ├── jsoncpp-chromium │ ├── LICENSE │ ├── README.chromium │ ├── jsoncpp.gyp │ └── overrides │ │ ├── include │ │ └── json │ │ │ └── value.h │ │ └── src │ │ └── lib_json │ │ └── json_value.cpp ├── jsoncpp │ ├── AUTHORS │ ├── LICENSE │ ├── NEWS.txt │ ├── README.txt │ ├── SConstruct │ ├── amalgamate.py │ ├── devtools │ │ ├── __init__.py │ │ ├── antglob.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ └── roadmap.dox │ ├── doxybuild.py │ ├── include │ │ └── json │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ └── writer.h │ ├── makefiles │ │ └── vs71 │ │ │ ├── jsoncpp.sln │ │ │ ├── jsontest.vcproj │ │ │ ├── lib_json.vcproj │ │ │ └── test_lib_json.vcproj │ ├── makerelease.py │ ├── scons-tools │ │ ├── globtool.py │ │ ├── srcdist.py │ │ ├── substinfile.py │ │ └── targz.py │ ├── src │ │ ├── jsontestrunner │ │ │ ├── main.cpp │ │ │ └── sconscript │ │ ├── lib_json │ │ │ ├── json_batchallocator.h │ │ │ ├── json_internalarray.inl │ │ │ ├── json_internalmap.inl │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ ├── json_writer.cpp │ │ │ └── sconscript │ │ └── test_lib_json │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ ├── main.cpp │ │ │ └── sconscript │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_test_array_01.json │ │ │ ├── test_array_01.expected │ │ │ ├── test_array_01.json │ │ │ ├── test_array_02.expected │ │ │ ├── test_array_02.json │ │ │ ├── test_array_03.expected │ │ │ ├── test_array_03.json │ │ │ ├── test_array_04.expected │ │ │ ├── test_array_04.json │ │ │ ├── test_array_05.expected │ │ │ ├── test_array_05.json │ │ │ ├── test_array_06.expected │ │ │ ├── test_array_06.json │ │ │ ├── test_array_07.expected │ │ │ ├── test_array_07.json │ │ │ ├── test_basic_01.expected │ │ │ ├── test_basic_01.json │ │ │ ├── test_basic_02.expected │ │ │ ├── test_basic_02.json │ │ │ ├── test_basic_03.expected │ │ │ ├── test_basic_03.json │ │ │ ├── test_basic_04.expected │ │ │ ├── test_basic_04.json │ │ │ ├── test_basic_05.expected │ │ │ ├── test_basic_05.json │ │ │ ├── test_basic_06.expected │ │ │ ├── test_basic_06.json │ │ │ ├── test_basic_07.expected │ │ │ ├── test_basic_07.json │ │ │ ├── test_basic_08.expected │ │ │ ├── test_basic_08.json │ │ │ ├── test_basic_09.expected │ │ │ ├── test_basic_09.json │ │ │ ├── test_comment_01.expected │ │ │ ├── test_comment_01.json │ │ │ ├── test_complex_01.expected │ │ │ ├── test_complex_01.json │ │ │ ├── test_integer_01.expected │ │ │ ├── test_integer_01.json │ │ │ ├── test_integer_02.expected │ │ │ ├── test_integer_02.json │ │ │ ├── test_integer_03.expected │ │ │ ├── test_integer_03.json │ │ │ ├── test_integer_04.expected │ │ │ ├── test_integer_04.json │ │ │ ├── test_integer_05.expected │ │ │ ├── test_integer_05.json │ │ │ ├── test_integer_06_64bits.expected │ │ │ ├── test_integer_06_64bits.json │ │ │ ├── test_integer_07_64bits.expected │ │ │ ├── test_integer_07_64bits.json │ │ │ ├── test_integer_08_64bits.expected │ │ │ ├── test_integer_08_64bits.json │ │ │ ├── test_large_01.expected │ │ │ ├── test_large_01.json │ │ │ ├── test_object_01.expected │ │ │ ├── test_object_01.json │ │ │ ├── test_object_02.expected │ │ │ ├── test_object_02.json │ │ │ ├── test_object_03.expected │ │ │ ├── test_object_03.json │ │ │ ├── test_object_04.expected │ │ │ ├── test_object_04.json │ │ │ ├── test_preserve_comment_01.expected │ │ │ ├── test_preserve_comment_01.json │ │ │ ├── test_real_01.expected │ │ │ ├── test_real_01.json │ │ │ ├── test_real_02.expected │ │ │ ├── test_real_02.json │ │ │ ├── test_real_03.expected │ │ │ ├── test_real_03.json │ │ │ ├── test_real_04.expected │ │ │ ├── test_real_04.json │ │ │ ├── test_real_05.expected │ │ │ ├── test_real_05.json │ │ │ ├── test_real_06.expected │ │ │ ├── test_real_06.json │ │ │ ├── test_real_07.expected │ │ │ ├── test_real_07.json │ │ │ ├── test_real_08.expected │ │ │ ├── test_real_08.json │ │ │ ├── test_real_09.expected │ │ │ ├── test_real_09.json │ │ │ ├── test_real_10.expected │ │ │ ├── test_real_10.json │ │ │ ├── test_real_11.expected │ │ │ ├── test_real_11.json │ │ │ ├── test_real_12.expected │ │ │ ├── test_real_12.json │ │ │ ├── test_string_01.expected │ │ │ ├── test_string_01.json │ │ │ ├── test_string_02.expected │ │ │ ├── test_string_02.json │ │ │ ├── test_string_03.expected │ │ │ ├── test_string_03.json │ │ │ ├── test_string_04.expected │ │ │ ├── test_string_04.json │ │ │ ├── test_string_05.expected │ │ │ ├── test_string_05.json │ │ │ ├── test_string_unicode_01.expected │ │ │ ├── test_string_unicode_01.json │ │ │ ├── test_string_unicode_02.expected │ │ │ ├── test_string_unicode_02.json │ │ │ ├── test_string_unicode_03.expected │ │ │ ├── test_string_unicode_03.json │ │ │ ├── test_string_unicode_04.expected │ │ │ ├── test_string_unicode_04.json │ │ │ ├── test_string_unicode_05.expected │ │ │ └── test_string_unicode_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version ├── libjpeg │ ├── ChangeLog.txt │ ├── LGPL.txt │ ├── LICENSE.txt │ ├── README │ ├── README-turbo.txt │ ├── README.chromium │ ├── bmp.c │ ├── bmp.h │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.c │ ├── config.h │ ├── djpeg.c │ ├── example.c │ ├── google.patch │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolext.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst-tj.c │ ├── jdatadst.c │ ├── jdatasrc-tj.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolext.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdmrgext.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemmgr.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegcomp.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpeglibmangler.h │ ├── jpegtran.c │ ├── jpegut.c │ ├── jpgtest.cxx │ ├── jquant1.c │ ├── jquant2.c │ ├── jsimd.h │ ├── jsimd_none.c │ ├── jsimddct.h │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.gyp │ ├── linux │ │ └── jsimdcfg.inc │ ├── mac │ │ └── jsimdcfg.inc │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── rrtimer.h │ ├── rrutil.h │ ├── simd │ │ ├── jcclrmmx.asm │ │ ├── jcclrss2-64.asm │ │ ├── jcclrss2.asm │ │ ├── jccolmmx.asm │ │ ├── jccolss2-64.asm │ │ ├── jccolss2.asm │ │ ├── jcgrammx.asm │ │ ├── jcgrass2-64.asm │ │ ├── jcgrass2.asm │ │ ├── jcgrymmx.asm │ │ ├── jcgryss2-64.asm │ │ ├── jcgryss2.asm │ │ ├── jcolsamp.inc │ │ ├── jcqnt3dn.asm │ │ ├── jcqntmmx.asm │ │ ├── jcqnts2f-64.asm │ │ ├── jcqnts2f.asm │ │ ├── jcqnts2i-64.asm │ │ ├── jcqnts2i.asm │ │ ├── jcqntsse.asm │ │ ├── jcsammmx.asm │ │ ├── jcsamss2-64.asm │ │ ├── jcsamss2.asm │ │ ├── jdclrmmx.asm │ │ ├── jdclrss2-64.asm │ │ ├── jdclrss2.asm │ │ ├── jdcolmmx.asm │ │ ├── jdcolss2-64.asm │ │ ├── jdcolss2.asm │ │ ├── jdct.inc │ │ ├── jdmermmx.asm │ │ ├── jdmerss2-64.asm │ │ ├── jdmerss2.asm │ │ ├── jdmrgmmx.asm │ │ ├── jdmrgss2-64.asm │ │ ├── jdmrgss2.asm │ │ ├── jdsammmx.asm │ │ ├── jdsamss2-64.asm │ │ ├── jdsamss2.asm │ │ ├── jf3dnflt.asm │ │ ├── jfmmxfst.asm │ │ ├── jfmmxint.asm │ │ ├── jfss2fst-64.asm │ │ ├── jfss2fst.asm │ │ ├── jfss2int-64.asm │ │ ├── jfss2int.asm │ │ ├── jfsseflt-64.asm │ │ ├── jfsseflt.asm │ │ ├── ji3dnflt.asm │ │ ├── jimmxfst.asm │ │ ├── jimmxint.asm │ │ ├── jimmxred.asm │ │ ├── jiss2flt-64.asm │ │ ├── jiss2flt.asm │ │ ├── jiss2fst-64.asm │ │ ├── jiss2fst.asm │ │ ├── jiss2int-64.asm │ │ ├── jiss2int.asm │ │ ├── jiss2red-64.asm │ │ ├── jiss2red.asm │ │ ├── jisseflt.asm │ │ ├── jsimd.h │ │ ├── jsimd_arm.c │ │ ├── jsimd_arm_neon.S │ │ ├── jsimd_i386.c │ │ ├── jsimd_x86_64.c │ │ ├── jsimdcfg.inc.h │ │ ├── jsimdcpu.asm │ │ └── jsimdext.inc │ ├── tjbench.c │ ├── tjunittest.c │ ├── tjutil.c │ ├── tjutil.h │ ├── transupp.c │ ├── transupp.h │ ├── turbojpeg-jni.c │ ├── turbojpeg.c │ ├── turbojpeg.h │ ├── turbojpegl.c │ ├── win │ │ ├── jconfig.h │ │ └── jsimdcfg.inc │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── libwebp │ ├── .mailmap │ ├── AUTHORS │ ├── Android.mk │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.vc │ ├── NEWS │ ├── PATENTS │ ├── README │ ├── README.mux │ ├── autogen.sh │ ├── configure.ac │ ├── doc │ │ ├── README │ │ ├── TODO │ │ ├── template.html │ │ ├── webp-container-spec.txt │ │ └── webp-lossless-bitstream-spec.txt │ ├── examples │ │ ├── Makefile.am │ │ ├── cwebp.c │ │ ├── dwebp.c │ │ ├── example_util.c │ │ ├── example_util.h │ │ ├── gif2webp.c │ │ ├── jpegdec.c │ │ ├── jpegdec.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── stopwatch.h │ │ ├── test.webp │ │ ├── test_ref.ppm │ │ ├── tiffdec.c │ │ ├── tiffdec.h │ │ ├── vwebp.c │ │ ├── webpmux.c │ │ ├── wicdec.c │ │ └── wicdec.h │ ├── iosbuild.sh │ ├── m4 │ │ └── ax_pthread.m4 │ ├── makefile.unix │ ├── man │ │ ├── Makefile.am │ │ ├── cwebp.1 │ │ ├── dwebp.1 │ │ ├── gif2webp.1 │ │ └── webpmux.1 │ ├── src │ │ ├── Makefile.am │ │ ├── dec │ │ │ ├── Makefile.am │ │ │ ├── alpha.c │ │ │ ├── buffer.c │ │ │ ├── decode_vp8.h │ │ │ ├── frame.c │ │ │ ├── idec.c │ │ │ ├── io.c │ │ │ ├── layer.c │ │ │ ├── quant.c │ │ │ ├── tree.c │ │ │ ├── vp8.c │ │ │ ├── vp8i.h │ │ │ ├── vp8l.c │ │ │ ├── vp8li.h │ │ │ ├── webp.c │ │ │ └── webpi.h │ │ ├── demux │ │ │ ├── Makefile.am │ │ │ ├── demux.c │ │ │ └── libwebpdemux.pc.in │ │ ├── dsp │ │ │ ├── Makefile.am │ │ │ ├── cpu.c │ │ │ ├── dec.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── upsampling.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── yuv.c │ │ │ └── yuv.h │ │ ├── enc │ │ │ ├── Makefile.am │ │ │ ├── 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 │ │ │ ├── picture.c │ │ │ ├── quant.c │ │ │ ├── syntax.c │ │ │ ├── token.c │ │ │ ├── tree.c │ │ │ ├── vp8enci.h │ │ │ ├── vp8l.c │ │ │ ├── vp8li.h │ │ │ └── webpenc.c │ │ ├── libwebp.pc.in │ │ ├── libwebpdecoder.pc.in │ │ ├── mux │ │ │ ├── Makefile.am │ │ │ ├── libwebpmux.pc.in │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── 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.h │ │ │ ├── huffman_encode.c │ │ │ ├── huffman_encode.h │ │ │ ├── quant_levels.c │ │ │ ├── quant_levels.h │ │ │ ├── quant_levels_dec.c │ │ │ ├── quant_levels_dec.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler.h │ │ │ ├── thread.c │ │ │ ├── thread.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── webp │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ └── swig │ │ ├── README │ │ ├── libwebp.i │ │ ├── libwebp.jar │ │ ├── libwebp.py │ │ ├── libwebp_java_wrap.c │ │ ├── libwebp_python_wrap.c │ │ └── setup.py └── poppler │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING3 │ ├── ConfigureChecks.cmake │ ├── INSTALL │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README-XPDF │ ├── README.contributors │ ├── TODO │ ├── autogen.sh │ ├── cmake │ └── modules │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindCairo.cmake │ │ ├── FindFontconfig.cmake │ │ ├── FindGLIB.cmake │ │ ├── FindGObjectIntrospection.cmake │ │ ├── FindGTK.cmake │ │ ├── FindIconv.cmake │ │ ├── FindLCMS.cmake │ │ ├── FindLCMS2.cmake │ │ ├── FindLIBOPENJPEG.cmake │ │ ├── FindQt4.cmake │ │ ├── GObjectIntrospectionMacros.cmake │ │ ├── MacroBoolTo01.cmake │ │ ├── MacroEnsureVersion.cmake │ │ ├── MacroOptionalFindPackage.cmake │ │ ├── MacroPushRequiredVars.cmake │ │ ├── PopplerDefaults.cmake │ │ └── PopplerMacros.cmake │ ├── config.h.cmake │ ├── configure.ac │ ├── cpp │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── Mainpage.dox │ ├── Makefile.am │ ├── PNMWriter.cc │ ├── PNMWriter.h │ ├── poppler-document-private.h │ ├── poppler-document.cpp │ ├── poppler-document.h │ ├── poppler-embedded-file-private.h │ ├── poppler-embedded-file.cpp │ ├── poppler-embedded-file.h │ ├── poppler-font.cpp │ ├── poppler-font.h │ ├── poppler-global.cpp │ ├── poppler-global.h │ ├── poppler-image-private.h │ ├── poppler-image.cpp │ ├── poppler-image.h │ ├── poppler-page-private.h │ ├── poppler-page-renderer.cpp │ ├── poppler-page-renderer.h │ ├── poppler-page-transition.cpp │ ├── poppler-page-transition.h │ ├── poppler-page.cpp │ ├── poppler-page.h │ ├── poppler-private.cpp │ ├── poppler-private.h │ ├── poppler-rectangle.cpp │ ├── poppler-rectangle.h │ ├── poppler-toc-private.h │ ├── poppler-toc.cpp │ ├── poppler-toc.h │ ├── poppler-version.cpp │ ├── poppler-version.h.in │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── poppler-dump.cpp │ │ └── poppler-render.cpp │ ├── fofi │ ├── FoFiBase.cc │ ├── FoFiBase.h │ ├── FoFiEncodings.cc │ ├── FoFiEncodings.h │ ├── FoFiIdentifier.cc │ ├── FoFiIdentifier.h │ ├── FoFiTrueType.cc │ ├── FoFiTrueType.h │ ├── FoFiType1.cc │ ├── FoFiType1.h │ ├── FoFiType1C.cc │ ├── FoFiType1C.h │ └── Makefile.am │ ├── glib │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── demo │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── annots.c │ │ ├── annots.h │ │ ├── attachments.c │ │ ├── attachments.h │ │ ├── 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 │ │ ├── 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 │ ├── poppler-action.cc │ ├── poppler-action.h │ ├── poppler-annot.cc │ ├── poppler-annot.h │ ├── poppler-attachment.cc │ ├── poppler-attachment.h │ ├── poppler-cached-file-loader.cc │ ├── poppler-cached-file-loader.h │ ├── poppler-date.cc │ ├── poppler-date.h │ ├── poppler-document.cc │ ├── poppler-document.h │ ├── poppler-enums.c.template │ ├── poppler-enums.h.template │ ├── poppler-features.h.cmake │ ├── poppler-features.h.in │ ├── poppler-form-field.cc │ ├── poppler-form-field.h │ ├── poppler-input-stream.cc │ ├── poppler-input-stream.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 │ ├── poppler.cc │ ├── poppler.gidl │ ├── poppler.h │ └── reference │ │ ├── Makefile.am │ │ ├── poppler-docs.sgml │ │ ├── poppler-overrides.txt │ │ ├── poppler-sections.txt │ │ ├── poppler.types │ │ └── version.xml.in │ ├── goo │ ├── FixedPoint.cc │ ├── FixedPoint.h │ ├── GooHash.cc │ ├── GooHash.h │ ├── GooLikely.h │ ├── GooList.cc │ ├── GooList.h │ ├── GooMutex.h │ ├── GooString.cc │ ├── GooString.h │ ├── GooTimer.cc │ ├── GooTimer.h │ ├── ImgWriter.cc │ ├── ImgWriter.h │ ├── JpegWriter.cc │ ├── JpegWriter.h │ ├── Makefile.am │ ├── PNGWriter.cc │ ├── PNGWriter.h │ ├── TiffWriter.cc │ ├── TiffWriter.h │ ├── gfile.cc │ ├── gfile.h │ ├── gmem.cc │ ├── gmem.h │ ├── gmempp.cc │ ├── grandom.cc │ ├── grandom.h │ ├── gstrtod.cc │ ├── gstrtod.h │ ├── gtypes.h │ └── gtypes_p.h │ ├── gtk-doc.make │ ├── m4 │ ├── acx_pthread.m4 │ ├── define-dir.m4 │ ├── gtk-doc.m4 │ ├── iconv.m4 │ ├── introspection.m4 │ └── libjpeg.m4 │ ├── poppler-cairo-uninstalled.pc.in │ ├── poppler-cairo.pc.cmake │ ├── poppler-cairo.pc.in │ ├── poppler-cpp-uninstalled.pc.in │ ├── poppler-cpp.pc.cmake │ ├── poppler-cpp.pc.in │ ├── poppler-glib-uninstalled.pc.in │ ├── poppler-glib.pc.cmake │ ├── poppler-glib.pc.in │ ├── poppler-qt4-uninstalled.pc.in │ ├── poppler-qt4.pc.cmake │ ├── poppler-qt4.pc.in │ ├── poppler-splash-uninstalled.pc.in │ ├── poppler-splash.pc.cmake │ ├── poppler-splash.pc.in │ ├── poppler-uninstalled.pc.in │ ├── poppler.pc.cmake │ ├── poppler.pc.in │ ├── poppler │ ├── Annot.cc │ ├── Annot.h │ ├── Array.cc │ ├── Array.h │ ├── ArthurOutputDev.cc │ ├── ArthurOutputDev.h │ ├── BuiltinFont.cc │ ├── BuiltinFont.h │ ├── BuiltinFontTables.cc │ ├── BuiltinFontTables.h │ ├── CMap.cc │ ├── CMap.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 │ ├── CompactFontTables.h │ ├── CurlCachedFile.cc │ ├── CurlCachedFile.h │ ├── CurlPDFDocBuilder.cc │ ├── CurlPDFDocBuilder.h │ ├── DCTStream.cc │ ├── DCTStream.h │ ├── DateInfo.cc │ ├── DateInfo.h │ ├── Decrypt.cc │ ├── Decrypt.h │ ├── Dict.cc │ ├── Dict.h │ ├── Error.cc │ ├── Error.h │ ├── ErrorCodes.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 │ ├── Gfx.cc │ ├── Gfx.h │ ├── GfxFont.cc │ ├── GfxFont.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 │ ├── 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 │ ├── PDFDoc.cc │ ├── PDFDoc.h │ ├── PDFDocBuilder.h │ ├── PDFDocEncoding.cc │ ├── PDFDocEncoding.h │ ├── PDFDocFactory.cc │ ├── PDFDocFactory.h │ ├── PSOutputDev.cc │ ├── PSOutputDev.h │ ├── PSTokenizer.cc │ ├── PSTokenizer.h │ ├── Page.cc │ ├── Page.h │ ├── PageLabelInfo.cc │ ├── PageLabelInfo.h │ ├── PageTransition.cc │ ├── PageTransition.h │ ├── Parser.cc │ ├── Parser.h │ ├── PopplerCache.cc │ ├── PopplerCache.h │ ├── PreScanOutputDev.cc │ ├── PreScanOutputDev.h │ ├── ProfileData.cc │ ├── ProfileData.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-CCITT.h │ ├── Stream.cc │ ├── Stream.h │ ├── TextOutputDev.cc │ ├── TextOutputDev.h │ ├── UTF.cc │ ├── UTF.h │ ├── UTF8.h │ ├── UnicodeCClassTables.h │ ├── UnicodeCompTables.h │ ├── UnicodeDecompTables.h │ ├── UnicodeMap.cc │ ├── UnicodeMap.h │ ├── UnicodeMapTables.h │ ├── UnicodeTypeTable.cc │ ├── UnicodeTypeTable.h │ ├── ViewerPreferences.cc │ ├── ViewerPreferences.h │ ├── XRef.cc │ ├── XRef.h │ ├── XpdfPluginAPI.cc │ ├── XpdfPluginAPI.h │ ├── gen-unicode-tables.py │ ├── poppler-config.h.cmake │ ├── poppler-config.h.in │ └── strtok_r.cpp │ ├── qt4 │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── abstractinfodock.cpp │ │ ├── abstractinfodock.h │ │ ├── documentobserver.cpp │ │ ├── documentobserver.h │ │ ├── embeddedfiles.cpp │ │ ├── embeddedfiles.h │ │ ├── fonts.cpp │ │ ├── fonts.h │ │ ├── info.cpp │ │ ├── info.h │ │ ├── main_viewer.cpp │ │ ├── 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 │ ├── src │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ ├── Mainpage.dox │ │ ├── Makefile.am │ │ ├── poppler-annotation-helper.h │ │ ├── poppler-annotation-private.h │ │ ├── poppler-annotation.cc │ │ ├── poppler-annotation.h │ │ ├── poppler-base-converter.cc │ │ ├── poppler-converter-private.h │ │ ├── poppler-document.cc │ │ ├── poppler-embeddedfile-private.h │ │ ├── poppler-embeddedfile.cc │ │ ├── poppler-export.h │ │ ├── poppler-fontinfo.cc │ │ ├── poppler-form.cc │ │ ├── poppler-form.h │ │ ├── poppler-link-extractor-private.h │ │ ├── poppler-link-extractor.cc │ │ ├── poppler-link.cc │ │ ├── poppler-link.h │ │ ├── poppler-media.cc │ │ ├── poppler-media.h │ │ ├── poppler-movie.cc │ │ ├── poppler-optcontent-private.h │ │ ├── poppler-optcontent.cc │ │ ├── poppler-optcontent.h │ │ ├── poppler-page-private.h │ │ ├── poppler-page-transition-private.h │ │ ├── poppler-page-transition.cc │ │ ├── poppler-page-transition.h │ │ ├── poppler-page.cc │ │ ├── poppler-pdf-converter.cc │ │ ├── poppler-private.cc │ │ ├── poppler-private.h │ │ ├── poppler-ps-converter.cc │ │ ├── poppler-qiodeviceoutstream-private.h │ │ ├── poppler-qiodeviceoutstream.cc │ │ ├── poppler-qt4.h │ │ ├── poppler-sound.cc │ │ └── poppler-textbox.cc │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── README.unittest │ │ ├── check_actualtext.cpp │ │ ├── check_attachments.cpp │ │ ├── check_dateConversion.cpp │ │ ├── check_fonts.cpp │ │ ├── check_lexer.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 │ │ ├── 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 │ ├── regtest │ ├── Bisect.py │ ├── Config.py │ ├── HTMLReport.py │ ├── Printer.py │ ├── TestReferences.py │ ├── TestRun.py │ ├── Timer.py │ ├── Utils.py │ ├── backends │ │ ├── __init__.py │ │ ├── cairo.py │ │ ├── postscript.py │ │ ├── splash.py │ │ └── text.py │ ├── builder │ │ ├── __init__.py │ │ └── autotools.py │ ├── commands │ │ ├── __init__.py │ │ ├── create-refs.py │ │ ├── create-report.py │ │ ├── find-regression.py │ │ └── run-tests.py │ ├── main.py │ └── poppler-regtest │ ├── splash │ ├── Makefile.am │ ├── Splash.cc │ ├── Splash.h │ ├── SplashBitmap.cc │ ├── SplashBitmap.h │ ├── SplashClip.cc │ ├── SplashClip.h │ ├── SplashErrorCodes.h │ ├── SplashFTFont.cc │ ├── SplashFTFont.h │ ├── SplashFTFontEngine.cc │ ├── SplashFTFontEngine.h │ ├── SplashFTFontFile.cc │ ├── SplashFTFontFile.h │ ├── SplashFont.cc │ ├── SplashFont.h │ ├── SplashFontEngine.cc │ ├── SplashFontEngine.h │ ├── SplashFontFile.cc │ ├── SplashFontFile.h │ ├── SplashFontFileID.cc │ ├── SplashFontFileID.h │ ├── SplashGlyphBitmap.h │ ├── SplashMath.h │ ├── SplashPath.cc │ ├── SplashPath.h │ ├── SplashPattern.cc │ ├── SplashPattern.h │ ├── SplashScreen.cc │ ├── SplashScreen.h │ ├── SplashState.cc │ ├── SplashState.h │ ├── SplashT1Font.cc │ ├── SplashT1Font.h │ ├── SplashT1FontEngine.cc │ ├── SplashT1FontEngine.h │ ├── SplashT1FontFile.cc │ ├── SplashT1FontFile.h │ ├── SplashTypes.h │ ├── SplashXPath.cc │ ├── SplashXPath.h │ ├── SplashXPathScanner.cc │ └── SplashXPathScanner.h │ ├── test │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── gtk-test.cc │ ├── pdf-fullrewrite.cc │ ├── pdf-inspector.cc │ ├── pdf-inspector.ui │ ├── pdf-operators.c │ ├── perf-test-preview-dummy.cc │ ├── perf-test-preview-win.cc │ └── perf-test.cc │ └── utils │ ├── CMakeLists.txt │ ├── HtmlFonts.cc │ ├── HtmlFonts.h │ ├── HtmlLinks.cc │ ├── HtmlLinks.h │ ├── HtmlOutputDev.cc │ ├── HtmlOutputDev.h │ ├── HtmlUtils.h │ ├── ImageOutputDev.cc │ ├── ImageOutputDev.h │ ├── Makefile.am │ ├── parseargs.cc │ ├── parseargs.h │ ├── pdf2xml.dtd │ ├── pdfdetach.1 │ ├── pdfdetach.cc │ ├── pdffonts.1 │ ├── pdffonts.cc │ ├── pdfimages.1 │ ├── pdfimages.cc │ ├── pdfinfo.1 │ ├── pdfinfo.cc │ ├── pdfseparate.1 │ ├── pdfseparate.cc │ ├── pdftocairo.1 │ ├── pdftocairo.cc │ ├── pdftohtml.1 │ ├── pdftohtml.cc │ ├── pdftoppm.1 │ ├── pdftoppm.cc │ ├── pdftops.1 │ ├── pdftops.cc │ ├── pdftotext.1 │ ├── pdftotext.cc │ ├── pdfunite.1 │ ├── pdfunite.cc │ ├── printencodings.cc │ └── printencodings.h ├── fontconfig ├── LICENSE ├── LICENSE.win ├── README.chromium ├── config │ ├── fc-case │ │ └── fccase.h │ ├── fc-glyphname │ │ └── fcglyphname.h │ ├── fc-lang │ │ └── fclang.h │ ├── mac │ │ ├── config.h.template │ │ ├── fcstdint.h │ │ └── src │ │ │ ├── fcalias.h │ │ │ ├── fcaliastail.h │ │ │ ├── fcftalias.h │ │ │ └── fcftaliastail.h │ ├── src │ │ └── fcobjshash.h │ └── windows │ │ ├── config.h │ │ ├── dirent.c │ │ ├── dirent.h │ │ ├── fcstdint.h │ │ ├── src │ │ ├── fcalias.h │ │ ├── fcaliastail.h │ │ ├── fcftalias.h │ │ └── fcftaliastail.h │ │ └── unistd.h └── process-template.py ├── freetype └── include_overrides │ └── freetype │ └── config │ ├── ftmodule.h │ └── ftoption.h ├── harfbuzz ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.google ├── autogen.sh ├── chromium.patch ├── config.h ├── configure.ac ├── contrib │ ├── README │ ├── harfbuzz-freetype.c │ ├── harfbuzz-freetype.h │ ├── harfbuzz-unicode-glib.c │ ├── harfbuzz-unicode-tables.c │ ├── harfbuzz-unicode.c │ ├── harfbuzz-unicode.h │ └── tables │ │ ├── BidiMirroring.txt │ │ ├── DerivedCombiningClass.txt │ │ ├── DerivedGeneralCategory.txt │ │ ├── GraphemeBreakProperty.txt │ │ ├── README │ │ ├── Scripts.txt │ │ ├── category-parse.py │ │ ├── category-properties.h │ │ ├── combining-class-parse.py │ │ ├── combining-properties.h │ │ ├── grapheme-break-parse.py │ │ ├── grapheme-break-properties.h │ │ ├── mirroring-parse.py │ │ ├── mirroring-properties.h │ │ ├── script-properties.h │ │ ├── scripts-parse.py │ │ └── unicode_parse_common.py ├── harfbuzz.gyp ├── src │ ├── Makefile.am │ ├── harfbuzz-arabic.c │ ├── harfbuzz-buffer-private.h │ ├── harfbuzz-buffer.c │ ├── harfbuzz-buffer.h │ ├── harfbuzz-dump-main.c │ ├── harfbuzz-dump.c │ ├── harfbuzz-dump.h │ ├── harfbuzz-external.h │ ├── harfbuzz-gdef-private.h │ ├── harfbuzz-gdef.c │ ├── harfbuzz-gdef.h │ ├── harfbuzz-global.h │ ├── harfbuzz-gpos-private.h │ ├── harfbuzz-gpos.c │ ├── harfbuzz-gpos.h │ ├── harfbuzz-gsub-private.h │ ├── harfbuzz-gsub.c │ ├── harfbuzz-gsub.h │ ├── harfbuzz-hangul.c │ ├── harfbuzz-hebrew.c │ ├── harfbuzz-impl.c │ ├── harfbuzz-impl.h │ ├── harfbuzz-indic.cpp │ ├── harfbuzz-khmer.c │ ├── harfbuzz-myanmar.c │ ├── harfbuzz-open-private.h │ ├── harfbuzz-open.c │ ├── harfbuzz-open.h │ ├── harfbuzz-shape.h │ ├── harfbuzz-shaper-all.cpp │ ├── harfbuzz-shaper-private.h │ ├── harfbuzz-shaper.cpp │ ├── harfbuzz-shaper.h │ ├── harfbuzz-stream-private.h │ ├── harfbuzz-stream.c │ ├── harfbuzz-stream.h │ ├── harfbuzz-thai.c │ ├── harfbuzz-tibetan.c │ ├── harfbuzz.c │ └── harfbuzz.h └── tests │ ├── Makefile.am │ ├── linebreaking │ ├── Makefile.am │ ├── harfbuzz-qt.cpp │ └── main.cpp │ └── shaping │ ├── Makefile.am │ ├── README │ └── main.cpp ├── iconv ├── LICENSE ├── README.chromium └── config │ ├── aliases.h │ ├── canonical.h │ ├── canonical_dos.h │ ├── canonical_local.h │ ├── flags.h │ └── windows │ ├── config.h │ ├── iconv.h │ └── localcharset.h ├── lua ├── Makefile ├── README ├── doc │ ├── contents.html │ ├── logo.gif │ ├── lua.1 │ ├── lua.css │ ├── luac.1 │ ├── manual.css │ ├── manual.html │ ├── osi-certified-72x60.png │ └── readme.html └── src │ ├── Makefile │ ├── 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 │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h └── poppler ├── LICENSE ├── README.chromium └── config ├── linux ├── config.h └── poppler-config.h ├── mac ├── config.h └── poppler-config.h ├── poppler-version.h └── windows ├── config.h └── poppler-config.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/README.md -------------------------------------------------------------------------------- /cmake_2008/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/CMakeLists.txt -------------------------------------------------------------------------------- /cmake_2008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/README.md -------------------------------------------------------------------------------- /cmake_2008/cmake_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/cmake_build -------------------------------------------------------------------------------- /cmake_2008/include/skia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/include/skia.h -------------------------------------------------------------------------------- /cmake_2008/skia.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/skia.vcproj -------------------------------------------------------------------------------- /cmake_2008/skimake.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/skimake.sln -------------------------------------------------------------------------------- /cmake_2008/skimake.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/cmake_2008/skimake.suo -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/demo.png -------------------------------------------------------------------------------- /include/config/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/config/stdint.h -------------------------------------------------------------------------------- /include/core/SkBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkBitmap.h -------------------------------------------------------------------------------- /include/core/SkBlitRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkBlitRow.h -------------------------------------------------------------------------------- /include/core/SkBounder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkBounder.h -------------------------------------------------------------------------------- /include/core/SkCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkCanvas.h -------------------------------------------------------------------------------- /include/core/SkChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkChecksum.h -------------------------------------------------------------------------------- /include/core/SkClipStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkClipStack.h -------------------------------------------------------------------------------- /include/core/SkColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkColor.h -------------------------------------------------------------------------------- /include/core/SkColorPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkColorPriv.h -------------------------------------------------------------------------------- /include/core/SkData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkData.h -------------------------------------------------------------------------------- /include/core/SkDataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDataTable.h -------------------------------------------------------------------------------- /include/core/SkDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDeque.h -------------------------------------------------------------------------------- /include/core/SkDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDevice.h -------------------------------------------------------------------------------- /include/core/SkDither.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDither.h -------------------------------------------------------------------------------- /include/core/SkDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDocument.h -------------------------------------------------------------------------------- /include/core/SkDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkDraw.h -------------------------------------------------------------------------------- /include/core/SkEndian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkEndian.h -------------------------------------------------------------------------------- /include/core/SkError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkError.h -------------------------------------------------------------------------------- /include/core/SkFixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkFixed.h -------------------------------------------------------------------------------- /include/core/SkFlate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkFlate.h -------------------------------------------------------------------------------- /include/core/SkFloatBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkFloatBits.h -------------------------------------------------------------------------------- /include/core/SkFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkFont.h -------------------------------------------------------------------------------- /include/core/SkFontHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkFontHost.h -------------------------------------------------------------------------------- /include/core/SkGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkGeometry.h -------------------------------------------------------------------------------- /include/core/SkGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkGraphics.h -------------------------------------------------------------------------------- /include/core/SkImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkImage.h -------------------------------------------------------------------------------- /include/core/SkImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkImageInfo.h -------------------------------------------------------------------------------- /include/core/SkInstCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkInstCnt.h -------------------------------------------------------------------------------- /include/core/SkMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkMask.h -------------------------------------------------------------------------------- /include/core/SkMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkMath.h -------------------------------------------------------------------------------- /include/core/SkMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkMatrix.h -------------------------------------------------------------------------------- /include/core/SkMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkMetaData.h -------------------------------------------------------------------------------- /include/core/SkOSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkOSFile.h -------------------------------------------------------------------------------- /include/core/SkOnce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkOnce.h -------------------------------------------------------------------------------- /include/core/SkPackBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPackBits.h -------------------------------------------------------------------------------- /include/core/SkPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPaint.h -------------------------------------------------------------------------------- /include/core/SkPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPath.h -------------------------------------------------------------------------------- /include/core/SkPathRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPathRef.h -------------------------------------------------------------------------------- /include/core/SkPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPicture.h -------------------------------------------------------------------------------- /include/core/SkPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPixelRef.h -------------------------------------------------------------------------------- /include/core/SkPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPoint.h -------------------------------------------------------------------------------- /include/core/SkPreConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkPreConfig.h -------------------------------------------------------------------------------- /include/core/SkRRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkRRect.h -------------------------------------------------------------------------------- /include/core/SkReader32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkReader32.h -------------------------------------------------------------------------------- /include/core/SkRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkRect.h -------------------------------------------------------------------------------- /include/core/SkRefCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkRefCnt.h -------------------------------------------------------------------------------- /include/core/SkRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkRegion.h -------------------------------------------------------------------------------- /include/core/SkScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkScalar.h -------------------------------------------------------------------------------- /include/core/SkShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkShader.h -------------------------------------------------------------------------------- /include/core/SkSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkSize.h -------------------------------------------------------------------------------- /include/core/SkStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkStream.h -------------------------------------------------------------------------------- /include/core/SkString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkString.h -------------------------------------------------------------------------------- /include/core/SkStrokeRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkStrokeRec.h -------------------------------------------------------------------------------- /include/core/SkSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkSurface.h -------------------------------------------------------------------------------- /include/core/SkTArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTArray.h -------------------------------------------------------------------------------- /include/core/SkTDArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTDArray.h -------------------------------------------------------------------------------- /include/core/SkTDStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTDStack.h -------------------------------------------------------------------------------- /include/core/SkTDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTDict.h -------------------------------------------------------------------------------- /include/core/SkTLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTLazy.h -------------------------------------------------------------------------------- /include/core/SkTRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTRegistry.h -------------------------------------------------------------------------------- /include/core/SkTSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTSearch.h -------------------------------------------------------------------------------- /include/core/SkTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTemplates.h -------------------------------------------------------------------------------- /include/core/SkThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkThread.h -------------------------------------------------------------------------------- /include/core/SkTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTime.h -------------------------------------------------------------------------------- /include/core/SkTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTypeface.h -------------------------------------------------------------------------------- /include/core/SkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkTypes.h -------------------------------------------------------------------------------- /include/core/SkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkUtils.h -------------------------------------------------------------------------------- /include/core/SkWriter32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkWriter32.h -------------------------------------------------------------------------------- /include/core/SkXfermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/core/SkXfermode.h -------------------------------------------------------------------------------- /include/gpu/GrClipData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrClipData.h -------------------------------------------------------------------------------- /include/gpu/GrColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrColor.h -------------------------------------------------------------------------------- /include/gpu/GrConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrConfig.h -------------------------------------------------------------------------------- /include/gpu/GrContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrContext.h -------------------------------------------------------------------------------- /include/gpu/GrDrawEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrDrawEffect.h -------------------------------------------------------------------------------- /include/gpu/GrEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrEffect.h -------------------------------------------------------------------------------- /include/gpu/GrFontScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrFontScaler.h -------------------------------------------------------------------------------- /include/gpu/GrGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrGlyph.h -------------------------------------------------------------------------------- /include/gpu/GrKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrKey.h -------------------------------------------------------------------------------- /include/gpu/GrPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrPaint.h -------------------------------------------------------------------------------- /include/gpu/GrPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrPoint.h -------------------------------------------------------------------------------- /include/gpu/GrRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrRect.h -------------------------------------------------------------------------------- /include/gpu/GrResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrResource.h -------------------------------------------------------------------------------- /include/gpu/GrSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrSurface.h -------------------------------------------------------------------------------- /include/gpu/GrTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrTexture.h -------------------------------------------------------------------------------- /include/gpu/GrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrTypes.h -------------------------------------------------------------------------------- /include/gpu/GrTypesPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrTypesPriv.h -------------------------------------------------------------------------------- /include/gpu/GrUserConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/GrUserConfig.h -------------------------------------------------------------------------------- /include/gpu/SkGpuDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/SkGpuDevice.h -------------------------------------------------------------------------------- /include/gpu/SkGr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/SkGr.h -------------------------------------------------------------------------------- /include/gpu/SkGrPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/gpu/SkGrPixelRef.h -------------------------------------------------------------------------------- /include/images/SkImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/images/SkImages.h -------------------------------------------------------------------------------- /include/images/SkMovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/images/SkMovie.h -------------------------------------------------------------------------------- /include/pdf/SkPDFDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/pdf/SkPDFDevice.h -------------------------------------------------------------------------------- /include/pipe/SkGPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/pipe/SkGPipe.h -------------------------------------------------------------------------------- /include/ports/SkFontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/ports/SkFontMgr.h -------------------------------------------------------------------------------- /include/svg/SkSVGBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/svg/SkSVGBase.h -------------------------------------------------------------------------------- /include/svg/SkSVGParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/svg/SkSVGParser.h -------------------------------------------------------------------------------- /include/svg/SkSVGTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/svg/SkSVGTypes.h -------------------------------------------------------------------------------- /include/utils/SkCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkCamera.h -------------------------------------------------------------------------------- /include/utils/SkCondVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkCondVar.h -------------------------------------------------------------------------------- /include/utils/SkJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkJSON.h -------------------------------------------------------------------------------- /include/utils/SkJSONCPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkJSONCPP.h -------------------------------------------------------------------------------- /include/utils/SkLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkLayer.h -------------------------------------------------------------------------------- /include/utils/SkLua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkLua.h -------------------------------------------------------------------------------- /include/utils/SkMatrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkMatrix44.h -------------------------------------------------------------------------------- /include/utils/SkParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkParse.h -------------------------------------------------------------------------------- /include/utils/SkRTConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkRTConf.h -------------------------------------------------------------------------------- /include/utils/SkRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkRandom.h -------------------------------------------------------------------------------- /include/utils/SkRunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkRunnable.h -------------------------------------------------------------------------------- /include/utils/SkWGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/utils/SkWGL.h -------------------------------------------------------------------------------- /include/views/SkEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkEvent.h -------------------------------------------------------------------------------- /include/views/SkKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkKey.h -------------------------------------------------------------------------------- /include/views/SkOSMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkOSMenu.h -------------------------------------------------------------------------------- /include/views/SkTextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkTextBox.h -------------------------------------------------------------------------------- /include/views/SkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkView.h -------------------------------------------------------------------------------- /include/views/SkWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkWidget.h -------------------------------------------------------------------------------- /include/views/SkWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/views/SkWindow.h -------------------------------------------------------------------------------- /include/xml/SkDOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/xml/SkDOM.h -------------------------------------------------------------------------------- /include/xml/SkJS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/xml/SkJS.h -------------------------------------------------------------------------------- /include/xml/SkXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/xml/SkXMLParser.h -------------------------------------------------------------------------------- /include/xml/SkXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/include/xml/SkXMLWriter.h -------------------------------------------------------------------------------- /out_2008/alltargets.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/alltargets.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/SampleApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/SampleApp.sln -------------------------------------------------------------------------------- /out_2008/gyp/SampleApp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/SampleApp.suo -------------------------------------------------------------------------------- /out_2008/gyp/angle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/angle.sln -------------------------------------------------------------------------------- /out_2008/gyp/angle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/angle.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/animator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/animator.sln -------------------------------------------------------------------------------- /out_2008/gyp/bench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/bench.sln -------------------------------------------------------------------------------- /out_2008/gyp/bench.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/bench.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/core.sln -------------------------------------------------------------------------------- /out_2008/gyp/core.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/core.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/debugger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/debugger.sln -------------------------------------------------------------------------------- /out_2008/gyp/dm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/dm.sln -------------------------------------------------------------------------------- /out_2008/gyp/dm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/dm.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/effects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/effects.sln -------------------------------------------------------------------------------- /out_2008/gyp/filter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/filter.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/flags.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/flags.sln -------------------------------------------------------------------------------- /out_2008/gyp/flags.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/flags.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/freetype.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/freetype.sln -------------------------------------------------------------------------------- /out_2008/gyp/gm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/gm.sln -------------------------------------------------------------------------------- /out_2008/gyp/gm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/gm.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/gpu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/gpu.sln -------------------------------------------------------------------------------- /out_2008/gyp/gputest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/gputest.sln -------------------------------------------------------------------------------- /out_2008/gyp/iconv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/iconv.sln -------------------------------------------------------------------------------- /out_2008/gyp/iconv.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/iconv.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/images.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/images.sln -------------------------------------------------------------------------------- /out_2008/gyp/images.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/images.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/jsoncpp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/jsoncpp.sln -------------------------------------------------------------------------------- /out_2008/gyp/libjpeg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/libjpeg.sln -------------------------------------------------------------------------------- /out_2008/gyp/libpng.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/libpng.sln -------------------------------------------------------------------------------- /out_2008/gyp/libpng.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/libpng.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/libwebp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/libwebp.sln -------------------------------------------------------------------------------- /out_2008/gyp/lua.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/lua.sln -------------------------------------------------------------------------------- /out_2008/gyp/lua.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/lua.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/most.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/most.sln -------------------------------------------------------------------------------- /out_2008/gyp/most.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/most.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/opts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/opts.sln -------------------------------------------------------------------------------- /out_2008/gyp/opts.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/opts.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/pdf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/pdf.sln -------------------------------------------------------------------------------- /out_2008/gyp/pdf.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/pdf.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/pdfviewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/pdfviewer.sln -------------------------------------------------------------------------------- /out_2008/gyp/poppler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/poppler.sln -------------------------------------------------------------------------------- /out_2008/gyp/ports.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/ports.sln -------------------------------------------------------------------------------- /out_2008/gyp/ports.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/ports.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/record.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/record.sln -------------------------------------------------------------------------------- /out_2008/gyp/record.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/record.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/sfnt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/sfnt.sln -------------------------------------------------------------------------------- /out_2008/gyp/sfnt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/sfnt.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/skdiff.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/skdiff.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/skflate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/skflate.sln -------------------------------------------------------------------------------- /out_2008/gyp/skgpu.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/skgpu.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/skia_lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/skia_lib.sln -------------------------------------------------------------------------------- /out_2008/gyp/skia_lib.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/skia_lib.suo -------------------------------------------------------------------------------- /out_2008/gyp/tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/tests.sln -------------------------------------------------------------------------------- /out_2008/gyp/tests.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/tests.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/tools.sln -------------------------------------------------------------------------------- /out_2008/gyp/tools.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/tools.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/utils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/utils.sln -------------------------------------------------------------------------------- /out_2008/gyp/utils.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/utils.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/views.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/views.sln -------------------------------------------------------------------------------- /out_2008/gyp/views.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/views.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/xml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/xml.sln -------------------------------------------------------------------------------- /out_2008/gyp/xml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/xml.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/xps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/xps.sln -------------------------------------------------------------------------------- /out_2008/gyp/xps.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/xps.vcproj -------------------------------------------------------------------------------- /out_2008/gyp/zlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/zlib.sln -------------------------------------------------------------------------------- /out_2008/gyp/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/gyp/zlib.vcproj -------------------------------------------------------------------------------- /out_2008/skia.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/skia.sln -------------------------------------------------------------------------------- /out_2008/skia.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/out_2008/skia.suo -------------------------------------------------------------------------------- /skia_dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skia_dll.png -------------------------------------------------------------------------------- /skiatest/out/01415.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/out/01415.ico -------------------------------------------------------------------------------- /skiatest/out/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/out/bk.png -------------------------------------------------------------------------------- /skiatest/out/horse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/out/horse.gif -------------------------------------------------------------------------------- /skiatest/out/out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/out/out.png -------------------------------------------------------------------------------- /skiatest/out/skiaTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/out/skiaTest.exe -------------------------------------------------------------------------------- /skiatest/skiatest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/skiatest.sln -------------------------------------------------------------------------------- /skiatest/skiatest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/skiatest.suo -------------------------------------------------------------------------------- /skiatest/skiatest/skiatest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /skiatest/skiatest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/skiatest/skiatest/stdafx.h -------------------------------------------------------------------------------- /src/animator/SkAnimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkAnimate.h -------------------------------------------------------------------------------- /src/animator/SkBoundable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkBoundable.h -------------------------------------------------------------------------------- /src/animator/SkDraw3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDraw3D.cpp -------------------------------------------------------------------------------- /src/animator/SkDraw3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDraw3D.h -------------------------------------------------------------------------------- /src/animator/SkDrawBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawBlur.h -------------------------------------------------------------------------------- /src/animator/SkDrawClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawClip.h -------------------------------------------------------------------------------- /src/animator/SkDrawColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawColor.h -------------------------------------------------------------------------------- /src/animator/SkDrawDash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawDash.h -------------------------------------------------------------------------------- /src/animator/SkDrawFull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawFull.h -------------------------------------------------------------------------------- /src/animator/SkDrawGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawGroup.h -------------------------------------------------------------------------------- /src/animator/SkDrawLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawLine.h -------------------------------------------------------------------------------- /src/animator/SkDrawOval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawOval.h -------------------------------------------------------------------------------- /src/animator/SkDrawPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawPaint.h -------------------------------------------------------------------------------- /src/animator/SkDrawPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawPath.h -------------------------------------------------------------------------------- /src/animator/SkDrawPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawPoint.h -------------------------------------------------------------------------------- /src/animator/SkDrawText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawText.h -------------------------------------------------------------------------------- /src/animator/SkDrawTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawTo.cpp -------------------------------------------------------------------------------- /src/animator/SkDrawTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawTo.h -------------------------------------------------------------------------------- /src/animator/SkDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDrawable.h -------------------------------------------------------------------------------- /src/animator/SkDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDump.cpp -------------------------------------------------------------------------------- /src/animator/SkDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkDump.h -------------------------------------------------------------------------------- /src/animator/SkExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkExtras.h -------------------------------------------------------------------------------- /src/animator/SkHitClear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkHitClear.h -------------------------------------------------------------------------------- /src/animator/SkHitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkHitTest.cpp -------------------------------------------------------------------------------- /src/animator/SkHitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkHitTest.h -------------------------------------------------------------------------------- /src/animator/SkIntArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkIntArray.h -------------------------------------------------------------------------------- /src/animator/SkOpArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkOpArray.cpp -------------------------------------------------------------------------------- /src/animator/SkOpArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkOpArray.h -------------------------------------------------------------------------------- /src/animator/SkOperand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkOperand.h -------------------------------------------------------------------------------- /src/animator/SkOperand2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkOperand2.h -------------------------------------------------------------------------------- /src/animator/SkPathParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkPathParts.h -------------------------------------------------------------------------------- /src/animator/SkPostParts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkPostParts.h -------------------------------------------------------------------------------- /src/animator/SkScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkScript.cpp -------------------------------------------------------------------------------- /src/animator/SkScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkScript.h -------------------------------------------------------------------------------- /src/animator/SkScript2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkScript2.h -------------------------------------------------------------------------------- /src/animator/SkSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkSnapshot.h -------------------------------------------------------------------------------- /src/animator/SkTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/animator/SkTime.cpp -------------------------------------------------------------------------------- /src/core/SkAAClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAAClip.cpp -------------------------------------------------------------------------------- /src/core/SkAAClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAAClip.h -------------------------------------------------------------------------------- /src/core/SkAlphaRuns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAlphaRuns.cpp -------------------------------------------------------------------------------- /src/core/SkAnnotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAnnotation.cpp -------------------------------------------------------------------------------- /src/core/SkAntiRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAntiRun.h -------------------------------------------------------------------------------- /src/core/SkAutoKern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkAutoKern.h -------------------------------------------------------------------------------- /src/core/SkBBoxHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBBoxHierarchy.h -------------------------------------------------------------------------------- /src/core/SkBBoxRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBBoxRecord.cpp -------------------------------------------------------------------------------- /src/core/SkBBoxRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBBoxRecord.h -------------------------------------------------------------------------------- /src/core/SkBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBitmap.cpp -------------------------------------------------------------------------------- /src/core/SkBitmapFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBitmapFilter.h -------------------------------------------------------------------------------- /src/core/SkBitmapHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBitmapHeap.cpp -------------------------------------------------------------------------------- /src/core/SkBitmapHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBitmapHeap.h -------------------------------------------------------------------------------- /src/core/SkBitmapScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBitmapScaler.h -------------------------------------------------------------------------------- /src/core/SkBlitMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitMask.h -------------------------------------------------------------------------------- /src/core/SkBlitRow_D16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitRow_D16.cpp -------------------------------------------------------------------------------- /src/core/SkBlitRow_D32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitRow_D32.cpp -------------------------------------------------------------------------------- /src/core/SkBlitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitter.cpp -------------------------------------------------------------------------------- /src/core/SkBlitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitter.h -------------------------------------------------------------------------------- /src/core/SkBlitter_A8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBlitter_A8.cpp -------------------------------------------------------------------------------- /src/core/SkBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBuffer.cpp -------------------------------------------------------------------------------- /src/core/SkBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkBuffer.h -------------------------------------------------------------------------------- /src/core/SkCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkCanvas.cpp -------------------------------------------------------------------------------- /src/core/SkChunkAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkChunkAlloc.cpp -------------------------------------------------------------------------------- /src/core/SkClipStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkClipStack.cpp -------------------------------------------------------------------------------- /src/core/SkColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkColor.cpp -------------------------------------------------------------------------------- /src/core/SkColorFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkColorFilter.cpp -------------------------------------------------------------------------------- /src/core/SkColorTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkColorTable.cpp -------------------------------------------------------------------------------- /src/core/SkConfig8888.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkConfig8888.cpp -------------------------------------------------------------------------------- /src/core/SkConfig8888.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkConfig8888.h -------------------------------------------------------------------------------- /src/core/SkConvolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkConvolver.cpp -------------------------------------------------------------------------------- /src/core/SkConvolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkConvolver.h -------------------------------------------------------------------------------- /src/core/SkCoreBlitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkCoreBlitters.h -------------------------------------------------------------------------------- /src/core/SkCubicClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkCubicClipper.h -------------------------------------------------------------------------------- /src/core/SkData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkData.cpp -------------------------------------------------------------------------------- /src/core/SkDataTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDataTable.cpp -------------------------------------------------------------------------------- /src/core/SkDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDebug.cpp -------------------------------------------------------------------------------- /src/core/SkDeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDeque.cpp -------------------------------------------------------------------------------- /src/core/SkDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDescriptor.h -------------------------------------------------------------------------------- /src/core/SkDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDevice.cpp -------------------------------------------------------------------------------- /src/core/SkDeviceLooper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDeviceLooper.h -------------------------------------------------------------------------------- /src/core/SkDeviceProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDeviceProfile.h -------------------------------------------------------------------------------- /src/core/SkDither.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDither.cpp -------------------------------------------------------------------------------- /src/core/SkDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDraw.cpp -------------------------------------------------------------------------------- /src/core/SkDrawLooper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDrawLooper.cpp -------------------------------------------------------------------------------- /src/core/SkDrawProcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkDrawProcs.h -------------------------------------------------------------------------------- /src/core/SkEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdge.cpp -------------------------------------------------------------------------------- /src/core/SkEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdge.h -------------------------------------------------------------------------------- /src/core/SkEdgeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdgeBuilder.cpp -------------------------------------------------------------------------------- /src/core/SkEdgeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdgeBuilder.h -------------------------------------------------------------------------------- /src/core/SkEdgeClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdgeClipper.cpp -------------------------------------------------------------------------------- /src/core/SkEdgeClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkEdgeClipper.h -------------------------------------------------------------------------------- /src/core/SkError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkError.cpp -------------------------------------------------------------------------------- /src/core/SkFDot6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFDot6.h -------------------------------------------------------------------------------- /src/core/SkFilterProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFilterProc.cpp -------------------------------------------------------------------------------- /src/core/SkFilterProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFilterProc.h -------------------------------------------------------------------------------- /src/core/SkFilterShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFilterShader.h -------------------------------------------------------------------------------- /src/core/SkFlate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFlate.cpp -------------------------------------------------------------------------------- /src/core/SkFlattenable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFlattenable.cpp -------------------------------------------------------------------------------- /src/core/SkFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFloat.cpp -------------------------------------------------------------------------------- /src/core/SkFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFloat.h -------------------------------------------------------------------------------- /src/core/SkFloatBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFloatBits.cpp -------------------------------------------------------------------------------- /src/core/SkFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFont.cpp -------------------------------------------------------------------------------- /src/core/SkFontHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFontHost.cpp -------------------------------------------------------------------------------- /src/core/SkFontStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFontStream.cpp -------------------------------------------------------------------------------- /src/core/SkFontStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkFontStream.h -------------------------------------------------------------------------------- /src/core/SkGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkGeometry.cpp -------------------------------------------------------------------------------- /src/core/SkGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkGlyph.h -------------------------------------------------------------------------------- /src/core/SkGlyphCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkGlyphCache.cpp -------------------------------------------------------------------------------- /src/core/SkGlyphCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkGlyphCache.h -------------------------------------------------------------------------------- /src/core/SkGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkGraphics.cpp -------------------------------------------------------------------------------- /src/core/SkImageFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkImageFilter.cpp -------------------------------------------------------------------------------- /src/core/SkImageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkImageInfo.cpp -------------------------------------------------------------------------------- /src/core/SkInstCnt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkInstCnt.cpp -------------------------------------------------------------------------------- /src/core/SkLineClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkLineClipper.cpp -------------------------------------------------------------------------------- /src/core/SkMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMask.cpp -------------------------------------------------------------------------------- /src/core/SkMaskFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMaskFilter.cpp -------------------------------------------------------------------------------- /src/core/SkMaskGamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMaskGamma.cpp -------------------------------------------------------------------------------- /src/core/SkMaskGamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMaskGamma.h -------------------------------------------------------------------------------- /src/core/SkMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMath.cpp -------------------------------------------------------------------------------- /src/core/SkMathPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMathPriv.h -------------------------------------------------------------------------------- /src/core/SkMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMatrix.cpp -------------------------------------------------------------------------------- /src/core/SkMatrixUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMatrixUtils.h -------------------------------------------------------------------------------- /src/core/SkMessageBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMessageBus.h -------------------------------------------------------------------------------- /src/core/SkMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMetaData.cpp -------------------------------------------------------------------------------- /src/core/SkMipMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMipMap.cpp -------------------------------------------------------------------------------- /src/core/SkMipMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkMipMap.h -------------------------------------------------------------------------------- /src/core/SkOffsetTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkOffsetTable.h -------------------------------------------------------------------------------- /src/core/SkPackBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPackBits.cpp -------------------------------------------------------------------------------- /src/core/SkPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPaint.cpp -------------------------------------------------------------------------------- /src/core/SkPaintDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPaintDefaults.h -------------------------------------------------------------------------------- /src/core/SkPaintPriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPaintPriv.cpp -------------------------------------------------------------------------------- /src/core/SkPaintPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPaintPriv.h -------------------------------------------------------------------------------- /src/core/SkPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPath.cpp -------------------------------------------------------------------------------- /src/core/SkPathEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPathEffect.cpp -------------------------------------------------------------------------------- /src/core/SkPathHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPathHeap.cpp -------------------------------------------------------------------------------- /src/core/SkPathHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPathHeap.h -------------------------------------------------------------------------------- /src/core/SkPathMeasure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPathMeasure.cpp -------------------------------------------------------------------------------- /src/core/SkPathRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPathRef.cpp -------------------------------------------------------------------------------- /src/core/SkPerspIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPerspIter.h -------------------------------------------------------------------------------- /src/core/SkPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPicture.cpp -------------------------------------------------------------------------------- /src/core/SkPictureFlat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPictureFlat.cpp -------------------------------------------------------------------------------- /src/core/SkPictureFlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPictureFlat.h -------------------------------------------------------------------------------- /src/core/SkPictureRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPictureRecord.h -------------------------------------------------------------------------------- /src/core/SkPictureShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPictureShader.h -------------------------------------------------------------------------------- /src/core/SkPixelRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPixelRef.cpp -------------------------------------------------------------------------------- /src/core/SkPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPoint.cpp -------------------------------------------------------------------------------- /src/core/SkPtrRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPtrRecorder.cpp -------------------------------------------------------------------------------- /src/core/SkPtrRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkPtrRecorder.h -------------------------------------------------------------------------------- /src/core/SkQuadClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkQuadClipper.cpp -------------------------------------------------------------------------------- /src/core/SkQuadClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkQuadClipper.h -------------------------------------------------------------------------------- /src/core/SkQuadTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkQuadTree.cpp -------------------------------------------------------------------------------- /src/core/SkQuadTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkQuadTree.h -------------------------------------------------------------------------------- /src/core/SkRRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRRect.cpp -------------------------------------------------------------------------------- /src/core/SkRTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRTree.cpp -------------------------------------------------------------------------------- /src/core/SkRTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRTree.h -------------------------------------------------------------------------------- /src/core/SkRasterClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRasterClip.cpp -------------------------------------------------------------------------------- /src/core/SkRasterClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRasterClip.h -------------------------------------------------------------------------------- /src/core/SkRasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRasterizer.cpp -------------------------------------------------------------------------------- /src/core/SkReadBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkReadBuffer.cpp -------------------------------------------------------------------------------- /src/core/SkRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRect.cpp -------------------------------------------------------------------------------- /src/core/SkRefDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRefDict.cpp -------------------------------------------------------------------------------- /src/core/SkRefDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRefDict.h -------------------------------------------------------------------------------- /src/core/SkRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRegion.cpp -------------------------------------------------------------------------------- /src/core/SkRegionPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRegionPriv.h -------------------------------------------------------------------------------- /src/core/SkRegion_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkRegion_path.cpp -------------------------------------------------------------------------------- /src/core/SkScalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScalar.cpp -------------------------------------------------------------------------------- /src/core/SkScalerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScalerContext.h -------------------------------------------------------------------------------- /src/core/SkScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScan.cpp -------------------------------------------------------------------------------- /src/core/SkScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScan.h -------------------------------------------------------------------------------- /src/core/SkScanPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScanPriv.h -------------------------------------------------------------------------------- /src/core/SkScan_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkScan_Path.cpp -------------------------------------------------------------------------------- /src/core/SkShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkShader.cpp -------------------------------------------------------------------------------- /src/core/SkSinTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkSinTable.h -------------------------------------------------------------------------------- /src/core/SkSpriteBlitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkSpriteBlitter.h -------------------------------------------------------------------------------- /src/core/SkStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStream.cpp -------------------------------------------------------------------------------- /src/core/SkString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkString.cpp -------------------------------------------------------------------------------- /src/core/SkStringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStringUtils.cpp -------------------------------------------------------------------------------- /src/core/SkStroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStroke.cpp -------------------------------------------------------------------------------- /src/core/SkStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStroke.h -------------------------------------------------------------------------------- /src/core/SkStrokeRec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStrokeRec.cpp -------------------------------------------------------------------------------- /src/core/SkStrokerPriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStrokerPriv.cpp -------------------------------------------------------------------------------- /src/core/SkStrokerPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkStrokerPriv.h -------------------------------------------------------------------------------- /src/core/SkTDynamicHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTDynamicHash.h -------------------------------------------------------------------------------- /src/core/SkTLList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTLList.h -------------------------------------------------------------------------------- /src/core/SkTLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTLS.cpp -------------------------------------------------------------------------------- /src/core/SkTLS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTLS.h -------------------------------------------------------------------------------- /src/core/SkTObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTObjectPool.h -------------------------------------------------------------------------------- /src/core/SkTRefArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTRefArray.h -------------------------------------------------------------------------------- /src/core/SkTSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTSearch.cpp -------------------------------------------------------------------------------- /src/core/SkTSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTSort.h -------------------------------------------------------------------------------- /src/core/SkTileGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTileGrid.cpp -------------------------------------------------------------------------------- /src/core/SkTileGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTileGrid.h -------------------------------------------------------------------------------- /src/core/SkTraceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTraceEvent.h -------------------------------------------------------------------------------- /src/core/SkTypeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTypeface.cpp -------------------------------------------------------------------------------- /src/core/SkTypefaceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTypefaceCache.h -------------------------------------------------------------------------------- /src/core/SkTypefacePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkTypefacePriv.h -------------------------------------------------------------------------------- /src/core/SkUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkUtils.cpp -------------------------------------------------------------------------------- /src/core/SkUtilsArm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkUtilsArm.cpp -------------------------------------------------------------------------------- /src/core/SkUtilsArm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkUtilsArm.h -------------------------------------------------------------------------------- /src/core/SkWriteBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkWriteBuffer.cpp -------------------------------------------------------------------------------- /src/core/SkWriter32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkWriter32.cpp -------------------------------------------------------------------------------- /src/core/SkXfermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/SkXfermode.cpp -------------------------------------------------------------------------------- /src/core/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/core/stdint.h -------------------------------------------------------------------------------- /src/doc/SkDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/doc/SkDocument.cpp -------------------------------------------------------------------------------- /src/doc/SkDocument_PDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/doc/SkDocument_PDF.cpp -------------------------------------------------------------------------------- /src/effects/SkBlurMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/effects/SkBlurMask.cpp -------------------------------------------------------------------------------- /src/effects/SkBlurMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/effects/SkBlurMask.h -------------------------------------------------------------------------------- /src/effects/SkEmbossMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/effects/SkEmbossMask.h -------------------------------------------------------------------------------- /src/gpu/GrAARectRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAARectRenderer.h -------------------------------------------------------------------------------- /src/gpu/GrAllocPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAllocPool.cpp -------------------------------------------------------------------------------- /src/gpu/GrAllocPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAllocPool.h -------------------------------------------------------------------------------- /src/gpu/GrAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAllocator.h -------------------------------------------------------------------------------- /src/gpu/GrAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAtlas.cpp -------------------------------------------------------------------------------- /src/gpu/GrAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrAtlas.h -------------------------------------------------------------------------------- /src/gpu/GrBinHashKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrBinHashKey.h -------------------------------------------------------------------------------- /src/gpu/GrBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrBlend.cpp -------------------------------------------------------------------------------- /src/gpu/GrBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrBlend.h -------------------------------------------------------------------------------- /src/gpu/GrCacheID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrCacheID.cpp -------------------------------------------------------------------------------- /src/gpu/GrClipData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrClipData.cpp -------------------------------------------------------------------------------- /src/gpu/GrClipMaskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrClipMaskCache.h -------------------------------------------------------------------------------- /src/gpu/GrContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrContext.cpp -------------------------------------------------------------------------------- /src/gpu/GrDrawState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrDrawState.cpp -------------------------------------------------------------------------------- /src/gpu/GrDrawState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrDrawState.h -------------------------------------------------------------------------------- /src/gpu/GrDrawTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrDrawTarget.cpp -------------------------------------------------------------------------------- /src/gpu/GrDrawTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrDrawTarget.h -------------------------------------------------------------------------------- /src/gpu/GrDrawTargetCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrDrawTargetCaps.h -------------------------------------------------------------------------------- /src/gpu/GrEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrEffect.cpp -------------------------------------------------------------------------------- /src/gpu/GrGeometryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrGeometryBuffer.h -------------------------------------------------------------------------------- /src/gpu/GrGpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrGpu.cpp -------------------------------------------------------------------------------- /src/gpu/GrGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrGpu.h -------------------------------------------------------------------------------- /src/gpu/GrGpuFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrGpuFactory.cpp -------------------------------------------------------------------------------- /src/gpu/GrIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrIndexBuffer.h -------------------------------------------------------------------------------- /src/gpu/GrLayerCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrLayerCache.cpp -------------------------------------------------------------------------------- /src/gpu/GrLayerCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrLayerCache.h -------------------------------------------------------------------------------- /src/gpu/GrMemoryPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrMemoryPool.cpp -------------------------------------------------------------------------------- /src/gpu/GrMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrMemoryPool.h -------------------------------------------------------------------------------- /src/gpu/GrOrderedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrOrderedSet.h -------------------------------------------------------------------------------- /src/gpu/GrOvalRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrOvalRenderer.cpp -------------------------------------------------------------------------------- /src/gpu/GrOvalRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrOvalRenderer.h -------------------------------------------------------------------------------- /src/gpu/GrPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPaint.cpp -------------------------------------------------------------------------------- /src/gpu/GrPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPath.cpp -------------------------------------------------------------------------------- /src/gpu/GrPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPath.h -------------------------------------------------------------------------------- /src/gpu/GrPathRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPathRenderer.cpp -------------------------------------------------------------------------------- /src/gpu/GrPathRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPathRenderer.h -------------------------------------------------------------------------------- /src/gpu/GrPathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPathUtils.cpp -------------------------------------------------------------------------------- /src/gpu/GrPathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPathUtils.h -------------------------------------------------------------------------------- /src/gpu/GrPictureUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPictureUtils.cpp -------------------------------------------------------------------------------- /src/gpu/GrPictureUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPictureUtils.h -------------------------------------------------------------------------------- /src/gpu/GrPlotMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrPlotMgr.h -------------------------------------------------------------------------------- /src/gpu/GrRectanizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrRectanizer.cpp -------------------------------------------------------------------------------- /src/gpu/GrRectanizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrRectanizer.h -------------------------------------------------------------------------------- /src/gpu/GrRedBlackTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrRedBlackTree.h -------------------------------------------------------------------------------- /src/gpu/GrReducedClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrReducedClip.cpp -------------------------------------------------------------------------------- /src/gpu/GrReducedClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrReducedClip.h -------------------------------------------------------------------------------- /src/gpu/GrRenderTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrRenderTarget.cpp -------------------------------------------------------------------------------- /src/gpu/GrResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrResource.cpp -------------------------------------------------------------------------------- /src/gpu/GrResourceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrResourceCache.h -------------------------------------------------------------------------------- /src/gpu/GrSWMaskHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrSWMaskHelper.cpp -------------------------------------------------------------------------------- /src/gpu/GrSWMaskHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrSWMaskHelper.h -------------------------------------------------------------------------------- /src/gpu/GrStencil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrStencil.cpp -------------------------------------------------------------------------------- /src/gpu/GrStencil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrStencil.h -------------------------------------------------------------------------------- /src/gpu/GrStencilBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrStencilBuffer.h -------------------------------------------------------------------------------- /src/gpu/GrSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrSurface.cpp -------------------------------------------------------------------------------- /src/gpu/GrTBSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTBSearch.h -------------------------------------------------------------------------------- /src/gpu/GrTHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTHashTable.h -------------------------------------------------------------------------------- /src/gpu/GrTMultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTMultiMap.h -------------------------------------------------------------------------------- /src/gpu/GrTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTemplates.h -------------------------------------------------------------------------------- /src/gpu/GrTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTest.cpp -------------------------------------------------------------------------------- /src/gpu/GrTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTest.h -------------------------------------------------------------------------------- /src/gpu/GrTextContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTextContext.cpp -------------------------------------------------------------------------------- /src/gpu/GrTextContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTextContext.h -------------------------------------------------------------------------------- /src/gpu/GrTextStrike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTextStrike.cpp -------------------------------------------------------------------------------- /src/gpu/GrTextStrike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTextStrike.h -------------------------------------------------------------------------------- /src/gpu/GrTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTexture.cpp -------------------------------------------------------------------------------- /src/gpu/GrTraceMarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTraceMarker.cpp -------------------------------------------------------------------------------- /src/gpu/GrTraceMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTraceMarker.h -------------------------------------------------------------------------------- /src/gpu/GrTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrTracing.h -------------------------------------------------------------------------------- /src/gpu/GrVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/GrVertexBuffer.h -------------------------------------------------------------------------------- /src/gpu/SkGpuDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/SkGpuDevice.cpp -------------------------------------------------------------------------------- /src/gpu/SkGr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/SkGr.cpp -------------------------------------------------------------------------------- /src/gpu/SkGrFontScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/SkGrFontScaler.cpp -------------------------------------------------------------------------------- /src/gpu/SkGrPixelRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/SkGrPixelRef.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLCaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLCaps.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLCaps.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLContext.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLContext.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLDefines.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLEffect.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLIRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLIRect.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLPath.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLPath.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLProgram.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLProgram.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLSL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLSL.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLSL.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLSL_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLSL_impl.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLShaderVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLShaderVar.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLTexture.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLTexture.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGLUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLUtil.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGLUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGLUtil.h -------------------------------------------------------------------------------- /src/gpu/gl/GrGpuGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGpuGL.cpp -------------------------------------------------------------------------------- /src/gpu/gl/GrGpuGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/gpu/gl/GrGpuGL.h -------------------------------------------------------------------------------- /src/image/SkImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkImage.cpp -------------------------------------------------------------------------------- /src/image/SkImagePriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkImagePriv.cpp -------------------------------------------------------------------------------- /src/image/SkImagePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkImagePriv.h -------------------------------------------------------------------------------- /src/image/SkImage_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkImage_Base.h -------------------------------------------------------------------------------- /src/image/SkImage_Gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkImage_Gpu.cpp -------------------------------------------------------------------------------- /src/image/SkSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkSurface.cpp -------------------------------------------------------------------------------- /src/image/SkSurface_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/image/SkSurface_Base.h -------------------------------------------------------------------------------- /src/images/SkImageRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/images/SkImageRef.cpp -------------------------------------------------------------------------------- /src/images/SkImages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/images/SkImages.cpp -------------------------------------------------------------------------------- /src/images/SkJpegUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/images/SkJpegUtility.h -------------------------------------------------------------------------------- /src/images/SkMovie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/images/SkMovie.cpp -------------------------------------------------------------------------------- /src/images/SkMovie_gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/images/SkMovie_gif.cpp -------------------------------------------------------------------------------- /src/opts/memset.arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/opts/memset.arm.S -------------------------------------------------------------------------------- /src/opts/memset16_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/opts/memset16_neon.S -------------------------------------------------------------------------------- /src/opts/memset32_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/opts/memset32_neon.S -------------------------------------------------------------------------------- /src/pathops/SkOpAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkOpAngle.cpp -------------------------------------------------------------------------------- /src/pathops/SkOpAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkOpAngle.h -------------------------------------------------------------------------------- /src/pathops/SkOpContour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkOpContour.h -------------------------------------------------------------------------------- /src/pathops/SkOpSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkOpSegment.h -------------------------------------------------------------------------------- /src/pathops/SkOpSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkOpSpan.h -------------------------------------------------------------------------------- /src/pathops/SkPathWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pathops/SkPathWriter.h -------------------------------------------------------------------------------- /src/pdf/SkPDFCatalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFCatalog.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFCatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFCatalog.h -------------------------------------------------------------------------------- /src/pdf/SkPDFDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFDevice.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFDocument.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFFont.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFFont.h -------------------------------------------------------------------------------- /src/pdf/SkPDFFontImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFFontImpl.h -------------------------------------------------------------------------------- /src/pdf/SkPDFFormXObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFFormXObject.h -------------------------------------------------------------------------------- /src/pdf/SkPDFImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFImage.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFImage.h -------------------------------------------------------------------------------- /src/pdf/SkPDFPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFPage.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFPage.h -------------------------------------------------------------------------------- /src/pdf/SkPDFShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFShader.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFShader.h -------------------------------------------------------------------------------- /src/pdf/SkPDFStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFStream.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFStream.h -------------------------------------------------------------------------------- /src/pdf/SkPDFTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFTypes.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFTypes.h -------------------------------------------------------------------------------- /src/pdf/SkPDFUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFUtils.cpp -------------------------------------------------------------------------------- /src/pdf/SkPDFUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkPDFUtils.h -------------------------------------------------------------------------------- /src/pdf/SkTSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pdf/SkTSet.h -------------------------------------------------------------------------------- /src/pipe/SkGPipePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pipe/SkGPipePriv.h -------------------------------------------------------------------------------- /src/pipe/SkGPipeRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pipe/SkGPipeRead.cpp -------------------------------------------------------------------------------- /src/pipe/SkGPipeWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/pipe/SkGPipeWrite.cpp -------------------------------------------------------------------------------- /src/ports/SkAtomics_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkAtomics_none.h -------------------------------------------------------------------------------- /src/ports/SkAtomics_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkAtomics_sync.h -------------------------------------------------------------------------------- /src/ports/SkAtomics_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkAtomics_win.h -------------------------------------------------------------------------------- /src/ports/SkDebug_nacl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkDebug_nacl.cpp -------------------------------------------------------------------------------- /src/ports/SkDebug_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkDebug_win.cpp -------------------------------------------------------------------------------- /src/ports/SkMutex_none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkMutex_none.h -------------------------------------------------------------------------------- /src/ports/SkMutex_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkMutex_win.h -------------------------------------------------------------------------------- /src/ports/SkOSFile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkOSFile_win.cpp -------------------------------------------------------------------------------- /src/ports/SkTLS_none.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkTLS_none.cpp -------------------------------------------------------------------------------- /src/ports/SkTLS_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkTLS_win.cpp -------------------------------------------------------------------------------- /src/ports/SkTime_Unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkTime_Unix.cpp -------------------------------------------------------------------------------- /src/ports/SkTime_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/ports/SkTime_win.cpp -------------------------------------------------------------------------------- /src/record/SkRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/record/SkRecord.h -------------------------------------------------------------------------------- /src/record/SkRecordDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/record/SkRecordDraw.h -------------------------------------------------------------------------------- /src/record/SkRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/record/SkRecorder.cpp -------------------------------------------------------------------------------- /src/record/SkRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/record/SkRecorder.h -------------------------------------------------------------------------------- /src/record/SkRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/record/SkRecords.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTableTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTableTypes.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_OS_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_OS_2.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_glyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_glyf.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_head.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_hhea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_hhea.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_loca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_loca.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_maxp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_maxp.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_name.h -------------------------------------------------------------------------------- /src/sfnt/SkOTTable_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTTable_post.h -------------------------------------------------------------------------------- /src/sfnt/SkOTUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTUtils.cpp -------------------------------------------------------------------------------- /src/sfnt/SkOTUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkOTUtils.h -------------------------------------------------------------------------------- /src/sfnt/SkPanose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkPanose.h -------------------------------------------------------------------------------- /src/sfnt/SkSFNTHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkSFNTHeader.h -------------------------------------------------------------------------------- /src/sfnt/SkTTCFHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkTTCFHeader.h -------------------------------------------------------------------------------- /src/sfnt/SkTypedEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/sfnt/SkTypedEnum.h -------------------------------------------------------------------------------- /src/svg/SkSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVG.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGCircle.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGCircle.h -------------------------------------------------------------------------------- /src/svg/SkSVGClipPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGClipPath.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGClipPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGClipPath.h -------------------------------------------------------------------------------- /src/svg/SkSVGDefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGDefs.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGDefs.h -------------------------------------------------------------------------------- /src/svg/SkSVGElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGElements.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGElements.h -------------------------------------------------------------------------------- /src/svg/SkSVGEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGEllipse.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGEllipse.h -------------------------------------------------------------------------------- /src/svg/SkSVGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGFilter.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGFilter.h -------------------------------------------------------------------------------- /src/svg/SkSVGG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGG.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGG.h -------------------------------------------------------------------------------- /src/svg/SkSVGGradient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGGradient.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGGradient.h -------------------------------------------------------------------------------- /src/svg/SkSVGGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGGroup.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGGroup.h -------------------------------------------------------------------------------- /src/svg/SkSVGImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGImage.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGImage.h -------------------------------------------------------------------------------- /src/svg/SkSVGLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGLine.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGLine.h -------------------------------------------------------------------------------- /src/svg/SkSVGMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGMask.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGMask.h -------------------------------------------------------------------------------- /src/svg/SkSVGMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGMetadata.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGMetadata.h -------------------------------------------------------------------------------- /src/svg/SkSVGParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGParser.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPath.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPath.h -------------------------------------------------------------------------------- /src/svg/SkSVGPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPolygon.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPolygon.h -------------------------------------------------------------------------------- /src/svg/SkSVGPolyline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPolyline.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGPolyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGPolyline.h -------------------------------------------------------------------------------- /src/svg/SkSVGRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGRect.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGRect.h -------------------------------------------------------------------------------- /src/svg/SkSVGSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGSVG.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGSVG.h -------------------------------------------------------------------------------- /src/svg/SkSVGStop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGStop.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGStop.h -------------------------------------------------------------------------------- /src/svg/SkSVGSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGSymbol.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGSymbol.h -------------------------------------------------------------------------------- /src/svg/SkSVGText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGText.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGText.h -------------------------------------------------------------------------------- /src/svg/SkSVGUse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGUse.cpp -------------------------------------------------------------------------------- /src/svg/SkSVGUse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/svg/SkSVGUse.h -------------------------------------------------------------------------------- /src/utils/SkBase64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkBase64.cpp -------------------------------------------------------------------------------- /src/utils/SkBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkBase64.h -------------------------------------------------------------------------------- /src/utils/SkBitSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkBitSet.cpp -------------------------------------------------------------------------------- /src/utils/SkBitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkBitSet.h -------------------------------------------------------------------------------- /src/utils/SkBitmapHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkBitmapHasher.h -------------------------------------------------------------------------------- /src/utils/SkCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkCamera.cpp -------------------------------------------------------------------------------- /src/utils/SkCanvasStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkCanvasStack.h -------------------------------------------------------------------------------- /src/utils/SkCondVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkCondVar.cpp -------------------------------------------------------------------------------- /src/utils/SkCountdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkCountdown.cpp -------------------------------------------------------------------------------- /src/utils/SkCullPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkCullPoints.cpp -------------------------------------------------------------------------------- /src/utils/SkDumpCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkDumpCanvas.cpp -------------------------------------------------------------------------------- /src/utils/SkFloatUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkFloatUtils.h -------------------------------------------------------------------------------- /src/utils/SkLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkLayer.cpp -------------------------------------------------------------------------------- /src/utils/SkLua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkLua.cpp -------------------------------------------------------------------------------- /src/utils/SkLuaCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkLuaCanvas.cpp -------------------------------------------------------------------------------- /src/utils/SkMD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkMD5.cpp -------------------------------------------------------------------------------- /src/utils/SkMD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkMD5.h -------------------------------------------------------------------------------- /src/utils/SkMatrix44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkMatrix44.cpp -------------------------------------------------------------------------------- /src/utils/SkMeshUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkMeshUtils.cpp -------------------------------------------------------------------------------- /src/utils/SkNWayCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkNWayCanvas.cpp -------------------------------------------------------------------------------- /src/utils/SkNinePatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkNinePatch.cpp -------------------------------------------------------------------------------- /src/utils/SkNullCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkNullCanvas.cpp -------------------------------------------------------------------------------- /src/utils/SkOSFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkOSFile.cpp -------------------------------------------------------------------------------- /src/utils/SkParse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkParse.cpp -------------------------------------------------------------------------------- /src/utils/SkParseColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkParseColor.cpp -------------------------------------------------------------------------------- /src/utils/SkParsePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkParsePath.cpp -------------------------------------------------------------------------------- /src/utils/SkPathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkPathUtils.cpp -------------------------------------------------------------------------------- /src/utils/SkRTConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkRTConf.cpp -------------------------------------------------------------------------------- /src/utils/SkSHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkSHA1.cpp -------------------------------------------------------------------------------- /src/utils/SkSHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkSHA1.h -------------------------------------------------------------------------------- /src/utils/SkTFitsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkTFitsIn.h -------------------------------------------------------------------------------- /src/utils/SkTLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkTLogic.h -------------------------------------------------------------------------------- /src/utils/SkThreadUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/SkThreadUtils.h -------------------------------------------------------------------------------- /src/utils/android/ashmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/android/ashmem.h -------------------------------------------------------------------------------- /src/utils/win/SkDWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/win/SkDWrite.cpp -------------------------------------------------------------------------------- /src/utils/win/SkDWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/utils/win/SkDWrite.h -------------------------------------------------------------------------------- /src/views/SkEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkEvent.cpp -------------------------------------------------------------------------------- /src/views/SkEventSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkEventSink.cpp -------------------------------------------------------------------------------- /src/views/SkOSMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkOSMenu.cpp -------------------------------------------------------------------------------- /src/views/SkParsePaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkParsePaint.cpp -------------------------------------------------------------------------------- /src/views/SkTagList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkTagList.cpp -------------------------------------------------------------------------------- /src/views/SkTagList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkTagList.h -------------------------------------------------------------------------------- /src/views/SkTextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkTextBox.cpp -------------------------------------------------------------------------------- /src/views/SkView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkView.cpp -------------------------------------------------------------------------------- /src/views/SkViewPriv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkViewPriv.cpp -------------------------------------------------------------------------------- /src/views/SkViewPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkViewPriv.h -------------------------------------------------------------------------------- /src/views/SkWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkWidgets.cpp -------------------------------------------------------------------------------- /src/views/SkWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/SkWindow.cpp -------------------------------------------------------------------------------- /src/views/mac/SkNSView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/mac/SkNSView.h -------------------------------------------------------------------------------- /src/views/mac/SkNSView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/mac/SkNSView.mm -------------------------------------------------------------------------------- /src/views/mac/skia_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/mac/skia_mac.mm -------------------------------------------------------------------------------- /src/views/win/skia_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/views/win/skia_win.cpp -------------------------------------------------------------------------------- /src/xml/SkBML_Verbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/xml/SkBML_Verbs.h -------------------------------------------------------------------------------- /src/xml/SkDOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/xml/SkDOM.cpp -------------------------------------------------------------------------------- /src/xml/SkJS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/xml/SkJS.cpp -------------------------------------------------------------------------------- /src/xml/SkXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/xml/SkXMLParser.cpp -------------------------------------------------------------------------------- /src/xml/SkXMLWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/src/xml/SkXMLWriter.cpp -------------------------------------------------------------------------------- /third_party/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/third_party/README -------------------------------------------------------------------------------- /third_party/externals/fontconfig/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/freetype/builds/newline: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/actions-multiple/src/input.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/actions-none/src/foo.cc: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/assembly/src/lib1.c: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/directory/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/directory/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/directory/subdir/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/copies/src/parentdir/subdir/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/dependencies/b/b.c: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/dependencies/c/d.c: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/bogus1.cc: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/bogus2.c: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/test1.cc: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/test2.c: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/test3.cc: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/external-cross-compile/src/test4.c: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/copies/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/copies/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/copies/subdir/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/copies/subdir/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/mac-bundle/app.order: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/mac-bundle/header.h: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/mac-bundle/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/mac-bundle/resource.sb: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/rules/subdir2/file1.in0: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/rules/subdir2/file2.in0: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/rules/subdir2/file3.in1: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/generator-output/rules/subdir2/file4.in1: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/include_dirs/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/include_dirs/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/include_dirs/src/subdir/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/intermediate_dir/src/shared_infile.txt: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/linux/implicit-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/linux/implicit-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/app-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/archs/empty_main.cc: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/archs/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/archs/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/bundle-resources/secret.txt: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/copy-dylib/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/depend-on-bundle/bundle.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/framework/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/global-settings/src/dir2/file.txt: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/installname/file.c: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/installname/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/ldflags-libtool/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/ldflags/subdirectory/symbol_list.def: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/missing-cfbundlesignature/file.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/objc-gc/c-file.c: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/objc-gc/cc-file.cc: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/objc-gc/needs-gc-mm.mm: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/objc-gc/needs-gc.m: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/postbuild-copy-bundle/copied.txt: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/postbuild-copy-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/postbuilds/copy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/prefixheader/file.c: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/prefixheader/file.cc: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/prefixheader/file.m: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/prefixheader/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/prefixheader/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/rebuild/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/rebuild/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/sourceless-module/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/sourceless-module/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/sourceless-module/fun.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/strip/subdirectory/nested_file.c: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/unicode-settings/file.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | } 3 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/xcode-env-order/file.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/xcode-env-order/file.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/xcode-env-order/file.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/mac/xctest/resource.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/make/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/make/noload/lib/shared.h: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/many-actions/file0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/many-actions/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/many-actions/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/many-actions/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/many-actions/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/ninja/s-needs-no-depfiles/empty.s: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/no-cpp/src/empty-main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rename/filecase/file.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/external/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/external/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/noaction/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/somefile.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/subdir2/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/rules/src/subdir2/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/sanitize-rule-names/blah.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/variables/commands/test.py: -------------------------------------------------------------------------------- 1 | print "sample\\path\\foo.cpp" 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/asm-files/b.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/asm-files/c.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/batch-file-action/infile: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/command-quote/a.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/compiler-flags/subdir/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/rc-build/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/vs-macros/input.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/gyp/test/win/vs-macros/stuff.blah: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /third_party/externals/iconv/include/.cvsignore: -------------------------------------------------------------------------------- 1 | iconv.h 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/lib/.cvsignore: -------------------------------------------------------------------------------- 1 | config.h 2 | localcharset.h 3 | Makefile 4 | -------------------------------------------------------------------------------- /third_party/externals/iconv/libcharset/.cvsignore: -------------------------------------------------------------------------------- 1 | config.h 2 | Makefile 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/libcharset/autoconf/.cvsignore: -------------------------------------------------------------------------------- 1 | aclocal.m4 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/libcharset/include/.cvsignore: -------------------------------------------------------------------------------- 1 | localcharset.h 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/libcharset/lib/.cvsignore: -------------------------------------------------------------------------------- 1 | localcharset.lo 2 | Makefile 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/man/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/src/.cvsignore: -------------------------------------------------------------------------------- 1 | config.h 2 | Makefile 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/src/iconv_no_i18n.c: -------------------------------------------------------------------------------- 1 | #define NO_I18N 2 | #include "iconv.c" 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/.cvsignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/CP1163.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/DEC-HANYU.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0xC2CBA1B8 0x5344 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/EUC-JP.IRREVERSIBLE.TXT: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/HZ-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | Chinese (中文,普通话,汉语) 你好 2 | GB -- 元气 开发 3 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/Translit1.ASCII: -------------------------------------------------------------------------------- 1 | 'Ecrit par %s. 2 | -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UCS-4BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UCS-4LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UTF-16-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UTF-16BE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UTF-16LE-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | 𒍅=Ra -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UTF-7-snippet: -------------------------------------------------------------------------------- 1 | A+ImIDkQ- -------------------------------------------------------------------------------- /third_party/externals/iconv/tests/UTF-7-snippet.UTF-8: -------------------------------------------------------------------------------- 1 | A≢Α -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/devtools/__init__.py: -------------------------------------------------------------------------------- 1 | # module -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_08.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_09.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_01.expected: -------------------------------------------------------------------------------- 1 | .=2147483647 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_02.expected: -------------------------------------------------------------------------------- 1 | .=-2147483648 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_03.expected: -------------------------------------------------------------------------------- 1 | .=4294967295 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_04.expected: -------------------------------------------------------------------------------- 1 | .=0 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_01.expected: -------------------------------------------------------------------------------- 1 | .=8589934592 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_02.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_03.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_04.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_05.expected: -------------------------------------------------------------------------------- 1 | .=1234567.8 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_06.expected: -------------------------------------------------------------------------------- 1 | .=-1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_07.expected: -------------------------------------------------------------------------------- 1 | .=-1234567.8 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_09.expected: -------------------------------------------------------------------------------- 1 | .=1.9e+19 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_11.expected: -------------------------------------------------------------------------------- 1 | .=-9.3e+18 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_real_12.expected: -------------------------------------------------------------------------------- 1 | .=1.844674407370955e+19 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/data/test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /third_party/externals/jsoncpp/version: -------------------------------------------------------------------------------- 1 | 0.6.0-dev -------------------------------------------------------------------------------- /third_party/externals/libwebp/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /third_party/externals/poppler/glib/reference/poppler-overrides.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/externals/poppler/glib/reference/version.xml.in: -------------------------------------------------------------------------------- 1 | @POPPLER_VERSION@ 2 | -------------------------------------------------------------------------------- /third_party/externals/poppler/qt4/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src tests demos 2 | -------------------------------------------------------------------------------- /third_party/harfbuzz/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/harfbuzz/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = src tests 3 | -------------------------------------------------------------------------------- /third_party/harfbuzz/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redrains/skia_vs2008/HEAD/third_party/lua/README --------------------------------------------------------------------------------