├── .gitattributes ├── .gitignore ├── README.md ├── app ├── .gitignore ├── CMakeLists.txt ├── build.gradle.kts ├── example.png ├── example1.png ├── example2.png ├── example3.png ├── example4.png ├── example5.png ├── example6.png ├── example7.png ├── example8.png ├── example9.png ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── WorkspacePlanet.json │ ├── bird.gif │ ├── feng.lrc │ ├── feng.mp4 │ ├── feng.srt │ ├── font │ │ ├── AlimamaFangYuanTiVF-Thin.ttf │ │ ├── NotoColorEmoji.ttf │ │ └── iconfont.woff │ ├── gl_transition_window_slice.glsl │ ├── jetpack-compose.svg │ ├── materials │ │ └── baked_color.filamat │ ├── music │ │ ├── bg.png │ │ ├── ic_next.png │ │ ├── ic_pause.png │ │ ├── ic_play.png │ │ ├── ic_previous.png │ │ ├── logo.png │ │ ├── mv_definition_super.svg │ │ ├── record_player_dark_arm.png │ │ └── record_player_verydark_highlight.png │ ├── raining.glsl │ ├── raining.png │ ├── react.svg │ ├── react_bundle.js │ ├── sincos.glsl │ ├── skia_nv12_fragment_shader.glsl │ ├── skia_video_black_white.glsl │ ├── skia_video_bright_shader.glsl │ ├── skia_video_lightning_shader.glsl │ ├── skia_video_raining_shader.glsl │ ├── skia_yuv420p_camera_shader.glsl │ ├── skia_yuv420p_fragment_shader.glsl │ ├── test.js │ ├── tiger.svg │ ├── transition1.png │ ├── transition2.png │ ├── vue.svg │ ├── vue_bundle.js │ └── yiluxiangbei.mp4 │ ├── cpp │ ├── SkiaUI.cpp │ ├── anim │ │ ├── EaseType.h │ │ ├── IAnimator.cpp │ │ ├── IAnimator.h │ │ ├── LinearAnimator.cpp │ │ ├── LinearAnimator.h │ │ ├── TranslateAnimator.cpp │ │ └── TranslateAnimator.h │ ├── app │ │ ├── FrontEngineType.h │ │ ├── SkiaGLApp.cpp │ │ ├── SkiaGLApp.h │ │ ├── SkiaUIApp.cpp │ │ ├── SkiaUIApp.h │ │ └── SkiaUIContext.h │ ├── base │ │ ├── AssetManager.cpp │ │ ├── AssetManager.h │ │ ├── EGLCore.cpp │ │ ├── EGLCore.h │ │ ├── MeasureTime.h │ │ ├── bitmap_util.h │ │ ├── color_util.h │ │ ├── gl_utils.cpp │ │ ├── gl_utils.h │ │ ├── json11.cpp │ │ ├── json11.h │ │ ├── matrix_util.h │ │ ├── native_log.h │ │ └── w3c_util.h │ ├── bitmap │ │ ├── AndroidBitmap.cpp │ │ ├── AndroidBitmap.h │ │ ├── AndroidBitmapLoader.cpp │ │ └── AndroidBitmapLoader.h │ ├── compose │ │ ├── ComposeAndroidImageJNI.h │ │ ├── ComposeBaseSurfaceTextureJNI.h │ │ ├── ComposeButtonJNI.h │ │ ├── ComposeCameraJNI.h │ │ ├── ComposeCanvas.cpp │ │ ├── ComposeCanvas.h │ │ ├── ComposeCanvasJNI.h │ │ ├── ComposeCanvasPaintJNI.h │ │ ├── ComposeCanvasPathJNI.h │ │ ├── ComposeContext.h │ │ ├── ComposeEditTextJNI.h │ │ ├── ComposeExoVideoJNI.h │ │ ├── ComposeFilamentJNI.h │ │ ├── ComposeFlexboxLayoutJNI.h │ │ ├── ComposeIconJNI.h │ │ ├── ComposeImageJNI.h │ │ ├── ComposeJNI.h │ │ ├── ComposeLoadingViewJNI.h │ │ ├── ComposeLottieJNI.h │ │ ├── ComposeNodeJNI.h │ │ ├── ComposePageJNI.h │ │ ├── ComposeProgressBarJNI.h │ │ ├── ComposeRecyclerView.cpp │ │ ├── ComposeRecyclerView.h │ │ ├── ComposeRecyclerViewJNI.h │ │ ├── ComposeSVGJNI.h │ │ ├── ComposeScrollViewJNI.h │ │ ├── ComposeShaderJNI.h │ │ ├── ComposeSwitchJNI.h │ │ ├── ComposeTextJNI.h │ │ ├── ComposeViewGroupJNI.h │ │ ├── ComposeViewJNI.h │ │ └── ComposeWebJNI.h │ ├── custom │ │ ├── AudioFFTView.cpp │ │ ├── AudioFFTView.h │ │ ├── LyricScrollView.cpp │ │ └── LyricScrollView.h │ ├── filter │ │ ├── GrAHardwareBufferUtils.cpp │ │ ├── GrAHardwareBufferUtils.h │ │ ├── IFilter.h │ │ ├── PersistentCache.cpp │ │ ├── PersistentCache.h │ │ ├── SkiaFilter.cpp │ │ └── SkiaFilter.h │ ├── inspect │ │ ├── Inspector.cpp │ │ ├── Inspector.h │ │ ├── V8InspctprChannelImpl.cpp │ │ ├── V8InspctprChannelImpl.h │ │ ├── V8InspectorClientImpl.cpp │ │ ├── V8InspectorClientImpl.h │ │ ├── V8InspectorListener.h │ │ ├── WebSocketServer.cpp │ │ ├── WebSocketServer.h │ │ └── inspect_utils.h │ ├── js │ │ ├── File.cpp │ │ ├── File.h │ │ ├── JSAudioPlayer.cpp │ │ ├── JSAudioPlayer.h │ │ ├── JSAudioPlayerBinding.cpp │ │ ├── JSAudioPlayerBinding.h │ │ ├── JSBinding.h │ │ ├── JSButtonBinding.cpp │ │ ├── JSButtonBinding.h │ │ ├── JSFileBinding.cpp │ │ ├── JSFileBinding.h │ │ ├── JSFlexboxLayoutBinding.cpp │ │ ├── JSFlexboxLayoutBinding.h │ │ ├── JSIconBinding.cpp │ │ ├── JSIconBinding.h │ │ ├── JSImageViewBinding.cpp │ │ ├── JSImageViewBinding.h │ │ ├── JSLinearAnimationBinding.cpp │ │ ├── JSLinearAnimationBinding.h │ │ ├── JSLottieViewBinding.cpp │ │ ├── JSLottieViewBinding.h │ │ ├── JSPageBinding.cpp │ │ ├── JSPageBinding.h │ │ ├── JSProgressBarBinding.cpp │ │ ├── JSProgressBarBinding.h │ │ ├── JSSVGViewBinding.cpp │ │ ├── JSSVGViewBinding.h │ │ ├── JSScrollViewBinding.cpp │ │ ├── JSScrollViewBinding.h │ │ ├── JSShaderViewBinding.cpp │ │ ├── JSShaderViewBinding.h │ │ ├── JSSwitchBinding.cpp │ │ ├── JSSwitchBinding.h │ │ ├── JSTextEncodingBinding.cpp │ │ ├── JSTextEncodingBinding.h │ │ ├── JSTextViewBinding.cpp │ │ ├── JSTextViewBinding.h │ │ ├── JSVideoViewBinding.cpp │ │ ├── JSVideoViewBinding.h │ │ ├── JSViewBinding.cpp │ │ ├── JSViewBinding.h │ │ ├── JSViewGroupBinding.cpp │ │ ├── JSViewGroupBinding.h │ │ ├── JSYUVVideoViewBinding.cpp │ │ ├── JSYUVVideoViewBinding.h │ │ ├── TextEncoding.cpp │ │ ├── TextEncoding.h │ │ ├── V8Instance.h │ │ ├── V8Runtime.cpp │ │ ├── V8Runtime.h │ │ ├── ViewManager.cpp │ │ ├── ViewManager.h │ │ ├── animationFrame.h │ │ ├── backPressed.h │ │ ├── console.h │ │ ├── performance.h │ │ └── timer.h │ ├── page │ │ ├── Page.cpp │ │ ├── Page.h │ │ ├── PageStackManager.cpp │ │ └── PageStackManager.h │ ├── plugin │ │ ├── PluginManager.cpp │ │ └── PluginManager.h │ ├── resources │ │ ├── ResourceLoader.cpp │ │ └── ResourceLoader.h │ ├── test │ │ ├── BlendTestPage.cpp │ │ ├── BlendTestPage.h │ │ ├── BlendTestView.cpp │ │ ├── BlendTestView.h │ │ ├── CameraPage.cpp │ │ ├── CameraPage.h │ │ ├── CanvasTest.cpp │ │ ├── CanvasTest.h │ │ ├── ClockView.cpp │ │ ├── ClockView.h │ │ ├── CppTest.cpp │ │ ├── CppTest.h │ │ ├── EasingTestPage.cpp │ │ ├── EasingTestPage.h │ │ ├── ExamplePage.cpp │ │ ├── ExamplePage.h │ │ ├── FilamentPage.cpp │ │ ├── FilamentPage.h │ │ ├── GridLayoutTest.cpp │ │ ├── GridLayoutTest.h │ │ ├── ITestDraw.h │ │ ├── JavascriptTest.cpp │ │ ├── JavascriptTest.h │ │ ├── JetpackComposeTest.cpp │ │ ├── JetpackComposeTest.h │ │ ├── MatrixTestPage.cpp │ │ ├── MatrixTestPage.h │ │ ├── QQMusicPage.cpp │ │ ├── QQMusicPage.h │ │ ├── ReactjsTest.cpp │ │ ├── ReactjsTest.h │ │ ├── RecyclerViewPage.cpp │ │ ├── RecyclerViewPage.h │ │ ├── SimpleJavascriptTest.cpp │ │ ├── SimpleJavascriptTest.h │ │ ├── TextTestPage.cpp │ │ ├── TextTestPage.h │ │ ├── VideoShaderTest.cpp │ │ ├── VideoShaderTest.h │ │ ├── VuejsTest.cpp │ │ ├── VuejsTest.h │ │ ├── WebViewPage.cpp │ │ └── WebViewPage.h │ ├── touch │ │ ├── ScrollDispatcher.cpp │ │ ├── ScrollDispatcher.h │ │ ├── TouchEvent.h │ │ ├── TouchEventDispatcher.cpp │ │ ├── TouchEventDispatcher.h │ │ └── Velocity.h │ ├── widget │ │ ├── AndroidImageView.cpp │ │ ├── AndroidImageView.h │ │ ├── BaseSurfaceTextureView.cpp │ │ ├── BaseSurfaceTextureView.h │ │ ├── BoxDecoration.cpp │ │ ├── BoxDecoration.h │ │ ├── Button.cpp │ │ ├── Button.h │ │ ├── CameraView.cpp │ │ ├── CameraView.h │ │ ├── ComposeTextureView.cpp │ │ ├── ComposeTextureView.h │ │ ├── EditText.cpp │ │ ├── EditText.h │ │ ├── ExoPlayerView.cpp │ │ ├── ExoPlayerView.h │ │ ├── FilamentView.cpp │ │ ├── FilamentView.h │ │ ├── FlexboxLayout.cpp │ │ ├── FlexboxLayout.h │ │ ├── GridLayout.cpp │ │ ├── GridLayout.h │ │ ├── Icon.cpp │ │ ├── Icon.h │ │ ├── ImageView.cpp │ │ ├── ImageView.h │ │ ├── LoadingView.cpp │ │ ├── LoadingView.h │ │ ├── LottieView.cpp │ │ ├── LottieView.h │ │ ├── MovingArea.cpp │ │ ├── MovingArea.h │ │ ├── PickerView.cpp │ │ ├── PickerView.h │ │ ├── PlatformView.cpp │ │ ├── PlatformView.h │ │ ├── ProgressBar.cpp │ │ ├── ProgressBar.h │ │ ├── Radio.cpp │ │ ├── Radio.h │ │ ├── RecyclerView.cpp │ │ ├── RecyclerView.h │ │ ├── RichText.cpp │ │ ├── RichText.h │ │ ├── SVGView.cpp │ │ ├── SVGView.h │ │ ├── ScrollView.cpp │ │ ├── ScrollView.h │ │ ├── ShaderView.cpp │ │ ├── ShaderView.h │ │ ├── SwiperView.cpp │ │ ├── SwiperView.h │ │ ├── Switch.cpp │ │ ├── Switch.h │ │ ├── TextView.cpp │ │ ├── TextView.h │ │ ├── VideoView.cpp │ │ ├── VideoView.h │ │ ├── View.cpp │ │ ├── View.h │ │ ├── ViewGroup.cpp │ │ ├── ViewGroup.h │ │ ├── WebView.cpp │ │ ├── WebView.h │ │ ├── YUVVideoView.cpp │ │ └── YUVVideoView.h │ └── yoga │ │ ├── CMakeLists.txt │ │ ├── YGConfig.cpp │ │ ├── YGConfig.h │ │ ├── YGEnums.cpp │ │ ├── YGEnums.h │ │ ├── YGMacros.h │ │ ├── YGNode.cpp │ │ ├── YGNode.h │ │ ├── YGNodeLayout.cpp │ │ ├── YGNodeLayout.h │ │ ├── YGNodeStyle.cpp │ │ ├── YGNodeStyle.h │ │ ├── YGPixelGrid.cpp │ │ ├── YGPixelGrid.h │ │ ├── YGValue.cpp │ │ ├── YGValue.h │ │ ├── Yoga.h │ │ ├── algorithm │ │ ├── AbsoluteLayout.cpp │ │ ├── AbsoluteLayout.h │ │ ├── Align.h │ │ ├── Baseline.cpp │ │ ├── Baseline.h │ │ ├── BoundAxis.h │ │ ├── Cache.cpp │ │ ├── Cache.h │ │ ├── CalculateLayout.cpp │ │ ├── CalculateLayout.h │ │ ├── FlexDirection.h │ │ ├── FlexLine.cpp │ │ ├── FlexLine.h │ │ ├── PixelGrid.cpp │ │ ├── PixelGrid.h │ │ ├── SizingMode.h │ │ └── TrailingPosition.h │ │ ├── config │ │ ├── Config.cpp │ │ └── Config.h │ │ ├── debug │ │ ├── AssertFatal.cpp │ │ ├── AssertFatal.h │ │ ├── Log.cpp │ │ └── Log.h │ │ ├── enums │ │ ├── Align.h │ │ ├── BoxSizing.h │ │ ├── Dimension.h │ │ ├── Direction.h │ │ ├── Display.h │ │ ├── Edge.h │ │ ├── Errata.h │ │ ├── ExperimentalFeature.h │ │ ├── FlexDirection.h │ │ ├── Gutter.h │ │ ├── Justify.h │ │ ├── LogLevel.h │ │ ├── MeasureMode.h │ │ ├── NodeType.h │ │ ├── Overflow.h │ │ ├── PhysicalEdge.h │ │ ├── PositionType.h │ │ ├── Unit.h │ │ ├── Wrap.h │ │ └── YogaEnums.h │ │ ├── event │ │ ├── event.cpp │ │ └── event.h │ │ ├── module.modulemap │ │ ├── node │ │ ├── CachedMeasurement.h │ │ ├── LayoutResults.cpp │ │ ├── LayoutResults.h │ │ ├── LayoutableChildren.h │ │ ├── Node.cpp │ │ └── Node.h │ │ ├── numeric │ │ ├── Comparison.h │ │ └── FloatOptional.h │ │ └── style │ │ ├── SmallValueBuffer.h │ │ ├── Style.h │ │ ├── StyleLength.h │ │ ├── StyleSizeLength.h │ │ ├── StyleValueHandle.h │ │ └── StyleValuePool.h │ ├── java │ └── com │ │ └── temple │ │ └── skiaui │ │ ├── HYSkiaEngine.kt │ │ ├── HYSkiaExampleActivity.kt │ │ ├── HYSkiaSurfaceView.kt │ │ ├── HYSkiaTextureView.kt │ │ ├── HYSkiaUIApp.kt │ │ ├── ISkiaView.kt │ │ ├── MainActivity.kt │ │ ├── NoTouchFrameLayout.kt │ │ ├── RenderCallback.kt │ │ ├── audio │ │ ├── HYSkiaAudioPlayer.kt │ │ ├── HYSkiaAudioTracker.kt │ │ ├── IAudioCallback.kt │ │ └── IAudioPlayer.kt │ │ ├── bitmap │ │ ├── AndroidBitmapLoader.kt │ │ ├── GlideImageLoader.kt │ │ └── ImageLoader.kt │ │ ├── cache │ │ └── PersistentCache.kt │ │ ├── compose │ │ ├── example │ │ │ ├── HYComposeCameraPage.kt │ │ │ ├── HYComposeCanvasPage.kt │ │ │ ├── HYComposeExampleApp.kt │ │ │ ├── HYComposeExamplePage.kt │ │ │ ├── HYComposeFilamentPage.kt │ │ │ ├── HYComposeMaterialPage.kt │ │ │ ├── HYComposeMusicPage.kt │ │ │ ├── HYComposeNativeViewsPage.kt │ │ │ ├── HYComposeRecyclerPage.kt │ │ │ ├── HYComposeTextureViewPage.kt │ │ │ ├── HYComposeVideoListPage.kt │ │ │ ├── HYComposeVideoService.kt │ │ │ ├── lyric │ │ │ │ ├── Lyric.kt │ │ │ │ └── LyricsViewModel.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ ├── foundation │ │ │ ├── Attributes.kt │ │ │ ├── Modifier.kt │ │ │ ├── StyleKey.kt │ │ │ └── styles.kt │ │ ├── material │ │ │ └── HYBadge.kt │ │ ├── runtime │ │ │ ├── Composables.kt │ │ │ ├── HYComposeApplication.kt │ │ │ ├── HYComposeApplier.kt │ │ │ ├── HYComposeBasePage.kt │ │ │ ├── HYComposeComposer.kt │ │ │ ├── HYComposeSDK.kt │ │ │ ├── HYComposeUIDispatcher.kt │ │ │ └── HYComposeUIFrameClock.kt │ │ └── ui │ │ │ ├── AutoReleasable.kt │ │ │ ├── Canvas.kt │ │ │ ├── HYComposeAndroidImage.kt │ │ │ ├── HYComposeBaseSurfaceTexture.kt │ │ │ ├── HYComposeButton.kt │ │ │ ├── HYComposeCamera.kt │ │ │ ├── HYComposeCanvas.kt │ │ │ ├── HYComposeEditText.kt │ │ │ ├── HYComposeExoVideo.kt │ │ │ ├── HYComposeFilament.kt │ │ │ ├── HYComposeFlexboxLayout.kt │ │ │ ├── HYComposeIcon.kt │ │ │ ├── HYComposeImage.kt │ │ │ ├── HYComposeLoadingView.kt │ │ │ ├── HYComposeLottie.kt │ │ │ ├── HYComposeNode.kt │ │ │ ├── HYComposePage.kt │ │ │ ├── HYComposePaint.kt │ │ │ ├── HYComposePath.kt │ │ │ ├── HYComposeProgressBar.kt │ │ │ ├── HYComposeRecyclerView.kt │ │ │ ├── HYComposeSVG.kt │ │ │ ├── HYComposeScrollView.kt │ │ │ ├── HYComposeShader.kt │ │ │ ├── HYComposeSwitch.kt │ │ │ ├── HYComposeText.kt │ │ │ ├── HYComposeTextureView.kt │ │ │ ├── HYComposeView.kt │ │ │ ├── HYComposeViewGroup.kt │ │ │ ├── HYComposeWeb.kt │ │ │ ├── HYFlexboxEnum.kt │ │ │ └── util │ │ │ ├── Bitmap_androidKt.kt │ │ │ ├── Colors_androidKt.kt │ │ │ └── Dp_androidKt.kt │ │ ├── inspect │ │ ├── InspectPlugin.kt │ │ └── InspectServer.kt │ │ ├── platform │ │ ├── HYSurfaceCallback.kt │ │ ├── ICanvasProvider.kt │ │ ├── PlatformImageReaderBasePlugin.kt │ │ ├── PlatformTextureLayerBasePlugin.kt │ │ ├── SurfaceObj.kt │ │ ├── SurfaceTextureBasePlugin.kt │ │ ├── camera │ │ │ └── PlatformCameraViewPlugin.kt │ │ ├── data │ │ │ └── ImageReaderYUVData.kt │ │ ├── edittext │ │ │ ├── PlatformEditText.kt │ │ │ └── PlatformEditTextPlugin.kt │ │ ├── filament │ │ │ └── PlatformFilamentViewPlugin.kt │ │ ├── video │ │ │ ├── ExoPlayerImpl.kt │ │ │ ├── IVideoPlayer.kt │ │ │ └── PlatformVideoViewPlugin.kt │ │ └── webview │ │ │ ├── IWebViewCallback.kt │ │ │ ├── PlatformWebView.kt │ │ │ └── PlatformWebViewPlugin.kt │ │ ├── plugin │ │ ├── IPlugin.kt │ │ ├── InspectWSServer.kt │ │ ├── PluginManager.kt │ │ └── ToastPlugin.kt │ │ └── video │ │ ├── HYSkiaVideo.kt │ │ ├── HYSkiaYUVVideo.kt │ │ └── YUVData.kt │ ├── jniLibs │ ├── arm64-v8a.zip │ ├── skia │ │ ├── include │ │ │ ├── android │ │ │ │ ├── AHardwareBufferUtils.h │ │ │ │ ├── GrAHardwareBufferUtils.h │ │ │ │ ├── SkAndroidFrameworkUtils.h │ │ │ │ ├── SkAnimatedImage.h │ │ │ │ ├── SkCanvasAndroid.h │ │ │ │ ├── SkHeifDecoder.h │ │ │ │ ├── SkImageAndroid.h │ │ │ │ ├── SkSurfaceAndroid.h │ │ │ │ └── graphite │ │ │ │ │ └── SurfaceAndroid.h │ │ │ ├── codec │ │ │ │ ├── SkAndroidCodec.h │ │ │ │ ├── SkAvifDecoder.h │ │ │ │ ├── SkBmpDecoder.h │ │ │ │ ├── SkCodec.h │ │ │ │ ├── SkCodecAnimation.h │ │ │ │ ├── SkEncodedImageFormat.h │ │ │ │ ├── SkEncodedOrigin.h │ │ │ │ ├── SkGifDecoder.h │ │ │ │ ├── SkIcoDecoder.h │ │ │ │ ├── SkJpegDecoder.h │ │ │ │ ├── SkJpegxlDecoder.h │ │ │ │ ├── SkPixmapUtils.h │ │ │ │ ├── SkPngChunkReader.h │ │ │ │ ├── SkPngDecoder.h │ │ │ │ ├── SkRawDecoder.h │ │ │ │ ├── SkWbmpDecoder.h │ │ │ │ └── SkWebpDecoder.h │ │ │ ├── config │ │ │ │ └── SkUserConfig.h │ │ │ ├── core │ │ │ │ ├── SkAlphaType.h │ │ │ │ ├── SkAnnotation.h │ │ │ │ ├── SkArc.h │ │ │ │ ├── SkBBHFactory.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlendMode.h │ │ │ │ ├── SkBlender.h │ │ │ │ ├── SkBlurTypes.h │ │ │ │ ├── SkCPUContext.h │ │ │ │ ├── SkCPURecorder.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkCanvasVirtualEnforcer.h │ │ │ │ ├── SkCapabilities.h │ │ │ │ ├── SkClipOp.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorSpace.h │ │ │ │ ├── SkColorTable.h │ │ │ │ ├── SkColorType.h │ │ │ │ ├── SkContourMeasure.h │ │ │ │ ├── SkCoverageMode.h │ │ │ │ ├── SkCubicMap.h │ │ │ │ ├── SkData.h │ │ │ │ ├── SkDataTable.h │ │ │ │ ├── SkDocument.h │ │ │ │ ├── SkDrawable.h │ │ │ │ ├── SkExecutor.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFont.h │ │ │ │ ├── SkFontArguments.h │ │ │ │ ├── SkFontMetrics.h │ │ │ │ ├── SkFontMgr.h │ │ │ │ ├── SkFontParameters.h │ │ │ │ ├── SkFontScanner.h │ │ │ │ ├── SkFontStyle.h │ │ │ │ ├── SkFontTypes.h │ │ │ │ ├── SkFourByteTag.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkImage.h │ │ │ │ ├── SkImageFilter.h │ │ │ │ ├── SkImageGenerator.h │ │ │ │ ├── SkImageInfo.h │ │ │ │ ├── SkM44.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkMesh.h │ │ │ │ ├── SkMilestone.h │ │ │ │ ├── SkOpenTypeSVGDecoder.h │ │ │ │ ├── SkOverdrawCanvas.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathBuilder.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPathTypes.h │ │ │ │ ├── SkPathUtils.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPictureRecorder.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPixmap.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPoint3.h │ │ │ │ ├── SkRRect.h │ │ │ │ ├── SkRSXform.h │ │ │ │ ├── SkRasterHandleAllocator.h │ │ │ │ ├── SkRecorder.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 │ │ │ │ ├── SkSurfaceProps.h │ │ │ │ ├── SkSwizzle.h │ │ │ │ ├── SkTextBlob.h │ │ │ │ ├── SkTextureCompressionType.h │ │ │ │ ├── SkTileMode.h │ │ │ │ ├── SkTiledImageUtils.h │ │ │ │ ├── SkTraceMemoryDump.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkVertices.h │ │ │ │ ├── SkYUVAInfo.h │ │ │ │ └── SkYUVAPixmaps.h │ │ │ ├── docs │ │ │ │ ├── SkMultiPictureDocument.h │ │ │ │ ├── SkPDFDocument.h │ │ │ │ ├── SkPDFJpegHelpers.h │ │ │ │ └── SkXPSDocument.h │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkBlenders.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkHighContrastFilter.h │ │ │ │ ├── SkImageFilters.h │ │ │ │ ├── SkLumaColorFilter.h │ │ │ │ ├── SkOverdrawColorFilter.h │ │ │ │ ├── SkPerlinNoiseShader.h │ │ │ │ ├── SkRuntimeEffect.h │ │ │ │ ├── SkShaderMaskFilter.h │ │ │ │ ├── SkTableMaskFilter.h │ │ │ │ └── SkTrimPathEffect.h │ │ │ ├── encode │ │ │ │ ├── SkEncoder.h │ │ │ │ ├── SkICC.h │ │ │ │ ├── SkJpegEncoder.h │ │ │ │ ├── SkPngEncoder.h │ │ │ │ └── SkWebpEncoder.h │ │ │ ├── gpu │ │ │ │ ├── GpuTypes.h │ │ │ │ ├── MutableTextureState.h │ │ │ │ ├── ShaderErrorHandler.h │ │ │ │ ├── ganesh │ │ │ │ │ ├── GrBackendSemaphore.h │ │ │ │ │ ├── GrBackendSurface.h │ │ │ │ │ ├── GrContextOptions.h │ │ │ │ │ ├── GrContextThreadSafeProxy.h │ │ │ │ │ ├── GrDirectContext.h │ │ │ │ │ ├── GrDriverBugWorkarounds.h │ │ │ │ │ ├── GrDriverBugWorkaroundsAutogen.h │ │ │ │ │ ├── GrExternalTextureGenerator.h │ │ │ │ │ ├── GrRecordingContext.h │ │ │ │ │ ├── GrTypes.h │ │ │ │ │ ├── GrYUVABackendTextures.h │ │ │ │ │ ├── SkImageGanesh.h │ │ │ │ │ ├── SkMeshGanesh.h │ │ │ │ │ ├── SkSurfaceGanesh.h │ │ │ │ │ ├── d3d │ │ │ │ │ │ ├── GrD3DBackendContext.h │ │ │ │ │ │ └── GrD3DTypes.h │ │ │ │ │ ├── gl │ │ │ │ │ │ ├── GrGLAssembleHelpers.h │ │ │ │ │ │ ├── GrGLAssembleInterface.h │ │ │ │ │ │ ├── GrGLBackendSurface.h │ │ │ │ │ │ ├── GrGLConfig.h │ │ │ │ │ │ ├── GrGLDirectContext.h │ │ │ │ │ │ ├── GrGLExtensions.h │ │ │ │ │ │ ├── GrGLFunctions.h │ │ │ │ │ │ ├── GrGLInterface.h │ │ │ │ │ │ ├── GrGLMakeWebGLInterface.h │ │ │ │ │ │ ├── GrGLTypes.h │ │ │ │ │ │ ├── egl │ │ │ │ │ │ │ └── GrGLMakeEGLInterface.h │ │ │ │ │ │ ├── epoxy │ │ │ │ │ │ │ └── GrGLMakeEpoxyEGLInterface.h │ │ │ │ │ │ ├── glx │ │ │ │ │ │ │ └── GrGLMakeGLXInterface.h │ │ │ │ │ │ ├── ios │ │ │ │ │ │ │ └── GrGLMakeIOSInterface.h │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ └── GrGLMakeMacInterface.h │ │ │ │ │ │ └── win │ │ │ │ │ │ │ └── GrGLMakeWinInterface.h │ │ │ │ │ ├── mock │ │ │ │ │ │ └── GrMockTypes.h │ │ │ │ │ ├── mtl │ │ │ │ │ │ ├── GrMtlBackendContext.h │ │ │ │ │ │ ├── GrMtlBackendSemaphore.h │ │ │ │ │ │ ├── GrMtlBackendSurface.h │ │ │ │ │ │ ├── GrMtlDirectContext.h │ │ │ │ │ │ ├── GrMtlTypes.h │ │ │ │ │ │ └── SkSurfaceMetal.h │ │ │ │ │ └── vk │ │ │ │ │ │ ├── GrBackendDrawableInfo.h │ │ │ │ │ │ ├── GrVkBackendSemaphore.h │ │ │ │ │ │ ├── GrVkBackendSurface.h │ │ │ │ │ │ ├── GrVkDirectContext.h │ │ │ │ │ │ └── GrVkTypes.h │ │ │ │ ├── graphite │ │ │ │ │ ├── BackendSemaphore.h │ │ │ │ │ ├── BackendTexture.h │ │ │ │ │ ├── Context.h │ │ │ │ │ ├── ContextOptions.h │ │ │ │ │ ├── GraphiteTypes.h │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── ImageProvider.h │ │ │ │ │ ├── LogPriority.h │ │ │ │ │ ├── PrecompileContext.h │ │ │ │ │ ├── Recorder.h │ │ │ │ │ ├── Recording.h │ │ │ │ │ ├── Surface.h │ │ │ │ │ ├── TextureInfo.h │ │ │ │ │ ├── YUVABackendTextures.h │ │ │ │ │ ├── dawn │ │ │ │ │ │ ├── DawnBackendContext.h │ │ │ │ │ │ ├── DawnGraphiteTypes.h │ │ │ │ │ │ ├── DawnTypes.h │ │ │ │ │ │ └── DawnUtils.h │ │ │ │ │ ├── mtl │ │ │ │ │ │ ├── MtlBackendContext.h │ │ │ │ │ │ ├── MtlGraphiteTypes.h │ │ │ │ │ │ ├── MtlGraphiteTypesUtils.h │ │ │ │ │ │ ├── MtlGraphiteTypes_cpp.h │ │ │ │ │ │ └── MtlGraphiteUtils.h │ │ │ │ │ ├── precompile │ │ │ │ │ │ ├── PaintOptions.h │ │ │ │ │ │ ├── Precompile.h │ │ │ │ │ │ ├── PrecompileBase.h │ │ │ │ │ │ ├── PrecompileBlender.h │ │ │ │ │ │ ├── PrecompileColorFilter.h │ │ │ │ │ │ ├── PrecompileImageFilter.h │ │ │ │ │ │ ├── PrecompileMaskFilter.h │ │ │ │ │ │ ├── PrecompileRuntimeEffect.h │ │ │ │ │ │ └── PrecompileShader.h │ │ │ │ │ └── vk │ │ │ │ │ │ ├── VulkanGraphiteContext.h │ │ │ │ │ │ ├── VulkanGraphiteTypes.h │ │ │ │ │ │ ├── VulkanGraphiteUtils.h │ │ │ │ │ │ └── precompile │ │ │ │ │ │ └── VulkanPrecompileShader.h │ │ │ │ ├── mtl │ │ │ │ │ └── MtlMemoryAllocator.h │ │ │ │ └── vk │ │ │ │ │ ├── VulkanBackendContext.h │ │ │ │ │ ├── VulkanExtensions.h │ │ │ │ │ ├── VulkanMemoryAllocator.h │ │ │ │ │ ├── VulkanMutableTextureState.h │ │ │ │ │ ├── VulkanPreferredFeatures.h │ │ │ │ │ └── VulkanTypes.h │ │ │ ├── ports │ │ │ │ ├── SkCFObject.h │ │ │ │ ├── SkFontConfigInterface.h │ │ │ │ ├── SkFontMgr_FontConfigInterface.h │ │ │ │ ├── SkFontMgr_Fontations.h │ │ │ │ ├── SkFontMgr_android.h │ │ │ │ ├── SkFontMgr_android_ndk.h │ │ │ │ ├── SkFontMgr_data.h │ │ │ │ ├── SkFontMgr_directory.h │ │ │ │ ├── SkFontMgr_empty.h │ │ │ │ ├── SkFontMgr_fontconfig.h │ │ │ │ ├── SkFontMgr_fuchsia.h │ │ │ │ ├── SkFontMgr_mac_ct.h │ │ │ │ ├── SkFontScanner_Fontations.h │ │ │ │ ├── SkFontScanner_FreeType.h │ │ │ │ ├── SkImageGeneratorCG.h │ │ │ │ ├── SkImageGeneratorNDK.h │ │ │ │ ├── SkImageGeneratorWIC.h │ │ │ │ ├── SkTypeface_fontations.h │ │ │ │ ├── SkTypeface_mac.h │ │ │ │ └── SkTypeface_win.h │ │ │ ├── private │ │ │ │ ├── SkEncodedInfo.h │ │ │ │ ├── SkExif.h │ │ │ │ ├── SkGainmapInfo.h │ │ │ │ ├── SkGainmapShader.h │ │ │ │ ├── SkIDChangeListener.h │ │ │ │ ├── SkJpegGainmapEncoder.h │ │ │ │ ├── SkJpegMetadataDecoder.h │ │ │ │ ├── SkPathRef.h │ │ │ │ ├── SkSLSampleUsage.h │ │ │ │ ├── SkWeakRefCnt.h │ │ │ │ ├── SkXmp.h │ │ │ │ ├── base │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SingleOwner.h │ │ │ │ │ ├── SkAPI.h │ │ │ │ │ ├── SkASAN.h │ │ │ │ │ ├── SkAlign.h │ │ │ │ │ ├── SkAlignedStorage.h │ │ │ │ │ ├── SkAnySubclass.h │ │ │ │ │ ├── SkAssert.h │ │ │ │ │ ├── SkAttributes.h │ │ │ │ │ ├── SkCPUTypes.h │ │ │ │ │ ├── SkContainers.h │ │ │ │ │ ├── SkDebug.h │ │ │ │ │ ├── SkDeque.h │ │ │ │ │ ├── SkFeatures.h │ │ │ │ │ ├── SkFixed.h │ │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ │ ├── SkLoadUserConfig.h │ │ │ │ │ ├── SkMacros.h │ │ │ │ │ ├── SkMalloc.h │ │ │ │ │ ├── SkMath.h │ │ │ │ │ ├── SkMutex.h │ │ │ │ │ ├── SkNoncopyable.h │ │ │ │ │ ├── SkOnce.h │ │ │ │ │ ├── SkPoint_impl.h │ │ │ │ │ ├── SkSafe32.h │ │ │ │ │ ├── SkSemaphore.h │ │ │ │ │ ├── SkSpan_impl.h │ │ │ │ │ ├── SkTArray.h │ │ │ │ │ ├── SkTDArray.h │ │ │ │ │ ├── SkTFitsIn.h │ │ │ │ │ ├── SkTLogic.h │ │ │ │ │ ├── SkTPin.h │ │ │ │ │ ├── SkTemplates.h │ │ │ │ │ ├── SkThreadAnnotations.h │ │ │ │ │ ├── SkThreadID.h │ │ │ │ │ ├── SkTo.h │ │ │ │ │ └── SkTypeTraits.h │ │ │ │ ├── chromium │ │ │ │ │ ├── GrDeferredDisplayList.h │ │ │ │ │ ├── GrDeferredDisplayListRecorder.h │ │ │ │ │ ├── GrPromiseImageTexture.h │ │ │ │ │ ├── GrSurfaceCharacterization.h │ │ │ │ │ ├── GrVkSecondaryCBDrawContext.h │ │ │ │ │ ├── SkChromeRemoteGlyphCache.h │ │ │ │ │ ├── SkDiscardableMemory.h │ │ │ │ │ ├── SkImageChromium.h │ │ │ │ │ ├── SkPMColor.h │ │ │ │ │ └── Slug.h │ │ │ │ └── gpu │ │ │ │ │ ├── ganesh │ │ │ │ │ ├── GrContext_Base.h │ │ │ │ │ ├── GrD3DTypesMinimal.h │ │ │ │ │ ├── GrImageContext.h │ │ │ │ │ ├── GrTextureGenerator.h │ │ │ │ │ └── GrTypesPriv.h │ │ │ │ │ └── vk │ │ │ │ │ └── SkiaVulkan.h │ │ │ ├── sksl │ │ │ │ ├── SkSLDebugTrace.h │ │ │ │ └── SkSLVersion.h │ │ │ ├── svg │ │ │ │ └── SkSVGCanvas.h │ │ │ ├── third_party │ │ │ │ └── vulkan │ │ │ │ │ └── vulkan │ │ │ │ │ ├── vk_icd.h │ │ │ │ │ ├── vk_layer.h │ │ │ │ │ ├── vk_platform.h │ │ │ │ │ ├── vk_video │ │ │ │ │ ├── vulkan_video_codec_av1std.h │ │ │ │ │ ├── vulkan_video_codec_av1std_decode.h │ │ │ │ │ ├── vulkan_video_codec_av1std_encode.h │ │ │ │ │ ├── vulkan_video_codec_h264std.h │ │ │ │ │ ├── vulkan_video_codec_h264std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h264std_encode.h │ │ │ │ │ ├── vulkan_video_codec_h265std.h │ │ │ │ │ ├── vulkan_video_codec_h265std_decode.h │ │ │ │ │ ├── vulkan_video_codec_h265std_encode.h │ │ │ │ │ └── vulkan_video_codecs_common.h │ │ │ │ │ ├── vulkan.h │ │ │ │ │ ├── vulkan_android.h │ │ │ │ │ ├── vulkan_beta.h │ │ │ │ │ ├── vulkan_core.h │ │ │ │ │ ├── vulkan_directfb.h │ │ │ │ │ ├── vulkan_fuchsia.h │ │ │ │ │ ├── vulkan_ggp.h │ │ │ │ │ ├── vulkan_ios.h │ │ │ │ │ ├── vulkan_macos.h │ │ │ │ │ ├── vulkan_metal.h │ │ │ │ │ ├── vulkan_screen.h │ │ │ │ │ ├── vulkan_vi.h │ │ │ │ │ ├── vulkan_wayland.h │ │ │ │ │ ├── vulkan_win32.h │ │ │ │ │ ├── vulkan_xcb.h │ │ │ │ │ ├── vulkan_xlib.h │ │ │ │ │ └── vulkan_xlib_xrandr.h │ │ │ └── utils │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCanvasStateUtils.h │ │ │ │ ├── SkCustomTypeface.h │ │ │ │ ├── SkEventTracer.h │ │ │ │ ├── SkNWayCanvas.h │ │ │ │ ├── SkNoDrawCanvas.h │ │ │ │ ├── SkNullCanvas.h │ │ │ │ ├── SkOrderedFontMgr.h │ │ │ │ ├── SkPaintFilterCanvas.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePath.h │ │ │ │ ├── SkShadowUtils.h │ │ │ │ ├── SkTextUtils.h │ │ │ │ ├── SkTraceEventPhase.h │ │ │ │ └── mac │ │ │ │ └── SkCGUtils.h │ │ ├── modules │ │ │ ├── jsonreader │ │ │ │ ├── SkJSONReader.cpp │ │ │ │ └── SkJSONReader.h │ │ │ ├── pathops │ │ │ │ └── include │ │ │ │ │ └── SkPathOps.h │ │ │ ├── skcms │ │ │ │ ├── skcms.h │ │ │ │ └── src │ │ │ │ │ ├── Transform_inl.h │ │ │ │ │ ├── skcms_Transform.h │ │ │ │ │ ├── skcms_internals.h │ │ │ │ │ └── skcms_public.h │ │ │ ├── skottie │ │ │ │ ├── include │ │ │ │ │ ├── ExternalLayer.h │ │ │ │ │ ├── Skottie.h │ │ │ │ │ ├── SkottieProperty.h │ │ │ │ │ ├── SlotManager.h │ │ │ │ │ └── TextShaper.h │ │ │ │ └── src │ │ │ │ │ ├── SkottieValue.h │ │ │ │ │ ├── animator │ │ │ │ │ └── Animator.h │ │ │ │ │ └── text │ │ │ │ │ ├── Font.h │ │ │ │ │ ├── TextAdapter.h │ │ │ │ │ ├── TextAnimator.h │ │ │ │ │ └── TextValue.h │ │ │ ├── skparagraph │ │ │ │ └── include │ │ │ │ │ ├── DartTypes.h │ │ │ │ │ ├── FontArguments.h │ │ │ │ │ ├── FontCollection.h │ │ │ │ │ ├── Metrics.h │ │ │ │ │ ├── Paragraph.h │ │ │ │ │ ├── ParagraphBuilder.h │ │ │ │ │ ├── ParagraphCache.h │ │ │ │ │ ├── ParagraphPainter.h │ │ │ │ │ ├── ParagraphStyle.h │ │ │ │ │ ├── TextShadow.h │ │ │ │ │ ├── TextStyle.h │ │ │ │ │ └── TypefaceFontProvider.h │ │ │ ├── skresources │ │ │ │ └── include │ │ │ │ │ └── SkResources.h │ │ │ ├── sksg │ │ │ │ └── include │ │ │ │ │ ├── SkSGClipEffect.h │ │ │ │ │ ├── SkSGColorFilter.h │ │ │ │ │ ├── SkSGDraw.h │ │ │ │ │ ├── SkSGEffectNode.h │ │ │ │ │ ├── SkSGGeometryEffect.h │ │ │ │ │ ├── SkSGGeometryNode.h │ │ │ │ │ ├── SkSGGradient.h │ │ │ │ │ ├── SkSGGroup.h │ │ │ │ │ ├── SkSGImage.h │ │ │ │ │ ├── SkSGInvalidationController.h │ │ │ │ │ ├── SkSGMaskEffect.h │ │ │ │ │ ├── SkSGMerge.h │ │ │ │ │ ├── SkSGNode.h │ │ │ │ │ ├── SkSGOpacityEffect.h │ │ │ │ │ ├── SkSGPaint.h │ │ │ │ │ ├── SkSGPath.h │ │ │ │ │ ├── SkSGPlane.h │ │ │ │ │ ├── SkSGRect.h │ │ │ │ │ ├── SkSGRenderEffect.h │ │ │ │ │ ├── SkSGRenderNode.h │ │ │ │ │ ├── SkSGScene.h │ │ │ │ │ ├── SkSGText.h │ │ │ │ │ └── SkSGTransform.h │ │ │ ├── skshaper │ │ │ │ └── include │ │ │ │ │ ├── SkShaper.h │ │ │ │ │ ├── SkShaper_coretext.h │ │ │ │ │ ├── SkShaper_factory.h │ │ │ │ │ ├── SkShaper_harfbuzz.h │ │ │ │ │ └── SkShaper_skunicode.h │ │ │ ├── skunicode │ │ │ │ └── include │ │ │ │ │ └── SkUnicode.h │ │ │ └── svg │ │ │ │ └── include │ │ │ │ ├── SkSVGAttribute.h │ │ │ │ ├── SkSVGAttributeParser.h │ │ │ │ ├── SkSVGCircle.h │ │ │ │ ├── SkSVGClipPath.h │ │ │ │ ├── SkSVGContainer.h │ │ │ │ ├── SkSVGDOM.h │ │ │ │ ├── SkSVGDefs.h │ │ │ │ ├── SkSVGEllipse.h │ │ │ │ ├── SkSVGFe.h │ │ │ │ ├── SkSVGFeBlend.h │ │ │ │ ├── SkSVGFeColorMatrix.h │ │ │ │ ├── SkSVGFeComponentTransfer.h │ │ │ │ ├── SkSVGFeComposite.h │ │ │ │ ├── SkSVGFeDisplacementMap.h │ │ │ │ ├── SkSVGFeFlood.h │ │ │ │ ├── SkSVGFeGaussianBlur.h │ │ │ │ ├── SkSVGFeImage.h │ │ │ │ ├── SkSVGFeLightSource.h │ │ │ │ ├── SkSVGFeLighting.h │ │ │ │ ├── SkSVGFeMerge.h │ │ │ │ ├── SkSVGFeMorphology.h │ │ │ │ ├── SkSVGFeOffset.h │ │ │ │ ├── SkSVGFeTurbulence.h │ │ │ │ ├── SkSVGFilter.h │ │ │ │ ├── SkSVGFilterContext.h │ │ │ │ ├── SkSVGG.h │ │ │ │ ├── SkSVGGradient.h │ │ │ │ ├── SkSVGHiddenContainer.h │ │ │ │ ├── SkSVGIDMapper.h │ │ │ │ ├── SkSVGImage.h │ │ │ │ ├── SkSVGLine.h │ │ │ │ ├── SkSVGLinearGradient.h │ │ │ │ ├── SkSVGMask.h │ │ │ │ ├── SkSVGNode.h │ │ │ │ ├── SkSVGOpenTypeSVGDecoder.h │ │ │ │ ├── SkSVGPath.h │ │ │ │ ├── SkSVGPattern.h │ │ │ │ ├── SkSVGPoly.h │ │ │ │ ├── SkSVGRadialGradient.h │ │ │ │ ├── SkSVGRect.h │ │ │ │ ├── SkSVGRenderContext.h │ │ │ │ ├── SkSVGSVG.h │ │ │ │ ├── SkSVGShape.h │ │ │ │ ├── SkSVGStop.h │ │ │ │ ├── SkSVGText.h │ │ │ │ ├── SkSVGTransformableNode.h │ │ │ │ ├── SkSVGTypes.h │ │ │ │ ├── SkSVGUse.h │ │ │ │ └── SkSVGValue.h │ │ └── src │ │ │ ├── base │ │ │ ├── SkArenaAlloc.h │ │ │ ├── SkMathPriv.h │ │ │ ├── SkTInternalLList.h │ │ │ ├── SkTLazy.h │ │ │ └── SkUTF.h │ │ │ ├── core │ │ │ ├── SkChecksum.h │ │ │ ├── SkLRUCache.h │ │ │ └── SkTHash.h │ │ │ └── gpu │ │ │ └── ganesh │ │ │ └── gl │ │ │ └── GrGLDefines.h │ ├── v8 │ │ └── include │ │ │ ├── APIDesign.md │ │ │ ├── DEPS │ │ │ ├── OWNERS │ │ │ ├── codecache-units.h │ │ │ ├── inspector │ │ │ ├── Debugger.h │ │ │ ├── Runtime.h │ │ │ └── Schema.h │ │ │ ├── js_protocol-1.2.json │ │ │ ├── js_protocol-1.3.json │ │ │ ├── js_protocol.pdl │ │ │ ├── libplatform │ │ │ ├── DEPS │ │ │ ├── libplatform-export.h │ │ │ ├── libplatform.h │ │ │ └── v8-tracing.h │ │ │ ├── mkjso-units.h │ │ │ ├── v8-debug.h │ │ │ ├── v8-inspector-protocol.h │ │ │ ├── v8-inspector.h │ │ │ ├── v8-internal.h │ │ │ ├── v8-jsaot.h │ │ │ ├── v8-platform.h │ │ │ ├── v8-profiler.h │ │ │ ├── v8-util.h │ │ │ ├── v8-value-serializer-version.h │ │ │ ├── v8-version-string.h │ │ │ ├── v8-version.h │ │ │ ├── v8-vex.h │ │ │ ├── v8-wasm-trap-handler-posix.h │ │ │ ├── v8-wasm-trap-handler-win.h │ │ │ ├── v8.h │ │ │ ├── v8config.h │ │ │ └── xts.h │ └── x86_64.zip │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ ├── logo.png │ └── round_logo.png │ ├── layout │ ├── activity_example.xml │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example.png -------------------------------------------------------------------------------- /app/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example1.png -------------------------------------------------------------------------------- /app/example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example2.png -------------------------------------------------------------------------------- /app/example3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example3.png -------------------------------------------------------------------------------- /app/example4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example4.png -------------------------------------------------------------------------------- /app/example5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example5.png -------------------------------------------------------------------------------- /app/example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example6.png -------------------------------------------------------------------------------- /app/example7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example7.png -------------------------------------------------------------------------------- /app/example8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example8.png -------------------------------------------------------------------------------- /app/example9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/example9.png -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/WorkspacePlanet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/WorkspacePlanet.json -------------------------------------------------------------------------------- /app/src/main/assets/bird.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/bird.gif -------------------------------------------------------------------------------- /app/src/main/assets/feng.lrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/feng.lrc -------------------------------------------------------------------------------- /app/src/main/assets/feng.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/feng.mp4 -------------------------------------------------------------------------------- /app/src/main/assets/feng.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/feng.srt -------------------------------------------------------------------------------- /app/src/main/assets/font/AlimamaFangYuanTiVF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/font/AlimamaFangYuanTiVF-Thin.ttf -------------------------------------------------------------------------------- /app/src/main/assets/font/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/font/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /app/src/main/assets/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/font/iconfont.woff -------------------------------------------------------------------------------- /app/src/main/assets/gl_transition_window_slice.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/gl_transition_window_slice.glsl -------------------------------------------------------------------------------- /app/src/main/assets/jetpack-compose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/jetpack-compose.svg -------------------------------------------------------------------------------- /app/src/main/assets/materials/baked_color.filamat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/materials/baked_color.filamat -------------------------------------------------------------------------------- /app/src/main/assets/music/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/bg.png -------------------------------------------------------------------------------- /app/src/main/assets/music/ic_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/ic_next.png -------------------------------------------------------------------------------- /app/src/main/assets/music/ic_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/ic_pause.png -------------------------------------------------------------------------------- /app/src/main/assets/music/ic_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/ic_play.png -------------------------------------------------------------------------------- /app/src/main/assets/music/ic_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/ic_previous.png -------------------------------------------------------------------------------- /app/src/main/assets/music/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/logo.png -------------------------------------------------------------------------------- /app/src/main/assets/music/mv_definition_super.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/mv_definition_super.svg -------------------------------------------------------------------------------- /app/src/main/assets/music/record_player_dark_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/record_player_dark_arm.png -------------------------------------------------------------------------------- /app/src/main/assets/music/record_player_verydark_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/music/record_player_verydark_highlight.png -------------------------------------------------------------------------------- /app/src/main/assets/raining.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/raining.glsl -------------------------------------------------------------------------------- /app/src/main/assets/raining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/raining.png -------------------------------------------------------------------------------- /app/src/main/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/react.svg -------------------------------------------------------------------------------- /app/src/main/assets/react_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/react_bundle.js -------------------------------------------------------------------------------- /app/src/main/assets/sincos.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/sincos.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_nv12_fragment_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_nv12_fragment_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_video_black_white.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_video_black_white.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_video_bright_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_video_bright_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_video_lightning_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_video_lightning_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_video_raining_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_video_raining_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_yuv420p_camera_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_yuv420p_camera_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/skia_yuv420p_fragment_shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/skia_yuv420p_fragment_shader.glsl -------------------------------------------------------------------------------- /app/src/main/assets/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/test.js -------------------------------------------------------------------------------- /app/src/main/assets/tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/tiger.svg -------------------------------------------------------------------------------- /app/src/main/assets/transition1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/transition1.png -------------------------------------------------------------------------------- /app/src/main/assets/transition2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/transition2.png -------------------------------------------------------------------------------- /app/src/main/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/vue.svg -------------------------------------------------------------------------------- /app/src/main/assets/vue_bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/vue_bundle.js -------------------------------------------------------------------------------- /app/src/main/assets/yiluxiangbei.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/assets/yiluxiangbei.mp4 -------------------------------------------------------------------------------- /app/src/main/cpp/SkiaUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/SkiaUI.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/anim/EaseType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/EaseType.h -------------------------------------------------------------------------------- /app/src/main/cpp/anim/IAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/IAnimator.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/anim/IAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/IAnimator.h -------------------------------------------------------------------------------- /app/src/main/cpp/anim/LinearAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/LinearAnimator.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/anim/LinearAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/LinearAnimator.h -------------------------------------------------------------------------------- /app/src/main/cpp/anim/TranslateAnimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/TranslateAnimator.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/anim/TranslateAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/anim/TranslateAnimator.h -------------------------------------------------------------------------------- /app/src/main/cpp/app/FrontEngineType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/FrontEngineType.h -------------------------------------------------------------------------------- /app/src/main/cpp/app/SkiaGLApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/SkiaGLApp.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/app/SkiaGLApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/SkiaGLApp.h -------------------------------------------------------------------------------- /app/src/main/cpp/app/SkiaUIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/SkiaUIApp.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/app/SkiaUIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/SkiaUIApp.h -------------------------------------------------------------------------------- /app/src/main/cpp/app/SkiaUIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/app/SkiaUIContext.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/AssetManager.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/base/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/AssetManager.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/EGLCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/EGLCore.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/base/EGLCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/EGLCore.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/MeasureTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/MeasureTime.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/bitmap_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/bitmap_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/color_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/color_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/gl_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/gl_utils.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/base/gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/gl_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/json11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/json11.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/base/json11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/json11.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/matrix_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/matrix_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/native_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/native_log.h -------------------------------------------------------------------------------- /app/src/main/cpp/base/w3c_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/base/w3c_util.h -------------------------------------------------------------------------------- /app/src/main/cpp/bitmap/AndroidBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/bitmap/AndroidBitmap.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/bitmap/AndroidBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/bitmap/AndroidBitmap.h -------------------------------------------------------------------------------- /app/src/main/cpp/bitmap/AndroidBitmapLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/bitmap/AndroidBitmapLoader.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/bitmap/AndroidBitmapLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/bitmap/AndroidBitmapLoader.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeAndroidImageJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeAndroidImageJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeBaseSurfaceTextureJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeBaseSurfaceTextureJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeButtonJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeButtonJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCameraJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCameraJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCanvas.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCanvas.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCanvasJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCanvasJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCanvasPaintJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCanvasPaintJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeCanvasPathJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeCanvasPathJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeContext.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeEditTextJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeEditTextJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeExoVideoJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeExoVideoJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeFilamentJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeFilamentJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeFlexboxLayoutJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeFlexboxLayoutJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeIconJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeIconJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeImageJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeImageJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeLoadingViewJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeLoadingViewJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeLottieJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeLottieJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeNodeJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeNodeJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposePageJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposePageJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeProgressBarJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeProgressBarJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeRecyclerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeRecyclerView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeRecyclerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeRecyclerView.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeRecyclerViewJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeRecyclerViewJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeSVGJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeSVGJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeScrollViewJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeScrollViewJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeShaderJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeShaderJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeSwitchJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeSwitchJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeTextJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeTextJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeViewGroupJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeViewGroupJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeViewJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeViewJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/compose/ComposeWebJNI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/compose/ComposeWebJNI.h -------------------------------------------------------------------------------- /app/src/main/cpp/custom/AudioFFTView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/custom/AudioFFTView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/custom/AudioFFTView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/custom/AudioFFTView.h -------------------------------------------------------------------------------- /app/src/main/cpp/custom/LyricScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/custom/LyricScrollView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/custom/LyricScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/custom/LyricScrollView.h -------------------------------------------------------------------------------- /app/src/main/cpp/filter/GrAHardwareBufferUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/GrAHardwareBufferUtils.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/filter/GrAHardwareBufferUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/GrAHardwareBufferUtils.h -------------------------------------------------------------------------------- /app/src/main/cpp/filter/IFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/IFilter.h -------------------------------------------------------------------------------- /app/src/main/cpp/filter/PersistentCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/PersistentCache.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/filter/PersistentCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/PersistentCache.h -------------------------------------------------------------------------------- /app/src/main/cpp/filter/SkiaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/SkiaFilter.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/filter/SkiaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/filter/SkiaFilter.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/Inspector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/Inspector.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/Inspector.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/V8InspctprChannelImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/V8InspctprChannelImpl.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/V8InspctprChannelImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/V8InspctprChannelImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/V8InspectorClientImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/V8InspectorClientImpl.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/V8InspectorClientImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/V8InspectorClientImpl.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/V8InspectorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/V8InspectorListener.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/WebSocketServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/WebSocketServer.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/WebSocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/WebSocketServer.h -------------------------------------------------------------------------------- /app/src/main/cpp/inspect/inspect_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/inspect/inspect_utils.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/File.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/File.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSAudioPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSAudioPlayer.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSAudioPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSAudioPlayer.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSAudioPlayerBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSAudioPlayerBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSAudioPlayerBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSAudioPlayerBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSButtonBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSButtonBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSButtonBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSButtonBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSFileBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSFileBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSFileBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSFileBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSFlexboxLayoutBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSFlexboxLayoutBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSFlexboxLayoutBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSFlexboxLayoutBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSIconBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSIconBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSIconBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSIconBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSImageViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSImageViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSImageViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSImageViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSLinearAnimationBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSLinearAnimationBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSLinearAnimationBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSLinearAnimationBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSLottieViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSLottieViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSLottieViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSLottieViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSPageBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSPageBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSPageBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSPageBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSProgressBarBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSProgressBarBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSProgressBarBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSProgressBarBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSSVGViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSSVGViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSSVGViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSSVGViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSScrollViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSScrollViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSScrollViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSScrollViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSShaderViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSShaderViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSShaderViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSShaderViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSSwitchBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSSwitchBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSSwitchBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSSwitchBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSTextEncodingBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSTextEncodingBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSTextEncodingBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSTextEncodingBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSTextViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSTextViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSTextViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSTextViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSVideoViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSVideoViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSVideoViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSVideoViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSViewGroupBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSViewGroupBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSViewGroupBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSViewGroupBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSYUVVideoViewBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSYUVVideoViewBinding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/JSYUVVideoViewBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/JSYUVVideoViewBinding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/TextEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/TextEncoding.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/TextEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/TextEncoding.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/V8Instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/V8Instance.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/V8Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/V8Runtime.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/V8Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/V8Runtime.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/ViewManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/ViewManager.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/js/ViewManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/ViewManager.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/animationFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/animationFrame.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/backPressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/backPressed.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/console.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/performance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/performance.h -------------------------------------------------------------------------------- /app/src/main/cpp/js/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/js/timer.h -------------------------------------------------------------------------------- /app/src/main/cpp/page/Page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/page/Page.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/page/Page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/page/Page.h -------------------------------------------------------------------------------- /app/src/main/cpp/page/PageStackManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/page/PageStackManager.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/page/PageStackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/page/PageStackManager.h -------------------------------------------------------------------------------- /app/src/main/cpp/plugin/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/plugin/PluginManager.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/plugin/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/plugin/PluginManager.h -------------------------------------------------------------------------------- /app/src/main/cpp/resources/ResourceLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/resources/ResourceLoader.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/resources/ResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/resources/ResourceLoader.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/BlendTestPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/BlendTestPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/BlendTestPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/BlendTestPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/BlendTestView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/BlendTestView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/BlendTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/BlendTestView.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/CameraPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CameraPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/CameraPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CameraPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/CanvasTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CanvasTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/CanvasTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CanvasTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/ClockView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ClockView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/ClockView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ClockView.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/CppTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CppTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/CppTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/CppTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/EasingTestPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/EasingTestPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/EasingTestPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/EasingTestPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/ExamplePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ExamplePage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/ExamplePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ExamplePage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/FilamentPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/FilamentPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/FilamentPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/FilamentPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/GridLayoutTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/GridLayoutTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/GridLayoutTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/GridLayoutTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/ITestDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ITestDraw.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/JavascriptTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/JavascriptTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/JavascriptTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/JavascriptTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/JetpackComposeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/JetpackComposeTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/JetpackComposeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/JetpackComposeTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/MatrixTestPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/MatrixTestPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/MatrixTestPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/MatrixTestPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/QQMusicPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/QQMusicPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/QQMusicPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/QQMusicPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/ReactjsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ReactjsTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/ReactjsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/ReactjsTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/RecyclerViewPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/RecyclerViewPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/RecyclerViewPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/RecyclerViewPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/SimpleJavascriptTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/SimpleJavascriptTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/SimpleJavascriptTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/SimpleJavascriptTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/TextTestPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/TextTestPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/TextTestPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/TextTestPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/VideoShaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/VideoShaderTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/VideoShaderTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/VideoShaderTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/VuejsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/VuejsTest.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/VuejsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/VuejsTest.h -------------------------------------------------------------------------------- /app/src/main/cpp/test/WebViewPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/WebViewPage.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/test/WebViewPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/test/WebViewPage.h -------------------------------------------------------------------------------- /app/src/main/cpp/touch/ScrollDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/ScrollDispatcher.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/touch/ScrollDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/ScrollDispatcher.h -------------------------------------------------------------------------------- /app/src/main/cpp/touch/TouchEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/TouchEvent.h -------------------------------------------------------------------------------- /app/src/main/cpp/touch/TouchEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/TouchEventDispatcher.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/touch/TouchEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/TouchEventDispatcher.h -------------------------------------------------------------------------------- /app/src/main/cpp/touch/Velocity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/touch/Velocity.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/AndroidImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/AndroidImageView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/AndroidImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/AndroidImageView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/BaseSurfaceTextureView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/BaseSurfaceTextureView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/BaseSurfaceTextureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/BaseSurfaceTextureView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/BoxDecoration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/BoxDecoration.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/BoxDecoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/BoxDecoration.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Button.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Button.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/CameraView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/CameraView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/CameraView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/CameraView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ComposeTextureView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ComposeTextureView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ComposeTextureView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ComposeTextureView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/EditText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/EditText.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/EditText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/EditText.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ExoPlayerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ExoPlayerView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ExoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ExoPlayerView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/FilamentView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/FilamentView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/FilamentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/FilamentView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/FlexboxLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/FlexboxLayout.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/FlexboxLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/FlexboxLayout.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/GridLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/GridLayout.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/GridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/GridLayout.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Icon.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Icon.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ImageView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ImageView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ImageView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/LoadingView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/LoadingView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/LoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/LoadingView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/LottieView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/LottieView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/LottieView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/LottieView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/MovingArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/MovingArea.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/MovingArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/MovingArea.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/PickerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/PickerView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/PickerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/PickerView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/PlatformView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/PlatformView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/PlatformView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/PlatformView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ProgressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ProgressBar.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ProgressBar.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Radio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Radio.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Radio.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/RecyclerView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/RecyclerView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/RecyclerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/RecyclerView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/RichText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/RichText.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/RichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/RichText.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/SVGView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/SVGView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/SVGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/SVGView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ScrollView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ScrollView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ScrollView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ShaderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ShaderView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ShaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ShaderView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/SwiperView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/SwiperView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/SwiperView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/SwiperView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Switch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Switch.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/Switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/Switch.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/TextView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/TextView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/TextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/TextView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/VideoView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/VideoView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/VideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/VideoView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/View.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/View.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ViewGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ViewGroup.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/ViewGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/ViewGroup.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/WebView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/WebView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/WebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/WebView.h -------------------------------------------------------------------------------- /app/src/main/cpp/widget/YUVVideoView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/YUVVideoView.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/widget/YUVVideoView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/widget/YUVVideoView.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGConfig.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGConfig.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGEnums.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGEnums.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGMacros.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNode.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNode.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNodeLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNodeLayout.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNodeLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNodeLayout.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNodeStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNodeStyle.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGNodeStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGNodeStyle.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGPixelGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGPixelGrid.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGPixelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGPixelGrid.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGValue.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/YGValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/YGValue.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/Yoga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/Yoga.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/AbsoluteLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/AbsoluteLayout.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/AbsoluteLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/AbsoluteLayout.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/Align.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/Baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/Baseline.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/Baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/Baseline.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/BoundAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/BoundAxis.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/Cache.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/Cache.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/CalculateLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/CalculateLayout.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/CalculateLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/CalculateLayout.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/FlexDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/FlexDirection.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/FlexLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/FlexLine.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/FlexLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/FlexLine.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/PixelGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/PixelGrid.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/PixelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/PixelGrid.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/SizingMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/SizingMode.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/algorithm/TrailingPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/algorithm/TrailingPosition.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/config/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/config/Config.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/config/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/config/Config.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/debug/AssertFatal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/debug/AssertFatal.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/debug/AssertFatal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/debug/AssertFatal.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/debug/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/debug/Log.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/debug/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/debug/Log.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Align.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/BoxSizing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/BoxSizing.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Dimension.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Direction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Direction.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Display.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Edge.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Errata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Errata.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/ExperimentalFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/ExperimentalFeature.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/FlexDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/FlexDirection.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Gutter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Gutter.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Justify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Justify.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/LogLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/LogLevel.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/MeasureMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/MeasureMode.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/NodeType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/NodeType.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Overflow.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/PhysicalEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/PhysicalEdge.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/PositionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/PositionType.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Unit.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/Wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/Wrap.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/enums/YogaEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/enums/YogaEnums.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/event/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/event/event.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/event/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/event/event.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/module.modulemap -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/CachedMeasurement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/CachedMeasurement.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/LayoutResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/LayoutResults.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/LayoutResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/LayoutResults.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/LayoutableChildren.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/LayoutableChildren.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/Node.cpp -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/node/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/node/Node.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/numeric/Comparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/numeric/Comparison.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/numeric/FloatOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/numeric/FloatOptional.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/SmallValueBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/SmallValueBuffer.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/Style.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/StyleLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/StyleLength.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/StyleSizeLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/StyleSizeLength.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/StyleValueHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/StyleValueHandle.h -------------------------------------------------------------------------------- /app/src/main/cpp/yoga/style/StyleValuePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/cpp/yoga/style/StyleValuePool.h -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/HYSkiaEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/HYSkiaEngine.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/HYSkiaExampleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/HYSkiaExampleActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/HYSkiaSurfaceView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/HYSkiaSurfaceView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/HYSkiaTextureView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/HYSkiaTextureView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/HYSkiaUIApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/HYSkiaUIApp.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/ISkiaView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/ISkiaView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/NoTouchFrameLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/NoTouchFrameLayout.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/RenderCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/RenderCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/audio/HYSkiaAudioPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/audio/HYSkiaAudioPlayer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/audio/HYSkiaAudioTracker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/audio/HYSkiaAudioTracker.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/audio/IAudioCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/audio/IAudioCallback.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/audio/IAudioPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/audio/IAudioPlayer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/bitmap/GlideImageLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/bitmap/GlideImageLoader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/bitmap/ImageLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/bitmap/ImageLoader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/cache/PersistentCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/cache/PersistentCache.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/material/HYBadge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/material/HYBadge.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/Canvas.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/Canvas.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeIcon.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeNode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeNode.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposePage.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposePath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposePath.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeSVG.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeSVG.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYComposeWeb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYComposeWeb.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/compose/ui/HYFlexboxEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/compose/ui/HYFlexboxEnum.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/inspect/InspectPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/inspect/InspectPlugin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/inspect/InspectServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/inspect/InspectServer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/platform/ICanvasProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/platform/ICanvasProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/platform/SurfaceObj.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/platform/SurfaceObj.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/plugin/IPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/plugin/IPlugin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/plugin/InspectWSServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/plugin/InspectWSServer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/plugin/PluginManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/plugin/PluginManager.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/plugin/ToastPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/plugin/ToastPlugin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/video/HYSkiaVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/video/HYSkiaVideo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/video/HYSkiaYUVVideo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/video/HYSkiaYUVVideo.kt -------------------------------------------------------------------------------- /app/src/main/java/com/temple/skiaui/video/YUVData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/java/com/temple/skiaui/video/YUVData.kt -------------------------------------------------------------------------------- /app/src/main/jniLibs/arm64-v8a.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/arm64-v8a.zip -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/android/SkAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/android/SkAnimatedImage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/android/SkCanvasAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/android/SkCanvasAndroid.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/android/SkHeifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/android/SkHeifDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/android/SkImageAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/android/SkImageAndroid.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/android/SkSurfaceAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/android/SkSurfaceAndroid.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkAndroidCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkAndroidCodec.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkAvifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkAvifDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkBmpDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkBmpDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkCodec.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkCodecAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkCodecAnimation.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkEncodedImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkEncodedImageFormat.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkEncodedOrigin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkEncodedOrigin.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkGifDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkGifDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkIcoDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkIcoDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkJpegDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkJpegDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkJpegxlDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkJpegxlDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkPixmapUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkPixmapUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkPngChunkReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkPngChunkReader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkPngDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkPngDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkRawDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkRawDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkWbmpDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkWbmpDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/codec/SkWebpDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/codec/SkWebpDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/config/SkUserConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/config/SkUserConfig.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkAlphaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkAlphaType.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkAnnotation.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkArc.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkBBHFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkBBHFactory.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkBitmap.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkBlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkBlendMode.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkBlender.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkBlurTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkBlurTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCPUContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCPUContext.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCPURecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCPURecorder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCapabilities.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkClipOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkClipOp.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkColor.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkColorFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkColorSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkColorSpace.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkColorTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkColorTable.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkColorType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkColorType.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkContourMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkContourMeasure.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCoverageMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCoverageMode.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkCubicMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkCubicMap.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkData.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkDataTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkDataTable.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkDocument.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkDrawable.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkExecutor.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFlattenable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFlattenable.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFont.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontArguments.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontMetrics.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontMgr.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontParameters.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontScanner.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontStyle.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFontTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFontTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkFourByteTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkFourByteTag.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkGraphics.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkImage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkImageFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkImageFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkImageGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkImageGenerator.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkImageInfo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkM44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkM44.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkMallocPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkMallocPixelRef.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkMaskFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkMatrix.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkMesh.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkMilestone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkMilestone.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkOpenTypeSVGDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkOpenTypeSVGDecoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkOverdrawCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkOverdrawCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPaint.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPathBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPathBuilder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPathMeasure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPathMeasure.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPathTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPathTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPathUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPicture.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPictureRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPictureRecorder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPixelRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPixelRef.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPixmap.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPoint.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkPoint3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkPoint3.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRRect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRSXform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRSXform.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRecorder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRefCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRefCnt.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkRegion.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSamplingOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSamplingOptions.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkScalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkScalar.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSerialProcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSerialProcs.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkShader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSize.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSpan.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkStream.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkString.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkStrokeRec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkStrokeRec.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSurface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSurfaceProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSurfaceProps.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkSwizzle.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTextBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTextBlob.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTileMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTileMode.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTiledImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTiledImageUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTraceMemoryDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTraceMemoryDump.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTypeface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkUnPreMultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkUnPreMultiply.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkVertices.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkYUVAInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkYUVAInfo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/core/SkYUVAPixmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/core/SkYUVAPixmaps.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/docs/SkMultiPictureDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/docs/SkMultiPictureDocument.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/docs/SkPDFDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/docs/SkPDFDocument.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/docs/SkPDFJpegHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/docs/SkPDFJpegHelpers.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/docs/SkXPSDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/docs/SkXPSDocument.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/Sk1DPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/Sk1DPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/Sk2DPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/Sk2DPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkBlenders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkBlenders.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkBlurMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkBlurMaskFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkColorMatrix.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkColorMatrixFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkColorMatrixFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkCornerPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkCornerPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkDashPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkDashPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkGradientShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkGradientShader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkImageFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkImageFilters.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkLumaColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkLumaColorFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkPerlinNoiseShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkPerlinNoiseShader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkRuntimeEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkRuntimeEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkShaderMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkShaderMaskFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkTableMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkTableMaskFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/effects/SkTrimPathEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/effects/SkTrimPathEffect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/encode/SkEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/encode/SkEncoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/encode/SkICC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/encode/SkICC.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/encode/SkJpegEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/encode/SkJpegEncoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/encode/SkPngEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/encode/SkPngEncoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/encode/SkWebpEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/encode/SkWebpEncoder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/GpuTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/GpuTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/MutableTextureState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/MutableTextureState.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ShaderErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ShaderErrorHandler.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/GrBackendSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/GrBackendSurface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/GrContextOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/GrContextOptions.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/GrDirectContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/GrDirectContext.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/GrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/GrTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/SkImageGanesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/SkImageGanesh.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/SkMeshGanesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/SkMeshGanesh.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/SkSurfaceGanesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/SkSurfaceGanesh.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/d3d/GrD3DTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/d3d/GrD3DTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLConfig.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLFunctions.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLInterface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/gl/GrGLTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/mtl/GrMtlTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/mtl/GrMtlTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/ganesh/vk/GrVkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/ganesh/vk/GrVkTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/Context.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/Image.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/LogPriority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/LogPriority.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/Recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/Recorder.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/Recording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/Recording.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/Surface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/graphite/TextureInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/graphite/TextureInfo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/vk/VulkanExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/vk/VulkanExtensions.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/gpu/vk/VulkanTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/gpu/vk/VulkanTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkCFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkCFObject.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_android.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_data.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_directory.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_empty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_empty.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_fuchsia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_fuchsia.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkFontMgr_mac_ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkFontMgr_mac_ct.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkImageGeneratorCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkImageGeneratorCG.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkImageGeneratorNDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkImageGeneratorNDK.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkImageGeneratorWIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkImageGeneratorWIC.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkTypeface_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkTypeface_mac.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/ports/SkTypeface_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/ports/SkTypeface_win.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkEncodedInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkEncodedInfo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkExif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkExif.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkGainmapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkGainmapInfo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkGainmapShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkGainmapShader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkPathRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkPathRef.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkSLSampleUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkSLSampleUsage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkWeakRefCnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkWeakRefCnt.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/SkXmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/SkXmp.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/README.md -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SingleOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SingleOwner.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkAPI.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkASAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkASAN.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkAlign.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkAssert.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkAttributes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkCPUTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkCPUTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkContainers.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkDebug.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkDeque.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkFeatures.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkFixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkFixed.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkMacros.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkMalloc.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkMath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkMutex.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkOnce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkOnce.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkPoint_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkPoint_impl.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkSafe32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkSafe32.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkSemaphore.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkSpan_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkSpan_impl.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTArray.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTDArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTDArray.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTFitsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTFitsIn.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTLogic.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTPin.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTemplates.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkThreadID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkThreadID.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTo.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/base/SkTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/base/SkTypeTraits.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/chromium/Slug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/chromium/Slug.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/private/gpu/vk/SkiaVulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/private/gpu/vk/SkiaVulkan.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/sksl/SkSLDebugTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/sksl/SkSLDebugTrace.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/sksl/SkSLVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/sksl/SkSLVersion.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/svg/SkSVGCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/svg/SkSVGCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkCamera.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkCanvasStateUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkCanvasStateUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkCustomTypeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkCustomTypeface.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkEventTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkEventTracer.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkNWayCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkNWayCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkNoDrawCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkNoDrawCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkNullCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkNullCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkOrderedFontMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkOrderedFontMgr.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkPaintFilterCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkPaintFilterCanvas.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkParse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkParse.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkParsePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkParsePath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkShadowUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkShadowUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkTextUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkTextUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/SkTraceEventPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/SkTraceEventPhase.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/include/utils/mac/SkCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/include/utils/mac/SkCGUtils.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/jsonreader/SkJSONReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/jsonreader/SkJSONReader.cpp -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/jsonreader/SkJSONReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/jsonreader/SkJSONReader.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/pathops/include/SkPathOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/pathops/include/SkPathOps.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skcms/skcms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skcms/skcms.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skcms/src/Transform_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skcms/src/Transform_inl.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skcms/src/skcms_Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skcms/src/skcms_Transform.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skcms/src/skcms_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skcms/src/skcms_internals.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skcms/src/skcms_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skcms/src/skcms_public.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skottie/include/Skottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skottie/include/Skottie.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skottie/src/SkottieValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skottie/src/SkottieValue.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skottie/src/text/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skottie/src/text/Font.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGDraw.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGGradient.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGGroup.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGImage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGMerge.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGNode.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGPaint.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGPath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGPlane.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGRect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGScene.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/sksg/include/SkSGText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/sksg/include/SkSGText.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/skshaper/include/SkShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/skshaper/include/SkShaper.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGCircle.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGClipPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGClipPath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGDOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGDOM.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGDefs.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGEllipse.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFe.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeBlend.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeFlood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeFlood.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeImage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeMerge.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFeOffset.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGFilter.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGG.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGGradient.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGIDMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGIDMapper.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGImage.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGLine.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGMask.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGNode.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGPath.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGPattern.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGPoly.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGRect.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGSVG.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGShape.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGStop.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGText.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGTypes.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGUse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGUse.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/modules/svg/include/SkSVGValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/modules/svg/include/SkSVGValue.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/base/SkArenaAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/base/SkArenaAlloc.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/base/SkMathPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/base/SkMathPriv.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/base/SkTInternalLList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/base/SkTInternalLList.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/base/SkTLazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/base/SkTLazy.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/base/SkUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/base/SkUTF.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/core/SkChecksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/core/SkChecksum.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/core/SkLRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/core/SkLRUCache.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/core/SkTHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/core/SkTHash.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/skia/src/gpu/ganesh/gl/GrGLDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/skia/src/gpu/ganesh/gl/GrGLDefines.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/APIDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/APIDesign.md -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/DEPS -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/OWNERS -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/codecache-units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/codecache-units.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/inspector/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/inspector/Debugger.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/inspector/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/inspector/Runtime.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/inspector/Schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/inspector/Schema.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/js_protocol-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/js_protocol-1.2.json -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/js_protocol-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/js_protocol-1.3.json -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/js_protocol.pdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/js_protocol.pdl -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/libplatform/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/libplatform/DEPS -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/libplatform/libplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/libplatform/libplatform.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/libplatform/v8-tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/libplatform/v8-tracing.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/mkjso-units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/mkjso-units.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-debug.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-inspector-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-inspector-protocol.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-inspector.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-internal.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-jsaot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-jsaot.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-platform.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-profiler.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-util.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-value-serializer-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-value-serializer-version.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-version-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-version-string.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-version.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-vex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-vex.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-wasm-trap-handler-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-wasm-trap-handler-posix.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8-wasm-trap-handler-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8-wasm-trap-handler-win.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/v8config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/v8config.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/v8/include/xts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/v8/include/xts.h -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86_64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/jniLibs/x86_64.zip -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/drawable/round_logo.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/layout/activity_example.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanpuer/SkiaUI2/HEAD/settings.gradle.kts --------------------------------------------------------------------------------