├── .clang-format ├── .editorconfig ├── .github └── workflows │ └── build_test.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── examples ├── CMakeLists.txt ├── app.hpp ├── chessboard.cpp ├── cmake │ └── FindWaylandScanner.cmake ├── composite_ops.cpp ├── host │ ├── linux │ │ ├── application.h │ │ ├── logger.h │ │ ├── skia_app.cpp │ │ ├── skia_context.cpp │ │ ├── skia_context.h │ │ ├── wayland │ │ │ ├── application.cpp │ │ │ ├── contextegl.cpp │ │ │ ├── contextegl.h │ │ │ ├── core.cpp │ │ │ ├── core.h │ │ │ ├── display.cpp │ │ │ ├── display.h │ │ │ ├── fractional-scale-v1-client-protocol.h │ │ │ ├── fractional-scale-v1-protocol.c │ │ │ ├── tablet-unstable-v2-client-protocol.h │ │ │ ├── tablet-unstable-v2-protocol.c │ │ │ ├── viewporter-client-protocol.h │ │ │ ├── viewporter-protocol.c │ │ │ ├── xdg-decoration-unstable-v1-client-protocol.h │ │ │ ├── xdg-decoration-unstable-v1-protocol.c │ │ │ ├── xdg-shell-client-protocol.h │ │ │ ├── xdg-shell-protocol.c │ │ │ ├── xdgshell.cpp │ │ │ └── xdgshell.h │ │ └── x11 │ │ │ └── application.cpp │ ├── macos │ │ ├── quartz2d_app.mm │ │ └── skia_app.mm │ └── windows │ │ ├── gl │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── glext.h │ │ └── wglext.h │ │ └── skia_app.cpp ├── images │ ├── dest.png │ ├── space.jpg │ └── src.png ├── paths.cpp ├── print_elapsed.cpp ├── rain.cpp ├── shadow.cpp ├── shapes.cpp ├── space.cpp ├── tauri.cpp └── typography.cpp ├── lib ├── CMakeLists.txt ├── external │ ├── fontconfig │ │ └── include │ │ │ └── fontconfig │ │ │ ├── fcfreetype.h │ │ │ ├── fcprivate.h │ │ │ └── fontconfig.h │ ├── harfbuzz │ │ └── include │ │ │ ├── hb-aat-fdsc-table.hh │ │ │ ├── hb-aat-layout-ankr-table.hh │ │ │ ├── hb-aat-layout-bsln-table.hh │ │ │ ├── hb-aat-layout-common.hh │ │ │ ├── hb-aat-layout-feat-table.hh │ │ │ ├── hb-aat-layout-just-table.hh │ │ │ ├── hb-aat-layout-kerx-table.hh │ │ │ ├── hb-aat-layout-lcar-table.hh │ │ │ ├── hb-aat-layout-morx-table.hh │ │ │ ├── hb-aat-layout-opbd-table.hh │ │ │ ├── hb-aat-layout-trak-table.hh │ │ │ ├── hb-aat-layout.h │ │ │ ├── hb-aat-layout.hh │ │ │ ├── hb-aat-ltag-table.hh │ │ │ ├── hb-aat-map.hh │ │ │ ├── hb-aat.h │ │ │ ├── hb-algs.hh │ │ │ ├── hb-array.hh │ │ │ ├── hb-atomic.hh │ │ │ ├── hb-bimap.hh │ │ │ ├── hb-blob.h │ │ │ ├── hb-blob.hh │ │ │ ├── hb-buffer-deserialize-json.hh │ │ │ ├── hb-buffer-deserialize-text.hh │ │ │ ├── hb-buffer.h │ │ │ ├── hb-buffer.hh │ │ │ ├── hb-cache.hh │ │ │ ├── hb-cff-interp-common.hh │ │ │ ├── hb-cff-interp-cs-common.hh │ │ │ ├── hb-cff-interp-dict-common.hh │ │ │ ├── hb-cff1-interp-cs.hh │ │ │ ├── hb-cff2-interp-cs.hh │ │ │ ├── hb-common.h │ │ │ ├── hb-config.hh │ │ │ ├── hb-coretext.h │ │ │ ├── hb-debug.hh │ │ │ ├── hb-deprecated.h │ │ │ ├── hb-directwrite.h │ │ │ ├── hb-dispatch.hh │ │ │ ├── hb-draw.h │ │ │ ├── hb-draw.hh │ │ │ ├── hb-face.h │ │ │ ├── hb-face.hh │ │ │ ├── hb-font.h │ │ │ ├── hb-font.hh │ │ │ ├── hb-ft.h │ │ │ ├── hb-gdi.h │ │ │ ├── hb-glib.h │ │ │ ├── hb-gobject-structs.h │ │ │ ├── hb-gobject.h │ │ │ ├── hb-graphite2.h │ │ │ ├── hb-icu.h │ │ │ ├── hb-iter.hh │ │ │ ├── hb-kern.hh │ │ │ ├── hb-machinery.hh │ │ │ ├── hb-map.h │ │ │ ├── hb-map.hh │ │ │ ├── hb-meta.hh │ │ │ ├── hb-mutex.hh │ │ │ ├── hb-null.hh │ │ │ ├── hb-number-parser.hh │ │ │ ├── hb-number.hh │ │ │ ├── hb-object.hh │ │ │ ├── hb-open-file.hh │ │ │ ├── hb-open-type.hh │ │ │ ├── hb-ot-cff-common.hh │ │ │ ├── hb-ot-cff1-std-str.hh │ │ │ ├── hb-ot-cff1-table.hh │ │ │ ├── hb-ot-cff2-table.hh │ │ │ ├── hb-ot-cmap-table.hh │ │ │ ├── hb-ot-color-cbdt-table.hh │ │ │ ├── hb-ot-color-colr-table.hh │ │ │ ├── hb-ot-color-cpal-table.hh │ │ │ ├── hb-ot-color-sbix-table.hh │ │ │ ├── hb-ot-color-svg-table.hh │ │ │ ├── hb-ot-color.h │ │ │ ├── hb-ot-deprecated.h │ │ │ ├── hb-ot-face-table-list.hh │ │ │ ├── hb-ot-face.hh │ │ │ ├── hb-ot-font.h │ │ │ ├── hb-ot-gasp-table.hh │ │ │ ├── hb-ot-glyf-table.hh │ │ │ ├── hb-ot-hdmx-table.hh │ │ │ ├── hb-ot-head-table.hh │ │ │ ├── hb-ot-hhea-table.hh │ │ │ ├── hb-ot-hmtx-table.hh │ │ │ ├── hb-ot-kern-table.hh │ │ │ ├── hb-ot-layout-base-table.hh │ │ │ ├── hb-ot-layout-common.hh │ │ │ ├── hb-ot-layout-gdef-table.hh │ │ │ ├── hb-ot-layout-gpos-table.hh │ │ │ ├── hb-ot-layout-gsub-table.hh │ │ │ ├── hb-ot-layout-gsubgpos.hh │ │ │ ├── hb-ot-layout-jstf-table.hh │ │ │ ├── hb-ot-layout.h │ │ │ ├── hb-ot-layout.hh │ │ │ ├── hb-ot-map.hh │ │ │ ├── hb-ot-math-table.hh │ │ │ ├── hb-ot-math.h │ │ │ ├── hb-ot-maxp-table.hh │ │ │ ├── hb-ot-meta-table.hh │ │ │ ├── hb-ot-meta.h │ │ │ ├── hb-ot-metrics.h │ │ │ ├── hb-ot-metrics.hh │ │ │ ├── hb-ot-name-language-static.hh │ │ │ ├── hb-ot-name-language.hh │ │ │ ├── hb-ot-name-table.hh │ │ │ ├── hb-ot-name.h │ │ │ ├── hb-ot-os2-table.hh │ │ │ ├── hb-ot-os2-unicode-ranges.hh │ │ │ ├── hb-ot-post-macroman.hh │ │ │ ├── hb-ot-post-table.hh │ │ │ ├── hb-ot-shape-complex-arabic-fallback.hh │ │ │ ├── hb-ot-shape-complex-arabic-table.hh │ │ │ ├── hb-ot-shape-complex-arabic-win1256.hh │ │ │ ├── hb-ot-shape-complex-arabic.hh │ │ │ ├── hb-ot-shape-complex-indic-machine.hh │ │ │ ├── hb-ot-shape-complex-indic.hh │ │ │ ├── hb-ot-shape-complex-khmer-machine.hh │ │ │ ├── hb-ot-shape-complex-khmer.hh │ │ │ ├── hb-ot-shape-complex-myanmar-machine.hh │ │ │ ├── hb-ot-shape-complex-myanmar.hh │ │ │ ├── hb-ot-shape-complex-use-machine.hh │ │ │ ├── hb-ot-shape-complex-use.hh │ │ │ ├── hb-ot-shape-complex-vowel-constraints.hh │ │ │ ├── hb-ot-shape-complex.hh │ │ │ ├── hb-ot-shape-fallback.hh │ │ │ ├── hb-ot-shape-normalize.hh │ │ │ ├── hb-ot-shape.h │ │ │ ├── hb-ot-shape.hh │ │ │ ├── hb-ot-stat-table.hh │ │ │ ├── hb-ot-tag-table.hh │ │ │ ├── hb-ot-var-avar-table.hh │ │ │ ├── hb-ot-var-fvar-table.hh │ │ │ ├── hb-ot-var-gvar-table.hh │ │ │ ├── hb-ot-var-hvar-table.hh │ │ │ ├── hb-ot-var-mvar-table.hh │ │ │ ├── hb-ot-var.h │ │ │ ├── hb-ot-vorg-table.hh │ │ │ ├── hb-ot.h │ │ │ ├── hb-pool.hh │ │ │ ├── hb-sanitize.hh │ │ │ ├── hb-serialize.hh │ │ │ ├── hb-set-digest.hh │ │ │ ├── hb-set.h │ │ │ ├── hb-set.hh │ │ │ ├── hb-shape-plan.h │ │ │ ├── hb-shape-plan.hh │ │ │ ├── hb-shape.h │ │ │ ├── hb-shaper-impl.hh │ │ │ ├── hb-shaper-list.hh │ │ │ ├── hb-shaper.hh │ │ │ ├── hb-string-array.hh │ │ │ ├── hb-subset-cff-common.hh │ │ │ ├── hb-subset-cff1.hh │ │ │ ├── hb-subset-cff2.hh │ │ │ ├── hb-subset-input.hh │ │ │ ├── hb-subset-plan.hh │ │ │ ├── hb-subset.h │ │ │ ├── hb-subset.hh │ │ │ ├── hb-ucd-table.hh │ │ │ ├── hb-unicode-emoji-table.hh │ │ │ ├── hb-unicode.h │ │ │ ├── hb-unicode.hh │ │ │ ├── hb-uniscribe.h │ │ │ ├── hb-utf.hh │ │ │ ├── hb-vector.hh │ │ │ ├── hb-version.h │ │ │ ├── hb.h │ │ │ └── hb.hh │ └── skia │ │ ├── include │ │ ├── codec │ │ │ ├── BUILD.bazel │ │ │ ├── SkAndroidCodec.h │ │ │ ├── SkCodec.h │ │ │ ├── SkCodecAnimation.h │ │ │ └── SkEncodedOrigin.h │ │ ├── config │ │ │ ├── BUILD.bazel │ │ │ └── SkUserConfig.h │ │ ├── core │ │ │ ├── BUILD.bazel │ │ │ ├── SkAlphaType.h │ │ │ ├── SkAnnotation.h │ │ │ ├── SkBBHFactory.h │ │ │ ├── SkBitmap.h │ │ │ ├── SkBlendMode.h │ │ │ ├── SkBlender.h │ │ │ ├── SkBlurTypes.h │ │ │ ├── SkCanvas.h │ │ │ ├── SkCanvasVirtualEnforcer.h │ │ │ ├── SkCapabilities.h │ │ │ ├── SkClipOp.h │ │ │ ├── SkColor.h │ │ │ ├── SkColorFilter.h │ │ │ ├── SkColorPriv.h │ │ │ ├── SkColorSpace.h │ │ │ ├── SkColorType.h │ │ │ ├── SkCombinationBuilder.h │ │ │ ├── SkContourMeasure.h │ │ │ ├── SkCoverageMode.h │ │ │ ├── SkCubicMap.h │ │ │ ├── SkData.h │ │ │ ├── SkDataTable.h │ │ │ ├── SkDeferredDisplayList.h │ │ │ ├── SkDeferredDisplayListRecorder.h │ │ │ ├── SkDocument.h │ │ │ ├── SkDrawLooper.h │ │ │ ├── SkDrawable.h │ │ │ ├── SkEncodedImageFormat.h │ │ │ ├── SkExecutor.h │ │ │ ├── SkFlattenable.h │ │ │ ├── SkFont.h │ │ │ ├── SkFontArguments.h │ │ │ ├── SkFontMetrics.h │ │ │ ├── SkFontMgr.h │ │ │ ├── SkFontParameters.h │ │ │ ├── SkFontStyle.h │ │ │ ├── SkFontTypes.h │ │ │ ├── SkGraphics.h │ │ │ ├── SkICC.h │ │ │ ├── SkImage.h │ │ │ ├── SkImageEncoder.h │ │ │ ├── SkImageFilter.h │ │ │ ├── SkImageGenerator.h │ │ │ ├── SkImageInfo.h │ │ │ ├── SkM44.h │ │ │ ├── SkMallocPixelRef.h │ │ │ ├── SkMaskFilter.h │ │ │ ├── SkMath.h │ │ │ ├── SkMatrix.h │ │ │ ├── SkMesh.h │ │ │ ├── SkMilestone.h │ │ │ ├── SkOpenTypeSVGDecoder.h │ │ │ ├── SkOverdrawCanvas.h │ │ │ ├── SkPaint.h │ │ │ ├── SkPath.h │ │ │ ├── SkPathBuilder.h │ │ │ ├── SkPathEffect.h │ │ │ ├── SkPathMeasure.h │ │ │ ├── SkPathTypes.h │ │ │ ├── SkPicture.h │ │ │ ├── SkPictureRecorder.h │ │ │ ├── SkPixelRef.h │ │ │ ├── SkPixmap.h │ │ │ ├── SkPngChunkReader.h │ │ │ ├── SkPoint.h │ │ │ ├── SkPoint3.h │ │ │ ├── SkPromiseImageTexture.h │ │ │ ├── SkRRect.h │ │ │ ├── SkRSXform.h │ │ │ ├── SkRasterHandleAllocator.h │ │ │ ├── SkRect.h │ │ │ ├── SkRefCnt.h │ │ │ ├── SkRegion.h │ │ │ ├── SkSamplingOptions.h │ │ │ ├── SkScalar.h │ │ │ ├── SkSerialProcs.h │ │ │ ├── SkShader.h │ │ │ ├── SkSize.h │ │ │ ├── SkSpan.h │ │ │ ├── SkStream.h │ │ │ ├── SkString.h │ │ │ ├── SkStrokeRec.h │ │ │ ├── SkSurface.h │ │ │ ├── SkSurfaceCharacterization.h │ │ │ ├── SkSurfaceProps.h │ │ │ ├── SkSwizzle.h │ │ │ ├── SkTextBlob.h │ │ │ ├── SkTileMode.h │ │ │ ├── SkTime.h │ │ │ ├── SkTraceMemoryDump.h │ │ │ ├── SkTypeface.h │ │ │ ├── SkTypes.h │ │ │ ├── SkUnPreMultiply.h │ │ │ ├── SkVertices.h │ │ │ ├── SkYUVAInfo.h │ │ │ └── SkYUVAPixmaps.h │ │ ├── effects │ │ │ ├── BUILD.bazel │ │ │ ├── Sk1DPathEffect.h │ │ │ ├── Sk2DPathEffect.h │ │ │ ├── SkBlenders.h │ │ │ ├── SkBlurDrawLooper.h │ │ │ ├── SkBlurMaskFilter.h │ │ │ ├── SkColorMatrix.h │ │ │ ├── SkColorMatrixFilter.h │ │ │ ├── SkCornerPathEffect.h │ │ │ ├── SkDashPathEffect.h │ │ │ ├── SkDiscretePathEffect.h │ │ │ ├── SkGradientShader.h │ │ │ ├── SkHighContrastFilter.h │ │ │ ├── SkImageFilters.h │ │ │ ├── SkLayerDrawLooper.h │ │ │ ├── SkLumaColorFilter.h │ │ │ ├── SkOpPathEffect.h │ │ │ ├── SkOverdrawColorFilter.h │ │ │ ├── SkPerlinNoiseShader.h │ │ │ ├── SkRuntimeEffect.h │ │ │ ├── SkShaderMaskFilter.h │ │ │ ├── SkStrokeAndFillPathEffect.h │ │ │ ├── SkTableColorFilter.h │ │ │ ├── SkTableMaskFilter.h │ │ │ └── SkTrimPathEffect.h │ │ ├── gpu │ │ │ ├── BUILD.bazel │ │ │ ├── GpuTypes.h │ │ │ ├── GrBackendDrawableInfo.h │ │ │ ├── GrBackendSemaphore.h │ │ │ ├── GrBackendSurface.h │ │ │ ├── GrBackendSurfaceMutableState.h │ │ │ ├── GrConfig.h │ │ │ ├── GrContextOptions.h │ │ │ ├── GrContextThreadSafeProxy.h │ │ │ ├── GrDirectContext.h │ │ │ ├── GrDriverBugWorkarounds.h │ │ │ ├── GrDriverBugWorkaroundsAutogen.h │ │ │ ├── GrRecordingContext.h │ │ │ ├── GrSurfaceInfo.h │ │ │ ├── GrTypes.h │ │ │ ├── GrYUVABackendTextures.h │ │ │ ├── ShaderErrorHandler.h │ │ │ ├── d3d │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrD3DBackendContext.h │ │ │ │ └── GrD3DTypes.h │ │ │ ├── dawn │ │ │ │ ├── BUILD.bazel │ │ │ │ └── GrDawnTypes.h │ │ │ ├── gl │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrGLAssembleHelpers.h │ │ │ │ ├── GrGLAssembleInterface.h │ │ │ │ ├── GrGLConfig.h │ │ │ │ ├── GrGLConfig_chrome.h │ │ │ │ ├── GrGLExtensions.h │ │ │ │ ├── GrGLFunctions.h │ │ │ │ ├── GrGLInterface.h │ │ │ │ ├── GrGLTypes.h │ │ │ │ ├── egl │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── GrGLMakeEGLInterface.h │ │ │ │ └── glx │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── GrGLMakeGLXInterface.h │ │ │ ├── graphite │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── BackendTexture.h │ │ │ │ ├── Context.h │ │ │ │ ├── ContextOptions.h │ │ │ │ ├── GraphiteTypes.h │ │ │ │ ├── ImageProvider.h │ │ │ │ ├── Recorder.h │ │ │ │ ├── Recording.h │ │ │ │ ├── SkStuff.h │ │ │ │ ├── TextureInfo.h │ │ │ │ └── mtl │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── MtlBackendContext.h │ │ │ │ │ └── MtlTypes.h │ │ │ ├── mock │ │ │ │ ├── BUILD.bazel │ │ │ │ └── GrMockTypes.h │ │ │ ├── mtl │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrMtlBackendContext.h │ │ │ │ └── GrMtlTypes.h │ │ │ └── vk │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrVkBackendContext.h │ │ │ │ ├── GrVkExtensions.h │ │ │ │ ├── GrVkMemoryAllocator.h │ │ │ │ ├── GrVkTypes.h │ │ │ │ └── GrVkVulkan.h │ │ ├── ports │ │ │ ├── SkCFObject.h │ │ │ ├── SkFontConfigInterface.h │ │ │ ├── SkFontMgr_FontConfigInterface.h │ │ │ ├── SkFontMgr_android.h │ │ │ ├── SkFontMgr_directory.h │ │ │ ├── SkFontMgr_empty.h │ │ │ ├── SkFontMgr_fontconfig.h │ │ │ ├── SkFontMgr_fuchsia.h │ │ │ ├── SkFontMgr_indirect.h │ │ │ ├── SkFontMgr_mac_ct.h │ │ │ ├── SkImageGeneratorCG.h │ │ │ ├── SkImageGeneratorNDK.h │ │ │ ├── SkImageGeneratorWIC.h │ │ │ ├── SkRemotableFontMgr.h │ │ │ ├── SkTypeface_mac.h │ │ │ └── SkTypeface_win.h │ │ ├── private │ │ │ ├── BUILD.bazel │ │ │ ├── OWNERS │ │ │ ├── SingleOwner.h │ │ │ ├── SkBitmaskEnum.h │ │ │ ├── SkChecksum.h │ │ │ ├── SkColorData.h │ │ │ ├── SkDeque.h │ │ │ ├── SkEncodedInfo.h │ │ │ ├── SkFixed.h │ │ │ ├── SkFloatBits.h │ │ │ ├── SkFloatingPoint.h │ │ │ ├── SkHalf.h │ │ │ ├── SkIDChangeListener.h │ │ │ ├── SkImageInfoPriv.h │ │ │ ├── SkMacros.h │ │ │ ├── SkMalloc.h │ │ │ ├── SkMutex.h │ │ │ ├── SkNoncopyable.h │ │ │ ├── SkOnce.h │ │ │ ├── SkOpts_spi.h │ │ │ ├── SkPathRef.h │ │ │ ├── SkSLDefines.h │ │ │ ├── SkSLIRNode.h │ │ │ ├── SkSLLayout.h │ │ │ ├── SkSLModifiers.h │ │ │ ├── SkSLProgramElement.h │ │ │ ├── SkSLProgramKind.h │ │ │ ├── SkSLSampleUsage.h │ │ │ ├── SkSLStatement.h │ │ │ ├── SkSLString.h │ │ │ ├── SkSLSymbol.h │ │ │ ├── SkSafe32.h │ │ │ ├── SkSafe_math.h │ │ │ ├── SkSemaphore.h │ │ │ ├── SkShadowFlags.h │ │ │ ├── SkSpinlock.h │ │ │ ├── SkStringView.h │ │ │ ├── SkTArray.h │ │ │ ├── SkTDArray.h │ │ │ ├── SkTFitsIn.h │ │ │ ├── SkTHash.h │ │ │ ├── SkTLogic.h │ │ │ ├── SkTPin.h │ │ │ ├── SkTemplates.h │ │ │ ├── SkThreadAnnotations.h │ │ │ ├── SkThreadID.h │ │ │ ├── SkTo.h │ │ │ ├── SkUniquePaintParamsID.h │ │ │ ├── SkVx.h │ │ │ ├── SkWeakRefCnt.h │ │ │ ├── chromium │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrSlug.h │ │ │ │ ├── SkChromeRemoteGlyphCache.h │ │ │ │ └── Slug.h │ │ │ └── gpu │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ganesh │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── GrContext_Base.h │ │ │ │ ├── GrD3DTypesMinimal.h │ │ │ │ ├── GrDawnTypesPriv.h │ │ │ │ ├── GrGLTypesPriv.h │ │ │ │ ├── GrImageContext.h │ │ │ │ ├── GrMockTypesPriv.h │ │ │ │ ├── GrMtlTypesPriv.h │ │ │ │ ├── GrTypesPriv.h │ │ │ │ └── GrVkTypesPriv.h │ │ │ │ └── graphite │ │ │ │ └── MtlTypesPriv.h │ │ ├── sksl │ │ │ ├── BUILD.bazel │ │ │ ├── DSL.h │ │ │ ├── DSLBlock.h │ │ │ ├── DSLCase.h │ │ │ ├── DSLCore.h │ │ │ ├── DSLExpression.h │ │ │ ├── DSLFunction.h │ │ │ ├── DSLLayout.h │ │ │ ├── DSLModifiers.h │ │ │ ├── DSLStatement.h │ │ │ ├── DSLSymbols.h │ │ │ ├── DSLType.h │ │ │ ├── DSLVar.h │ │ │ ├── OWNERS │ │ │ ├── SkSLDebugTrace.h │ │ │ ├── SkSLErrorReporter.h │ │ │ ├── SkSLOperator.h │ │ │ ├── SkSLPosition.h │ │ │ └── SkSLVersion.h │ │ └── utils │ │ │ └── SkRandom.h │ │ ├── modules │ │ └── skcms │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── OWNERS │ │ │ ├── README.chromium │ │ │ ├── skcms.gni │ │ │ ├── skcms.h │ │ │ ├── skcms_internal.h │ │ │ ├── src │ │ │ └── Transform_inl.h │ │ │ └── version.sha1 │ │ ├── src │ │ ├── core │ │ │ ├── BUILD.bazel │ │ │ ├── Sk4px.h │ │ │ ├── SkAAClip.h │ │ │ ├── SkASAN.h │ │ │ ├── SkATrace.h │ │ │ ├── SkAdvancedTypefaceMetrics.h │ │ │ ├── SkAnalyticEdge.h │ │ │ ├── SkAnnotationKeys.h │ │ │ ├── SkAntiRun.h │ │ │ ├── SkArenaAlloc.h │ │ │ ├── SkArenaAllocList.h │ │ │ ├── SkAutoBlitterChoose.h │ │ │ ├── SkAutoMalloc.h │ │ │ ├── SkAutoPixmapStorage.h │ │ │ ├── SkBigPicture.h │ │ │ ├── SkBitmapCache.h │ │ │ ├── SkBitmapDevice.h │ │ │ ├── SkBitmapProcState.h │ │ │ ├── SkBlendModeBlender.h │ │ │ ├── SkBlendModePriv.h │ │ │ ├── SkBlenderBase.h │ │ │ ├── SkBlitBWMaskTemplate.h │ │ │ ├── SkBlitRow.h │ │ │ ├── SkBlitter.h │ │ │ ├── SkBlockAllocator.h │ │ │ ├── SkBlurMask.h │ │ │ ├── SkBuffer.h │ │ │ ├── SkBuiltInCodeSnippetID.h │ │ │ ├── SkCachedData.h │ │ │ ├── SkCanvasPriv.h │ │ │ ├── SkClipStack.h │ │ │ ├── SkClipStackDevice.h │ │ │ ├── SkColorFilterBase.h │ │ │ ├── SkColorFilterPriv.h │ │ │ ├── SkColorSpacePriv.h │ │ │ ├── SkColorSpaceXformSteps.h │ │ │ ├── SkCompressedDataUtils.h │ │ │ ├── SkConvertPixels.h │ │ │ ├── SkCoreBlitters.h │ │ │ ├── SkCpu.h │ │ │ ├── SkCubicClipper.h │ │ │ ├── SkCubicSolver.h │ │ │ ├── SkDebugUtils.h │ │ │ ├── SkDeferredDisplayListPriv.h │ │ │ ├── SkDescriptor.h │ │ │ ├── SkDevice.h │ │ │ ├── SkDiscardableMemory.h │ │ │ ├── SkDistanceFieldGen.h │ │ │ ├── SkDraw.h │ │ │ ├── SkDrawProcs.h │ │ │ ├── SkDrawShadowInfo.h │ │ │ ├── SkEdge.h │ │ │ ├── SkEdgeBuilder.h │ │ │ ├── SkEdgeClipper.h │ │ │ ├── SkEffectPriv.h │ │ │ ├── SkEndian.h │ │ │ ├── SkEnumBitMask.h │ │ │ ├── SkEnumerate.h │ │ │ ├── SkFDot6.h │ │ │ ├── SkFactoryFunctions.h │ │ │ ├── SkFontDescriptor.h │ │ │ ├── SkFontMgrPriv.h │ │ │ ├── SkFontPriv.h │ │ │ ├── SkFontStream.h │ │ │ ├── SkFuzzLogging.h │ │ │ ├── SkGaussFilter.h │ │ │ ├── SkGeometry.h │ │ │ ├── SkGlyph.h │ │ │ ├── SkGlyphBuffer.h │ │ │ ├── SkGlyphRunPainter.h │ │ │ ├── SkGpuBlurUtils.h │ │ │ ├── SkICCPriv.h │ │ │ ├── SkIPoint16.h │ │ │ ├── SkImageFilterCache.h │ │ │ ├── SkImageFilterTypes.h │ │ │ ├── SkImageFilter_Base.h │ │ │ ├── SkImagePriv.h │ │ │ ├── SkKeyContext.h │ │ │ ├── SkKeyHelpers.h │ │ │ ├── SkLRUCache.h │ │ │ ├── SkLatticeIter.h │ │ │ ├── SkLeanWindows.h │ │ │ ├── SkLineClipper.h │ │ │ ├── SkLocalMatrixImageFilter.h │ │ │ ├── SkMD5.h │ │ │ ├── SkMSAN.h │ │ │ ├── SkMask.h │ │ │ ├── SkMaskBlurFilter.h │ │ │ ├── SkMaskCache.h │ │ │ ├── SkMaskFilterBase.h │ │ │ ├── SkMaskGamma.h │ │ │ ├── SkMathPriv.h │ │ │ ├── SkMatrixImageFilter.h │ │ │ ├── SkMatrixInvert.h │ │ │ ├── SkMatrixPriv.h │ │ │ ├── SkMatrixProvider.h │ │ │ ├── SkMatrixUtils.h │ │ │ ├── SkMeshPriv.h │ │ │ ├── SkMessageBus.h │ │ │ ├── SkMipmap.h │ │ │ ├── SkMipmapAccessor.h │ │ │ ├── SkMipmapBuilder.h │ │ │ ├── SkNextID.h │ │ │ ├── SkOSFile.h │ │ │ ├── SkOpts.h │ │ │ ├── SkOrderedReadBuffer.h │ │ │ ├── SkPaintDefaults.h │ │ │ ├── SkPaintParamsKey.h │ │ │ ├── SkPaintPriv.h │ │ │ ├── SkPathEffectBase.h │ │ │ ├── SkPathMakers.h │ │ │ ├── SkPathMeasurePriv.h │ │ │ ├── SkPathPriv.h │ │ │ ├── SkPictureData.h │ │ │ ├── SkPictureFlat.h │ │ │ ├── SkPicturePlayback.h │ │ │ ├── SkPicturePriv.h │ │ │ ├── SkPictureRecord.h │ │ │ ├── SkPipelineData.h │ │ │ ├── SkPixelRefPriv.h │ │ │ ├── SkPixmapPriv.h │ │ │ ├── SkPointPriv.h │ │ │ ├── SkPrecompile.h │ │ │ ├── SkPtrRecorder.h │ │ │ ├── SkQuadClipper.h │ │ │ ├── SkRRectPriv.h │ │ │ ├── SkRTree.h │ │ │ ├── SkRasterClip.h │ │ │ ├── SkRasterClipStack.h │ │ │ ├── SkRasterPipeline.h │ │ │ ├── SkReadBuffer.h │ │ │ ├── SkRecord.h │ │ │ ├── SkRecordDraw.h │ │ │ ├── SkRecordOpts.h │ │ │ ├── SkRecordPattern.h │ │ │ ├── SkRecordedDrawable.h │ │ │ ├── SkRecorder.h │ │ │ ├── SkRecords.h │ │ │ ├── SkRectPriv.h │ │ │ ├── SkRegionPriv.h │ │ │ ├── SkResourceCache.h │ │ │ ├── SkRuntimeEffectDictionary.h │ │ │ ├── SkRuntimeEffectPriv.h │ │ │ ├── SkSLTypeShared.h │ │ │ ├── SkSafeMath.h │ │ │ ├── SkSafeRange.h │ │ │ ├── SkSamplingPriv.h │ │ │ ├── SkScaleToSides.h │ │ │ ├── SkScalerCache.h │ │ │ ├── SkScalerContext.h │ │ │ ├── SkScan.h │ │ │ ├── SkScanPriv.h │ │ │ ├── SkScopeExit.h │ │ │ ├── SkShaderCodeDictionary.h │ │ │ ├── SkSharedMutex.h │ │ │ ├── SkSpecialImage.h │ │ │ ├── SkSpecialSurface.h │ │ │ ├── SkSpriteBlitter.h │ │ │ ├── SkStreamPriv.h │ │ │ ├── SkStrikeCache.h │ │ │ ├── SkStrikeSpec.h │ │ │ ├── SkStringUtils.h │ │ │ ├── SkStroke.h │ │ │ ├── SkStrokerPriv.h │ │ │ ├── SkSurfacePriv.h │ │ │ ├── SkTBlockList.h │ │ │ ├── SkTDPQueue.h │ │ │ ├── SkTDynamicHash.h │ │ │ ├── SkTInternalLList.h │ │ │ ├── SkTLazy.h │ │ │ ├── SkTMultiMap.h │ │ │ ├── SkTSearch.h │ │ │ ├── SkTSort.h │ │ │ ├── SkTaskGroup.h │ │ │ ├── SkTextBlobPriv.h │ │ │ ├── SkTextBlobTrace.h │ │ │ ├── SkTextFormatParams.h │ │ │ ├── SkTraceEvent.h │ │ │ ├── SkTraceEventCommon.h │ │ │ ├── SkTypefaceCache.h │ │ │ ├── SkTypeface_remote.h │ │ │ ├── SkUniform.h │ │ │ ├── SkUtils.h │ │ │ ├── SkVM.h │ │ │ ├── SkVMBlitter.h │ │ │ ├── SkVM_fwd.h │ │ │ ├── SkValidationUtils.h │ │ │ ├── SkVertState.h │ │ │ ├── SkVerticesPriv.h │ │ │ ├── SkWriteBuffer.h │ │ │ ├── SkWritePixelsRec.h │ │ │ ├── SkWriter32.h │ │ │ ├── SkXfermodeInterpretation.h │ │ │ ├── SkXfermodePriv.h │ │ │ ├── SkYUVAInfoLocation.h │ │ │ ├── SkYUVMath.h │ │ │ ├── SkYUVPlanesCache.h │ │ │ └── SkZip.h │ │ ├── gpu │ │ │ ├── AtlasTypes.h │ │ │ ├── BUILD.bazel │ │ │ ├── Blend.h │ │ │ ├── BufferWriter.h │ │ │ ├── GrAHardwareBufferUtils.h │ │ │ ├── GrRectanizer.h │ │ │ ├── KeyBuilder.h │ │ │ ├── Rectanizer.h │ │ │ ├── RectanizerPow2.h │ │ │ ├── RectanizerSkyline.h │ │ │ ├── RefCntedCallback.h │ │ │ ├── ResourceKey.h │ │ │ ├── Swizzle.h │ │ │ ├── ganesh │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── ClipStack.h │ │ │ │ ├── Device_v1.h │ │ │ │ ├── GrAHardwareBufferImageGenerator.h │ │ │ │ ├── GrAHardwareBufferUtils_impl.h │ │ │ │ ├── GrAppliedClip.h │ │ │ │ ├── GrAttachment.h │ │ │ │ ├── GrAuditTrail.h │ │ │ │ ├── GrAutoLocaleSetter.h │ │ │ │ ├── GrBackendSurfaceMutableStateImpl.h │ │ │ │ ├── GrBackendTextureImageGenerator.h │ │ │ │ ├── GrBackendUtils.h │ │ │ │ ├── GrBaseContextPriv.h │ │ │ │ ├── GrBlurUtils.h │ │ │ │ ├── GrBuffer.h │ │ │ │ ├── GrBufferAllocPool.h │ │ │ │ ├── GrBufferTransferRenderTask.h │ │ │ │ ├── GrCaps.h │ │ │ │ ├── GrClientMappedBufferManager.h │ │ │ │ ├── GrClip.h │ │ │ │ ├── GrColor.h │ │ │ │ ├── GrColorInfo.h │ │ │ │ ├── GrColorSpaceXform.h │ │ │ │ ├── GrContextThreadSafeProxyPriv.h │ │ │ │ ├── GrCopyRenderTask.h │ │ │ │ ├── GrCpuBuffer.h │ │ │ │ ├── GrDDLTask.h │ │ │ │ ├── GrDataUtils.h │ │ │ │ ├── GrDefaultGeoProcFactory.h │ │ │ │ ├── GrDeferredProxyUploader.h │ │ │ │ ├── GrDeferredUpload.h │ │ │ │ ├── GrDirectContextPriv.h │ │ │ │ ├── GrDistanceFieldGenFromVector.h │ │ │ │ ├── GrDrawIndirectCommand.h │ │ │ │ ├── GrDrawOpAtlas.h │ │ │ │ ├── GrDrawOpTest.h │ │ │ │ ├── GrDrawingManager.h │ │ │ │ ├── GrDstProxyView.h │ │ │ │ ├── GrDynamicAtlas.h │ │ │ │ ├── GrEagerVertexAllocator.h │ │ │ │ ├── GrFPArgs.h │ │ │ │ ├── GrFinishCallbacks.h │ │ │ │ ├── GrFixedClip.h │ │ │ │ ├── GrFragmentProcessor.h │ │ │ │ ├── GrGeometryProcessor.h │ │ │ │ ├── GrGpu.h │ │ │ │ ├── GrGpuBuffer.h │ │ │ │ ├── GrGpuResource.h │ │ │ │ ├── GrGpuResourceCacheAccess.h │ │ │ │ ├── GrGpuResourcePriv.h │ │ │ │ ├── GrHashMapWithCache.h │ │ │ │ ├── GrImageContextPriv.h │ │ │ │ ├── GrImageInfo.h │ │ │ │ ├── GrManagedResource.h │ │ │ │ ├── GrMemoryPool.h │ │ │ │ ├── GrMeshDrawTarget.h │ │ │ │ ├── GrNativeRect.h │ │ │ │ ├── GrNonAtomicRef.h │ │ │ │ ├── GrOnFlushResourceProvider.h │ │ │ │ ├── GrOpFlushState.h │ │ │ │ ├── GrOpsRenderPass.h │ │ │ │ ├── GrOpsTypes.h │ │ │ │ ├── GrPaint.h │ │ │ │ ├── GrPersistentCacheUtils.h │ │ │ │ ├── GrPipeline.h │ │ │ │ ├── GrPixmap.h │ │ │ │ ├── GrProcessor.h │ │ │ │ ├── GrProcessorAnalysis.h │ │ │ │ ├── GrProcessorSet.h │ │ │ │ ├── GrProcessorUnitTest.h │ │ │ │ ├── GrProgramDesc.h │ │ │ │ ├── GrProgramInfo.h │ │ │ │ ├── GrProxyProvider.h │ │ │ │ ├── GrRecordingContextPriv.h │ │ │ │ ├── GrRefCnt.h │ │ │ │ ├── GrRenderTarget.h │ │ │ │ ├── GrRenderTargetContext.h │ │ │ │ ├── GrRenderTargetProxy.h │ │ │ │ ├── GrRenderTask.h │ │ │ │ ├── GrRenderTaskCluster.h │ │ │ │ ├── GrResourceAllocator.h │ │ │ │ ├── GrResourceCache.h │ │ │ │ ├── GrResourceHandle.h │ │ │ │ ├── GrResourceProvider.h │ │ │ │ ├── GrResourceProviderPriv.h │ │ │ │ ├── GrRingBuffer.h │ │ │ │ ├── GrSPIRVUniformHandler.h │ │ │ │ ├── GrSPIRVVaryingHandler.h │ │ │ │ ├── GrSWMaskHelper.h │ │ │ │ ├── GrSamplerState.h │ │ │ │ ├── GrScissorState.h │ │ │ │ ├── GrSemaphore.h │ │ │ │ ├── GrShaderCaps.h │ │ │ │ ├── GrShaderVar.h │ │ │ │ ├── GrSimpleMesh.h │ │ │ │ ├── GrStagingBufferManager.h │ │ │ │ ├── GrStencilSettings.h │ │ │ │ ├── GrStyle.h │ │ │ │ ├── GrSurface.h │ │ │ │ ├── GrSurfaceProxy.h │ │ │ │ ├── GrSurfaceProxyPriv.h │ │ │ │ ├── GrSurfaceProxyView.h │ │ │ │ ├── GrTTopoSort.h │ │ │ │ ├── GrTestUtils.h │ │ │ │ ├── GrTexture.h │ │ │ │ ├── GrTextureProxy.h │ │ │ │ ├── GrTextureProxyCacheAccess.h │ │ │ │ ├── GrTextureProxyPriv.h │ │ │ │ ├── GrTextureRenderTargetProxy.h │ │ │ │ ├── GrTextureResolveManager.h │ │ │ │ ├── GrTextureResolveRenderTask.h │ │ │ │ ├── GrThreadSafeCache.h │ │ │ │ ├── GrThreadSafePipelineBuilder.h │ │ │ │ ├── GrTracing.h │ │ │ │ ├── GrTransferFromRenderTask.h │ │ │ │ ├── GrUniformDataManager.h │ │ │ │ ├── GrUserStencilSettings.h │ │ │ │ ├── GrUtil.h │ │ │ │ ├── GrVertexChunkArray.h │ │ │ │ ├── GrWaitRenderTask.h │ │ │ │ ├── GrWindowRectangles.h │ │ │ │ ├── GrWindowRectsState.h │ │ │ │ ├── GrWritePixelsRenderTask.h │ │ │ │ ├── GrXferProcessor.h │ │ │ │ ├── GrYUVATextureProxies.h │ │ │ │ ├── PathRenderer.h │ │ │ │ ├── PathRendererChain.h │ │ │ │ ├── SkGr.h │ │ │ │ ├── StencilClip.h │ │ │ │ ├── StencilMaskHelper.h │ │ │ │ ├── SurfaceContext.h │ │ │ │ ├── SurfaceDrawContext.h │ │ │ │ ├── SurfaceFillContext.h │ │ │ │ ├── d3d │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrD3DAMDMemoryAllocator.h │ │ │ │ │ ├── GrD3DAttachment.h │ │ │ │ │ ├── GrD3DBuffer.h │ │ │ │ │ ├── GrD3DCaps.h │ │ │ │ │ ├── GrD3DCommandList.h │ │ │ │ │ ├── GrD3DCommandSignature.h │ │ │ │ │ ├── GrD3DCpuDescriptorManager.h │ │ │ │ │ ├── GrD3DDescriptorHeap.h │ │ │ │ │ ├── GrD3DDescriptorTableManager.h │ │ │ │ │ ├── GrD3DGpu.h │ │ │ │ │ ├── GrD3DOpsRenderPass.h │ │ │ │ │ ├── GrD3DPipeline.h │ │ │ │ │ ├── GrD3DPipelineState.h │ │ │ │ │ ├── GrD3DPipelineStateBuilder.h │ │ │ │ │ ├── GrD3DPipelineStateDataManager.h │ │ │ │ │ ├── GrD3DRenderTarget.h │ │ │ │ │ ├── GrD3DResourceProvider.h │ │ │ │ │ ├── GrD3DResourceState.h │ │ │ │ │ ├── GrD3DRootSignature.h │ │ │ │ │ ├── GrD3DSemaphore.h │ │ │ │ │ ├── GrD3DTexture.h │ │ │ │ │ ├── GrD3DTextureRenderTarget.h │ │ │ │ │ ├── GrD3DTextureResource.h │ │ │ │ │ ├── GrD3DTypesPriv.h │ │ │ │ │ └── GrD3DUtil.h │ │ │ │ ├── dawn │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrDawnAsyncWait.h │ │ │ │ │ ├── GrDawnAttachment.h │ │ │ │ │ ├── GrDawnBuffer.h │ │ │ │ │ ├── GrDawnCaps.h │ │ │ │ │ ├── GrDawnGpu.h │ │ │ │ │ ├── GrDawnOpsRenderPass.h │ │ │ │ │ ├── GrDawnProgramBuilder.h │ │ │ │ │ ├── GrDawnProgramDataManager.h │ │ │ │ │ ├── GrDawnRenderTarget.h │ │ │ │ │ ├── GrDawnRingBuffer.h │ │ │ │ │ ├── GrDawnTexture.h │ │ │ │ │ ├── GrDawnTextureRenderTarget.h │ │ │ │ │ └── GrDawnUtil.h │ │ │ │ ├── effects │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrAtlasedShaderHelpers.h │ │ │ │ │ ├── GrBezierEffect.h │ │ │ │ │ ├── GrBicubicEffect.h │ │ │ │ │ ├── GrBitmapTextGeoProc.h │ │ │ │ │ ├── GrBlendFragmentProcessor.h │ │ │ │ │ ├── GrConvexPolyEffect.h │ │ │ │ │ ├── GrCoverageSetOpXP.h │ │ │ │ │ ├── GrCustomXfermode.h │ │ │ │ │ ├── GrDisableColorXP.h │ │ │ │ │ ├── GrDistanceFieldGeoProc.h │ │ │ │ │ ├── GrGaussianConvolutionFragmentProcessor.h │ │ │ │ │ ├── GrMatrixConvolutionEffect.h │ │ │ │ │ ├── GrMatrixEffect.h │ │ │ │ │ ├── GrModulateAtlasCoverageEffect.h │ │ │ │ │ ├── GrOvalEffect.h │ │ │ │ │ ├── GrPorterDuffXferProcessor.h │ │ │ │ │ ├── GrRRectEffect.h │ │ │ │ │ ├── GrShadowGeoProc.h │ │ │ │ │ ├── GrSkSLFP.h │ │ │ │ │ ├── GrTextureEffect.h │ │ │ │ │ └── GrYUVtoRGBEffect.h │ │ │ │ ├── geometry │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrAAConvexTessellator.h │ │ │ │ │ ├── GrAATriangulator.h │ │ │ │ │ ├── GrInnerFanTriangulator.h │ │ │ │ │ ├── GrPathUtils.h │ │ │ │ │ ├── GrQuad.h │ │ │ │ │ ├── GrQuadBuffer.h │ │ │ │ │ ├── GrQuadUtils.h │ │ │ │ │ ├── GrRect.h │ │ │ │ │ ├── GrShape.h │ │ │ │ │ ├── GrStyledShape.h │ │ │ │ │ └── GrTriangulator.h │ │ │ │ ├── gl │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrGLAttachment.h │ │ │ │ │ ├── GrGLBuffer.h │ │ │ │ │ ├── GrGLCaps.h │ │ │ │ │ ├── GrGLContext.h │ │ │ │ │ ├── GrGLDefines_impl.h │ │ │ │ │ ├── GrGLGLSL.h │ │ │ │ │ ├── GrGLGpu.h │ │ │ │ │ ├── GrGLOpsRenderPass.h │ │ │ │ │ ├── GrGLProgram.h │ │ │ │ │ ├── GrGLProgramDataManager.h │ │ │ │ │ ├── GrGLRenderTarget.h │ │ │ │ │ ├── GrGLSemaphore.h │ │ │ │ │ ├── GrGLTexture.h │ │ │ │ │ ├── GrGLTextureRenderTarget.h │ │ │ │ │ ├── GrGLUniformHandler.h │ │ │ │ │ ├── GrGLUtil.h │ │ │ │ │ ├── GrGLVaryingHandler.h │ │ │ │ │ ├── GrGLVertexArray.h │ │ │ │ │ ├── android │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ ├── builders │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── GrGLProgramBuilder.h │ │ │ │ │ │ └── GrGLShaderStringBuilder.h │ │ │ │ │ ├── egl │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ ├── glx │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ ├── iOS │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ ├── mac │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ ├── webgl │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ │ └── win │ │ │ │ │ │ └── BUILD.bazel │ │ │ │ ├── glsl │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrGLSLBlend.h │ │ │ │ │ ├── GrGLSLColorSpaceXformHelper.h │ │ │ │ │ ├── GrGLSLFragmentShaderBuilder.h │ │ │ │ │ ├── GrGLSLProgramBuilder.h │ │ │ │ │ ├── GrGLSLProgramDataManager.h │ │ │ │ │ ├── GrGLSLShaderBuilder.h │ │ │ │ │ ├── GrGLSLUniformHandler.h │ │ │ │ │ ├── GrGLSLVarying.h │ │ │ │ │ └── GrGLSLVertexGeoBuilder.h │ │ │ │ ├── gradients │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrGradientBitmapCache.h │ │ │ │ │ ├── GrGradientShader.h │ │ │ │ │ └── README.md │ │ │ │ ├── mock │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrMockAttachment.h │ │ │ │ │ ├── GrMockBuffer.h │ │ │ │ │ ├── GrMockCaps.h │ │ │ │ │ ├── GrMockGpu.h │ │ │ │ │ ├── GrMockOpTarget.h │ │ │ │ │ ├── GrMockOpsRenderPass.h │ │ │ │ │ ├── GrMockRenderTask.h │ │ │ │ │ ├── GrMockSurfaceProxy.h │ │ │ │ │ └── GrMockTexture.h │ │ │ │ ├── mtl │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrMtlAttachment.h │ │ │ │ │ ├── GrMtlAttachment.mm │ │ │ │ │ ├── GrMtlBuffer.h │ │ │ │ │ ├── GrMtlBuffer.mm │ │ │ │ │ ├── GrMtlCaps.h │ │ │ │ │ ├── GrMtlCaps.mm │ │ │ │ │ ├── GrMtlCommandBuffer.h │ │ │ │ │ ├── GrMtlCommandBuffer.mm │ │ │ │ │ ├── GrMtlCppUtil.h │ │ │ │ │ ├── GrMtlDepthStencil.h │ │ │ │ │ ├── GrMtlDepthStencil.mm │ │ │ │ │ ├── GrMtlFramebuffer.h │ │ │ │ │ ├── GrMtlFramebuffer.mm │ │ │ │ │ ├── GrMtlGpu.h │ │ │ │ │ ├── GrMtlGpu.mm │ │ │ │ │ ├── GrMtlOpsRenderPass.h │ │ │ │ │ ├── GrMtlOpsRenderPass.mm │ │ │ │ │ ├── GrMtlPipeline.h │ │ │ │ │ ├── GrMtlPipelineState.h │ │ │ │ │ ├── GrMtlPipelineState.mm │ │ │ │ │ ├── GrMtlPipelineStateBuilder.h │ │ │ │ │ ├── GrMtlPipelineStateBuilder.mm │ │ │ │ │ ├── GrMtlPipelineStateDataManager.h │ │ │ │ │ ├── GrMtlPipelineStateDataManager.mm │ │ │ │ │ ├── GrMtlRenderCommandEncoder.h │ │ │ │ │ ├── GrMtlRenderTarget.h │ │ │ │ │ ├── GrMtlRenderTarget.mm │ │ │ │ │ ├── GrMtlResourceProvider.h │ │ │ │ │ ├── GrMtlResourceProvider.mm │ │ │ │ │ ├── GrMtlSampler.h │ │ │ │ │ ├── GrMtlSampler.mm │ │ │ │ │ ├── GrMtlSemaphore.h │ │ │ │ │ ├── GrMtlSemaphore.mm │ │ │ │ │ ├── GrMtlTexture.h │ │ │ │ │ ├── GrMtlTexture.mm │ │ │ │ │ ├── GrMtlTextureRenderTarget.h │ │ │ │ │ ├── GrMtlTextureRenderTarget.mm │ │ │ │ │ ├── GrMtlTrampoline.h │ │ │ │ │ ├── GrMtlTrampoline.mm │ │ │ │ │ ├── GrMtlTypesPriv.mm │ │ │ │ │ ├── GrMtlUniformHandler.h │ │ │ │ │ ├── GrMtlUniformHandler.mm │ │ │ │ │ ├── GrMtlUtil.h │ │ │ │ │ ├── GrMtlUtil.mm │ │ │ │ │ ├── GrMtlVaryingHandler.h │ │ │ │ │ └── GrMtlVaryingHandler.mm │ │ │ │ ├── ops │ │ │ │ │ ├── AAConvexPathRenderer.h │ │ │ │ │ ├── AAHairLinePathRenderer.h │ │ │ │ │ ├── AALinearizingConvexPathRenderer.h │ │ │ │ │ ├── AtlasInstancedHelper.h │ │ │ │ │ ├── AtlasPathRenderer.h │ │ │ │ │ ├── AtlasRenderTask.h │ │ │ │ │ ├── AtlasTextOp.h │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── ClearOp.h │ │ │ │ │ ├── DashLinePathRenderer.h │ │ │ │ │ ├── DashOp.h │ │ │ │ │ ├── DefaultPathRenderer.h │ │ │ │ │ ├── DrawAtlasOp.h │ │ │ │ │ ├── DrawAtlasPathOp.h │ │ │ │ │ ├── DrawMeshOp.h │ │ │ │ │ ├── DrawableOp.h │ │ │ │ │ ├── FillPathFlags.h │ │ │ │ │ ├── FillRRectOp.h │ │ │ │ │ ├── FillRectOp.h │ │ │ │ │ ├── GrDrawOp.h │ │ │ │ │ ├── GrMeshDrawOp.h │ │ │ │ │ ├── GrOp.h │ │ │ │ │ ├── GrOvalOpFactory.h │ │ │ │ │ ├── GrPathStencilSettings.h │ │ │ │ │ ├── GrSimpleMeshDrawOpHelper.h │ │ │ │ │ ├── GrSimpleMeshDrawOpHelperWithStencil.h │ │ │ │ │ ├── LatticeOp.h │ │ │ │ │ ├── OpsTask.h │ │ │ │ │ ├── PathInnerTriangulateOp.h │ │ │ │ │ ├── PathStencilCoverOp.h │ │ │ │ │ ├── PathTessellateOp.h │ │ │ │ │ ├── QuadPerEdgeAA.h │ │ │ │ │ ├── RegionOp.h │ │ │ │ │ ├── ShadowRRectOp.h │ │ │ │ │ ├── SmallPathAtlasMgr.h │ │ │ │ │ ├── SmallPathRenderer.h │ │ │ │ │ ├── SmallPathShapeData.h │ │ │ │ │ ├── SoftwarePathRenderer.h │ │ │ │ │ ├── StrokeRectOp.h │ │ │ │ │ ├── StrokeTessellateOp.h │ │ │ │ │ ├── TessellationPathRenderer.h │ │ │ │ │ ├── TextureOp.h │ │ │ │ │ └── TriangulatingPathRenderer.h │ │ │ │ ├── tessellate │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrPathTessellationShader.h │ │ │ │ │ ├── GrStrokeTessellationShader.h │ │ │ │ │ ├── GrTessellationShader.h │ │ │ │ │ ├── PathTessellator.h │ │ │ │ │ ├── StrokeTessellator.h │ │ │ │ │ └── VertexChunkPatchAllocator.h │ │ │ │ ├── text │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ └── GrAtlasManager.h │ │ │ │ └── vk │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── GrVkAMDMemoryAllocator.h │ │ │ │ │ ├── GrVkBuffer.h │ │ │ │ │ ├── GrVkCaps.h │ │ │ │ │ ├── GrVkCommandBuffer.h │ │ │ │ │ ├── GrVkCommandPool.h │ │ │ │ │ ├── GrVkDescriptorPool.h │ │ │ │ │ ├── GrVkDescriptorSet.h │ │ │ │ │ ├── GrVkDescriptorSetManager.h │ │ │ │ │ ├── GrVkFramebuffer.h │ │ │ │ │ ├── GrVkGpu.h │ │ │ │ │ ├── GrVkImage.h │ │ │ │ │ ├── GrVkImageLayout.h │ │ │ │ │ ├── GrVkImageView.h │ │ │ │ │ ├── GrVkInterface.h │ │ │ │ │ ├── GrVkMSAALoadManager.h │ │ │ │ │ ├── GrVkManagedResource.h │ │ │ │ │ ├── GrVkMemory.h │ │ │ │ │ ├── GrVkOpsRenderPass.h │ │ │ │ │ ├── GrVkPipeline.h │ │ │ │ │ ├── GrVkPipelineState.h │ │ │ │ │ ├── GrVkPipelineStateBuilder.h │ │ │ │ │ ├── GrVkPipelineStateDataManager.h │ │ │ │ │ ├── GrVkRenderPass.h │ │ │ │ │ ├── GrVkRenderTarget.h │ │ │ │ │ ├── GrVkResourceProvider.h │ │ │ │ │ ├── GrVkSampler.h │ │ │ │ │ ├── GrVkSamplerYcbcrConversion.h │ │ │ │ │ ├── GrVkSecondaryCBDrawContext_impl.h │ │ │ │ │ ├── GrVkSemaphore.h │ │ │ │ │ ├── GrVkTexture.h │ │ │ │ │ ├── GrVkTextureRenderTarget.h │ │ │ │ │ ├── GrVkUniformHandler.h │ │ │ │ │ ├── GrVkUtil.h │ │ │ │ │ └── GrVkVaryingHandler.h │ │ │ ├── gl │ │ │ │ └── GrGLDefines.h │ │ │ ├── gpu_workaround_list.txt │ │ │ ├── graphite │ │ │ │ ├── AttachmentTypes.h │ │ │ │ ├── Attribute.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── Caps.h │ │ │ │ ├── ClipStack_graphite.h │ │ │ │ ├── CommandBuffer.h │ │ │ │ ├── CommandTypes.h │ │ │ │ ├── ComputePassTask.h │ │ │ │ ├── ComputePipeline.h │ │ │ │ ├── ComputePipelineDesc.h │ │ │ │ ├── ComputeTypes.h │ │ │ │ ├── ContextPriv.h │ │ │ │ ├── ContextUtils.h │ │ │ │ ├── CopyTask.h │ │ │ │ ├── Device.h │ │ │ │ ├── DrawAtlas.h │ │ │ │ ├── DrawBufferManager.h │ │ │ │ ├── DrawCommands.h │ │ │ │ ├── DrawContext.h │ │ │ │ ├── DrawList.h │ │ │ │ ├── DrawOrder.h │ │ │ │ ├── DrawParams.h │ │ │ │ ├── DrawPass.h │ │ │ │ ├── DrawTypes.h │ │ │ │ ├── DrawWriter.h │ │ │ │ ├── GlobalCache.h │ │ │ │ ├── GpuWorkSubmission.h │ │ │ │ ├── GraphicsPipeline.h │ │ │ │ ├── GraphicsPipelineDesc.h │ │ │ │ ├── GraphiteResourceKey.h │ │ │ │ ├── ImageUtils.h │ │ │ │ ├── Image_Graphite.h │ │ │ │ ├── Log.h │ │ │ │ ├── PaintParams.h │ │ │ │ ├── PipelineDataCache.h │ │ │ │ ├── QueueManager.h │ │ │ │ ├── RecorderPriv.h │ │ │ │ ├── RecordingPriv.h │ │ │ │ ├── RenderPassTask.h │ │ │ │ ├── Renderer.h │ │ │ │ ├── Resource.h │ │ │ │ ├── ResourceCache.h │ │ │ │ ├── ResourceProvider.h │ │ │ │ ├── ResourceTypes.h │ │ │ │ ├── Sampler.h │ │ │ │ ├── SharedContext.h │ │ │ │ ├── Surface_Graphite.h │ │ │ │ ├── Task.h │ │ │ │ ├── TaskGraph.h │ │ │ │ ├── Texture.h │ │ │ │ ├── TextureProxy.h │ │ │ │ ├── TextureProxyView.h │ │ │ │ ├── TextureUtils.h │ │ │ │ ├── UniformManager.h │ │ │ │ ├── UploadBufferManager.h │ │ │ │ ├── UploadTask.h │ │ │ │ ├── geom │ │ │ │ │ ├── BoundsManager.h │ │ │ │ │ ├── Geometry.h │ │ │ │ │ ├── IntersectionTree.h │ │ │ │ │ ├── Rect.h │ │ │ │ │ ├── Shape.h │ │ │ │ │ ├── SubRunData.h │ │ │ │ │ └── Transform_graphite.h │ │ │ │ ├── mtl │ │ │ │ │ ├── MtlBlitCommandEncoder.h │ │ │ │ │ ├── MtlBuffer.h │ │ │ │ │ ├── MtlBuffer.mm │ │ │ │ │ ├── MtlCaps.h │ │ │ │ │ ├── MtlCaps.mm │ │ │ │ │ ├── MtlCommandBuffer.h │ │ │ │ │ ├── MtlCommandBuffer.mm │ │ │ │ │ ├── MtlComputeCommandEncoder.h │ │ │ │ │ ├── MtlComputePipeline.h │ │ │ │ │ ├── MtlComputePipeline.mm │ │ │ │ │ ├── MtlGraphicsPipeline.h │ │ │ │ │ ├── MtlGraphicsPipeline.mm │ │ │ │ │ ├── MtlQueueManager.h │ │ │ │ │ ├── MtlQueueManager.mm │ │ │ │ │ ├── MtlRenderCommandEncoder.h │ │ │ │ │ ├── MtlResourceProvider.h │ │ │ │ │ ├── MtlResourceProvider.mm │ │ │ │ │ ├── MtlSampler.h │ │ │ │ │ ├── MtlSampler.mm │ │ │ │ │ ├── MtlSharedContext.h │ │ │ │ │ ├── MtlSharedContext.mm │ │ │ │ │ ├── MtlTexture.h │ │ │ │ │ ├── MtlTexture.mm │ │ │ │ │ ├── MtlTrampoline.h │ │ │ │ │ ├── MtlTrampoline.mm │ │ │ │ │ ├── MtlTypesPriv.mm │ │ │ │ │ ├── MtlUtils.h │ │ │ │ │ └── MtlUtils.mm │ │ │ │ ├── render │ │ │ │ │ ├── BitmapTextRenderStep.h │ │ │ │ │ ├── CoverBoundsRenderStep.h │ │ │ │ │ ├── DynamicInstancesPatchAllocator.h │ │ │ │ │ ├── MiddleOutFanRenderStep.h │ │ │ │ │ ├── SDFTextRenderStep.h │ │ │ │ │ ├── StencilAndCoverDSS.h │ │ │ │ │ ├── TessellateCurvesRenderStep.h │ │ │ │ │ ├── TessellateStrokesRenderStep.h │ │ │ │ │ ├── TessellateWedgesRenderStep.h │ │ │ │ │ └── VerticesRenderStep.h │ │ │ │ └── text │ │ │ │ │ └── AtlasManager.h │ │ │ ├── tessellate │ │ │ │ ├── AffineMatrix.h │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CullTest.h │ │ │ │ ├── FixedCountBufferUtils.h │ │ │ │ ├── LinearTolerances.h │ │ │ │ ├── MiddleOutPolygonTriangulator.h │ │ │ │ ├── MidpointContourParser.h │ │ │ │ ├── PatchWriter.h │ │ │ │ ├── StrokeIterator.h │ │ │ │ ├── Tessellation.h │ │ │ │ └── WangsFormula.h │ │ │ └── vk │ │ │ │ ├── BUILD.bazel │ │ │ │ └── GrVkSecondaryCBDrawContext.h │ │ ├── image │ │ │ ├── BUILD.bazel │ │ │ ├── SkImage_Base.h │ │ │ ├── SkImage_Gpu.h │ │ │ ├── SkImage_GpuBase.h │ │ │ ├── SkImage_GpuYUVA.h │ │ │ ├── SkImage_Lazy.h │ │ │ ├── SkReadPixelsRec.h │ │ │ ├── SkRescaleAndReadPixels.h │ │ │ ├── SkSurface_Base.h │ │ │ ├── SkSurface_Gpu.h │ │ │ └── SkSurface_GpuMtl.mm │ │ ├── shaders │ │ │ ├── BUILD.bazel │ │ │ ├── SkBitmapProcShader.h │ │ │ ├── SkColorFilterShader.h │ │ │ ├── SkImageShader.h │ │ │ ├── SkLocalMatrixShader.h │ │ │ ├── SkPictureShader.h │ │ │ ├── SkShaderBase.h │ │ │ ├── SkTransformShader.h │ │ │ └── gradients │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── Sk4fGradientBase.h │ │ │ │ ├── Sk4fGradientPriv.h │ │ │ │ ├── Sk4fLinearGradient.h │ │ │ │ ├── SkGradientShaderBase.h │ │ │ │ └── SkLinearGradient.h │ │ ├── sksl │ │ │ ├── BUILD.bazel │ │ │ ├── GLSL.std.450.h │ │ │ ├── README │ │ │ ├── SkSLAnalysis.h │ │ │ ├── SkSLBuiltinMap.h │ │ │ ├── SkSLBuiltinTypes.h │ │ │ ├── SkSLCompiler.h │ │ │ ├── SkSLConstantFolder.h │ │ │ ├── SkSLContext.h │ │ │ ├── SkSLDSLParser.h │ │ │ ├── SkSLDehydrator.h │ │ │ ├── SkSLFileOutputStream.h │ │ │ ├── SkSLGLSL.h │ │ │ ├── SkSLInliner.h │ │ │ ├── SkSLIntrinsicList.h │ │ │ ├── SkSLLexer.h │ │ │ ├── SkSLMangler.h │ │ │ ├── SkSLMemoryLayout.h │ │ │ ├── SkSLMemoryPool.h │ │ │ ├── SkSLModifiersPool.h │ │ │ ├── SkSLOutputStream.h │ │ │ ├── SkSLParsedModule.h │ │ │ ├── SkSLPool.h │ │ │ ├── SkSLProgramSettings.h │ │ │ ├── SkSLRehydrator.h │ │ │ ├── SkSLSharedCompiler.h │ │ │ ├── SkSLStringStream.h │ │ │ ├── SkSLThreadContext.h │ │ │ ├── SkSLUtil.h │ │ │ ├── analysis │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── SkSLNoOpErrorReporter.h │ │ │ │ ├── SkSLProgramUsage.h │ │ │ │ └── SkSLProgramVisitor.h │ │ │ ├── binary_format.md │ │ │ ├── codegen │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── SkSLCodeGenerator.h │ │ │ │ ├── SkSLGLSLCodeGenerator.h │ │ │ │ ├── SkSLMetalCodeGenerator.h │ │ │ │ ├── SkSLPipelineStageCodeGenerator.h │ │ │ │ ├── SkSLSPIRVCodeGenerator.h │ │ │ │ ├── SkSLSPIRVtoHLSL.h │ │ │ │ ├── SkSLVMCodeGenerator.h │ │ │ │ └── SkSLWGSLCodeGenerator.h │ │ │ ├── dsl │ │ │ │ ├── BUILD.bazel │ │ │ │ └── priv │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── DSLWriter.h │ │ │ │ │ └── DSL_priv.h │ │ │ ├── generated │ │ │ │ ├── sksl_compute.dehydrated.sksl │ │ │ │ ├── sksl_frag.dehydrated.sksl │ │ │ │ ├── sksl_gpu.dehydrated.sksl │ │ │ │ ├── sksl_graphite_frag.dehydrated.sksl │ │ │ │ ├── sksl_graphite_vert.dehydrated.sksl │ │ │ │ ├── sksl_public.dehydrated.sksl │ │ │ │ ├── sksl_rt_shader.dehydrated.sksl │ │ │ │ ├── sksl_shared.dehydrated.sksl │ │ │ │ └── sksl_vert.dehydrated.sksl │ │ │ ├── ir │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── SkSLBinaryExpression.h │ │ │ │ ├── SkSLBlock.h │ │ │ │ ├── SkSLBreakStatement.h │ │ │ │ ├── SkSLChildCall.h │ │ │ │ ├── SkSLConstructor.h │ │ │ │ ├── SkSLConstructorArray.h │ │ │ │ ├── SkSLConstructorArrayCast.h │ │ │ │ ├── SkSLConstructorCompound.h │ │ │ │ ├── SkSLConstructorCompoundCast.h │ │ │ │ ├── SkSLConstructorDiagonalMatrix.h │ │ │ │ ├── SkSLConstructorMatrixResize.h │ │ │ │ ├── SkSLConstructorScalarCast.h │ │ │ │ ├── SkSLConstructorSplat.h │ │ │ │ ├── SkSLConstructorStruct.h │ │ │ │ ├── SkSLContinueStatement.h │ │ │ │ ├── SkSLDiscardStatement.h │ │ │ │ ├── SkSLDoStatement.h │ │ │ │ ├── SkSLExpression.h │ │ │ │ ├── SkSLExpressionStatement.h │ │ │ │ ├── SkSLExtension.h │ │ │ │ ├── SkSLExternalFunction.h │ │ │ │ ├── SkSLExternalFunctionCall.h │ │ │ │ ├── SkSLExternalFunctionReference.h │ │ │ │ ├── SkSLField.h │ │ │ │ ├── SkSLFieldAccess.h │ │ │ │ ├── SkSLForStatement.h │ │ │ │ ├── SkSLFunctionCall.h │ │ │ │ ├── SkSLFunctionDeclaration.h │ │ │ │ ├── SkSLFunctionDefinition.h │ │ │ │ ├── SkSLFunctionPrototype.h │ │ │ │ ├── SkSLFunctionReference.h │ │ │ │ ├── SkSLIfStatement.h │ │ │ │ ├── SkSLIndexExpression.h │ │ │ │ ├── SkSLInterfaceBlock.h │ │ │ │ ├── SkSLLiteral.h │ │ │ │ ├── SkSLMethodReference.h │ │ │ │ ├── SkSLModifiersDeclaration.h │ │ │ │ ├── SkSLNop.h │ │ │ │ ├── SkSLPoison.h │ │ │ │ ├── SkSLPostfixExpression.h │ │ │ │ ├── SkSLPrefixExpression.h │ │ │ │ ├── SkSLProgram.h │ │ │ │ ├── SkSLReturnStatement.h │ │ │ │ ├── SkSLSetting.h │ │ │ │ ├── SkSLStructDefinition.h │ │ │ │ ├── SkSLSwitchCase.h │ │ │ │ ├── SkSLSwitchStatement.h │ │ │ │ ├── SkSLSwizzle.h │ │ │ │ ├── SkSLSymbolTable.h │ │ │ │ ├── SkSLTernaryExpression.h │ │ │ │ ├── SkSLType.h │ │ │ │ ├── SkSLTypeReference.h │ │ │ │ ├── SkSLVarDeclarations.h │ │ │ │ ├── SkSLVariable.h │ │ │ │ └── SkSLVariableReference.h │ │ │ ├── lex │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── DFA.h │ │ │ │ ├── DFAState.h │ │ │ │ ├── LexUtil.h │ │ │ │ ├── NFA.h │ │ │ │ ├── NFAState.h │ │ │ │ ├── NFAtoDFA.h │ │ │ │ ├── RegexNode.h │ │ │ │ ├── RegexParser.h │ │ │ │ ├── TransitionTable.h │ │ │ │ └── sksl.lex │ │ │ ├── sksl_compute.sksl │ │ │ ├── sksl_frag.sksl │ │ │ ├── sksl_gpu.sksl │ │ │ ├── sksl_graphite_frag.sksl │ │ │ ├── sksl_graphite_vert.sksl │ │ │ ├── sksl_public.sksl │ │ │ ├── sksl_rt_shader.sksl │ │ │ ├── sksl_shared.sksl │ │ │ ├── sksl_vert.sksl │ │ │ ├── spirv.h │ │ │ ├── tracing │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── SkVMDebugTrace.h │ │ │ │ └── SkVMDebugTracePlayer.h │ │ │ └── transform │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── SkSLProgramWriter.h │ │ │ │ └── SkSLTransform.h │ │ ├── text │ │ │ ├── BUILD.bazel │ │ │ ├── GlyphRun.h │ │ │ ├── StrikeForGPU.h │ │ │ └── gpu │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── DistanceFieldAdjustTable.h │ │ │ │ ├── Glyph.h │ │ │ │ ├── GlyphVector.h │ │ │ │ ├── SDFMaskFilter.h │ │ │ │ ├── SDFTControl.h │ │ │ │ ├── StrikeCache.h │ │ │ │ ├── SubRunAllocator.h │ │ │ │ ├── SubRunContainer.h │ │ │ │ ├── TextBlob.h │ │ │ │ └── TextBlobRedrawCoordinator.h │ │ └── utils │ │ │ └── win │ │ │ └── SkWGL.h │ │ └── tools │ │ ├── SkMetaData.cpp │ │ ├── SkMetaData.h │ │ ├── ToolUtils.cpp │ │ ├── ToolUtils.h │ │ └── sk_app │ │ ├── Application.h │ │ ├── BUILD.bazel │ │ ├── CommandSet.cpp │ │ ├── CommandSet.h │ │ ├── DawnWindowContext.cpp │ │ ├── DawnWindowContext.h │ │ ├── DisplayParams.h │ │ ├── GLWindowContext.cpp │ │ ├── GLWindowContext.h │ │ ├── GraphiteMetalWindowContext.h │ │ ├── GraphiteMetalWindowContext.mm │ │ ├── MetalWindowContext.h │ │ ├── MetalWindowContext.mm │ │ ├── RasterWindowContext.h │ │ ├── VulkanWindowContext.cpp │ │ ├── VulkanWindowContext.h │ │ ├── Window.cpp │ │ ├── Window.h │ │ ├── WindowContext.cpp │ │ ├── WindowContext.h │ │ ├── android │ │ ├── GLWindowContext_android.cpp │ │ ├── RasterWindowContext_android.cpp │ │ ├── VulkanWindowContext_android.cpp │ │ ├── WindowContextFactory_android.h │ │ ├── Window_android.cpp │ │ ├── Window_android.h │ │ ├── main_android.cpp │ │ ├── surface_glue_android.cpp │ │ └── surface_glue_android.h │ │ ├── ios │ │ ├── GLWindowContext_ios.mm │ │ ├── MetalWindowContext_ios.mm │ │ ├── RasterWindowContext_ios.mm │ │ ├── WindowContextFactory_ios.h │ │ ├── Window_ios.h │ │ ├── Window_ios.mm │ │ └── main_ios.mm │ │ ├── mac │ │ ├── BUILD.bazel │ │ ├── DawnMTLWindowContext_mac.mm │ │ ├── GLWindowContext_mac.mm │ │ ├── GraphiteMetalWindowContext_mac.mm │ │ ├── MetalWindowContext_mac.mm │ │ ├── RasterWindowContext_mac.mm │ │ ├── WindowContextFactory_mac.h │ │ ├── Window_mac.h │ │ ├── Window_mac.mm │ │ └── main_mac.mm │ │ ├── unix │ │ ├── BUILD.bazel │ │ ├── DawnVulkanWindowContext_unix.cpp │ │ ├── GLWindowContext_unix.cpp │ │ ├── RasterWindowContext_unix.cpp │ │ ├── VulkanWindowContext_unix.cpp │ │ ├── WindowContextFactory_unix.h │ │ ├── Window_unix.cpp │ │ ├── Window_unix.h │ │ ├── keysym2ucs.c │ │ ├── keysym2ucs.h │ │ └── main_unix.cpp │ │ ├── wasm │ │ └── main_wasm.cpp │ │ └── win │ │ ├── ANGLEWindowContext_win.cpp │ │ ├── D3D12WindowContext_win.cpp │ │ ├── DawnD3D12WindowContext_win.cpp │ │ ├── GLWindowContext_win.cpp │ │ ├── RasterWindowContext_win.cpp │ │ ├── VulkanWindowContext_win.cpp │ │ ├── WindowContextFactory_win.h │ │ ├── Window_win.cpp │ │ ├── Window_win.h │ │ └── main_win.cpp ├── impl │ ├── macos │ │ └── quartz2d │ │ │ ├── canvas.mm │ │ │ ├── font.mm │ │ │ ├── image.mm │ │ │ ├── osx_utils.hpp │ │ │ ├── path.mm │ │ │ └── text_layout.mm │ └── skia │ │ ├── canvas.cpp │ │ ├── detail │ │ ├── harfbuzz.cpp │ │ └── harfbuzz.hpp │ │ ├── font.cpp │ │ ├── image.cpp │ │ ├── opaque.hpp │ │ ├── path.cpp │ │ └── text_layout.cpp ├── include │ └── artist │ │ ├── affine_transform.hpp │ │ ├── canvas.hpp │ │ ├── circle.hpp │ │ ├── color.hpp │ │ ├── detail │ │ └── canvas_impl.hpp │ │ ├── font.hpp │ │ ├── image.hpp │ │ ├── path.hpp │ │ ├── point.hpp │ │ ├── rect.hpp │ │ ├── resources.hpp │ │ └── text_layout.hpp └── src │ └── artist │ ├── rect.cpp │ ├── resources.cpp │ └── svg_path.cpp ├── resources ├── fonts │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-SemiBold.ttf │ ├── OpenSans-SemiBoldItalic.ttf │ ├── OpenSansCondensed-Light.ttf │ └── OpenSansCondensed-LightItalic.ttf └── macos │ └── plist.in └── test ├── CMakeLists.txt ├── app_paths.hpp ├── detail └── osx_init.mm ├── images ├── logo.png └── test.png ├── linux_golden └── skia │ ├── composite_ops.png │ ├── drop_shadow.png │ ├── misc.png │ ├── paths.png │ ├── shapes_and_images.png │ └── typography.png ├── macos_golden ├── quartz2d │ ├── composite_ops.png │ ├── drop_shadow.png │ ├── misc.png │ ├── paths.png │ ├── shapes_and_images.png │ └── typography.png └── skia │ ├── composite_ops.png │ ├── drop_shadow.png │ ├── misc.png │ ├── paths.png │ ├── shapes_and_images.png │ └── typography.png ├── main.cpp ├── results └── readme.txt └── windows_golden └── skia ├── composite_ops.png ├── drop_shadow.png ├── misc.png ├── paths.png ├── shapes_and_images.png └── typography.png /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | AccessModifierOffset: -3 3 | IndentWidth: 3 4 | ... 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/.github/workflows/build_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/README.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/app.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/app.hpp -------------------------------------------------------------------------------- /examples/chessboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/chessboard.cpp -------------------------------------------------------------------------------- /examples/cmake/FindWaylandScanner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/cmake/FindWaylandScanner.cmake -------------------------------------------------------------------------------- /examples/composite_ops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/composite_ops.cpp -------------------------------------------------------------------------------- /examples/host/linux/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/application.h -------------------------------------------------------------------------------- /examples/host/linux/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/logger.h -------------------------------------------------------------------------------- /examples/host/linux/skia_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/skia_app.cpp -------------------------------------------------------------------------------- /examples/host/linux/skia_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/skia_context.cpp -------------------------------------------------------------------------------- /examples/host/linux/skia_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/skia_context.h -------------------------------------------------------------------------------- /examples/host/linux/wayland/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/application.cpp -------------------------------------------------------------------------------- /examples/host/linux/wayland/contextegl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/contextegl.cpp -------------------------------------------------------------------------------- /examples/host/linux/wayland/contextegl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/contextegl.h -------------------------------------------------------------------------------- /examples/host/linux/wayland/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/core.cpp -------------------------------------------------------------------------------- /examples/host/linux/wayland/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/core.h -------------------------------------------------------------------------------- /examples/host/linux/wayland/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/display.cpp -------------------------------------------------------------------------------- /examples/host/linux/wayland/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/display.h -------------------------------------------------------------------------------- /examples/host/linux/wayland/viewporter-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/viewporter-protocol.c -------------------------------------------------------------------------------- /examples/host/linux/wayland/xdg-shell-protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/xdg-shell-protocol.c -------------------------------------------------------------------------------- /examples/host/linux/wayland/xdgshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/xdgshell.cpp -------------------------------------------------------------------------------- /examples/host/linux/wayland/xdgshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/wayland/xdgshell.h -------------------------------------------------------------------------------- /examples/host/linux/x11/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/linux/x11/application.cpp -------------------------------------------------------------------------------- /examples/host/macos/quartz2d_app.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/macos/quartz2d_app.mm -------------------------------------------------------------------------------- /examples/host/macos/skia_app.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/macos/skia_app.mm -------------------------------------------------------------------------------- /examples/host/windows/gl/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/windows/gl/KHR/khrplatform.h -------------------------------------------------------------------------------- /examples/host/windows/gl/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/windows/gl/glext.h -------------------------------------------------------------------------------- /examples/host/windows/gl/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/windows/gl/wglext.h -------------------------------------------------------------------------------- /examples/host/windows/skia_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/host/windows/skia_app.cpp -------------------------------------------------------------------------------- /examples/images/dest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/images/dest.png -------------------------------------------------------------------------------- /examples/images/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/images/space.jpg -------------------------------------------------------------------------------- /examples/images/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/images/src.png -------------------------------------------------------------------------------- /examples/paths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/paths.cpp -------------------------------------------------------------------------------- /examples/print_elapsed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/print_elapsed.cpp -------------------------------------------------------------------------------- /examples/rain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/rain.cpp -------------------------------------------------------------------------------- /examples/shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/shadow.cpp -------------------------------------------------------------------------------- /examples/shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/shapes.cpp -------------------------------------------------------------------------------- /examples/space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/space.cpp -------------------------------------------------------------------------------- /examples/tauri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/tauri.cpp -------------------------------------------------------------------------------- /examples/typography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/examples/typography.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat-fdsc-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat-fdsc-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat-layout.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat-layout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat-layout.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat-ltag-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat-ltag-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat-map.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-aat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-aat.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-algs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-algs.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-array.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-atomic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-atomic.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-bimap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-bimap.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-blob.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-blob.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-blob.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-buffer.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-buffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-buffer.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-cache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-cache.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-cff1-interp-cs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-cff1-interp-cs.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-cff2-interp-cs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-cff2-interp-cs.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-common.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-config.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-coretext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-coretext.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-debug.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-deprecated.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-directwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-directwrite.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-dispatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-dispatch.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-draw.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-draw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-draw.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-face.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-face.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-font.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-font.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-font.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ft.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-gdi.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-glib.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-gobject-structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-gobject-structs.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-gobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-gobject.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-graphite2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-graphite2.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-icu.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-iter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-iter.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-kern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-kern.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-machinery.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-machinery.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-map.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-map.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-meta.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-meta.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-mutex.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-mutex.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-null.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-null.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-number-parser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-number-parser.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-number.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-number.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-object.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-open-file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-open-file.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-open-type.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-open-type.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-cff-common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-cff-common.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-cff1-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-cff1-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-cff2-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-cff2-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-cmap-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-cmap-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-color.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-deprecated.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-face.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-font.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-gasp-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-gasp-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-glyf-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-glyf-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-hdmx-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-hdmx-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-head-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-head-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-hhea-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-hhea-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-hmtx-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-hmtx-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-kern-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-kern-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-layout.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-layout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-layout.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-map.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-math-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-math-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-math.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-maxp-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-maxp-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-meta-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-meta-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-meta.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-metrics.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-metrics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-metrics.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-name-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-name-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-name.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-os2-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-os2-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-post-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-post-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-shape.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-shape.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-shape.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-stat-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-stat-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-tag-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-tag-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-var.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot-vorg-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot-vorg-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ot.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-pool.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-sanitize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-sanitize.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-serialize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-serialize.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-set-digest.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-set-digest.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-set.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-set.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shape-plan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shape-plan.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shape-plan.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shape-plan.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shape.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shaper-impl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shaper-impl.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shaper-list.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shaper-list.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-shaper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-shaper.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-string-array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-string-array.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset-cff1.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset-cff1.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset-cff2.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset-cff2.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset-input.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset-input.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset-plan.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset-plan.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-subset.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-subset.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-ucd-table.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-ucd-table.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-unicode.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-unicode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-unicode.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-uniscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-uniscribe.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-utf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-utf.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-vector.hh -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb-version.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb.h -------------------------------------------------------------------------------- /lib/external/harfbuzz/include/hb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/harfbuzz/include/hb.hh -------------------------------------------------------------------------------- /lib/external/skia/include/codec/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/codec/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/codec/SkAndroidCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/codec/SkAndroidCodec.h -------------------------------------------------------------------------------- /lib/external/skia/include/codec/SkCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/codec/SkCodec.h -------------------------------------------------------------------------------- /lib/external/skia/include/codec/SkCodecAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/codec/SkCodecAnimation.h -------------------------------------------------------------------------------- /lib/external/skia/include/codec/SkEncodedOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/codec/SkEncodedOrigin.h -------------------------------------------------------------------------------- /lib/external/skia/include/config/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/config/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/config/SkUserConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/config/SkUserConfig.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkAlphaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkAlphaType.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkAnnotation.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkBBHFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkBBHFactory.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkBitmap.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkBlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkBlendMode.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkBlender.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkBlurTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkBlurTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkCanvas.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkCapabilities.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkClipOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkClipOp.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkColor.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkColorFilter.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkColorPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkColorPriv.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkColorSpace.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkColorType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkColorType.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkContourMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkContourMeasure.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkCoverageMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkCoverageMode.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkCubicMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkCubicMap.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkData.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkDataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkDataTable.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkDocument.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkDrawLooper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkDrawLooper.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkDrawable.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkExecutor.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFlattenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFlattenable.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFont.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontArguments.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontMetrics.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontMgr.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontParameters.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontStyle.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkFontTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkFontTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkGraphics.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkICC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkICC.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkImage.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkImageEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkImageEncoder.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkImageFilter.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkImageGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkImageGenerator.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkImageInfo.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkM44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkM44.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMallocPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMallocPixelRef.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMaskFilter.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMath.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMatrix.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMesh.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkMilestone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkMilestone.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkOverdrawCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkOverdrawCanvas.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPaint.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPath.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPathBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPathBuilder.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPathEffect.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPathMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPathMeasure.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPathTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPathTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPicture.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPictureRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPictureRecorder.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPixelRef.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPixmap.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPngChunkReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPngChunkReader.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPoint.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkPoint3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkPoint3.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkRRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkRRect.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkRSXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkRSXform.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkRect.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkRefCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkRefCnt.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkRegion.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSamplingOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSamplingOptions.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkScalar.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSerialProcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSerialProcs.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkShader.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSize.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSpan.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkStream.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkString.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkStrokeRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkStrokeRec.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSurface.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSurfaceProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSurfaceProps.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkSwizzle.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTextBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTextBlob.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTileMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTileMode.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTime.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTraceMemoryDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTraceMemoryDump.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTypeface.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkUnPreMultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkUnPreMultiply.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkVertices.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkYUVAInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkYUVAInfo.h -------------------------------------------------------------------------------- /lib/external/skia/include/core/SkYUVAPixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/core/SkYUVAPixmaps.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/effects/Sk1DPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/Sk1DPathEffect.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/Sk2DPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/Sk2DPathEffect.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/SkBlenders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/SkBlenders.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/SkColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/SkColorMatrix.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/SkImageFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/SkImageFilters.h -------------------------------------------------------------------------------- /lib/external/skia/include/effects/SkOpPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/effects/SkOpPathEffect.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GpuTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GpuTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrBackendSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrBackendSemaphore.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrBackendSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrBackendSurface.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrConfig.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrContextOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrContextOptions.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrDirectContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrDirectContext.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrRecordingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrRecordingContext.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrSurfaceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrSurfaceInfo.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/GrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/GrTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/ShaderErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/ShaderErrorHandler.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/d3d/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/d3d/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/d3d/GrD3DTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/d3d/GrD3DTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/dawn/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/dawn/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/dawn/GrDawnTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/dawn/GrDawnTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/gl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/gl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/gl/GrGLConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/gl/GrGLConfig.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/gl/GrGLExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/gl/GrGLExtensions.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/gl/GrGLFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/gl/GrGLFunctions.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/gl/GrGLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/gl/GrGLTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/mock/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/mock/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/mtl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/mtl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/mtl/GrMtlTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/mtl/GrMtlTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/vk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/vk/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/vk/GrVkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/vk/GrVkTypes.h -------------------------------------------------------------------------------- /lib/external/skia/include/gpu/vk/GrVkVulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/gpu/vk/GrVkVulkan.h -------------------------------------------------------------------------------- /lib/external/skia/include/ports/SkCFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/ports/SkCFObject.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/private/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/OWNERS -------------------------------------------------------------------------------- /lib/external/skia/include/private/SingleOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SingleOwner.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkChecksum.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkColorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkColorData.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkDeque.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkFixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkFixed.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkFloatBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkFloatBits.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkHalf.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkMacros.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkMalloc.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkMutex.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkOnce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkOnce.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkOpts_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkOpts_spi.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkPathRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkPathRef.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSLDefines.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSLIRNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSLIRNode.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSLLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSLLayout.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSLString.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSLSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSLSymbol.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSafe32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSafe32.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSafe_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSafe_math.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSemaphore.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkSpinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkSpinlock.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTArray.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTDArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTDArray.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTFitsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTFitsIn.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTHash.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTLogic.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTPin.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTemplates.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkThreadID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkThreadID.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkTo.h -------------------------------------------------------------------------------- /lib/external/skia/include/private/SkVx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/private/SkVx.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSL.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLBlock.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLCase.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLCore.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLExpression.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLFunction.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLLayout.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLModifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLModifiers.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLStatement.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLSymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLSymbols.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLType.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/DSLVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/DSLVar.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/OWNERS -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/SkSLDebugTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/SkSLDebugTrace.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/SkSLOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/SkSLOperator.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/SkSLPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/SkSLPosition.h -------------------------------------------------------------------------------- /lib/external/skia/include/sksl/SkSLVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/sksl/SkSLVersion.h -------------------------------------------------------------------------------- /lib/external/skia/include/utils/SkRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/include/utils/SkRandom.h -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/BUILD.gn -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/OWNERS -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/README.chromium -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/skcms.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/skcms.gni -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/skcms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/modules/skcms/skcms.h -------------------------------------------------------------------------------- /lib/external/skia/modules/skcms/version.sha1: -------------------------------------------------------------------------------- 1 | 9c30a95f0f167ee1513e5a1ea6846b15a010385c 2 | -------------------------------------------------------------------------------- /lib/external/skia/src/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/core/Sk4px.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/Sk4px.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkAAClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkAAClip.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkASAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkASAN.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkATrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkATrace.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkAnalyticEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkAnalyticEdge.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkAnnotationKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkAnnotationKeys.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkAntiRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkAntiRun.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkArenaAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkArenaAlloc.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkArenaAllocList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkArenaAllocList.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkAutoMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkAutoMalloc.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBigPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBigPicture.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBitmapCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBitmapCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBitmapDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBitmapDevice.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBitmapProcState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBitmapProcState.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlendModeBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlendModeBlender.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlendModePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlendModePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlenderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlenderBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlitRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlitRow.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlitter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlockAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlockAllocator.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBlurMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBlurMask.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCachedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCachedData.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCanvasPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCanvasPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkClipStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkClipStack.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkClipStackDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkClipStackDevice.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkColorFilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkColorFilterBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkColorFilterPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkColorFilterPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkColorSpacePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkColorSpacePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkConvertPixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkConvertPixels.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCoreBlitters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCoreBlitters.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCubicClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCubicClipper.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkCubicSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkCubicSolver.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDebugUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDebugUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDescriptor.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDevice.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDistanceFieldGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDistanceFieldGen.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDraw.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDrawProcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDrawProcs.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkDrawShadowInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkDrawShadowInfo.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEdge.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEdgeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEdgeBuilder.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEdgeClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEdgeClipper.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEffectPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEffectPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEndian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEndian.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEnumBitMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEnumBitMask.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkEnumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkEnumerate.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFDot6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFDot6.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFactoryFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFactoryFunctions.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFontDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFontDescriptor.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFontMgrPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFontMgrPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFontPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFontPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFontStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFontStream.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkFuzzLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkFuzzLogging.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGaussFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGaussFilter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGeometry.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGlyph.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGlyphBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGlyphBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGlyphRunPainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGlyphRunPainter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkGpuBlurUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkGpuBlurUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkICCPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkICCPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkIPoint16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkIPoint16.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkImageFilterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkImageFilterCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkImageFilterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkImageFilterTypes.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkImageFilter_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkImageFilter_Base.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkImagePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkImagePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkKeyContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkKeyContext.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkKeyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkKeyHelpers.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkLRUCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkLatticeIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkLatticeIter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkLeanWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkLeanWindows.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkLineClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkLineClipper.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMD5.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMSAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMSAN.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMask.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMaskBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMaskBlurFilter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMaskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMaskCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMaskFilterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMaskFilterBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMaskGamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMaskGamma.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMathPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMathPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMatrixInvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMatrixInvert.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMatrixPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMatrixPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMatrixProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMatrixProvider.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMatrixUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMatrixUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMeshPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMeshPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMessageBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMessageBus.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMipmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMipmap.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMipmapAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMipmapAccessor.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkMipmapBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkMipmapBuilder.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkNextID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkNextID.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkOSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkOSFile.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkOpts.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPaintDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPaintDefaults.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPaintParamsKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPaintParamsKey.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPaintPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPaintPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPathEffectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPathEffectBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPathMakers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPathMakers.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPathMeasurePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPathMeasurePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPathPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPathPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPictureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPictureData.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPictureFlat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPictureFlat.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPicturePlayback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPicturePlayback.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPicturePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPicturePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPictureRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPictureRecord.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPipelineData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPipelineData.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPixelRefPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPixelRefPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPixmapPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPixmapPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPointPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPointPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPrecompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPrecompile.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkPtrRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkPtrRecorder.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkQuadClipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkQuadClipper.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRRectPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRRectPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRTree.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRasterClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRasterClip.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRasterClipStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRasterClipStack.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRasterPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRasterPipeline.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkReadBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkReadBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecord.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecordDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecordDraw.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecordOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecordOpts.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecordPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecordPattern.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecordedDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecordedDrawable.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecorder.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRecords.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRectPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRectPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkRegionPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkRegionPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkResourceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkResourceCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSLTypeShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSLTypeShared.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSafeMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSafeMath.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSafeRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSafeRange.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSamplingPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSamplingPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScaleToSides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScaleToSides.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScalerCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScalerCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScalerContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScalerContext.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScan.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScanPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScanPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkScopeExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkScopeExit.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSharedMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSharedMutex.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSpecialImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSpecialImage.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSpecialSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSpecialSurface.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSpriteBlitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSpriteBlitter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStreamPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStreamPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStrikeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStrikeCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStrikeSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStrikeSpec.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStringUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStroke.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkStrokerPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkStrokerPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkSurfacePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkSurfacePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTBlockList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTBlockList.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTDPQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTDPQueue.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTDynamicHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTDynamicHash.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTInternalLList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTInternalLList.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTLazy.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTMultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTMultiMap.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTSearch.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTSort.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTaskGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTaskGroup.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTextBlobPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTextBlobPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTextBlobTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTextBlobTrace.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTextFormatParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTextFormatParams.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTraceEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTraceEvent.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTraceEventCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTraceEventCommon.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTypefaceCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTypefaceCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkTypeface_remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkTypeface_remote.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkUniform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkUniform.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkVM.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkVMBlitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkVMBlitter.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkVM_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkVM_fwd.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkValidationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkValidationUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkVertState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkVertState.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkVerticesPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkVerticesPriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkWriteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkWriteBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkWritePixelsRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkWritePixelsRec.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkWriter32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkWriter32.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkXfermodePriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkXfermodePriv.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkYUVAInfoLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkYUVAInfoLocation.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkYUVMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkYUVMath.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkYUVPlanesCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkYUVPlanesCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/core/SkZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/core/SkZip.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/AtlasTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/AtlasTypes.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/Blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/Blend.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/BufferWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/BufferWriter.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/GrRectanizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/GrRectanizer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/KeyBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/KeyBuilder.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/Rectanizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/Rectanizer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/RectanizerPow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/RectanizerPow2.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/RectanizerSkyline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/RectanizerSkyline.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/RefCntedCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/RefCntedCallback.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ResourceKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ResourceKey.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/Swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/Swizzle.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ClipStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ClipStack.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/Device_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/Device_v1.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrAttachment.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrAuditTrail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrAuditTrail.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrBlurUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrBlurUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrCaps.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrClip.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrColor.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrColorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrColorInfo.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrCpuBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrCpuBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrDDLTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrDDLTask.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrDataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrDataUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrDrawOpTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrDrawOpTest.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrFPArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrFPArgs.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrFixedClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrFixedClip.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrGpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrGpuBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrGpuBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrImageInfo.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrMemoryPool.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrNativeRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrNativeRect.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrOpsTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrOpsTypes.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrPaint.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrPipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrPipeline.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrPixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrPixmap.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrProcessor.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrRefCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrRefCnt.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrRenderTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrRenderTask.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrRingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrRingBuffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrSemaphore.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrShaderCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrShaderCaps.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrShaderVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrShaderVar.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrSimpleMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrSimpleMesh.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrStyle.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrSurface.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrTTopoSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrTTopoSort.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrTestUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrTexture.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrTracing.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/GrUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/GrUtil.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/PathRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/PathRenderer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/SkGr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/SkGr.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/StencilClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/StencilClip.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/d3d/GrD3DGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/d3d/GrD3DGpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/gl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/gl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/gl/GrGLCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/gl/GrGLCaps.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/gl/GrGLGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/gl/GrGLGLSL.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/gl/GrGLGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/gl/GrGLGpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/gl/GrGLUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/gl/GrGLUtil.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/mtl/GrMtlGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/mtl/GrMtlGpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/ClearOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/ClearOp.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/DashOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/DashOp.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/GrDrawOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/GrDrawOp.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/GrOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/GrOp.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/OpsTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/OpsTask.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/ops/RegionOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/ops/RegionOp.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/vk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/vk/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/vk/GrVkCaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/vk/GrVkCaps.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/vk/GrVkGpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/vk/GrVkGpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/vk/GrVkImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/vk/GrVkImage.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/ganesh/vk/GrVkUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/ganesh/vk/GrVkUtil.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/gl/GrGLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/gl/GrGLDefines.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Attribute.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Buffer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Caps.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/CopyTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/CopyTask.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Device.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawAtlas.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawList.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawOrder.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawParams.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawPass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawPass.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawTypes.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/DrawWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/DrawWriter.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/ImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/ImageUtils.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Log.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Renderer.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Resource.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Sampler.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Task.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/TaskGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/TaskGraph.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/Texture.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/UploadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/UploadTask.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/geom/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/geom/Rect.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/graphite/geom/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/graphite/geom/Shape.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/tessellate/CullTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/tessellate/CullTest.h -------------------------------------------------------------------------------- /lib/external/skia/src/gpu/vk/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/gpu/vk/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/image/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkImage_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkImage_Base.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkImage_Gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkImage_Gpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkImage_GpuBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkImage_GpuBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkImage_GpuYUVA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkImage_GpuYUVA.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkImage_Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkImage_Lazy.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkReadPixelsRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkReadPixelsRec.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkSurface_Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkSurface_Base.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkSurface_Gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkSurface_Gpu.h -------------------------------------------------------------------------------- /lib/external/skia/src/image/SkSurface_GpuMtl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/image/SkSurface_GpuMtl.mm -------------------------------------------------------------------------------- /lib/external/skia/src/shaders/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/shaders/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/shaders/SkImageShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/shaders/SkImageShader.h -------------------------------------------------------------------------------- /lib/external/skia/src/shaders/SkPictureShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/shaders/SkPictureShader.h -------------------------------------------------------------------------------- /lib/external/skia/src/shaders/SkShaderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/shaders/SkShaderBase.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/GLSL.std.450.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/GLSL.std.450.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/README -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLAnalysis.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLBuiltinMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLBuiltinMap.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLBuiltinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLBuiltinTypes.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLCompiler.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLConstantFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLConstantFolder.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLContext.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLDSLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLDSLParser.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLDehydrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLDehydrator.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLGLSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLGLSL.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLInliner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLInliner.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLIntrinsicList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLIntrinsicList.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLLexer.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLMangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLMangler.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLMemoryLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLMemoryLayout.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLMemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLMemoryPool.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLModifiersPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLModifiersPool.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLOutputStream.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLParsedModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLParsedModule.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLPool.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLRehydrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLRehydrator.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLSharedCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLSharedCompiler.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLStringStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLStringStream.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLThreadContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLThreadContext.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/SkSLUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/SkSLUtil.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/analysis/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/analysis/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/binary_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/binary_format.md -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/codegen/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/codegen/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/dsl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/dsl/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/dsl/priv/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/dsl/priv/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/dsl/priv/DSLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/dsl/priv/DSLWriter.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/dsl/priv/DSL_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/dsl/priv/DSL_priv.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLBlock.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLChildCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLChildCall.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLConstructor.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLDoStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLDoStatement.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLExpression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLExpression.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLExtension.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLField.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLFieldAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLFieldAccess.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLIfStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLIfStatement.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLLiteral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLLiteral.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLNop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLNop.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLPoison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLPoison.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLProgram.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLSetting.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLSwitchCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLSwitchCase.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLSwizzle.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLSymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLSymbolTable.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLType.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/ir/SkSLVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/ir/SkSLVariable.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/DFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/DFA.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/DFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/DFAState.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/LexUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/LexUtil.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/NFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/NFA.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/NFAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/NFAState.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/NFAtoDFA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/NFAtoDFA.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/RegexNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/RegexNode.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/RegexParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/RegexParser.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/lex/sksl.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/lex/sksl.lex -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_compute.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_compute.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_frag.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_frag.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_gpu.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_gpu.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_public.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_public.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_rt_shader.sksl: -------------------------------------------------------------------------------- 1 | layout(builtin=15) float4 sk_FragCoord; 2 | -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_shared.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_shared.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/sksl_vert.sksl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/sksl_vert.sksl -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/spirv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/spirv.h -------------------------------------------------------------------------------- /lib/external/skia/src/sksl/tracing/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/sksl/tracing/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/text/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/text/GlyphRun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/GlyphRun.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/StrikeForGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/StrikeForGPU.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/Glyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/Glyph.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/GlyphVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/GlyphVector.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/SDFMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/SDFMaskFilter.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/SDFTControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/SDFTControl.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/StrikeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/StrikeCache.h -------------------------------------------------------------------------------- /lib/external/skia/src/text/gpu/TextBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/text/gpu/TextBlob.h -------------------------------------------------------------------------------- /lib/external/skia/src/utils/win/SkWGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/src/utils/win/SkWGL.h -------------------------------------------------------------------------------- /lib/external/skia/tools/SkMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/SkMetaData.cpp -------------------------------------------------------------------------------- /lib/external/skia/tools/SkMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/SkMetaData.h -------------------------------------------------------------------------------- /lib/external/skia/tools/ToolUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/ToolUtils.cpp -------------------------------------------------------------------------------- /lib/external/skia/tools/ToolUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/ToolUtils.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/Application.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/CommandSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/CommandSet.cpp -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/CommandSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/CommandSet.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/DisplayParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/DisplayParams.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/Window.cpp -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/Window.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/WindowContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/WindowContext.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/ios/Window_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/ios/Window_ios.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/ios/main_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/ios/main_ios.mm -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/mac/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/mac/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/mac/Window_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/mac/Window_mac.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/mac/main_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/mac/main_mac.mm -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/unix/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/unix/BUILD.bazel -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/win/Window_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/win/Window_win.h -------------------------------------------------------------------------------- /lib/external/skia/tools/sk_app/win/main_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/external/skia/tools/sk_app/win/main_win.cpp -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/canvas.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/canvas.mm -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/font.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/font.mm -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/image.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/image.mm -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/osx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/osx_utils.hpp -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/path.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/path.mm -------------------------------------------------------------------------------- /lib/impl/macos/quartz2d/text_layout.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/macos/quartz2d/text_layout.mm -------------------------------------------------------------------------------- /lib/impl/skia/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/canvas.cpp -------------------------------------------------------------------------------- /lib/impl/skia/detail/harfbuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/detail/harfbuzz.cpp -------------------------------------------------------------------------------- /lib/impl/skia/detail/harfbuzz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/detail/harfbuzz.hpp -------------------------------------------------------------------------------- /lib/impl/skia/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/font.cpp -------------------------------------------------------------------------------- /lib/impl/skia/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/image.cpp -------------------------------------------------------------------------------- /lib/impl/skia/opaque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/opaque.hpp -------------------------------------------------------------------------------- /lib/impl/skia/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/path.cpp -------------------------------------------------------------------------------- /lib/impl/skia/text_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/impl/skia/text_layout.cpp -------------------------------------------------------------------------------- /lib/include/artist/affine_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/affine_transform.hpp -------------------------------------------------------------------------------- /lib/include/artist/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/canvas.hpp -------------------------------------------------------------------------------- /lib/include/artist/circle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/circle.hpp -------------------------------------------------------------------------------- /lib/include/artist/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/color.hpp -------------------------------------------------------------------------------- /lib/include/artist/detail/canvas_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/detail/canvas_impl.hpp -------------------------------------------------------------------------------- /lib/include/artist/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/font.hpp -------------------------------------------------------------------------------- /lib/include/artist/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/image.hpp -------------------------------------------------------------------------------- /lib/include/artist/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/path.hpp -------------------------------------------------------------------------------- /lib/include/artist/point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/point.hpp -------------------------------------------------------------------------------- /lib/include/artist/rect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/rect.hpp -------------------------------------------------------------------------------- /lib/include/artist/resources.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/resources.hpp -------------------------------------------------------------------------------- /lib/include/artist/text_layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/include/artist/text_layout.hpp -------------------------------------------------------------------------------- /lib/src/artist/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/src/artist/rect.cpp -------------------------------------------------------------------------------- /lib/src/artist/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/src/artist/resources.cpp -------------------------------------------------------------------------------- /lib/src/artist/svg_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/lib/src/artist/svg_path.cpp -------------------------------------------------------------------------------- /resources/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /resources/fonts/OpenSansCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/fonts/OpenSansCondensed-Light.ttf -------------------------------------------------------------------------------- /resources/macos/plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/resources/macos/plist.in -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/app_paths.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/app_paths.hpp -------------------------------------------------------------------------------- /test/detail/osx_init.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/detail/osx_init.mm -------------------------------------------------------------------------------- /test/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/images/logo.png -------------------------------------------------------------------------------- /test/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/images/test.png -------------------------------------------------------------------------------- /test/linux_golden/skia/composite_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/composite_ops.png -------------------------------------------------------------------------------- /test/linux_golden/skia/drop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/drop_shadow.png -------------------------------------------------------------------------------- /test/linux_golden/skia/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/misc.png -------------------------------------------------------------------------------- /test/linux_golden/skia/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/paths.png -------------------------------------------------------------------------------- /test/linux_golden/skia/shapes_and_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/shapes_and_images.png -------------------------------------------------------------------------------- /test/linux_golden/skia/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/linux_golden/skia/typography.png -------------------------------------------------------------------------------- /test/macos_golden/quartz2d/composite_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/quartz2d/composite_ops.png -------------------------------------------------------------------------------- /test/macos_golden/quartz2d/drop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/quartz2d/drop_shadow.png -------------------------------------------------------------------------------- /test/macos_golden/quartz2d/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/quartz2d/misc.png -------------------------------------------------------------------------------- /test/macos_golden/quartz2d/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/quartz2d/paths.png -------------------------------------------------------------------------------- /test/macos_golden/quartz2d/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/quartz2d/typography.png -------------------------------------------------------------------------------- /test/macos_golden/skia/composite_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/composite_ops.png -------------------------------------------------------------------------------- /test/macos_golden/skia/drop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/drop_shadow.png -------------------------------------------------------------------------------- /test/macos_golden/skia/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/misc.png -------------------------------------------------------------------------------- /test/macos_golden/skia/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/paths.png -------------------------------------------------------------------------------- /test/macos_golden/skia/shapes_and_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/shapes_and_images.png -------------------------------------------------------------------------------- /test/macos_golden/skia/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/macos_golden/skia/typography.png -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/results/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/results/readme.txt -------------------------------------------------------------------------------- /test/windows_golden/skia/composite_ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/composite_ops.png -------------------------------------------------------------------------------- /test/windows_golden/skia/drop_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/drop_shadow.png -------------------------------------------------------------------------------- /test/windows_golden/skia/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/misc.png -------------------------------------------------------------------------------- /test/windows_golden/skia/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/paths.png -------------------------------------------------------------------------------- /test/windows_golden/skia/shapes_and_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/shapes_and_images.png -------------------------------------------------------------------------------- /test/windows_golden/skia/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycfi/artist/HEAD/test/windows_golden/skia/typography.png --------------------------------------------------------------------------------