├── .cargo └── config.toml ├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build-pack.yml │ ├── ci.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── LICENSE ├── NuGet.Config ├── README.md ├── STATUS.md ├── VelloSharp.sln ├── benchmarks └── VelloSharp.Composition.Benchmarks │ ├── Program.cs │ └── VelloSharp.Composition.Benchmarks.csproj ├── bindings ├── Avalonia.Skia │ ├── Avalonia.Skia.csproj │ └── avalonia-licence.md ├── VelloSharp.Avalonia.Browser │ ├── AppBuilderExtensions.cs │ ├── Directory.Build.targets │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VelloBrowserDispatcherLifecycle.cs │ ├── VelloBrowserPlatform.cs │ ├── VelloBrowserRenderInterface.cs │ ├── VelloBrowserRenderInterfaceContext.cs │ ├── VelloBrowserRenderLoopManager.cs │ ├── VelloBrowserRenderTarget.cs │ ├── VelloBrowserRenderTimer.cs │ ├── VelloBrowserSurfaceTexture.cs │ ├── VelloBrowserSwapChainSurface.cs │ └── VelloSharp.Avalonia.Browser.csproj ├── VelloSharp.Avalonia.Core │ ├── Device │ │ ├── GraphicsDeviceLease.cs │ │ ├── GraphicsDeviceLeaseExtensions.cs │ │ ├── IGraphicsDeviceProvider.cs │ │ ├── WgpuDeviceResources.cs │ │ └── WgpuGraphicsDeviceProvider.cs │ ├── GlobalUsings.cs │ ├── Options │ │ ├── GraphicsBackendKind.cs │ │ ├── GraphicsBackendOptions.cs │ │ ├── GraphicsDeviceOptions.cs │ │ ├── GraphicsFeatureSet.cs │ │ └── GraphicsPresentationOptions.cs │ ├── Rendering │ │ ├── GraphicsCommandEncoder.cs │ │ ├── GraphicsCommandEncoderExtensions.cs │ │ ├── IRenderSubmission.cs │ │ └── RenderSubmissionContext.cs │ ├── Surface │ │ ├── IRenderSurfaceManager.cs │ │ ├── Providers │ │ │ ├── AvaloniaNativeSurfaceProvider.cs │ │ │ ├── Win32SurfaceProvider.cs │ │ │ └── X11SurfaceProvider.cs │ │ ├── RenderSurfaceLease.cs │ │ └── SurfaceRequest.cs │ └── VelloSharp.Avalonia.Core.csproj ├── VelloSharp.Avalonia.SkiaBridge │ ├── Configuration │ │ ├── SkiaBackendConfiguration.cs │ │ ├── SkiaBackendInitializer.cs │ │ └── SkiaVelloRenderer.cs │ ├── Rendering │ │ ├── GraphicsCommandEncoderExtensions.cs │ │ └── SkiaCommandEncoderContext.cs │ └── VelloSharp.Avalonia.SkiaBridge.csproj ├── VelloSharp.Avalonia.Vello │ ├── Directory.Build.props │ ├── Geometry │ │ ├── GeometryUtilities.cs │ │ ├── VelloCombinedGeometryImpl.cs │ │ ├── VelloEllipseGeometryImpl.cs │ │ ├── VelloGeometryGroupImpl.cs │ │ ├── VelloGeometryImplBase.cs │ │ ├── VelloLineGeometryImpl.cs │ │ ├── VelloPathBuilderExtensions.cs │ │ ├── VelloPathData.cs │ │ ├── VelloPathGeometryImpl.cs │ │ ├── VelloRectangleGeometryImpl.cs │ │ ├── VelloRoundedRectangleGeometryImpl.cs │ │ ├── VelloStreamGeometryImpl.cs │ │ └── VelloTransformedGeometryImpl.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rendering │ │ ├── ISkiaSharpApiLeaseFeature.cs │ │ ├── IVelloApiLeaseFeature.cs │ │ ├── SceneLease.cs │ │ ├── SkiaLeaseRequestScope.cs │ │ ├── SkiaSharpLeaseDefaults.cs │ │ ├── SkiaSharpLeaseOptions.cs │ │ ├── VelloBitmapImpl.cs │ │ ├── VelloDrawingContextImpl.cs │ │ ├── VelloFontManager.cs │ │ ├── VelloFontManagerImpl.cs │ │ ├── VelloGlyphRunImpl.cs │ │ ├── VelloGlyphTypeface.cs │ │ ├── VelloOffscreenRenderTarget.cs │ │ ├── VelloPlatformRenderInterface.cs │ │ ├── VelloPlatformRenderInterfaceContext.cs │ │ ├── VelloRegionImpl.cs │ │ ├── VelloSwapchainRenderTarget.cs │ │ ├── VelloTextShaper.cs │ │ └── WgpuSurfaceRenderContext.cs │ ├── VelloApplicationExtensions.cs │ ├── VelloPlatform.cs │ ├── VelloPlatformOptions.cs │ ├── VelloRenderer.cs │ ├── VelloSharp.Avalonia.Vello.csproj │ ├── VelloTextServices.cs │ └── WebGpuCapabilityHelpers.cs ├── VelloSharp.Avalonia.Winit │ ├── Directory.Build.props │ ├── Platform │ │ ├── IVelloWinitSurfaceProvider.cs │ │ ├── WinitAccessKitManager.cs │ │ ├── WinitClipboard.cs │ │ ├── WinitCursorFactory.cs │ │ ├── WinitDispatcher.cs │ │ ├── WinitKeyCodeMapper.cs │ │ ├── WinitPlatform.cs │ │ ├── WinitScreenManager.cs │ │ ├── WinitWindowImpl.cs │ │ └── WinitWindowingPlatform.cs │ └── VelloSharp.Avalonia.Winit.csproj ├── VelloSharp.Core │ ├── Common │ │ ├── Enums.cs │ │ └── RenderingPrimitives.cs │ ├── Geometry │ │ └── PathBuilder.cs │ ├── Painting │ │ └── Brushes.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Text │ │ └── GlyphTypes.cs │ └── VelloSharp.Core.csproj ├── VelloSharp.Ffi.Core │ ├── InteropTypes.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VelloSharedTextureInterop.cs │ └── VelloSharp.Ffi.Core.csproj ├── VelloSharp.Ffi.Gpu │ ├── AccessKitNativeMethods.cs │ ├── GpuNativeHelpers.cs │ ├── NativeMethods.cs │ ├── PenikoNativeMethods.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SafeHandles.cs │ ├── VelloSharp.Ffi.Gpu.csproj │ └── WinitNativeMethods.cs ├── VelloSharp.Ffi.Sparse │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SparseNativeHelpers.cs │ ├── SparseNativeMethods.cs │ ├── SparseSafeHandles.cs │ ├── SparseSimdLevel.cs │ └── VelloSharp.Ffi.Sparse.csproj ├── VelloSharp.Gpu │ ├── AccessKitActionRequest.cs │ ├── AccessKitJson.cs │ ├── AccessKitTreeUpdate.cs │ ├── AssemblyInfo.cs │ ├── NativeLibraryBootstrap.cs │ ├── RendererOptionsExtensions.cs │ ├── SharedGpuTexture.cs │ ├── VelloSharp.Gpu.csproj │ ├── Wgpu.cs │ └── WinitEventLoop.cs ├── VelloSharp.HarfBuzzSharp │ ├── Blob.cs │ ├── Buffer.cs │ ├── Enums.cs │ ├── Face.cs │ ├── Feature.cs │ ├── Font.cs │ ├── FontFunctions.cs │ ├── FontVariation.cs │ ├── GlyphStructs.cs │ ├── HarfBuzzSharp.csproj │ ├── IFaceTableProvider.cs │ ├── InternalsVisibleTo.cs │ ├── Language.cs │ ├── NativeObject.cs │ ├── OpenTypeMetrics.cs │ ├── Script.cs │ ├── ShimNotImplemented.cs │ ├── Tag.cs │ ├── UnicodeFunctions.cs │ └── VariationAxis.cs ├── VelloSharp.Integration.Skia │ ├── SkiaRenderBridge.cs │ └── VelloSharp.Integration.Skia.csproj ├── VelloSharp.Integration.WinForms │ ├── VelloPaintSurfaceEventArgs.cs │ ├── VelloRenderBackend.cs │ ├── VelloRenderControl.cs │ ├── VelloRenderMode.cs │ └── VelloSharp.Integration.WinForms.csproj ├── VelloSharp.Integration.Wpf │ ├── D3DImageBridge.cs │ ├── SwapChainLeaseEventArgs.cs │ ├── VelloNativeSwapChainHost.cs │ ├── VelloNativeSwapChainView.cs │ ├── VelloRenderBackend.cs │ ├── VelloRenderMode.cs │ ├── VelloSharp.Integration.Wpf.csproj │ ├── VelloSwapChainRenderEventArgs.cs │ ├── VelloView.cs │ ├── VelloViewDiagnostics.cs │ └── WpfCompositionInputSource.cs ├── VelloSharp.Integration │ ├── Avalonia │ │ ├── AppBuilderExtensions.cs │ │ ├── AvaloniaCompositionInputSource.cs │ │ ├── VelloRenderFrameContext.cs │ │ ├── VelloSurfaceView.cs │ │ └── VelloView.cs │ └── VelloSharp.Integration.csproj ├── VelloSharp.Maui │ ├── Android │ │ └── VelloViewHandler.Android.cs │ ├── AppHostBuilderExtensions.cs │ ├── MacCatalyst │ │ └── VelloViewHandler.MacCatalyst.cs │ ├── VelloSharp.Maui.csproj │ ├── VelloViewHandler.cs │ ├── Windows │ │ └── VelloViewHandler.Windows.cs │ └── iOS │ │ └── VelloViewHandler.iOS.cs ├── VelloSharp.Rendering │ ├── RenderTargetDescriptor.cs │ ├── VelloRenderPath.cs │ └── VelloSharp.Rendering.csproj ├── VelloSharp.Skia.Core │ ├── Fonts │ │ └── Roboto-Regular.ttf │ ├── GrContextShim.cs │ ├── IO │ │ ├── SKData.cs │ │ ├── SKManagedStream.cs │ │ ├── SKStreamAsset.cs │ │ └── SkiaImageDecoder.cs │ ├── KurboPathEffects.cs │ ├── PaintBrush.cs │ ├── Primitives │ │ └── SKPrimitives.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Recording │ │ └── CanvasCommands.cs │ ├── SKAutoCoInitialize.cs │ ├── SKBitmap.cs │ ├── SKBlendMode.cs │ ├── SKBlender.cs │ ├── SKCanvas.cs │ ├── SKClipOperation.cs │ ├── SKCodec.cs │ ├── SKColor.cs │ ├── SKColorFilter.cs │ ├── SKColorSpace.cs │ ├── SKColorSpaceStructs.cs │ ├── SKDocument.cs │ ├── SKDrawable.cs │ ├── SKEncodedImageFormat.cs │ ├── SKFilterQuality.cs │ ├── SKFont.cs │ ├── SKFontManager.cs │ ├── SKGeometry.cs │ ├── SKGpuExtensions.cs │ ├── SKGraphics.cs │ ├── SKHighContrastConfig.cs │ ├── SKImage.cs │ ├── SKImageFilter.cs │ ├── SKImageFilterTypes.cs │ ├── SKImageInfo.cs │ ├── SKImageInfoExtensions.cs │ ├── SKMaskFilter.cs │ ├── SKPaint.cs │ ├── SKPath.cs │ ├── SKPathEffect.cs │ ├── SKPathMeasure.cs │ ├── SKPathPrimitives.cs │ ├── SKPicture.cs │ ├── SKPictureRecorder.cs │ ├── SKPixelGeometry.cs │ ├── SKPixmap.cs │ ├── SKRegion.cs │ ├── SKRegionOperation.cs │ ├── SKRoundRect.cs │ ├── SKRuntimeEffect.cs │ ├── SKSamplingOptions.cs │ ├── SKSamplingPrimitives.cs │ ├── SKShader.cs │ ├── SKSurface.cs │ ├── SKSurfaceProperties.cs │ ├── SKSurfacePropsFlags.cs │ ├── SKTextAlign.cs │ ├── SKTextBlob.cs │ ├── SKTraceMemoryDump.cs │ ├── SKTypeface.cs │ ├── ShimNotImplemented.cs │ ├── SkiaBackend.cs │ ├── SkiaInteropHelpers.cs │ ├── SkiaSharpShim │ │ ├── FontMeasurement.cs │ │ └── PathOps.cs │ └── VelloSharp.Skia.Core.csproj ├── VelloSharp.Skia.Cpu │ ├── CpuSkiaBackend.cs │ ├── CpuSparseInterop.cs │ └── VelloSharp.Skia.Cpu.csproj ├── VelloSharp.Skia.Gpu │ ├── GpuInterop.cs │ ├── GpuSkiaBackend.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── VelloSharp.Skia.Gpu.csproj ├── VelloSharp.Text │ ├── ParleyFontService.cs │ ├── TextOptions.cs │ ├── VelloSharp.Text.csproj │ └── VelloTextShaperCore.cs ├── VelloSharp.Uno │ ├── AssemblyInfo.cs │ ├── Controls │ │ ├── VelloCoreWindowHost.cs │ │ ├── VelloSwapChainPanel.cs │ │ └── VelloXamlIslandSwapChainHost.cs │ ├── Dispatching │ │ └── UnoDispatchers.cs │ ├── Interop │ │ ├── UnoCoreWindowSurfaceSource.cs │ │ └── UnoSwapChainPanelSurfaceSource.cs │ └── VelloSharp.Uno.csproj ├── VelloSharp.Uwp │ ├── Accessibility │ │ ├── AccessKitNodeAutomationPeer.cs │ │ ├── AccessKitTreeSnapshot.cs │ │ └── VelloSwapChainAutomationPeer.cs │ ├── Controls │ │ └── VelloSwapChainPanel.cs │ ├── Dispatching │ │ └── UwpDispatchers.cs │ ├── Interop │ │ └── UwpSwapChainPanelSurfaceSource.cs │ ├── VelloSharp.Uwp.csproj │ └── buildTransitive │ │ └── VelloSharp.Uwp.targets ├── VelloSharp.WebAssembly │ ├── Internal │ │ └── WebGpuRuntimeTestHooks.cs │ ├── Native │ │ └── WebGpuNativeMethods.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VelloSharp.WebAssembly.csproj │ └── WebGpuRuntime.cs ├── VelloSharp.WinForms.Core │ ├── AssemblyAttributes.cs │ ├── VelloBitmap.cs │ ├── VelloBrush.cs │ ├── VelloColorHelpers.cs │ ├── VelloFont.cs │ ├── VelloGraphics.cs │ ├── VelloGraphicsPath.cs │ ├── VelloGraphicsState.cs │ ├── VelloLinearGradientBrush.cs │ ├── VelloPathGradientBrush.cs │ ├── VelloPen.cs │ ├── VelloRegion.cs │ ├── VelloSharp.WinForms.Core.csproj │ ├── VelloSolidBrush.cs │ ├── VelloStringFormat.cs │ └── VelloTextureBrush.cs ├── VelloSharp.WinUI │ ├── Accessibility │ │ ├── AccessKitNodeAutomationPeer.cs │ │ ├── AccessKitTreeSnapshot.cs │ │ └── VelloSwapChainAutomationPeer.cs │ ├── Controls │ │ ├── VelloCompositionControl.cs │ │ └── VelloSwapChainControl.cs │ ├── Dispatching │ │ └── WinUIDispatchers.cs │ ├── Hosting │ │ ├── HostBuilderExtensions.cs │ │ ├── VelloWinUIOptions.cs │ │ └── VelloWinUIService.cs │ ├── Input │ │ └── VelloSwapChainInputSource.cs │ ├── Interop │ │ └── WinUISwapChainPanelSurfaceSource.cs │ └── VelloSharp.WinUI.csproj ├── VelloSharp.Windows.Core │ ├── AssemblyAttributes.cs │ ├── D3D9ExDeviceManager.cs │ ├── IWindowsSurfaceSource.cs │ ├── RenderLoopDriver.cs │ ├── VelloGraphicsDevice.cs │ ├── VelloGraphicsDeviceOptions.cs │ ├── VelloGraphicsSession.cs │ ├── VelloPaintSurfaceEventArgs.cs │ ├── VelloSharp.Windows.Core.csproj │ ├── VelloSurfaceRenderEventArgs.cs │ ├── WindowsColorSpace.cs │ ├── WindowsGpuBufferLease.cs │ ├── WindowsGpuConfiguration.cs │ ├── WindowsGpuContext.cs │ ├── WindowsGpuContextLease.cs │ ├── WindowsGpuDiagnostics.cs │ ├── WindowsGpuResourcePool.cs │ ├── WindowsSurfaceDescriptor.cs │ ├── WindowsSurfaceFactory.cs │ ├── WindowsSurfaceSize.cs │ └── WindowsSwapChainSurface.cs └── VelloSharp │ ├── AssemblyAttributes.cs │ ├── AssemblyInfo.cs │ ├── BrushNativeAdapter.cs │ ├── Font.cs │ ├── Image.cs │ ├── ImageBrush.cs │ ├── KurboNativeMethods.cs │ ├── KurboPath.cs │ ├── NativeConversionExtensions.cs │ ├── NativeHelpers.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeLibraryLoader.cs │ ├── PathElementNativeBuffer.cs │ ├── PenikoBrush.cs │ ├── PenikoBrushAdapter.cs │ ├── PenikoImageData.cs │ ├── RendererOptions.cs │ ├── SparseRenderContext.cs │ ├── SparseRenderContextOptions.cs │ ├── Velato.cs │ ├── VelloRenderer.cs │ ├── VelloScene.cs │ ├── VelloSharp.csproj │ ├── VelloSurface.cs │ └── VelloSvg.cs ├── docs ├── AvaloniaSkiaRendering.md ├── GraphicsFeatureToggleStrategy.md ├── LimitedVelloFeaturePlan.md ├── SharedGraphicsAbstractionProposal.md ├── SharedModuleDependencyPlan.md ├── SkiaSharpShimBaseline.md ├── SkiaSharpShimImplementationRoadmap.md ├── SkiaSharpShimPlan.md ├── VelloAvaloniaIntegrationPlan.md ├── VelloAvaloniaVelloRendering.md ├── VelloSkiaConfigurationGaps.md ├── adrs │ ├── ADR-0001-rendering-ownership.md │ ├── ADR-0002-threading-model.md │ ├── ADR-0003-serialization-strategy.md │ ├── ADR-0004-extensibility-and-di.md │ └── ADR-0005-shared-composition-ownership.md ├── avalonia-vello-browser-webgpu-integration-plan.md ├── avalonia-vello-harfbuzz-sample-plan.md ├── avalonia-vello-renderer-plan.md ├── avalonia-vello-skiasharp-sample-plan.md ├── avalonia-winit-platform-plan.md ├── ci-release-process.md ├── diagrams │ ├── chart-engine-integration.puml │ ├── chart-engine-integration.svg │ └── tdg-flows │ │ ├── README.md │ │ └── tdg-motion-study.puml ├── docfx │ ├── api │ │ └── index.md │ └── docfx.json ├── ffi-api-coverage.md ├── guides │ ├── avalonia-controls.md │ ├── composition-reuse.md │ ├── engine-initialization.md │ ├── index.md │ ├── layout-gallery.md │ ├── native-library-loader.md │ ├── toc.yml │ ├── uwp-vello-getting-started.md │ └── winui-vello-getting-started.md ├── hardbuzzsharp-shim-api-coverage.md ├── hardbuzzsharp-shim-completion-plan.md ├── logs │ └── winui-uwp-validation.md ├── maui-vello-full-gpu-integration-plan.md ├── maui-vello-getting-started.md ├── metrics │ ├── editor-baselines.md │ ├── gauges-baselines.md │ ├── performance-baselines.md │ └── scada-baselines.md ├── realtime-charts-library-plan.md ├── realtime-dcs-scada-visualization-plan.md ├── realtime-gauges-library-plan.md ├── realtime-tree-datagrid-plan.md ├── realtime-visualization-master-plan.md ├── skiasharp-shim-api-coverage.md ├── skiasharp-shim-completion-plan.md ├── specs │ ├── chart-composition.md │ ├── editor-personas.md │ ├── editor-requirements-map.md │ ├── editor-serialization.md │ ├── gauges-asset-catalog.md │ ├── gauges-requirements.md │ ├── interop-contracts.md │ ├── platform-interop.md │ ├── scada-component-inventory.md │ ├── scada-requirements.md │ ├── shared-composition-contract.md │ ├── tdg-interop.md │ ├── tdg-interop.md.bak │ └── telemetry-contract.md ├── unified-visual-editor-plan.md ├── uno-binding-plan.md ├── uno-phase1-baseline.md ├── vello-ffi-project-split-plan.md ├── vello-sharp-split-plan.md ├── vello-skia-migration-plan.md ├── vello-skia-skia-usage.csv ├── vello-text-stack-integration-plan.md ├── vello-webgpu-ffi-abi.md ├── vellosharp-v0.5.0-alpha.1-release-overview.txt ├── vellosharp-v0.5.0-alpha.2-release-overview.txt ├── vellosharp-v0.5.0-alpha.3-release-overview.txt ├── website │ ├── .gitignore │ ├── README.md │ ├── docs │ │ ├── guides │ │ │ ├── avalonia-controls.md │ │ │ ├── avalonia-svg-control.md │ │ │ ├── composition-reuse.md │ │ │ ├── engine-initialization.md │ │ │ ├── index.md │ │ │ ├── layout-gallery.md │ │ │ ├── native-library-loader.md │ │ │ ├── uwp-vello-getting-started.md │ │ │ └── winui-vello-getting-started.md │ │ ├── intro.md │ │ ├── libraries │ │ │ ├── vellosharp-avalonia-controls.md │ │ │ ├── vellosharp-avalonia-vello.md │ │ │ ├── vellosharp-avalonia-winit.md │ │ │ ├── vellosharp-chartdata.md │ │ │ ├── vellosharp-chartdiagnostics.md │ │ │ ├── vellosharp-chartengine.md │ │ │ ├── vellosharp-charting-avalonia.md │ │ │ ├── vellosharp-charting-winforms.md │ │ │ ├── vellosharp-charting-wpf.md │ │ │ ├── vellosharp-charting.md │ │ │ ├── vellosharp-chartruntime-windows.md │ │ │ ├── vellosharp-chartruntime.md │ │ │ ├── vellosharp-composition.md │ │ │ ├── vellosharp-core.md │ │ │ ├── vellosharp-editor.md │ │ │ ├── vellosharp-ffi-core.md │ │ │ ├── vellosharp-ffi-gpu.md │ │ │ ├── vellosharp-ffi-sparse.md │ │ │ ├── vellosharp-gauges.md │ │ │ ├── vellosharp-gpu.md │ │ │ ├── vellosharp-harfbuzzsharp.md │ │ │ ├── vellosharp-integration-skia.md │ │ │ ├── vellosharp-integration-winforms.md │ │ │ ├── vellosharp-integration-wpf.md │ │ │ ├── vellosharp-integration.md │ │ │ ├── vellosharp-rendering.md │ │ │ ├── vellosharp-scada.md │ │ │ ├── vellosharp-skia-core.md │ │ │ ├── vellosharp-skia-cpu.md │ │ │ ├── vellosharp-skia-gpu.md │ │ │ ├── vellosharp-text.md │ │ │ ├── vellosharp-treedatagrid.md │ │ │ ├── vellosharp-uno.md │ │ │ ├── vellosharp-uwp.md │ │ │ ├── vellosharp-windows-core.md │ │ │ ├── vellosharp-windows-shared.md │ │ │ ├── vellosharp-winforms-core.md │ │ │ ├── vellosharp-winui.md │ │ │ └── vellosharp.md │ │ └── operations │ │ │ └── docs-maintenance.md │ ├── docusaurus.config.ts │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ └── sync-dotnet-api-docs.mjs │ ├── sidebars.dotnet.generated.ts │ ├── sidebars.dotnet.ts │ ├── sidebars.ts │ ├── src │ │ ├── components │ │ │ └── HomepageFeatures │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── index.module.css │ │ │ ├── index.tsx │ │ │ └── markdown-page.md │ ├── static │ │ ├── .nojekyll │ │ └── img │ │ │ ├── docusaurus-social-card.jpg │ │ │ ├── docusaurus.png │ │ │ ├── favicon.ico │ │ │ ├── logo.svg │ │ │ ├── undraw_docusaurus_mountain.svg │ │ │ ├── undraw_docusaurus_react.svg │ │ │ └── undraw_docusaurus_tree.svg │ └── tsconfig.json ├── winforms-graphics-shim-plan.md ├── winui-uwp-vello-full-gpu-integration-plan.md ├── wpf-binding-plan.md └── wpf-d3dimage-interop.md ├── extern └── peniko_shim │ ├── Cargo.toml │ └── src │ └── lib.rs ├── ffi ├── accesskit_ffi │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── benchmarks │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── chart-data │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── chart-diagnostics │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── chart-engine │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── composition │ ├── Cargo.toml │ └── src │ │ ├── animation.rs │ │ ├── constraints.rs │ │ ├── interop.rs │ │ ├── layout.rs │ │ ├── lib.rs │ │ ├── linear_layout.rs │ │ ├── materials.rs │ │ ├── panels.rs │ │ ├── scene_cache.rs │ │ ├── text.rs │ │ └── virtualization.rs ├── editor-core │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── experimental │ ├── editor_canvas_prototype │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── gauges_prototypes │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── poc_line_scene │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── scada_dashboard │ │ ├── Cargo.toml │ │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── gauges-core │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── image_codec_ffi │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── kurbo_ffi │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── peniko_ffi │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── scada-runtime │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── tree-datagrid │ ├── Cargo.toml │ └── src │ │ ├── color.rs │ │ ├── data_model.rs │ │ ├── error.rs │ │ ├── interop.rs │ │ ├── lib.rs │ │ ├── render_hooks.rs │ │ ├── renderer.rs │ │ ├── scene.rs │ │ ├── templates.rs │ │ ├── types.rs │ │ └── virtualization.rs ├── vello_ffi │ ├── Cargo.toml │ └── src │ │ ├── ffi_filters.rs │ │ ├── lib.rs │ │ └── windows_shared_texture.rs ├── vello_sparse_ffi │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── vello_webgpu_ffi │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── types.rs │ │ └── wasm.rs └── winit_ffi │ ├── Cargo.toml │ └── src │ └── lib.rs ├── global.json ├── integration ├── Directory.Build.targets ├── managed │ ├── VelloSharp.Avalonia.Vello.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Avalonia.Vello.Integration.csproj │ ├── VelloSharp.Avalonia.Winit.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Avalonia.Winit.Integration.csproj │ ├── VelloSharp.ChartData.Integration │ │ ├── Program.cs │ │ └── VelloSharp.ChartData.Integration.csproj │ ├── VelloSharp.ChartDiagnostics.Integration │ │ ├── Program.cs │ │ └── VelloSharp.ChartDiagnostics.Integration.csproj │ ├── VelloSharp.ChartEngine.Integration │ │ ├── Program.cs │ │ └── VelloSharp.ChartEngine.Integration.csproj │ ├── VelloSharp.ChartRuntime.Integration │ │ ├── Program.cs │ │ └── VelloSharp.ChartRuntime.Integration.csproj │ ├── VelloSharp.Charting.Avalonia.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Charting.Avalonia.Integration.csproj │ ├── VelloSharp.Charting.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Charting.Integration.csproj │ ├── VelloSharp.Composition.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Composition.Integration.csproj │ ├── VelloSharp.Core.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Core.Integration.csproj │ ├── VelloSharp.Editor.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Editor.Integration.csproj │ ├── VelloSharp.Ffi.Core.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Ffi.Core.Integration.csproj │ ├── VelloSharp.Ffi.Gpu.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Ffi.Gpu.Integration.csproj │ ├── VelloSharp.Ffi.Sparse.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Ffi.Sparse.Integration.csproj │ ├── VelloSharp.Gauges.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Gauges.Integration.csproj │ ├── VelloSharp.Gpu.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Gpu.Integration.csproj │ ├── VelloSharp.HarfBuzzSharp.Integration │ │ ├── Program.cs │ │ └── VelloSharp.HarfBuzzSharp.Integration.csproj │ ├── VelloSharp.Integration.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Integration.Integration.csproj │ ├── VelloSharp.Integration.Skia.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Integration.Skia.Integration.csproj │ ├── VelloSharp.Package.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Package.Integration.csproj │ ├── VelloSharp.Rendering.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Rendering.Integration.csproj │ ├── VelloSharp.Scada.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Scada.Integration.csproj │ ├── VelloSharp.Skia.Core.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Skia.Core.Integration.csproj │ ├── VelloSharp.Skia.Cpu.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Skia.Cpu.Integration.csproj │ ├── VelloSharp.Skia.Gpu.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Skia.Gpu.Integration.csproj │ ├── VelloSharp.Text.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Text.Integration.csproj │ ├── VelloSharp.TreeDataGrid.Integration │ │ ├── Program.cs │ │ └── VelloSharp.TreeDataGrid.Integration.csproj │ └── VelloSharp.Uno.Integration │ │ ├── Program.cs │ │ └── VelloSharp.Uno.Integration.csproj ├── native │ ├── linux-arm64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.LinuxArm64.Integration.csproj │ ├── linux-x64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.LinuxX64.Integration.csproj │ ├── osx-arm64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.OsxArm64.Integration.csproj │ ├── osx-x64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.OsxX64.Integration.csproj │ ├── win-arm64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.WinArm64.Integration.csproj │ └── win-x64 │ │ ├── Program.cs │ │ └── VelloSharp.Native.WinX64.Integration.csproj └── windows │ ├── VelloSharp.ChartRuntime.Windows.Integration │ ├── Program.cs │ └── VelloSharp.ChartRuntime.Windows.Integration.csproj │ ├── VelloSharp.Charting.WinForms.Integration │ ├── Program.cs │ └── VelloSharp.Charting.WinForms.Integration.csproj │ ├── VelloSharp.Charting.Wpf.Integration │ ├── Program.cs │ └── VelloSharp.Charting.Wpf.Integration.csproj │ ├── VelloSharp.Integration.WinForms.Integration │ ├── Program.cs │ └── VelloSharp.Integration.WinForms.Integration.csproj │ ├── VelloSharp.Integration.Wpf.Integration │ ├── Program.cs │ └── VelloSharp.Integration.Wpf.Integration.csproj │ ├── VelloSharp.WinForms.Core.Integration │ ├── Program.cs │ └── VelloSharp.WinForms.Core.Integration.csproj │ └── VelloSharp.Windows.Core.Integration │ ├── Program.cs │ └── VelloSharp.Windows.Core.Integration.csproj ├── packaging ├── VelloSharp.Native.AccessKit │ ├── Directory.Build.props │ ├── VelloSharp.Native.AccessKit.android-arm64.csproj │ ├── VelloSharp.Native.AccessKit.browser-wasm.csproj │ ├── VelloSharp.Native.AccessKit.csproj │ ├── VelloSharp.Native.AccessKit.ios-arm64.csproj │ ├── VelloSharp.Native.AccessKit.iossimulator-x64.csproj │ ├── VelloSharp.Native.AccessKit.linux-arm64.csproj │ ├── VelloSharp.Native.AccessKit.linux-x64.csproj │ ├── VelloSharp.Native.AccessKit.osx-arm64.csproj │ ├── VelloSharp.Native.AccessKit.osx-x64.csproj │ ├── VelloSharp.Native.AccessKit.win-arm64.csproj │ └── VelloSharp.Native.AccessKit.win-x64.csproj ├── VelloSharp.Native.ChartEngine │ ├── Directory.Build.props │ ├── VelloSharp.Native.ChartEngine.android-arm64.csproj │ ├── VelloSharp.Native.ChartEngine.browser-wasm.csproj │ ├── VelloSharp.Native.ChartEngine.csproj │ ├── VelloSharp.Native.ChartEngine.ios-arm64.csproj │ ├── VelloSharp.Native.ChartEngine.iossimulator-x64.csproj │ ├── VelloSharp.Native.ChartEngine.linux-arm64.csproj │ ├── VelloSharp.Native.ChartEngine.linux-x64.csproj │ ├── VelloSharp.Native.ChartEngine.osx-arm64.csproj │ ├── VelloSharp.Native.ChartEngine.osx-x64.csproj │ ├── VelloSharp.Native.ChartEngine.win-arm64.csproj │ └── VelloSharp.Native.ChartEngine.win-x64.csproj ├── VelloSharp.Native.Composition │ ├── Directory.Build.props │ ├── VelloSharp.Native.Composition.android-arm64.csproj │ ├── VelloSharp.Native.Composition.browser-wasm.csproj │ ├── VelloSharp.Native.Composition.csproj │ ├── VelloSharp.Native.Composition.ios-arm64.csproj │ ├── VelloSharp.Native.Composition.iossimulator-x64.csproj │ ├── VelloSharp.Native.Composition.linux-arm64.csproj │ ├── VelloSharp.Native.Composition.linux-x64.csproj │ ├── VelloSharp.Native.Composition.osx-arm64.csproj │ ├── VelloSharp.Native.Composition.osx-x64.csproj │ ├── VelloSharp.Native.Composition.win-arm64.csproj │ └── VelloSharp.Native.Composition.win-x64.csproj ├── VelloSharp.Native.Editor │ ├── Directory.Build.props │ ├── VelloSharp.Native.Editor.android-arm64.csproj │ ├── VelloSharp.Native.Editor.browser-wasm.csproj │ ├── VelloSharp.Native.Editor.csproj │ ├── VelloSharp.Native.Editor.ios-arm64.csproj │ ├── VelloSharp.Native.Editor.iossimulator-x64.csproj │ ├── VelloSharp.Native.Editor.linux-arm64.csproj │ ├── VelloSharp.Native.Editor.linux-x64.csproj │ ├── VelloSharp.Native.Editor.osx-arm64.csproj │ ├── VelloSharp.Native.Editor.osx-x64.csproj │ ├── VelloSharp.Native.Editor.win-arm64.csproj │ └── VelloSharp.Native.Editor.win-x64.csproj ├── VelloSharp.Native.Gauges │ ├── Directory.Build.props │ ├── VelloSharp.Native.Gauges.android-arm64.csproj │ ├── VelloSharp.Native.Gauges.browser-wasm.csproj │ ├── VelloSharp.Native.Gauges.csproj │ ├── VelloSharp.Native.Gauges.ios-arm64.csproj │ ├── VelloSharp.Native.Gauges.iossimulator-x64.csproj │ ├── VelloSharp.Native.Gauges.linux-arm64.csproj │ ├── VelloSharp.Native.Gauges.linux-x64.csproj │ ├── VelloSharp.Native.Gauges.osx-arm64.csproj │ ├── VelloSharp.Native.Gauges.osx-x64.csproj │ ├── VelloSharp.Native.Gauges.win-arm64.csproj │ └── VelloSharp.Native.Gauges.win-x64.csproj ├── VelloSharp.Native.Kurbo │ ├── Directory.Build.props │ ├── VelloSharp.Native.Kurbo.android-arm64.csproj │ ├── VelloSharp.Native.Kurbo.browser-wasm.csproj │ ├── VelloSharp.Native.Kurbo.csproj │ ├── VelloSharp.Native.Kurbo.ios-arm64.csproj │ ├── VelloSharp.Native.Kurbo.iossimulator-x64.csproj │ ├── VelloSharp.Native.Kurbo.linux-arm64.csproj │ ├── VelloSharp.Native.Kurbo.linux-x64.csproj │ ├── VelloSharp.Native.Kurbo.osx-arm64.csproj │ ├── VelloSharp.Native.Kurbo.osx-x64.csproj │ ├── VelloSharp.Native.Kurbo.win-arm64.csproj │ └── VelloSharp.Native.Kurbo.win-x64.csproj ├── VelloSharp.Native.Peniko │ ├── Directory.Build.props │ ├── VelloSharp.Native.Peniko.android-arm64.csproj │ ├── VelloSharp.Native.Peniko.browser-wasm.csproj │ ├── VelloSharp.Native.Peniko.csproj │ ├── VelloSharp.Native.Peniko.ios-arm64.csproj │ ├── VelloSharp.Native.Peniko.iossimulator-x64.csproj │ ├── VelloSharp.Native.Peniko.linux-arm64.csproj │ ├── VelloSharp.Native.Peniko.linux-x64.csproj │ ├── VelloSharp.Native.Peniko.osx-arm64.csproj │ ├── VelloSharp.Native.Peniko.osx-x64.csproj │ ├── VelloSharp.Native.Peniko.win-arm64.csproj │ └── VelloSharp.Native.Peniko.win-x64.csproj ├── VelloSharp.Native.Scada │ ├── Directory.Build.props │ ├── VelloSharp.Native.Scada.android-arm64.csproj │ ├── VelloSharp.Native.Scada.browser-wasm.csproj │ ├── VelloSharp.Native.Scada.csproj │ ├── VelloSharp.Native.Scada.ios-arm64.csproj │ ├── VelloSharp.Native.Scada.iossimulator-x64.csproj │ ├── VelloSharp.Native.Scada.linux-arm64.csproj │ ├── VelloSharp.Native.Scada.linux-x64.csproj │ ├── VelloSharp.Native.Scada.osx-arm64.csproj │ ├── VelloSharp.Native.Scada.osx-x64.csproj │ ├── VelloSharp.Native.Scada.win-arm64.csproj │ └── VelloSharp.Native.Scada.win-x64.csproj ├── VelloSharp.Native.TreeDataGrid │ ├── Directory.Build.props │ ├── VelloSharp.Native.TreeDataGrid.android-arm64.csproj │ ├── VelloSharp.Native.TreeDataGrid.browser-wasm.csproj │ ├── VelloSharp.Native.TreeDataGrid.csproj │ ├── VelloSharp.Native.TreeDataGrid.ios-arm64.csproj │ ├── VelloSharp.Native.TreeDataGrid.iossimulator-x64.csproj │ ├── VelloSharp.Native.TreeDataGrid.linux-arm64.csproj │ ├── VelloSharp.Native.TreeDataGrid.linux-x64.csproj │ ├── VelloSharp.Native.TreeDataGrid.osx-arm64.csproj │ ├── VelloSharp.Native.TreeDataGrid.osx-x64.csproj │ ├── VelloSharp.Native.TreeDataGrid.win-arm64.csproj │ └── VelloSharp.Native.TreeDataGrid.win-x64.csproj ├── VelloSharp.Native.Vello.Web │ ├── VelloSharp.Native.Vello.Web.csproj │ ├── build │ │ └── VelloSharp.Native.Vello.Web.targets │ └── buildTransitive │ │ └── VelloSharp.Native.Vello.Web.targets ├── VelloSharp.Native.Vello │ ├── Directory.Build.props │ ├── VelloSharp.Native.Vello.android-arm64.csproj │ ├── VelloSharp.Native.Vello.browser-wasm.csproj │ ├── VelloSharp.Native.Vello.csproj │ ├── VelloSharp.Native.Vello.ios-arm64.csproj │ ├── VelloSharp.Native.Vello.iossimulator-x64.csproj │ ├── VelloSharp.Native.Vello.linux-arm64.csproj │ ├── VelloSharp.Native.Vello.linux-x64.csproj │ ├── VelloSharp.Native.Vello.osx-arm64.csproj │ ├── VelloSharp.Native.Vello.osx-x64.csproj │ ├── VelloSharp.Native.Vello.win-arm64.csproj │ ├── VelloSharp.Native.Vello.win-x64.csproj │ ├── build │ │ └── VelloSharp.Native.Vello.targets │ ├── buildTransitive │ │ └── VelloSharp.Native.Vello.targets │ └── runtimes │ │ └── win-arm64 │ │ └── native │ │ └── vello.backends.json ├── VelloSharp.Native.VelloSparse │ ├── Directory.Build.props │ ├── VelloSharp.Native.VelloSparse.android-arm64.csproj │ ├── VelloSharp.Native.VelloSparse.browser-wasm.csproj │ ├── VelloSharp.Native.VelloSparse.csproj │ ├── VelloSharp.Native.VelloSparse.ios-arm64.csproj │ ├── VelloSharp.Native.VelloSparse.iossimulator-x64.csproj │ ├── VelloSharp.Native.VelloSparse.linux-arm64.csproj │ ├── VelloSharp.Native.VelloSparse.linux-x64.csproj │ ├── VelloSharp.Native.VelloSparse.osx-arm64.csproj │ ├── VelloSharp.Native.VelloSparse.osx-x64.csproj │ ├── VelloSharp.Native.VelloSparse.win-arm64.csproj │ └── VelloSharp.Native.VelloSparse.win-x64.csproj ├── VelloSharp.Native.Winit │ ├── Directory.Build.props │ ├── VelloSharp.Native.Winit.android-arm64.csproj │ ├── VelloSharp.Native.Winit.browser-wasm.csproj │ ├── VelloSharp.Native.Winit.csproj │ ├── VelloSharp.Native.Winit.ios-arm64.csproj │ ├── VelloSharp.Native.Winit.iossimulator-x64.csproj │ ├── VelloSharp.Native.Winit.linux-arm64.csproj │ ├── VelloSharp.Native.Winit.linux-x64.csproj │ ├── VelloSharp.Native.Winit.osx-arm64.csproj │ ├── VelloSharp.Native.Winit.osx-x64.csproj │ ├── VelloSharp.Native.Winit.win-arm64.csproj │ └── VelloSharp.Native.Winit.win-x64.csproj └── VelloSharp.Native │ └── VelloSharp.Native.Shared.props ├── preprocessed.xml ├── samples ├── AvaloniaSkiaMotionMark │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── .keep │ ├── AvaloniaSkiaMotionMark.csproj │ ├── Controls │ │ └── MotionMarkSkiaControl.cs │ ├── Program.cs │ ├── Scenes │ │ └── MotionMarkScene.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── AvaloniaSkiaMotionMarkShim │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── .keep │ ├── AvaloniaSkiaMotionMarkShim.csproj │ ├── Controls │ │ └── MotionMarkSkiaControl.cs │ ├── Program.cs │ ├── Scenes │ │ └── MotionMarkScene.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── AvaloniaSkiaSparseMotionMarkShim │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── .keep │ ├── AvaloniaSkiaSparseMotionMarkShim.csproj │ ├── Controls │ │ └── MotionMarkSkiaControl.cs │ ├── Program.cs │ ├── Scenes │ │ └── MotionMarkScene.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── AvaloniaVelloBrowserDemo │ ├── AvaloniaVelloBrowserDemo │ │ ├── App.axaml │ │ ├── App.axaml.cs │ │ ├── Assets │ │ │ └── avalonia-logo.ico │ │ ├── AvaloniaVelloBrowserDemo.csproj │ │ ├── Controls │ │ │ └── AnimatedVelloSceneView.cs │ │ ├── Program.cs │ │ └── wwwroot │ │ │ ├── app.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ └── native │ │ │ └── .gitignore │ └── README.md ├── AvaloniaVelloCommon │ ├── Assets │ │ ├── Lottie │ │ │ └── CirclePulse.json │ │ └── Svg │ │ │ ├── LeaseDemoSample.svg │ │ │ └── Tiger.svg │ ├── AvaloniaVelloCommon.csproj │ ├── Controls │ │ ├── CubeDemoControl.cs │ │ ├── LeaseDemoControl.cs │ │ ├── MotionMarkDrawingContextControl.cs │ │ ├── MotionMarkLeaseControl.cs │ │ └── VelatoPlayerView.cs │ ├── MainView.axaml │ ├── MainView.axaml.cs │ ├── Rendering │ │ └── CubeRenderer.cs │ └── Views │ │ ├── CubeDemoPage.axaml │ │ ├── CubeDemoPage.axaml.cs │ │ ├── DashboardPage.axaml │ │ ├── DashboardPage.axaml.cs │ │ ├── LeaseDemoPage.axaml │ │ ├── LeaseDemoPage.axaml.cs │ │ ├── MotionMarkImmediatePage.axaml │ │ ├── MotionMarkImmediatePage.axaml.cs │ │ ├── MotionMarkLeasePage.axaml │ │ ├── MotionMarkLeasePage.axaml.cs │ │ ├── SvgDemoPage.axaml │ │ ├── SvgDemoPage.axaml.cs │ │ ├── VelatoPage.axaml │ │ └── VelatoPage.axaml.cs ├── AvaloniaVelloControlsSample │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── Svg │ │ │ └── aurora.svg │ ├── AvaloniaVelloControlsSample.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ └── Program.cs ├── AvaloniaVelloExamples │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ ├── avalonia-logo.ico │ │ └── vello │ │ │ ├── Ghostscript_Tiger.svg │ │ │ ├── colr_test_glyphs │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── test_glyphs-glyf_colr_1.ttf │ │ │ ├── downloads │ │ │ └── .tracked │ │ │ ├── inconsolata │ │ │ ├── Inconsolata.ttf │ │ │ └── LICENSE.txt │ │ │ ├── noto_color_emoji │ │ │ ├── LICENSE.txt │ │ │ ├── NotoColorEmoji-CBTF-Subset.ttf │ │ │ ├── NotoColorEmoji-Subset.ttf │ │ │ └── README.md │ │ │ ├── roboto │ │ │ ├── LICENSE.txt │ │ │ └── Roboto-Regular.ttf │ │ │ └── splash-flower.jpg │ ├── AvaloniaVelloExamples.csproj │ ├── Program.cs │ ├── Scenes │ │ ├── ImageCache.cs │ │ ├── ManagedSceneHost.cs │ │ ├── SceneTypes.cs │ │ ├── SimpleText.cs │ │ └── TestScenes.cs │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── MainWindowViewModel.cs │ │ └── ViewModelBase.cs │ ├── Views │ │ ├── ExamplesView.cs │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs │ └── app.manifest ├── AvaloniaVelloHarfBuzzSample │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ ├── AppIcon.ico │ │ ├── AppIcon.png │ │ ├── data │ │ │ └── .keep │ │ └── fonts │ │ │ ├── .keep │ │ │ ├── Inconsolata.ttf │ │ │ ├── NotoColorEmoji-CBTF-Subset.ttf │ │ │ ├── NotoColorEmoji-Subset.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ └── test_glyphs-glyf_colr_1.ttf │ ├── AvaloniaVelloHarfBuzzSample.csproj │ ├── Diagnostics │ │ └── ShapeCaptureRecorder.cs │ ├── Navigation │ │ └── ISamplePage.cs │ ├── Program.cs │ ├── Rendering │ │ ├── GlyphRunScene.cs │ │ ├── HarfBuzzLeaseSurface.cs │ │ └── IHarfBuzzLeaseRenderer.cs │ ├── Services │ │ ├── FontAssetService.cs │ │ ├── HarfBuzzSampleServices.cs │ │ └── HarfBuzzShapeService.cs │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── HarfBuzzGalleryViewModel.cs │ │ ├── Pages │ │ │ ├── SamplePageViewModel.cs │ │ │ └── WelcomePageViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── HarfBuzzGalleryView.axaml │ │ ├── HarfBuzzGalleryView.axaml.cs │ │ ├── MainWindow.axaml │ │ ├── MainWindow.axaml.cs │ │ └── Pages │ │ ├── WelcomePage.axaml │ │ └── WelcomePage.axaml.cs ├── AvaloniaVelloNativeDemo │ ├── App.axaml │ ├── App.axaml.cs │ ├── AvaloniaVelloNativeDemo.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── Program.cs │ └── bundle.sh ├── AvaloniaVelloPlayground │ ├── App.axaml │ ├── App.axaml.cs │ ├── AvaloniaVelloPlayground.csproj │ ├── Controls │ │ └── ScriptedLeaseView.cs │ ├── Program.cs │ ├── Services │ │ ├── PlaygroundAssets.cs │ │ ├── ScriptExampleCatalog.cs │ │ └── Scripting │ │ │ ├── ScriptCompilationResult.cs │ │ │ ├── ScriptCompiler.cs │ │ │ ├── ScriptDiagnostic.cs │ │ │ ├── ScriptExecution.cs │ │ │ └── ScriptRenderContext.cs │ ├── ViewModels │ │ ├── MainViewModel.cs │ │ └── ScriptExample.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── AvaloniaVelloSkiaSharpSample │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ ├── .keep │ │ ├── fonts │ │ │ ├── Inconsolata.ttf │ │ │ ├── NotoColorEmoji-Subset.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ └── RobotoFlex-Subset.ttf │ │ ├── images │ │ │ ├── aurora-gradient.png │ │ │ ├── palette-orbit.gif │ │ │ ├── strata.webp │ │ │ └── studio-panel.jpg │ │ ├── shaders │ │ │ ├── aurora.sksl │ │ │ └── pulse.wgsl │ │ └── vectors │ │ │ └── curves.json │ ├── AvaloniaVelloSkiaSharpSample.csproj │ ├── Diagnostics │ │ └── SkiaCaptureRecorder.cs │ ├── Navigation │ │ └── ISamplePage.cs │ ├── Program.cs │ ├── Rendering │ │ ├── SkiaLeaseRenderContext.cs │ │ └── SkiaLeaseSurface.cs │ ├── Services │ │ ├── SkiaBackendService.cs │ │ ├── SkiaResourceService.cs │ │ └── SkiaSceneRecorder.cs │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── MainWindowViewModel.cs │ │ ├── Pages │ │ │ ├── AdvancedUtilitiesViewModel.cs │ │ │ ├── CanvasPaintStudioViewModel.cs │ │ │ ├── GeometryExplorerViewModel.cs │ │ │ ├── ImageWorkshopViewModel.cs │ │ │ ├── IoDiagnosticsViewModel.cs │ │ │ ├── RecordingStudioViewModel.cs │ │ │ ├── RuntimeEffectForgeViewModel.cs │ │ │ ├── SamplePageViewModel.cs │ │ │ ├── SurfaceDashboardViewModel.cs │ │ │ ├── TypographyPlaygroundViewModel.cs │ │ │ └── WelcomePageViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── MainWindow.axaml │ │ ├── MainWindow.axaml.cs │ │ └── Pages │ │ ├── AdvancedUtilitiesPage.axaml │ │ ├── AdvancedUtilitiesPage.axaml.cs │ │ ├── CanvasPaintStudioPage.axaml │ │ ├── CanvasPaintStudioPage.axaml.cs │ │ ├── GeometryExplorerPage.axaml │ │ ├── GeometryExplorerPage.axaml.cs │ │ ├── ImageWorkshopPage.axaml │ │ ├── ImageWorkshopPage.axaml.cs │ │ ├── IoDiagnosticsPage.axaml │ │ ├── IoDiagnosticsPage.axaml.cs │ │ ├── RecordingStudioPage.axaml │ │ ├── RecordingStudioPage.axaml.cs │ │ ├── RuntimeEffectForgePage.axaml │ │ ├── RuntimeEffectForgePage.axaml.cs │ │ ├── SurfaceDashboardPage.axaml │ │ ├── SurfaceDashboardPage.axaml.cs │ │ ├── TypographyPlaygroundPage.axaml │ │ ├── TypographyPlaygroundPage.axaml.cs │ │ ├── WelcomePage.axaml │ │ └── WelcomePage.axaml.cs ├── AvaloniaVelloWin32Demo │ ├── App.axaml │ ├── App.axaml.cs │ ├── AvaloniaVelloWin32Demo.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ └── Program.cs ├── AvaloniaVelloWinitDemo │ ├── App.axaml │ ├── App.axaml.cs │ ├── AvaloniaVelloWinitDemo.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── Program.cs │ └── bundle.sh ├── AvaloniaVelloX11Demo │ ├── App.axaml │ ├── App.axaml.cs │ ├── AvaloniaVelloX11Demo.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ └── Program.cs ├── ControlCatalog.NetCore │ ├── ControlCatalog.NetCore.csproj │ ├── NOTICE.md │ ├── NativeControls │ │ ├── Gtk │ │ │ ├── EmbedSample.Gtk.cs │ │ │ ├── nodes-license.md │ │ │ └── nodes.mp4 │ │ ├── Mac │ │ │ ├── EmbedSample.Mac.cs │ │ │ └── MacHelper.cs │ │ └── Win │ │ │ ├── EmbedSample.Win.cs │ │ │ └── WinApi.cs │ ├── Program.cs │ └── app.manifest ├── ControlCatalog │ ├── AVALONIA-LICENSE.md │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Fonts │ │ │ ├── SourceSansPro-Bold.ttf │ │ │ ├── SourceSansPro-BoldItalic.ttf │ │ │ ├── SourceSansPro-Italic.ttf │ │ │ ├── SourceSansPro-Regular.ttf │ │ │ └── WenQuanYiMicroHei-01.ttf │ │ ├── avalonia-32.png │ │ ├── delicate-arch-896885_640.png │ │ ├── github_icon.png │ │ ├── hirsch-899118_640.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── maple-leaf-888807_640.png │ │ └── test_icon.ico │ ├── ControlCatalog.csproj │ ├── Converter │ │ ├── DegToRadConverter.cs │ │ ├── HexConverter.cs │ │ └── MathSubtractConverter.cs │ ├── DecoratedWindow.xaml │ ├── DecoratedWindow.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ ├── CatalogTheme.cs │ │ ├── Person.cs │ │ └── StateData.cs │ ├── NOTICE.md │ ├── Pages │ │ ├── AcceleratorPage.xaml │ │ ├── AcceleratorPage.xaml.cs │ │ ├── AcrylicPage.xaml │ │ ├── AcrylicPage.xaml.cs │ │ ├── AdornerLayerPage.xaml │ │ ├── AdornerLayerPage.xaml.cs │ │ ├── AutoCompleteBoxPage.xaml │ │ ├── AutoCompleteBoxPage.xaml.cs │ │ ├── BorderPage.xaml │ │ ├── BorderPage.xaml.cs │ │ ├── ButtonSpinnerPage.xaml │ │ ├── ButtonSpinnerPage.xaml.cs │ │ ├── ButtonsPage.xaml │ │ ├── ButtonsPage.xaml.cs │ │ ├── CalendarDatePickerPage.xaml │ │ ├── CalendarDatePickerPage.xaml.cs │ │ ├── CalendarPage.xaml │ │ ├── CalendarPage.xaml.cs │ │ ├── CanvasPage.xaml │ │ ├── CanvasPage.xaml.cs │ │ ├── CarouselPage.xaml │ │ ├── CarouselPage.xaml.cs │ │ ├── CheckBoxPage.xaml │ │ ├── CheckBoxPage.xaml.cs │ │ ├── ClipboardPage.xaml │ │ ├── ClipboardPage.xaml.cs │ │ ├── ColorPickerPage.xaml │ │ ├── ColorPickerPage.xaml.cs │ │ ├── ComboBoxPage.xaml │ │ ├── ComboBoxPage.xaml.cs │ │ ├── CompositionPage.axaml │ │ ├── CompositionPage.axaml.cs │ │ ├── ContainerQueryPage.xaml │ │ ├── ContainerQueryPage.xaml.cs │ │ ├── ContextFlyoutPage.xaml │ │ ├── ContextFlyoutPage.xaml.cs │ │ ├── ContextMenuPage.xaml │ │ ├── ContextMenuPage.xaml.cs │ │ ├── CursorPage.xaml │ │ ├── CursorPage.xaml.cs │ │ ├── CustomDrawing.xaml │ │ ├── CustomDrawing.xaml.cs │ │ ├── CustomDrawingExampleControl.cs │ │ ├── DataGridPage.xaml │ │ ├── DataGridPage.xaml.cs │ │ ├── DataValidationPage.axaml │ │ ├── DataValidationPage.axaml.cs │ │ ├── DateTimePickerPage.xaml │ │ ├── DateTimePickerPage.xaml.cs │ │ ├── DialogsPage.xaml │ │ ├── DialogsPage.xaml.cs │ │ ├── DragAndDropPage.xaml │ │ ├── DragAndDropPage.xaml.cs │ │ ├── ExpanderPage.xaml │ │ ├── ExpanderPage.xaml.cs │ │ ├── FlyoutsPage.axaml │ │ ├── FlyoutsPage.axaml.cs │ │ ├── FocusPage.xaml │ │ ├── FocusPage.xaml.cs │ │ ├── GesturePage.cs │ │ ├── GesturePage.xaml │ │ ├── HeaderedContentPage.axaml │ │ ├── HeaderedContentPage.axaml.cs │ │ ├── ImagePage.xaml │ │ ├── ImagePage.xaml.cs │ │ ├── LabelsPage.axaml │ │ ├── LabelsPage.axaml.cs │ │ ├── LayoutTransformControlPage.xaml │ │ ├── LayoutTransformControlPage.xaml.cs │ │ ├── ListBoxPage.xaml │ │ ├── ListBoxPage.xaml.cs │ │ ├── MenuPage.xaml │ │ ├── MenuPage.xaml.cs │ │ ├── NativeEmbedPage.xaml │ │ ├── NativeEmbedPage.xaml.cs │ │ ├── NotificationsPage.xaml │ │ ├── NotificationsPage.xaml.cs │ │ ├── NumericUpDownPage.xaml │ │ ├── NumericUpDownPage.xaml.cs │ │ ├── OpenGl │ │ │ ├── GlPageKnobs.xaml │ │ │ ├── GlPageKnobs.xaml.cs │ │ │ ├── OpenGlContent.cs │ │ │ ├── OpenGlFbo.cs │ │ │ ├── OpenGlLeasePage.xaml │ │ │ └── OpenGlLeasePage.xaml.cs │ │ ├── OpenGlPage.xaml │ │ ├── OpenGlPage.xaml.cs │ │ ├── PlatformInfoPage.xaml │ │ ├── PlatformInfoPage.xaml.cs │ │ ├── PointerCanvas.cs │ │ ├── PointerContactsTab.cs │ │ ├── PointersPage.xaml │ │ ├── PointersPage.xaml.cs │ │ ├── ProgressBarPage.xaml │ │ ├── ProgressBarPage.xaml.cs │ │ ├── RadioButtonPage.xaml │ │ ├── RadioButtonPage.xaml.cs │ │ ├── RefreshContainerPage.axaml │ │ ├── RefreshContainerPage.axaml.cs │ │ ├── RelativePanelPage.axaml │ │ ├── RelativePanelPage.axaml.cs │ │ ├── ScreenPage.cs │ │ ├── ScrollViewerPage.xaml │ │ ├── ScrollViewerPage.xaml.cs │ │ ├── SliderPage.xaml │ │ ├── SliderPage.xaml.cs │ │ ├── SplitViewPage.xaml │ │ ├── SplitViewPage.xaml.cs │ │ ├── TabControlPage.xaml │ │ ├── TabControlPage.xaml.cs │ │ ├── TabStripPage.xaml │ │ ├── TabStripPage.xaml.cs │ │ ├── TextBlockPage.xaml │ │ ├── TextBlockPage.xaml.cs │ │ ├── TextBoxPage.xaml │ │ ├── TextBoxPage.xaml.cs │ │ ├── ThemePage.axaml │ │ ├── ThemePage.axaml.cs │ │ ├── ToggleSwitchPage.xaml │ │ ├── ToggleSwitchPage.xaml.cs │ │ ├── ToolTipPage.xaml │ │ ├── ToolTipPage.xaml.cs │ │ ├── TransitioningContentControlPage.axaml │ │ ├── TransitioningContentControlPage.axaml.cs │ │ ├── TreeViewPage.xaml │ │ ├── TreeViewPage.xaml.cs │ │ ├── ViewboxPage.xaml │ │ ├── ViewboxPage.xaml.cs │ │ ├── WindowCustomizationsPage.xaml │ │ ├── WindowCustomizationsPage.xaml.cs │ │ └── teapot.bin │ ├── ViewModels │ │ ├── ApplicationViewModel.cs │ │ ├── ComboBoxPageViewModel.cs │ │ ├── ContextPageViewModel.cs │ │ ├── CursorPageViewModel.cs │ │ ├── DataValidationViewModel.cs │ │ ├── ExpanderPageViewModel.cs │ │ ├── ListBoxPageViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── MenuItemViewModel.cs │ │ ├── MenuPageViewModel.cs │ │ ├── NotificationViewModel.cs │ │ ├── PlatformInformationViewModel.cs │ │ ├── RefreshContainerViewModel.cs │ │ ├── SplitViewPageViewModel.cs │ │ ├── TabControlPageViewModel.cs │ │ ├── TransitioningContentControlPageViewModel.cs │ │ └── TreeViewPageViewModel.cs │ └── Views │ │ ├── CustomNotificationView.xaml │ │ └── CustomNotificationView.xaml.cs ├── MauiVelloGallery │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── MauiVelloGallery.csproj │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ └── MainApplication.cs │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ └── Program.cs │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ └── App.xaml.cs │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ └── Program.cs │ └── Resources │ │ └── Raw │ │ └── .gitkeep ├── MiniMvvm │ ├── AVALONIA-LICENSE.md │ ├── MiniCommand.cs │ ├── MiniMvvm.csproj │ ├── PropertyChangedExtensions.cs │ └── ViewModelBase.cs ├── MotionMark.SceneShared │ ├── MotionMark.SceneShared.csproj │ └── MotionMarkScene.cs ├── RenderDemo │ ├── AVALONIA-LICENSE.md │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ │ └── LineBoundsDemoControl.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Pages │ │ ├── AnimationsPage.xaml │ │ ├── AnimationsPage.xaml.cs │ │ ├── BrushesPage.axaml │ │ ├── BrushesPage.axaml.cs │ │ ├── ClippingPage.xaml │ │ ├── ClippingPage.xaml.cs │ │ ├── CustomAnimatorPage.xaml │ │ ├── CustomAnimatorPage.xaml.cs │ │ ├── CustomSkiaPage.cs │ │ ├── CustomStringAnimator.cs │ │ ├── DrawingPage.xaml │ │ ├── DrawingPage.xaml.cs │ │ ├── FormattedTextPage.axaml │ │ ├── FormattedTextPage.axaml.cs │ │ ├── GlyphRunPage.xaml │ │ ├── GlyphRunPage.xaml.cs │ │ ├── LineBoundsPage.xaml │ │ ├── LineBoundsPage.xaml.cs │ │ ├── PathMeasurementPage.cs │ │ ├── RenderTargetBitmapPage.cs │ │ ├── SpringAnimationsPage.xaml │ │ ├── SpringAnimationsPage.xaml.cs │ │ ├── TextFormatterPage.axaml │ │ ├── TextFormatterPage.axaml.cs │ │ ├── Transform3DPage.axaml │ │ ├── Transform3DPage.axaml.cs │ │ ├── TransitionsPage.xaml │ │ ├── TransitionsPage.xaml.cs │ │ └── WriteableBitmapPage.cs │ ├── RenderDemo.csproj │ └── ViewModels │ │ ├── AnimationsPageViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ └── Transform3DPageViewModel.cs ├── SampleControls │ ├── AVALONIA-LICENSE.md │ ├── ControlSamples.csproj │ └── HamburgerMenu │ │ ├── HamburgerMenu.cs │ │ └── HamburgerMenu.xaml ├── SkiaGallery │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── avalonia-32.png │ ├── Controls │ │ └── SkiaCanvas.cs │ ├── Program.cs │ ├── SkiaGallery.csproj │ ├── ViewModels │ │ └── MainWindowViewModel.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── SkiaShimGallery │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ └── avalonia-32.png │ ├── Controls │ │ └── SkiaShimCanvas.cs │ ├── Program.cs │ ├── Scenes │ │ ├── Baseline │ │ │ ├── BlendModeBaselineScene.cs │ │ │ ├── GeometryStressBaselineScene.cs │ │ │ ├── GradientBaselineScene.cs │ │ │ ├── ImageCodecBaselineScene.cs │ │ │ └── TextHintingBaselineScene.cs │ │ ├── Canvas │ │ │ ├── CanvasBasicsScene.cs │ │ │ ├── CanvasClipAndLayerScene.cs │ │ │ ├── CanvasPathScene.cs │ │ │ ├── CanvasPictureScene.cs │ │ │ ├── CanvasRoundAndOvalScene.cs │ │ │ └── CanvasTransformsScene.cs │ │ ├── Common │ │ │ ├── ISkiaGalleryScene.cs │ │ │ ├── SceneResources.cs │ │ │ └── SkiaSceneFeature.cs │ │ ├── Images │ │ │ ├── BitmapCodecScene.cs │ │ │ ├── BitmapInstallPixelsScene.cs │ │ │ ├── ImageDecodeScene.cs │ │ │ └── ImagePixelsScene.cs │ │ ├── Paint │ │ │ ├── PaintStrokeAndFillScene.cs │ │ │ └── PaintStrokeScene.cs │ │ ├── Resources │ │ │ ├── DrawableScene.cs │ │ │ └── SurfaceSnapshotScene.cs │ │ ├── Shaders │ │ │ ├── ComposeShaderScene.cs │ │ │ ├── LinearGradientScene.cs │ │ │ ├── PictureShaderScene.cs │ │ │ ├── RadialGradientScene.cs │ │ │ ├── SweepGradientScene.cs │ │ │ └── TwoPointConicalGradientScene.cs │ │ ├── SkiaGallerySceneRegistry.cs │ │ └── Text │ │ │ ├── TextBlobScene.cs │ │ │ └── TextSimpleScene.cs │ ├── SkiaShimGallery.csproj │ ├── ViewModels │ │ ├── MainWindowViewModel.cs │ │ └── SceneFeatureToggle.cs │ └── Views │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs ├── SkiaShimSmokeTest │ ├── Program.cs │ └── SkiaShimSmokeTest.csproj ├── UwpVelloGallery │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── UwpVelloGallery.csproj ├── VelloSharp.Charting.AvaloniaSample │ ├── App.axaml │ ├── App.axaml.cs │ ├── Infrastructure │ │ ├── HeatmapDensityAggregator.cs │ │ ├── SampleTelemetrySink.cs │ │ ├── TimeBucketAggregator.cs │ │ └── VolumeHistogramAggregator.cs │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── Models │ │ └── TradeUpdate.cs │ ├── Program.cs │ ├── Services │ │ └── BinanceTradeFeed.cs │ ├── VelloSharp.Charting.AvaloniaSample.csproj │ └── themes.json ├── VelloSharp.TreeDataGrid.CompositionSample │ ├── Program.cs │ └── VelloSharp.TreeDataGrid.CompositionSample.csproj ├── VelloSharp.Uno.WinAppSdkSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── ChartView.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Program.cs │ ├── VelloSharp.Uno.WinAppSdkSample.csproj │ └── app.manifest ├── VelloSharp.WithWinit │ ├── Program.cs │ └── VelloSharp.WithWinit.csproj ├── VelloSharp.WpfSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MotionMarkPage.xaml │ ├── MotionMarkPage.xaml.cs │ └── VelloSharp.WpfSample.csproj ├── WinFormsMotionMarkShim │ ├── Controls │ │ ├── ClassicRendererTabPage.cs │ │ ├── FastPathRendererTabPage.cs │ │ ├── MotionMarkControlPanel.cs │ │ ├── MotionMarkFrameEventArgs.cs │ │ └── MotionMarkOverlayRequest.cs │ ├── MainForm.cs │ ├── Program.cs │ ├── Rendering │ │ └── MotionMarkEngine.cs │ └── WinFormsMotionMarkShim.csproj └── WinUIVelloGallery │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── WinUIVelloGallery.csproj ├── scripts ├── README.md ├── bootstrap-linux.sh ├── bootstrap-macos.sh ├── bootstrap-windows.ps1 ├── build-docs.ps1 ├── build-docs.sh ├── build-integrations.ps1 ├── build-integrations.sh ├── build-native-android.ps1 ├── build-native-android.sh ├── build-native-linux.ps1 ├── build-native-linux.sh ├── build-native-macos.ps1 ├── build-native-macos.sh ├── build-native-wasm.ps1 ├── build-native-wasm.sh ├── build-native-windows.ps1 ├── build-samples.ps1 ├── build-samples.sh ├── build-wasm-vello.ps1 ├── build-wasm-vello.sh ├── collect-native-artifacts.sh ├── copy-runtimes.ps1 ├── copy-runtimes.sh ├── pack-managed-nugets.ps1 ├── pack-managed-nugets.sh ├── pack-native-nugets.ps1 ├── pack-native-nugets.sh ├── playwright │ ├── server.mjs │ └── smoke.mjs ├── remove-runtimes.ps1 ├── remove-runtimes.sh ├── report_skia_usage.sh ├── run-docfx-site.ps1 ├── run-docfx-site.sh ├── run-docs-site.ps1 ├── run-docs-site.sh ├── run-integration-tests.ps1 ├── run-integration-tests.sh ├── run-uwp-gallery.ps1 ├── run-winui-gallery.ps1 ├── sync-dotnet-api-docs.ps1 ├── sync-dotnet-api-docs.sh ├── verify-browser-webgpu.ps1 ├── verify-browser-webgpu.sh ├── verify-maui-native-assets.ps1 ├── verify-uwp-native-assets.ps1 └── verify-winui-native-assets.ps1 ├── src ├── VelloSharp.Avalonia.Controls │ ├── MatrixExtensions.cs │ ├── VelloAnimatedCanvasControl.cs │ ├── VelloAnimatedCompositionHandler.cs │ ├── VelloCanvasControl.cs │ ├── VelloDrawEventArgs.cs │ ├── VelloSharp.Avalonia.Controls.csproj │ └── VelloSvgControl.cs ├── VelloSharp.Avalonia.Svg │ ├── MatrixExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceProviderExtensions.cs │ ├── Svg.cs │ ├── SvgParameters.cs │ ├── SvgSource.cs │ ├── SvgSourceTypeConverter.cs │ └── VelloSharp.Avalonia.Svg.csproj ├── VelloSharp.ChartData │ ├── ChartDataBus.cs │ ├── ChartSamplePoint.cs │ └── VelloSharp.ChartData.csproj ├── VelloSharp.ChartDiagnostics │ ├── ChartMetric.cs │ ├── DashboardTelemetrySink.cs │ ├── FrameDiagnosticsCollector.cs │ ├── FrameStats.cs │ ├── IChartTelemetrySink.cs │ └── VelloSharp.ChartDiagnostics.csproj ├── VelloSharp.ChartEngine │ ├── Annotations │ │ └── ChartAnnotation.cs │ ├── AssemblyInfo.cs │ ├── ChartAnimationController.cs │ ├── ChartAnimationProfile.cs │ ├── ChartColor.cs │ ├── ChartComposition.cs │ ├── ChartCursorUpdate.cs │ ├── ChartEngine.cs │ ├── ChartEngineOptions.cs │ ├── ChartEngineTraceBridge.cs │ ├── ChartFrameMetadata.cs │ ├── ChartSeriesDefinition.cs │ ├── ChartSeriesOverride.cs │ ├── ChartStreamingUpdate.cs │ ├── NativeChartExtensions.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ └── VelloSharp.ChartEngine.csproj ├── VelloSharp.ChartRuntime.Windows │ ├── VelloSharp.ChartRuntime.Windows.csproj │ ├── WinForms │ │ └── WinFormsTickSource.cs │ ├── WinUI │ │ ├── WinUICompositionInputSource.cs │ │ └── WinUICompositionTickSource.cs │ └── Wpf │ │ └── WpfCompositionTargetTickSource.cs ├── VelloSharp.ChartRuntime │ ├── IFrameTickSource.cs │ ├── RenderScheduler.cs │ └── VelloSharp.ChartRuntime.csproj ├── VelloSharp.Charting.Avalonia │ ├── AvaloniaAnimationTickSource.cs │ ├── ChartView.cs │ └── VelloSharp.Charting.Avalonia.csproj ├── VelloSharp.Charting.WinForms │ ├── ChartView.cs │ └── VelloSharp.Charting.WinForms.csproj ├── VelloSharp.Charting.Wpf │ ├── ChartView.cs │ └── VelloSharp.Charting.Wpf.csproj ├── VelloSharp.Charting │ ├── Assets │ │ └── Fonts │ │ │ └── Roboto-Regular.ttf │ ├── Axis │ │ ├── AxisComposer.cs │ │ ├── AxisDefinition.cs │ │ ├── AxisDefinitionOfT.cs │ │ ├── AxisRenderModel.cs │ │ └── AxisRenderSurface.cs │ ├── Coordinates │ │ ├── ChartDataPoint.cs │ │ ├── ChartPoint.cs │ │ └── CoordinateTransformer.cs │ ├── Layout │ │ ├── AxisLayout.cs │ │ ├── AxisLayoutRequest.cs │ │ ├── AxisOrientation.cs │ │ ├── ChartLayoutEngine.cs │ │ ├── ChartLayoutRequest.cs │ │ ├── ChartLayoutResult.cs │ │ ├── LayoutGallery.cs │ │ └── LayoutRect.cs │ ├── Legend │ │ ├── LegendDefinition.cs │ │ ├── LegendItem.cs │ │ ├── LegendItemVisual.cs │ │ ├── LegendOrientation.cs │ │ ├── LegendPosition.cs │ │ ├── LegendRenderer.cs │ │ ├── LegendRenderer.cs.bak │ │ └── LegendVisual.cs │ ├── Primitives │ │ └── Range.cs │ ├── Rendering │ │ ├── AnnotationRenderer.cs │ │ ├── AxisLabelVisual.cs │ │ ├── AxisLineVisual.cs │ │ ├── AxisRenderResult.cs │ │ ├── AxisRenderer.cs │ │ ├── AxisTickVisual.cs │ │ ├── AxisVisual.cs │ │ ├── ChartOverlayRenderer.cs │ │ ├── ChartOverlayRenderer.cs.bak │ │ ├── GridlineRenderer.cs │ │ ├── SceneDrawing.cs │ │ ├── Text │ │ │ └── TextRenderer.cs │ │ └── TextAlignment.cs │ ├── Scales │ │ ├── IScale.cs │ │ ├── LinearScale.cs │ │ ├── LogarithmicScale.cs │ │ ├── OrdinalScale.cs │ │ ├── ScaleKind.cs │ │ └── TimeScale.cs │ ├── Styling │ │ ├── AxisStyle.cs │ │ ├── ChartPalette.cs │ │ ├── ChartTheme.cs │ │ ├── ChartTypography.cs │ │ ├── Configuration │ │ │ ├── ChartThemeDefinition.cs │ │ │ ├── ChartThemeLoader.cs │ │ │ ├── ChartThemeRegistry.cs │ │ │ └── ThemeColorParser.cs │ │ ├── LegendStyle.cs │ │ ├── RgbaColor.cs │ │ └── ValueColorGradient.cs │ ├── Ticks │ │ ├── AxisTick.cs │ │ ├── AxisTickGeneratorRegistry.cs │ │ ├── AxisTickInfo.cs │ │ ├── IAxisTickGenerator.cs │ │ ├── LinearTickGenerator.cs │ │ ├── OrdinalTickGenerator.cs │ │ ├── TickGenerationOptions.cs │ │ └── TimeTickGenerator.cs │ ├── Units │ │ └── UnitRange.cs │ └── VelloSharp.Charting.csproj ├── VelloSharp.Composition │ ├── Accessibility │ │ ├── AccessibilityAction.cs │ │ ├── AccessibilityActionEventArgs.cs │ │ ├── AccessibilityAnnouncementEventArgs.cs │ │ ├── AccessibilityChangedEventArgs.cs │ │ ├── AccessibilityLiveSetting.cs │ │ ├── AccessibilityProperties.cs │ │ └── AccessibilityRole.cs │ ├── CompositionInterop.cs │ ├── Controls │ │ ├── AccessText.cs │ │ ├── Border.cs │ │ ├── Button.cs │ │ ├── CheckBox.cs │ │ ├── CompositionElement.cs │ │ ├── CompositionTemplate.cs │ │ ├── ContentControl.cs │ │ ├── Decorator.cs │ │ ├── DropDown.cs │ │ ├── Ellipse.cs │ │ ├── GeometryPresenter.cs │ │ ├── InputControl.cs │ │ ├── Panel.cs │ │ ├── Path.cs │ │ ├── RadioButton.cs │ │ ├── Rectangle.cs │ │ ├── Shape.cs │ │ ├── TabControl.cs │ │ ├── TemplatedControl.cs │ │ ├── TextBlock.cs │ │ ├── TextBox.cs │ │ ├── UserControl.cs │ │ └── VisualTreeVirtualizer.cs │ ├── Input │ │ ├── CompositionKeyEventArgs.cs │ │ ├── CompositionPointerEventArgs.cs │ │ ├── CompositionTextInputEventArgs.cs │ │ ├── ICompositionInputSink.cs │ │ ├── ICompositionInputSource.cs │ │ ├── InputModifiers.cs │ │ ├── KeyEventType.cs │ │ ├── PointerButton.cs │ │ ├── PointerDeviceKind.cs │ │ └── PointerEventType.cs │ ├── LabelMetrics.cs │ ├── LayoutPrimitives.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ ├── PlotArea.cs │ ├── Telemetry │ │ ├── CommandBroker.cs │ │ ├── CommandRequest.cs │ │ ├── CommandResult.cs │ │ ├── CommandStatus.cs │ │ ├── GaugeTelemetryConnector.cs │ │ ├── ICommandHandler.cs │ │ ├── IGaugeTelemetryConsumer.cs │ │ ├── ITelemetryObserver.cs │ │ ├── ScadaTelemetryRouter.cs │ │ ├── TelemetryHub.cs │ │ ├── TelemetryQuality.cs │ │ └── TelemetrySample.cs │ └── VelloSharp.Composition.csproj ├── VelloSharp.Editor │ ├── EditorRuntime.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ └── VelloSharp.Editor.csproj ├── VelloSharp.Gauges │ ├── GaugeModule.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ └── VelloSharp.Gauges.csproj ├── VelloSharp.Maui.Core │ ├── AssemblyInfo.cs │ ├── Controls │ │ ├── IVelloView.cs │ │ ├── IVelloViewHandler.cs │ │ └── VelloView.cs │ ├── Diagnostics │ │ ├── VelloDiagnosticsChangedEventArgs.cs │ │ ├── VelloDiagnosticsSnapshot.cs │ │ └── VelloViewDiagnostics.cs │ ├── Events │ │ └── VelloSurfaceRenderEventArgs.cs │ ├── Input │ │ ├── MauiCompositionInputSource.Android.cs │ │ ├── MauiCompositionInputSource.Windows.cs │ │ ├── MauiCompositionInputSource.cs │ │ └── MauiCompositionInputSource.iOS.cs │ ├── Internal │ │ ├── MauiVelloAndroidPresenter.cs │ │ ├── MauiVelloMetalPresenter.cs │ │ ├── MauiVelloPresenterAdapter.Android.cs │ │ ├── MauiVelloPresenterAdapter.MacCatalyst.cs │ │ ├── MauiVelloPresenterAdapter.Other.cs │ │ ├── MauiVelloPresenterAdapter.Unsupported.cs │ │ ├── MauiVelloPresenterAdapter.Windows.cs │ │ ├── MauiVelloPresenterAdapter.cs │ │ ├── MauiVelloPresenterAdapter.iOS.cs │ │ ├── MauiVelloWgpuPresenterBase.cs │ │ └── Stubs │ │ │ ├── VelloGraphicsDeviceOptionsStub.cs │ │ │ ├── VelloGraphicsDeviceStub.cs │ │ │ ├── VelloGraphicsSessionStub.cs │ │ │ └── VelloPaintSurfaceEventArgsStub.cs │ ├── Rendering │ │ └── VelloRenderOptions.cs │ ├── VelloSharp.Maui.Core.csproj │ └── buildTransitive │ │ └── VelloSharp.Maui.Core.targets ├── VelloSharp.Scada │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ ├── ScadaRuntime.cs │ └── VelloSharp.Scada.csproj ├── VelloSharp.TreeDataGrid │ ├── Composition │ │ ├── TreeColumnDefinition.cs │ │ ├── TreeColumnLayoutAnimator.cs │ │ ├── TreeColumnStripCache.cs │ │ ├── TreeNodeLayoutEngine.cs │ │ └── TreeRowInteractionAnimator.cs │ ├── NativeLibraryBootstrap.cs │ ├── NativeMethods.cs │ ├── Rendering │ │ ├── TreeRenderHooks.cs │ │ ├── TreeSceneGraph.cs │ │ └── TreeTemplatePaneBatcher.cs │ ├── Templates │ │ ├── TreeTemplateBuilder.cs │ │ ├── TreeTemplateCompiler.cs │ │ ├── TreeTemplateNativeBackend.cs │ │ ├── TreeTemplateParsing.cs │ │ └── TreeTemplateRuntime.cs │ ├── TreeDataModel.cs │ ├── TreeInterop.cs │ ├── TreeRenderLoop.cs │ ├── TreeRowAnimationProfile.cs │ ├── TreeSceneVisuals.cs │ ├── TreeVirtualization.cs │ └── VelloSharp.TreeDataGrid.csproj └── VelloSharp.Windows.Shared │ ├── AssemblyInfo.cs │ ├── Contracts │ └── VelloRenderContracts.cs │ ├── Diagnostics │ ├── IVelloDiagnosticsProvider.cs │ └── VelloDiagnosticsChangedEventArgs.cs │ ├── Dispatching │ ├── IVelloCompositionTarget.cs │ ├── IVelloWindowsDispatcher.cs │ └── IVelloWindowsDispatcherTimer.cs │ ├── Presenters │ ├── VelloSwapChainPresenter.cs │ └── VelloSwapChainRenderEventArgs.cs │ └── VelloSharp.Windows.Shared.csproj └── tests ├── AvaloniaVelloSkiaSharpSample.Tests ├── AvaloniaVelloSkiaSharpSample.Tests.csproj └── SampleSmokeTests.cs ├── VelloSharp.Avalonia.Browser.Tests ├── VelloSharp.Avalonia.Browser.Tests.csproj └── WebGpuDiagnosticsTests.cs ├── VelloSharp.Avalonia.Core.Tests ├── VelloSharp.Avalonia.Core.Tests.csproj └── WgpuGraphicsDeviceProviderTests.cs ├── VelloSharp.Charting.Tests ├── Axis │ └── AxisComposerTests.cs ├── Baselines │ └── multi-pane-annotations.ppm ├── ChartAnimationControllerTests.cs ├── ChartEngine │ └── ChartEngineAnimationTests.cs ├── Composition │ ├── ChartCompositionBuilderTests.cs │ ├── GaugeTelemetryConnectorTests.cs │ ├── InputControlTests.cs │ ├── LayoutSolverInteropTests.cs │ ├── ScadaTelemetryRouterTests.cs │ ├── ScenePartitionerTests.cs │ ├── TelemetryHubTests.cs │ ├── TemplatedControlLifecycleTests.cs │ ├── TextControlTests.cs │ └── TimelineSystemInteropTests.cs ├── Engine │ └── ChartEngineSeriesTests.cs ├── Layout │ ├── CompositionGoldenTests.cs │ ├── CompositionInteropTests.cs │ └── LayoutEngineTests.cs ├── Legend │ └── LegendRendererTests.cs ├── Rendering │ ├── AxisRendererTests.cs │ └── ChartRenderingRegressionTests.cs ├── Scales │ └── ScaleTests.cs ├── Styling │ └── ChartThemeLoaderTests.cs ├── Ticks │ └── TickGeneratorTests.cs ├── TreeDataGrid │ ├── TreeColumnStripCacheTests.cs │ ├── TreeDataGridCompositionTests.cs │ ├── TreeDataGridIntegrationTests.cs │ ├── TreeDataGridPhase2Tests.cs │ ├── TreeDataGridStressTests.cs │ ├── TreeTemplateBuilderTests.cs │ ├── TreeTemplateCompilerTests.cs │ └── TreeTemplateNativeBackendTests.cs └── VelloSharp.Charting.Tests.csproj ├── VelloSharp.Skia.Core.Tests ├── CanvasRenderingTests.cs ├── GeometryPrimitiveTests.cs ├── ImageAndShaderTests.cs ├── ImageFilterTests.cs ├── ImageTests.cs ├── PathEffectTests.cs ├── ShaderTests.cs ├── SurfaceRenderHelper.cs ├── TextAndRecordingTests.cs └── VelloSharp.Skia.Core.Tests.csproj ├── VelloSharp.Skia.Gpu.Tests ├── BrushNativeFactoryTests.cs ├── GpuSmokeTests.cs └── VelloSharp.Skia.Gpu.Tests.csproj ├── VelloSharp.WebAssembly.Tests ├── VelloSharp.WebAssembly.Tests.csproj └── WebGpuRuntimeAsyncTests.cs ├── VelloSharp.WinForms.Tests ├── TestEnvironment.cs ├── Usings.cs ├── VelloGraphicsDeviceTests.cs ├── VelloGraphicsTests.cs ├── VelloRenderControlTests.cs ├── VelloSharp.WinForms.Tests.csproj └── WindowsGpuContextTests.cs ├── VelloSharp.Windows.Core.Tests ├── D3DImageBridgeTests.cs ├── Helpers │ └── TestSwapChainPresenterHost.cs ├── MauiCompositionInputSourceTests.cs ├── NativeLibraryLoaderMauiTests.cs ├── NativeLibraryLoaderTestCollection.cs ├── VelloSharp.Windows.Core.Tests.csproj └── VelloSwapChainPresenterTests.cs ├── VelloSharp.Windows.Shared.Tests ├── VelloSharp.Windows.Shared.Tests.csproj ├── VelloWindowsDispatcherTests.cs └── WindowsGpuDiagnosticsTests.cs ├── VelloSharp.Windows.UiSmokeTests ├── AssemblyInfo.cs ├── ProcessUtils.cs ├── SampleLocator.cs ├── UwpSmokeTests.cs ├── VelloSharp.Windows.UiSmokeTests.csproj ├── WaitHelpers.cs ├── WinAppDriverSession.cs ├── WinAppSmokeTestBase.cs └── WinUISmokeTests.cs └── VelloTextParityTests ├── BufferClusterNormalizationTests.cs ├── BufferSerializationTests.cs ├── DelegateRegressionTests.cs ├── HarfBuzzShimSmokeTests.cs ├── ShapingParityTests.cs ├── TestFontLoader.cs └── VelloTextParityTests.csproj /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [wieslawsoltes] 2 | -------------------------------------------------------------------------------- /.github/workflows/build-pack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.github/workflows/build-pack.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/README.md -------------------------------------------------------------------------------- /STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/STATUS.md -------------------------------------------------------------------------------- /VelloSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/VelloSharp.sln -------------------------------------------------------------------------------- /bindings/Avalonia.Skia/Avalonia.Skia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/Avalonia.Skia/Avalonia.Skia.csproj -------------------------------------------------------------------------------- /bindings/Avalonia.Skia/avalonia-licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/Avalonia.Skia/avalonia-licence.md -------------------------------------------------------------------------------- /bindings/VelloSharp.Avalonia.Core/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Avalonia.Core/GlobalUsings.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Avalonia.Vello/VelloPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Avalonia.Vello/VelloPlatform.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Avalonia.Vello/VelloRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Avalonia.Vello/VelloRenderer.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/Common/Enums.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/Geometry/PathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/Geometry/PathBuilder.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/Painting/Brushes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/Painting/Brushes.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/Text/GlyphTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/Text/GlyphTypes.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Core/VelloSharp.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Core/VelloSharp.Core.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Core/InteropTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Core/InteropTypes.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Gpu/GpuNativeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Gpu/GpuNativeHelpers.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Gpu/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Gpu/NativeMethods.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Gpu/PenikoNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Gpu/PenikoNativeMethods.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Gpu/SafeHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Gpu/SafeHandles.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Gpu/WinitNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Gpu/WinitNativeMethods.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Sparse/SparseSafeHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Sparse/SparseSafeHandles.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Ffi.Sparse/SparseSimdLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Ffi.Sparse/SparseSimdLevel.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/AccessKitActionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/AccessKitActionRequest.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/AccessKitJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/AccessKitJson.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/AccessKitTreeUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/AccessKitTreeUpdate.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/AssemblyInfo.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/NativeLibraryBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/NativeLibraryBootstrap.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/SharedGpuTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/SharedGpuTexture.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/VelloSharp.Gpu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/VelloSharp.Gpu.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/Wgpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/Wgpu.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Gpu/WinitEventLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Gpu/WinitEventLoop.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Blob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Blob.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Buffer.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Enums.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Face.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Feature.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Font.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/FontFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/FontFunctions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/FontVariation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/FontVariation.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/GlyphStructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/GlyphStructs.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Language.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/NativeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/NativeObject.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Script.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/Tag.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.HarfBuzzSharp/VariationAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.HarfBuzzSharp/VariationAxis.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Integration.Wpf/VelloView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Integration.Wpf/VelloView.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Maui/VelloSharp.Maui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Maui/VelloSharp.Maui.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.Maui/VelloViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Maui/VelloViewHandler.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Rendering/VelloRenderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Rendering/VelloRenderPath.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/GrContextShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/GrContextShim.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/IO/SKData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/IO/SKData.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/IO/SKManagedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/IO/SKManagedStream.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/IO/SKStreamAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/IO/SKStreamAsset.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/KurboPathEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/KurboPathEffects.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/PaintBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/PaintBrush.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKAutoCoInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKAutoCoInitialize.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKBitmap.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKBlendMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKBlendMode.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKBlender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKBlender.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKCanvas.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKClipOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKClipOperation.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKCodec.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKColor.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKColorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKColorFilter.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKColorSpace.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKDocument.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKDrawable.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKFilterQuality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKFilterQuality.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKFont.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKFontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKFontManager.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKGeometry.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKGpuExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKGpuExtensions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKGraphics.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKImage.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKImageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKImageFilter.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKImageFilterTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKImageFilterTypes.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKImageInfo.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKMaskFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKMaskFilter.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPaint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPaint.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPath.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPathEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPathEffect.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPathMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPathMeasure.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPathPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPathPrimitives.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPicture.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPictureRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPictureRecorder.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPixelGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPixelGeometry.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKPixmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKPixmap.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKRegion.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKRegionOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKRegionOperation.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKRoundRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKRoundRect.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKRuntimeEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKRuntimeEffect.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKSamplingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKSamplingOptions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKShader.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKSurface.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKTextAlign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKTextAlign.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKTextBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKTextBlob.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKTraceMemoryDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKTraceMemoryDump.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SKTypeface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SKTypeface.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/ShimNotImplemented.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/ShimNotImplemented.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SkiaBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SkiaBackend.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Core/SkiaInteropHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Core/SkiaInteropHelpers.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Cpu/CpuSkiaBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Cpu/CpuSkiaBackend.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Cpu/CpuSparseInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Cpu/CpuSparseInterop.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Gpu/GpuInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Gpu/GpuInterop.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Skia.Gpu/GpuSkiaBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Skia.Gpu/GpuSkiaBackend.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Text/ParleyFontService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Text/ParleyFontService.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Text/TextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Text/TextOptions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Text/VelloSharp.Text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Text/VelloSharp.Text.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.Text/VelloTextShaperCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Text/VelloTextShaperCore.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Uno/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Uno/AssemblyInfo.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.Uno/VelloSharp.Uno.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Uno/VelloSharp.Uno.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.Uwp/VelloSharp.Uwp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.Uwp/VelloSharp.Uwp.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp.WebAssembly/WebGpuRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WebAssembly/WebGpuRuntime.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloBitmap.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloBrush.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloFont.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloGraphics.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloPen.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinForms.Core/VelloRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinForms.Core/VelloRegion.cs -------------------------------------------------------------------------------- /bindings/VelloSharp.WinUI/VelloSharp.WinUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp.WinUI/VelloSharp.WinUI.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/AssemblyAttributes.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/AssemblyInfo.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/BrushNativeAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/BrushNativeAdapter.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/Font.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/Image.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/ImageBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/ImageBrush.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/KurboNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/KurboNativeMethods.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/KurboPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/KurboPath.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/NativeConversionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/NativeConversionExtensions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/NativeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/NativeHelpers.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/NativeLibraryBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/NativeLibraryBootstrap.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/NativeLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/NativeLibraryLoader.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/PathElementNativeBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/PathElementNativeBuffer.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/PenikoBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/PenikoBrush.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/PenikoBrushAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/PenikoBrushAdapter.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/PenikoImageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/PenikoImageData.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/RendererOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/RendererOptions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/SparseRenderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/SparseRenderContext.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/SparseRenderContextOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/SparseRenderContextOptions.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/Velato.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/Velato.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/VelloRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/VelloRenderer.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/VelloScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/VelloScene.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/VelloSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/VelloSharp.csproj -------------------------------------------------------------------------------- /bindings/VelloSharp/VelloSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/VelloSurface.cs -------------------------------------------------------------------------------- /bindings/VelloSharp/VelloSvg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/bindings/VelloSharp/VelloSvg.cs -------------------------------------------------------------------------------- /docs/AvaloniaSkiaRendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/AvaloniaSkiaRendering.md -------------------------------------------------------------------------------- /docs/GraphicsFeatureToggleStrategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/GraphicsFeatureToggleStrategy.md -------------------------------------------------------------------------------- /docs/LimitedVelloFeaturePlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/LimitedVelloFeaturePlan.md -------------------------------------------------------------------------------- /docs/SharedGraphicsAbstractionProposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/SharedGraphicsAbstractionProposal.md -------------------------------------------------------------------------------- /docs/SharedModuleDependencyPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/SharedModuleDependencyPlan.md -------------------------------------------------------------------------------- /docs/SkiaSharpShimBaseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/SkiaSharpShimBaseline.md -------------------------------------------------------------------------------- /docs/SkiaSharpShimImplementationRoadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/SkiaSharpShimImplementationRoadmap.md -------------------------------------------------------------------------------- /docs/SkiaSharpShimPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/SkiaSharpShimPlan.md -------------------------------------------------------------------------------- /docs/VelloAvaloniaIntegrationPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/VelloAvaloniaIntegrationPlan.md -------------------------------------------------------------------------------- /docs/VelloAvaloniaVelloRendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/VelloAvaloniaVelloRendering.md -------------------------------------------------------------------------------- /docs/VelloSkiaConfigurationGaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/VelloSkiaConfigurationGaps.md -------------------------------------------------------------------------------- /docs/adrs/ADR-0001-rendering-ownership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/adrs/ADR-0001-rendering-ownership.md -------------------------------------------------------------------------------- /docs/adrs/ADR-0002-threading-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/adrs/ADR-0002-threading-model.md -------------------------------------------------------------------------------- /docs/adrs/ADR-0003-serialization-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/adrs/ADR-0003-serialization-strategy.md -------------------------------------------------------------------------------- /docs/adrs/ADR-0004-extensibility-and-di.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/adrs/ADR-0004-extensibility-and-di.md -------------------------------------------------------------------------------- /docs/adrs/ADR-0005-shared-composition-ownership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/adrs/ADR-0005-shared-composition-ownership.md -------------------------------------------------------------------------------- /docs/avalonia-vello-harfbuzz-sample-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/avalonia-vello-harfbuzz-sample-plan.md -------------------------------------------------------------------------------- /docs/avalonia-vello-renderer-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/avalonia-vello-renderer-plan.md -------------------------------------------------------------------------------- /docs/avalonia-vello-skiasharp-sample-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/avalonia-vello-skiasharp-sample-plan.md -------------------------------------------------------------------------------- /docs/avalonia-winit-platform-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/avalonia-winit-platform-plan.md -------------------------------------------------------------------------------- /docs/ci-release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/ci-release-process.md -------------------------------------------------------------------------------- /docs/diagrams/chart-engine-integration.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/diagrams/chart-engine-integration.puml -------------------------------------------------------------------------------- /docs/diagrams/chart-engine-integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/diagrams/chart-engine-integration.svg -------------------------------------------------------------------------------- /docs/diagrams/tdg-flows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/diagrams/tdg-flows/README.md -------------------------------------------------------------------------------- /docs/diagrams/tdg-flows/tdg-motion-study.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/diagrams/tdg-flows/tdg-motion-study.puml -------------------------------------------------------------------------------- /docs/docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/docfx/api/index.md -------------------------------------------------------------------------------- /docs/docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/docfx/docfx.json -------------------------------------------------------------------------------- /docs/ffi-api-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/ffi-api-coverage.md -------------------------------------------------------------------------------- /docs/guides/avalonia-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/avalonia-controls.md -------------------------------------------------------------------------------- /docs/guides/composition-reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/composition-reuse.md -------------------------------------------------------------------------------- /docs/guides/engine-initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/engine-initialization.md -------------------------------------------------------------------------------- /docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/index.md -------------------------------------------------------------------------------- /docs/guides/layout-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/layout-gallery.md -------------------------------------------------------------------------------- /docs/guides/native-library-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/native-library-loader.md -------------------------------------------------------------------------------- /docs/guides/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/toc.yml -------------------------------------------------------------------------------- /docs/guides/uwp-vello-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/uwp-vello-getting-started.md -------------------------------------------------------------------------------- /docs/guides/winui-vello-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/guides/winui-vello-getting-started.md -------------------------------------------------------------------------------- /docs/hardbuzzsharp-shim-api-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/hardbuzzsharp-shim-api-coverage.md -------------------------------------------------------------------------------- /docs/hardbuzzsharp-shim-completion-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/hardbuzzsharp-shim-completion-plan.md -------------------------------------------------------------------------------- /docs/logs/winui-uwp-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/logs/winui-uwp-validation.md -------------------------------------------------------------------------------- /docs/maui-vello-full-gpu-integration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/maui-vello-full-gpu-integration-plan.md -------------------------------------------------------------------------------- /docs/maui-vello-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/maui-vello-getting-started.md -------------------------------------------------------------------------------- /docs/metrics/editor-baselines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/metrics/editor-baselines.md -------------------------------------------------------------------------------- /docs/metrics/gauges-baselines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/metrics/gauges-baselines.md -------------------------------------------------------------------------------- /docs/metrics/performance-baselines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/metrics/performance-baselines.md -------------------------------------------------------------------------------- /docs/metrics/scada-baselines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/metrics/scada-baselines.md -------------------------------------------------------------------------------- /docs/realtime-charts-library-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/realtime-charts-library-plan.md -------------------------------------------------------------------------------- /docs/realtime-dcs-scada-visualization-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/realtime-dcs-scada-visualization-plan.md -------------------------------------------------------------------------------- /docs/realtime-gauges-library-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/realtime-gauges-library-plan.md -------------------------------------------------------------------------------- /docs/realtime-tree-datagrid-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/realtime-tree-datagrid-plan.md -------------------------------------------------------------------------------- /docs/realtime-visualization-master-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/realtime-visualization-master-plan.md -------------------------------------------------------------------------------- /docs/skiasharp-shim-api-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/skiasharp-shim-api-coverage.md -------------------------------------------------------------------------------- /docs/skiasharp-shim-completion-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/skiasharp-shim-completion-plan.md -------------------------------------------------------------------------------- /docs/specs/chart-composition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/chart-composition.md -------------------------------------------------------------------------------- /docs/specs/editor-personas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/editor-personas.md -------------------------------------------------------------------------------- /docs/specs/editor-requirements-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/editor-requirements-map.md -------------------------------------------------------------------------------- /docs/specs/editor-serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/editor-serialization.md -------------------------------------------------------------------------------- /docs/specs/gauges-asset-catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/gauges-asset-catalog.md -------------------------------------------------------------------------------- /docs/specs/gauges-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/gauges-requirements.md -------------------------------------------------------------------------------- /docs/specs/interop-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/interop-contracts.md -------------------------------------------------------------------------------- /docs/specs/platform-interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/platform-interop.md -------------------------------------------------------------------------------- /docs/specs/scada-component-inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/scada-component-inventory.md -------------------------------------------------------------------------------- /docs/specs/scada-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/scada-requirements.md -------------------------------------------------------------------------------- /docs/specs/shared-composition-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/shared-composition-contract.md -------------------------------------------------------------------------------- /docs/specs/tdg-interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/tdg-interop.md -------------------------------------------------------------------------------- /docs/specs/tdg-interop.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/tdg-interop.md.bak -------------------------------------------------------------------------------- /docs/specs/telemetry-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/specs/telemetry-contract.md -------------------------------------------------------------------------------- /docs/unified-visual-editor-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/unified-visual-editor-plan.md -------------------------------------------------------------------------------- /docs/uno-binding-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/uno-binding-plan.md -------------------------------------------------------------------------------- /docs/uno-phase1-baseline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/uno-phase1-baseline.md -------------------------------------------------------------------------------- /docs/vello-ffi-project-split-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-ffi-project-split-plan.md -------------------------------------------------------------------------------- /docs/vello-sharp-split-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-sharp-split-plan.md -------------------------------------------------------------------------------- /docs/vello-skia-migration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-skia-migration-plan.md -------------------------------------------------------------------------------- /docs/vello-skia-skia-usage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-skia-skia-usage.csv -------------------------------------------------------------------------------- /docs/vello-text-stack-integration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-text-stack-integration-plan.md -------------------------------------------------------------------------------- /docs/vello-webgpu-ffi-abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vello-webgpu-ffi-abi.md -------------------------------------------------------------------------------- /docs/vellosharp-v0.5.0-alpha.1-release-overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vellosharp-v0.5.0-alpha.1-release-overview.txt -------------------------------------------------------------------------------- /docs/vellosharp-v0.5.0-alpha.2-release-overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vellosharp-v0.5.0-alpha.2-release-overview.txt -------------------------------------------------------------------------------- /docs/vellosharp-v0.5.0-alpha.3-release-overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/vellosharp-v0.5.0-alpha.3-release-overview.txt -------------------------------------------------------------------------------- /docs/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/.gitignore -------------------------------------------------------------------------------- /docs/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/README.md -------------------------------------------------------------------------------- /docs/website/docs/guides/avalonia-controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/avalonia-controls.md -------------------------------------------------------------------------------- /docs/website/docs/guides/avalonia-svg-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/avalonia-svg-control.md -------------------------------------------------------------------------------- /docs/website/docs/guides/composition-reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/composition-reuse.md -------------------------------------------------------------------------------- /docs/website/docs/guides/engine-initialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/engine-initialization.md -------------------------------------------------------------------------------- /docs/website/docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/index.md -------------------------------------------------------------------------------- /docs/website/docs/guides/layout-gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/layout-gallery.md -------------------------------------------------------------------------------- /docs/website/docs/guides/native-library-loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/guides/native-library-loader.md -------------------------------------------------------------------------------- /docs/website/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/intro.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-chartdata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-chartdata.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-charting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-charting.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-core.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-editor.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-ffi-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-ffi-core.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-ffi-gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-ffi-gpu.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-gauges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-gauges.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-gpu.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-rendering.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-scada.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-scada.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-skia-core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-skia-core.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-skia-cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-skia-cpu.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-skia-gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-skia-gpu.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-text.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-uno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-uno.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-uwp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-uwp.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp-winui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp-winui.md -------------------------------------------------------------------------------- /docs/website/docs/libraries/vellosharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/libraries/vellosharp.md -------------------------------------------------------------------------------- /docs/website/docs/operations/docs-maintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docs/operations/docs-maintenance.md -------------------------------------------------------------------------------- /docs/website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/package-lock.json -------------------------------------------------------------------------------- /docs/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/package.json -------------------------------------------------------------------------------- /docs/website/scripts/sync-dotnet-api-docs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/scripts/sync-dotnet-api-docs.mjs -------------------------------------------------------------------------------- /docs/website/sidebars.dotnet.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/sidebars.dotnet.generated.ts -------------------------------------------------------------------------------- /docs/website/sidebars.dotnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/sidebars.dotnet.ts -------------------------------------------------------------------------------- /docs/website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/sidebars.ts -------------------------------------------------------------------------------- /docs/website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/src/css/custom.css -------------------------------------------------------------------------------- /docs/website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/website/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/logo.svg -------------------------------------------------------------------------------- /docs/website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/website/tsconfig.json -------------------------------------------------------------------------------- /docs/winforms-graphics-shim-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/winforms-graphics-shim-plan.md -------------------------------------------------------------------------------- /docs/winui-uwp-vello-full-gpu-integration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/winui-uwp-vello-full-gpu-integration-plan.md -------------------------------------------------------------------------------- /docs/wpf-binding-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/wpf-binding-plan.md -------------------------------------------------------------------------------- /docs/wpf-d3dimage-interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/docs/wpf-d3dimage-interop.md -------------------------------------------------------------------------------- /extern/peniko_shim/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/extern/peniko_shim/Cargo.toml -------------------------------------------------------------------------------- /extern/peniko_shim/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/extern/peniko_shim/src/lib.rs -------------------------------------------------------------------------------- /ffi/accesskit_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/accesskit_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/accesskit_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/accesskit_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/benchmarks/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/benchmarks/Cargo.toml -------------------------------------------------------------------------------- /ffi/benchmarks/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/benchmarks/src/main.rs -------------------------------------------------------------------------------- /ffi/chart-data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-data/Cargo.toml -------------------------------------------------------------------------------- /ffi/chart-data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-data/src/lib.rs -------------------------------------------------------------------------------- /ffi/chart-diagnostics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-diagnostics/Cargo.toml -------------------------------------------------------------------------------- /ffi/chart-diagnostics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-diagnostics/src/lib.rs -------------------------------------------------------------------------------- /ffi/chart-engine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-engine/Cargo.toml -------------------------------------------------------------------------------- /ffi/chart-engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/chart-engine/src/lib.rs -------------------------------------------------------------------------------- /ffi/composition/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/Cargo.toml -------------------------------------------------------------------------------- /ffi/composition/src/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/animation.rs -------------------------------------------------------------------------------- /ffi/composition/src/constraints.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/constraints.rs -------------------------------------------------------------------------------- /ffi/composition/src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/interop.rs -------------------------------------------------------------------------------- /ffi/composition/src/layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/layout.rs -------------------------------------------------------------------------------- /ffi/composition/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/lib.rs -------------------------------------------------------------------------------- /ffi/composition/src/linear_layout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/linear_layout.rs -------------------------------------------------------------------------------- /ffi/composition/src/materials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/materials.rs -------------------------------------------------------------------------------- /ffi/composition/src/panels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/panels.rs -------------------------------------------------------------------------------- /ffi/composition/src/scene_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/scene_cache.rs -------------------------------------------------------------------------------- /ffi/composition/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/text.rs -------------------------------------------------------------------------------- /ffi/composition/src/virtualization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/composition/src/virtualization.rs -------------------------------------------------------------------------------- /ffi/editor-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/editor-core/Cargo.toml -------------------------------------------------------------------------------- /ffi/editor-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/editor-core/src/lib.rs -------------------------------------------------------------------------------- /ffi/experimental/editor_canvas_prototype/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/editor_canvas_prototype/Cargo.toml -------------------------------------------------------------------------------- /ffi/experimental/editor_canvas_prototype/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/editor_canvas_prototype/src/lib.rs -------------------------------------------------------------------------------- /ffi/experimental/gauges_prototypes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/gauges_prototypes/Cargo.toml -------------------------------------------------------------------------------- /ffi/experimental/gauges_prototypes/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/gauges_prototypes/src/lib.rs -------------------------------------------------------------------------------- /ffi/experimental/gauges_prototypes/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/gauges_prototypes/src/main.rs -------------------------------------------------------------------------------- /ffi/experimental/poc_line_scene/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/poc_line_scene/Cargo.toml -------------------------------------------------------------------------------- /ffi/experimental/poc_line_scene/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/poc_line_scene/src/lib.rs -------------------------------------------------------------------------------- /ffi/experimental/scada_dashboard/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/scada_dashboard/Cargo.toml -------------------------------------------------------------------------------- /ffi/experimental/scada_dashboard/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/scada_dashboard/src/lib.rs -------------------------------------------------------------------------------- /ffi/experimental/scada_dashboard/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/experimental/scada_dashboard/src/main.rs -------------------------------------------------------------------------------- /ffi/gauges-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/gauges-core/Cargo.toml -------------------------------------------------------------------------------- /ffi/gauges-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/gauges-core/src/lib.rs -------------------------------------------------------------------------------- /ffi/image_codec_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/image_codec_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/image_codec_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/image_codec_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/kurbo_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/kurbo_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/kurbo_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/kurbo_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/peniko_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/peniko_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/peniko_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/peniko_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/scada-runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/scada-runtime/Cargo.toml -------------------------------------------------------------------------------- /ffi/scada-runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/scada-runtime/src/lib.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/Cargo.toml -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/color.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/data_model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/data_model.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/error.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/interop.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/lib.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/render_hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/render_hooks.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/renderer.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/scene.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/templates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/templates.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/types.rs -------------------------------------------------------------------------------- /ffi/tree-datagrid/src/virtualization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/tree-datagrid/src/virtualization.rs -------------------------------------------------------------------------------- /ffi/vello_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/vello_ffi/src/ffi_filters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_ffi/src/ffi_filters.rs -------------------------------------------------------------------------------- /ffi/vello_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/vello_ffi/src/windows_shared_texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_ffi/src/windows_shared_texture.rs -------------------------------------------------------------------------------- /ffi/vello_sparse_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_sparse_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/vello_sparse_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_sparse_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/vello_webgpu_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_webgpu_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/vello_webgpu_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_webgpu_ffi/src/lib.rs -------------------------------------------------------------------------------- /ffi/vello_webgpu_ffi/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_webgpu_ffi/src/types.rs -------------------------------------------------------------------------------- /ffi/vello_webgpu_ffi/src/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/vello_webgpu_ffi/src/wasm.rs -------------------------------------------------------------------------------- /ffi/winit_ffi/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/winit_ffi/Cargo.toml -------------------------------------------------------------------------------- /ffi/winit_ffi/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/ffi/winit_ffi/src/lib.rs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/global.json -------------------------------------------------------------------------------- /integration/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/Directory.Build.targets -------------------------------------------------------------------------------- /integration/native/linux-arm64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/linux-arm64/Program.cs -------------------------------------------------------------------------------- /integration/native/linux-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/linux-x64/Program.cs -------------------------------------------------------------------------------- /integration/native/osx-arm64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/osx-arm64/Program.cs -------------------------------------------------------------------------------- /integration/native/osx-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/osx-x64/Program.cs -------------------------------------------------------------------------------- /integration/native/win-arm64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/win-arm64/Program.cs -------------------------------------------------------------------------------- /integration/native/win-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/integration/native/win-x64/Program.cs -------------------------------------------------------------------------------- /preprocessed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/preprocessed.xml -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMark/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMark/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMark/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMark/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMark/Assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMark/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMarkShim/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMarkShim/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMarkShim/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMarkShim/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMarkShim/Assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/AvaloniaSkiaMotionMarkShim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaMotionMarkShim/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaSkiaSparseMotionMarkShim/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaSparseMotionMarkShim/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaSkiaSparseMotionMarkShim/Assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/AvaloniaSkiaSparseMotionMarkShim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaSkiaSparseMotionMarkShim/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloBrowserDemo/AvaloniaVelloBrowserDemo/wwwroot/native/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /samples/AvaloniaVelloBrowserDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloBrowserDemo/README.md -------------------------------------------------------------------------------- /samples/AvaloniaVelloCommon/Assets/Svg/Tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloCommon/Assets/Svg/Tiger.svg -------------------------------------------------------------------------------- /samples/AvaloniaVelloCommon/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloCommon/MainView.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloCommon/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloCommon/MainView.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloCommon/Views/SvgDemoPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloCommon/Views/SvgDemoPage.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloCommon/Views/VelatoPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloCommon/Views/VelatoPage.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloControlsSample/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloControlsSample/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloControlsSample/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloControlsSample/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloControlsSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloControlsSample/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Scenes/ImageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Scenes/ImageCache.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Scenes/SceneTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Scenes/SceneTypes.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Scenes/SimpleText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Scenes/SimpleText.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Scenes/TestScenes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Scenes/TestScenes.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/ViewLocator.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/Views/ExamplesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/Views/ExamplesView.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloExamples/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloExamples/app.manifest -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloHarfBuzzSample/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloHarfBuzzSample/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/Assets/data/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/Assets/fonts/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloHarfBuzzSample/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloHarfBuzzSample/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloHarfBuzzSample/ViewLocator.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/MainWindow.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloNativeDemo/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloNativeDemo/bundle.sh -------------------------------------------------------------------------------- /samples/AvaloniaVelloPlayground/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloPlayground/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloPlayground/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloPlayground/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloPlayground/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloPlayground/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloSkiaSharpSample/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloSkiaSharpSample/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloSkiaSharpSample/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloSkiaSharpSample/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloSkiaSharpSample/Assets/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/AvaloniaVelloSkiaSharpSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloSkiaSharpSample/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloSkiaSharpSample/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloSkiaSharpSample/ViewLocator.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWin32Demo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWin32Demo/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloWin32Demo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWin32Demo/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWin32Demo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWin32Demo/MainWindow.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloWin32Demo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWin32Demo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWin32Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWin32Demo/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/MainWindow.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/Program.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloWinitDemo/bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloWinitDemo/bundle.sh -------------------------------------------------------------------------------- /samples/AvaloniaVelloX11Demo/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloX11Demo/App.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloX11Demo/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloX11Demo/App.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloX11Demo/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloX11Demo/MainWindow.axaml -------------------------------------------------------------------------------- /samples/AvaloniaVelloX11Demo/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloX11Demo/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/AvaloniaVelloX11Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/AvaloniaVelloX11Demo/Program.cs -------------------------------------------------------------------------------- /samples/ControlCatalog.NetCore/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog.NetCore/NOTICE.md -------------------------------------------------------------------------------- /samples/ControlCatalog.NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog.NetCore/Program.cs -------------------------------------------------------------------------------- /samples/ControlCatalog.NetCore/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog.NetCore/app.manifest -------------------------------------------------------------------------------- /samples/ControlCatalog/AVALONIA-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/AVALONIA-LICENSE.md -------------------------------------------------------------------------------- /samples/ControlCatalog/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/App.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/App.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/avalonia-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/avalonia-32.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/github_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/github_icon.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/hirsch-899118_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/hirsch-899118_640.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image1.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image2.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image3.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image4.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image5.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image6.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/image7.png -------------------------------------------------------------------------------- /samples/ControlCatalog/Assets/test_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Assets/test_icon.ico -------------------------------------------------------------------------------- /samples/ControlCatalog/ControlCatalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/ControlCatalog.csproj -------------------------------------------------------------------------------- /samples/ControlCatalog/Converter/HexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Converter/HexConverter.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/DecoratedWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/DecoratedWindow.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/DecoratedWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/DecoratedWindow.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/MainView.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/MainView.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/MainWindow.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Models/CatalogTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Models/CatalogTheme.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Models/Person.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Models/StateData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Models/StateData.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/NOTICE.md -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/AcceleratorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/AcceleratorPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/AcrylicPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/AcrylicPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/AcrylicPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/AcrylicPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/AdornerLayerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/AdornerLayerPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/BorderPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/BorderPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/BorderPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/BorderPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ButtonSpinnerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ButtonSpinnerPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ButtonsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ButtonsPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ButtonsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ButtonsPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CalendarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CalendarPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CalendarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CalendarPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CanvasPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CanvasPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CanvasPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CanvasPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CarouselPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CarouselPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CarouselPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CarouselPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CheckBoxPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CheckBoxPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CheckBoxPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CheckBoxPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ClipboardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ClipboardPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ClipboardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ClipboardPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ColorPickerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ColorPickerPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ComboBoxPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ComboBoxPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ComboBoxPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ComboBoxPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CompositionPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CompositionPage.axaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ContextFlyoutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ContextFlyoutPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ContextMenuPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ContextMenuPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CursorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CursorPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CursorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CursorPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CustomDrawing.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CustomDrawing.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/CustomDrawing.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/CustomDrawing.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/DataGridPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/DataGridPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/DataGridPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/DataGridPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/DialogsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/DialogsPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/DialogsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/DialogsPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/DragAndDropPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/DragAndDropPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ExpanderPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ExpanderPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ExpanderPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ExpanderPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/FlyoutsPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/FlyoutsPage.axaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/FlyoutsPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/FlyoutsPage.axaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/FocusPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/FocusPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/FocusPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/FocusPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/GesturePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/GesturePage.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/GesturePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/GesturePage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ImagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ImagePage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ImagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ImagePage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/LabelsPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/LabelsPage.axaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/LabelsPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/LabelsPage.axaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ListBoxPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ListBoxPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ListBoxPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ListBoxPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/MenuPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/MenuPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/MenuPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/MenuPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/NativeEmbedPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/NativeEmbedPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/NotificationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/NotificationsPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/NumericUpDownPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/NumericUpDownPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/OpenGl/OpenGlFbo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/OpenGl/OpenGlFbo.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/OpenGlPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/OpenGlPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/OpenGlPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/OpenGlPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/PlatformInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/PlatformInfoPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/PointerCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/PointerCanvas.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/PointerContactsTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/PointerContactsTab.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/PointersPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/PointersPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/PointersPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/PointersPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ProgressBarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ProgressBarPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/RadioButtonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/RadioButtonPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ScreenPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ScreenPage.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ScrollViewerPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ScrollViewerPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/SliderPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/SliderPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/SliderPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/SliderPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/SplitViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/SplitViewPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/SplitViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/SplitViewPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TabControlPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TabControlPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TabControlPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TabControlPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TabStripPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TabStripPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TabStripPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TabStripPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TextBlockPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TextBlockPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TextBlockPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TextBlockPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TextBoxPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TextBoxPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TextBoxPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TextBoxPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ThemePage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ThemePage.axaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ThemePage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ThemePage.axaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ToggleSwitchPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ToggleSwitchPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ToolTipPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ToolTipPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ToolTipPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ToolTipPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TreeViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TreeViewPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/TreeViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/TreeViewPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ViewboxPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ViewboxPage.xaml -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/ViewboxPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/ViewboxPage.xaml.cs -------------------------------------------------------------------------------- /samples/ControlCatalog/Pages/teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/ControlCatalog/Pages/teapot.bin -------------------------------------------------------------------------------- /samples/MauiVelloGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/App.xaml -------------------------------------------------------------------------------- /samples/MauiVelloGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/App.xaml.cs -------------------------------------------------------------------------------- /samples/MauiVelloGallery/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/MainPage.xaml -------------------------------------------------------------------------------- /samples/MauiVelloGallery/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/MauiVelloGallery/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/MauiProgram.cs -------------------------------------------------------------------------------- /samples/MauiVelloGallery/MauiVelloGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/MauiVelloGallery.csproj -------------------------------------------------------------------------------- /samples/MauiVelloGallery/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /samples/MauiVelloGallery/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MauiVelloGallery/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /samples/MauiVelloGallery/Resources/Raw/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /samples/MiniMvvm/AVALONIA-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MiniMvvm/AVALONIA-LICENSE.md -------------------------------------------------------------------------------- /samples/MiniMvvm/MiniCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MiniMvvm/MiniCommand.cs -------------------------------------------------------------------------------- /samples/MiniMvvm/MiniMvvm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MiniMvvm/MiniMvvm.csproj -------------------------------------------------------------------------------- /samples/MiniMvvm/PropertyChangedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MiniMvvm/PropertyChangedExtensions.cs -------------------------------------------------------------------------------- /samples/MiniMvvm/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MiniMvvm/ViewModelBase.cs -------------------------------------------------------------------------------- /samples/MotionMark.SceneShared/MotionMarkScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/MotionMark.SceneShared/MotionMarkScene.cs -------------------------------------------------------------------------------- /samples/RenderDemo/AVALONIA-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/AVALONIA-LICENSE.md -------------------------------------------------------------------------------- /samples/RenderDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/App.config -------------------------------------------------------------------------------- /samples/RenderDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/App.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/App.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/MainWindow.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/AnimationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/AnimationsPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/AnimationsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/AnimationsPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/BrushesPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/BrushesPage.axaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/BrushesPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/BrushesPage.axaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/ClippingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/ClippingPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/ClippingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/ClippingPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/CustomAnimatorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/CustomAnimatorPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/CustomAnimatorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/CustomAnimatorPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/CustomSkiaPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/CustomSkiaPage.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/CustomStringAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/CustomStringAnimator.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/DrawingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/DrawingPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/DrawingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/DrawingPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/FormattedTextPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/FormattedTextPage.axaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/FormattedTextPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/FormattedTextPage.axaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/GlyphRunPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/GlyphRunPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/GlyphRunPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/GlyphRunPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/LineBoundsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/LineBoundsPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/LineBoundsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/LineBoundsPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/PathMeasurementPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/PathMeasurementPage.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/RenderTargetBitmapPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/RenderTargetBitmapPage.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/SpringAnimationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/SpringAnimationsPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/TextFormatterPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/TextFormatterPage.axaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/TextFormatterPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/TextFormatterPage.axaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/Transform3DPage.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/Transform3DPage.axaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/Transform3DPage.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/Transform3DPage.axaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/TransitionsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/TransitionsPage.xaml -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/TransitionsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/TransitionsPage.xaml.cs -------------------------------------------------------------------------------- /samples/RenderDemo/Pages/WriteableBitmapPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/Pages/WriteableBitmapPage.cs -------------------------------------------------------------------------------- /samples/RenderDemo/RenderDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/RenderDemo/RenderDemo.csproj -------------------------------------------------------------------------------- /samples/SampleControls/AVALONIA-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SampleControls/AVALONIA-LICENSE.md -------------------------------------------------------------------------------- /samples/SampleControls/ControlSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SampleControls/ControlSamples.csproj -------------------------------------------------------------------------------- /samples/SkiaGallery/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/App.axaml -------------------------------------------------------------------------------- /samples/SkiaGallery/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/App.axaml.cs -------------------------------------------------------------------------------- /samples/SkiaGallery/Assets/avalonia-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/Assets/avalonia-32.png -------------------------------------------------------------------------------- /samples/SkiaGallery/Controls/SkiaCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/Controls/SkiaCanvas.cs -------------------------------------------------------------------------------- /samples/SkiaGallery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/Program.cs -------------------------------------------------------------------------------- /samples/SkiaGallery/SkiaGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/SkiaGallery.csproj -------------------------------------------------------------------------------- /samples/SkiaGallery/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/Views/MainWindow.axaml -------------------------------------------------------------------------------- /samples/SkiaGallery/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaGallery/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/SkiaShimGallery/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/App.axaml -------------------------------------------------------------------------------- /samples/SkiaShimGallery/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/App.axaml.cs -------------------------------------------------------------------------------- /samples/SkiaShimGallery/Assets/avalonia-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/Assets/avalonia-32.png -------------------------------------------------------------------------------- /samples/SkiaShimGallery/Controls/SkiaShimCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/Controls/SkiaShimCanvas.cs -------------------------------------------------------------------------------- /samples/SkiaShimGallery/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/Program.cs -------------------------------------------------------------------------------- /samples/SkiaShimGallery/SkiaShimGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/SkiaShimGallery.csproj -------------------------------------------------------------------------------- /samples/SkiaShimGallery/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/Views/MainWindow.axaml -------------------------------------------------------------------------------- /samples/SkiaShimGallery/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimGallery/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /samples/SkiaShimSmokeTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimSmokeTest/Program.cs -------------------------------------------------------------------------------- /samples/SkiaShimSmokeTest/SkiaShimSmokeTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/SkiaShimSmokeTest/SkiaShimSmokeTest.csproj -------------------------------------------------------------------------------- /samples/UwpVelloGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/UwpVelloGallery/App.xaml -------------------------------------------------------------------------------- /samples/UwpVelloGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/UwpVelloGallery/App.xaml.cs -------------------------------------------------------------------------------- /samples/UwpVelloGallery/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/UwpVelloGallery/MainWindow.xaml -------------------------------------------------------------------------------- /samples/UwpVelloGallery/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/UwpVelloGallery/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/UwpVelloGallery/UwpVelloGallery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/UwpVelloGallery/UwpVelloGallery.csproj -------------------------------------------------------------------------------- /samples/VelloSharp.Uno.WinAppSdkSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.Uno.WinAppSdkSample/App.xaml -------------------------------------------------------------------------------- /samples/VelloSharp.Uno.WinAppSdkSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.Uno.WinAppSdkSample/App.xaml.cs -------------------------------------------------------------------------------- /samples/VelloSharp.Uno.WinAppSdkSample/ChartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.Uno.WinAppSdkSample/ChartView.cs -------------------------------------------------------------------------------- /samples/VelloSharp.Uno.WinAppSdkSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.Uno.WinAppSdkSample/Program.cs -------------------------------------------------------------------------------- /samples/VelloSharp.WithWinit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WithWinit/Program.cs -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/App.xaml -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/App.xaml.cs -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/MainWindow.xaml -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/VelloSharp.WpfSample/MotionMarkPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/VelloSharp.WpfSample/MotionMarkPage.xaml -------------------------------------------------------------------------------- /samples/WinFormsMotionMarkShim/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinFormsMotionMarkShim/MainForm.cs -------------------------------------------------------------------------------- /samples/WinFormsMotionMarkShim/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinFormsMotionMarkShim/Program.cs -------------------------------------------------------------------------------- /samples/WinUIVelloGallery/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinUIVelloGallery/App.xaml -------------------------------------------------------------------------------- /samples/WinUIVelloGallery/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinUIVelloGallery/App.xaml.cs -------------------------------------------------------------------------------- /samples/WinUIVelloGallery/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinUIVelloGallery/MainWindow.xaml -------------------------------------------------------------------------------- /samples/WinUIVelloGallery/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/samples/WinUIVelloGallery/MainWindow.xaml.cs -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bootstrap-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/bootstrap-linux.sh -------------------------------------------------------------------------------- /scripts/bootstrap-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/bootstrap-macos.sh -------------------------------------------------------------------------------- /scripts/bootstrap-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/bootstrap-windows.ps1 -------------------------------------------------------------------------------- /scripts/build-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-docs.ps1 -------------------------------------------------------------------------------- /scripts/build-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-docs.sh -------------------------------------------------------------------------------- /scripts/build-integrations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-integrations.ps1 -------------------------------------------------------------------------------- /scripts/build-integrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-integrations.sh -------------------------------------------------------------------------------- /scripts/build-native-android.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-android.ps1 -------------------------------------------------------------------------------- /scripts/build-native-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-android.sh -------------------------------------------------------------------------------- /scripts/build-native-linux.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-linux.ps1 -------------------------------------------------------------------------------- /scripts/build-native-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-linux.sh -------------------------------------------------------------------------------- /scripts/build-native-macos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-macos.ps1 -------------------------------------------------------------------------------- /scripts/build-native-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-macos.sh -------------------------------------------------------------------------------- /scripts/build-native-wasm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-wasm.ps1 -------------------------------------------------------------------------------- /scripts/build-native-wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-wasm.sh -------------------------------------------------------------------------------- /scripts/build-native-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-native-windows.ps1 -------------------------------------------------------------------------------- /scripts/build-samples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-samples.ps1 -------------------------------------------------------------------------------- /scripts/build-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-samples.sh -------------------------------------------------------------------------------- /scripts/build-wasm-vello.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-wasm-vello.ps1 -------------------------------------------------------------------------------- /scripts/build-wasm-vello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/build-wasm-vello.sh -------------------------------------------------------------------------------- /scripts/collect-native-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/collect-native-artifacts.sh -------------------------------------------------------------------------------- /scripts/copy-runtimes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/copy-runtimes.ps1 -------------------------------------------------------------------------------- /scripts/copy-runtimes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/copy-runtimes.sh -------------------------------------------------------------------------------- /scripts/pack-managed-nugets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/pack-managed-nugets.ps1 -------------------------------------------------------------------------------- /scripts/pack-managed-nugets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/pack-managed-nugets.sh -------------------------------------------------------------------------------- /scripts/pack-native-nugets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/pack-native-nugets.ps1 -------------------------------------------------------------------------------- /scripts/pack-native-nugets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/pack-native-nugets.sh -------------------------------------------------------------------------------- /scripts/playwright/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/playwright/server.mjs -------------------------------------------------------------------------------- /scripts/playwright/smoke.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/playwright/smoke.mjs -------------------------------------------------------------------------------- /scripts/remove-runtimes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/remove-runtimes.ps1 -------------------------------------------------------------------------------- /scripts/remove-runtimes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/remove-runtimes.sh -------------------------------------------------------------------------------- /scripts/report_skia_usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/report_skia_usage.sh -------------------------------------------------------------------------------- /scripts/run-docfx-site.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-docfx-site.ps1 -------------------------------------------------------------------------------- /scripts/run-docfx-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-docfx-site.sh -------------------------------------------------------------------------------- /scripts/run-docs-site.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-docs-site.ps1 -------------------------------------------------------------------------------- /scripts/run-docs-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-docs-site.sh -------------------------------------------------------------------------------- /scripts/run-integration-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-integration-tests.ps1 -------------------------------------------------------------------------------- /scripts/run-integration-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-integration-tests.sh -------------------------------------------------------------------------------- /scripts/run-uwp-gallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-uwp-gallery.ps1 -------------------------------------------------------------------------------- /scripts/run-winui-gallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/run-winui-gallery.ps1 -------------------------------------------------------------------------------- /scripts/sync-dotnet-api-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/sync-dotnet-api-docs.ps1 -------------------------------------------------------------------------------- /scripts/sync-dotnet-api-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/sync-dotnet-api-docs.sh -------------------------------------------------------------------------------- /scripts/verify-browser-webgpu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/verify-browser-webgpu.ps1 -------------------------------------------------------------------------------- /scripts/verify-browser-webgpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/verify-browser-webgpu.sh -------------------------------------------------------------------------------- /scripts/verify-maui-native-assets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/verify-maui-native-assets.ps1 -------------------------------------------------------------------------------- /scripts/verify-uwp-native-assets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/verify-uwp-native-assets.ps1 -------------------------------------------------------------------------------- /scripts/verify-winui-native-assets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/scripts/verify-winui-native-assets.ps1 -------------------------------------------------------------------------------- /src/VelloSharp.Avalonia.Svg/MatrixExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Avalonia.Svg/MatrixExtensions.cs -------------------------------------------------------------------------------- /src/VelloSharp.Avalonia.Svg/Svg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Avalonia.Svg/Svg.cs -------------------------------------------------------------------------------- /src/VelloSharp.Avalonia.Svg/SvgParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Avalonia.Svg/SvgParameters.cs -------------------------------------------------------------------------------- /src/VelloSharp.Avalonia.Svg/SvgSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Avalonia.Svg/SvgSource.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartData/ChartDataBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartData/ChartDataBus.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartData/ChartSamplePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartData/ChartSamplePoint.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartDiagnostics/ChartMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartDiagnostics/ChartMetric.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartDiagnostics/FrameStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartDiagnostics/FrameStats.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartColor.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartComposition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartComposition.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartCursorUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartCursorUpdate.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartEngine.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartEngineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartEngineOptions.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartFrameMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartFrameMetadata.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/ChartSeriesOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/ChartSeriesOverride.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartEngine/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartEngine/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartRuntime/IFrameTickSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartRuntime/IFrameTickSource.cs -------------------------------------------------------------------------------- /src/VelloSharp.ChartRuntime/RenderScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.ChartRuntime/RenderScheduler.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting.Avalonia/ChartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting.Avalonia/ChartView.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting.WinForms/ChartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting.WinForms/ChartView.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting.Wpf/ChartView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting.Wpf/ChartView.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Axis/AxisComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Axis/AxisComposer.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Axis/AxisDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Axis/AxisDefinition.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Axis/AxisDefinitionOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Axis/AxisDefinitionOfT.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Axis/AxisRenderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Axis/AxisRenderModel.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Axis/AxisRenderSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Axis/AxisRenderSurface.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Coordinates/ChartPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Coordinates/ChartPoint.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Layout/AxisLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Layout/AxisLayout.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Layout/AxisOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Layout/AxisOrientation.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Layout/LayoutGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Layout/LayoutGallery.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Layout/LayoutRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Layout/LayoutRect.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Legend/LegendItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Legend/LegendItem.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Legend/LegendPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Legend/LegendPosition.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Legend/LegendRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Legend/LegendRenderer.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Legend/LegendVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Legend/LegendVisual.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Primitives/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Primitives/Range.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Rendering/AxisRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Rendering/AxisRenderer.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Rendering/AxisVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Rendering/AxisVisual.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Rendering/SceneDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Rendering/SceneDrawing.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Scales/IScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Scales/IScale.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Scales/LinearScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Scales/LinearScale.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Scales/OrdinalScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Scales/OrdinalScale.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Scales/ScaleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Scales/ScaleKind.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Scales/TimeScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Scales/TimeScale.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Styling/AxisStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Styling/AxisStyle.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Styling/ChartPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Styling/ChartPalette.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Styling/ChartTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Styling/ChartTheme.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Styling/LegendStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Styling/LegendStyle.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Styling/RgbaColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Styling/RgbaColor.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Ticks/AxisTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Ticks/AxisTick.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Ticks/AxisTickInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Ticks/AxisTickInfo.cs -------------------------------------------------------------------------------- /src/VelloSharp.Charting/Units/UnitRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Charting/Units/UnitRange.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/CompositionInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/CompositionInterop.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/AccessText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/AccessText.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Border.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Button.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/CheckBox.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Decorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Decorator.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/DropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/DropDown.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Ellipse.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Panel.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Path.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Rectangle.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/Shape.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/TabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/TabControl.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/TextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/TextBlock.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Controls/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Controls/TextBox.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Input/KeyEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Input/KeyEventType.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/Input/PointerButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/Input/PointerButton.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/LabelMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/LabelMetrics.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/LayoutPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/LayoutPrimitives.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.Composition/PlotArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Composition/PlotArea.cs -------------------------------------------------------------------------------- /src/VelloSharp.Editor/EditorRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Editor/EditorRuntime.cs -------------------------------------------------------------------------------- /src/VelloSharp.Editor/NativeLibraryBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Editor/NativeLibraryBootstrap.cs -------------------------------------------------------------------------------- /src/VelloSharp.Editor/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Editor/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.Editor/VelloSharp.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Editor/VelloSharp.Editor.csproj -------------------------------------------------------------------------------- /src/VelloSharp.Gauges/GaugeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Gauges/GaugeModule.cs -------------------------------------------------------------------------------- /src/VelloSharp.Gauges/NativeLibraryBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Gauges/NativeLibraryBootstrap.cs -------------------------------------------------------------------------------- /src/VelloSharp.Gauges/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Gauges/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.Gauges/VelloSharp.Gauges.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Gauges/VelloSharp.Gauges.csproj -------------------------------------------------------------------------------- /src/VelloSharp.Maui.Core/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("VelloSharp.Maui")] 4 | -------------------------------------------------------------------------------- /src/VelloSharp.Maui.Core/Controls/IVelloView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Maui.Core/Controls/IVelloView.cs -------------------------------------------------------------------------------- /src/VelloSharp.Maui.Core/Controls/VelloView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Maui.Core/Controls/VelloView.cs -------------------------------------------------------------------------------- /src/VelloSharp.Scada/NativeLibraryBootstrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Scada/NativeLibraryBootstrap.cs -------------------------------------------------------------------------------- /src/VelloSharp.Scada/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Scada/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.Scada/ScadaRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Scada/ScadaRuntime.cs -------------------------------------------------------------------------------- /src/VelloSharp.Scada/VelloSharp.Scada.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Scada/VelloSharp.Scada.csproj -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/NativeMethods.cs -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/TreeDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/TreeDataModel.cs -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/TreeInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/TreeInterop.cs -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/TreeRenderLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/TreeRenderLoop.cs -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/TreeSceneVisuals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/TreeSceneVisuals.cs -------------------------------------------------------------------------------- /src/VelloSharp.TreeDataGrid/TreeVirtualization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.TreeDataGrid/TreeVirtualization.cs -------------------------------------------------------------------------------- /src/VelloSharp.Windows.Shared/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/src/VelloSharp.Windows.Shared/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/VelloSharp.Skia.Core.Tests/ImageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/tests/VelloSharp.Skia.Core.Tests/ImageTests.cs -------------------------------------------------------------------------------- /tests/VelloSharp.Skia.Core.Tests/ShaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/tests/VelloSharp.Skia.Core.Tests/ShaderTests.cs -------------------------------------------------------------------------------- /tests/VelloSharp.Skia.Gpu.Tests/GpuSmokeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/tests/VelloSharp.Skia.Gpu.Tests/GpuSmokeTests.cs -------------------------------------------------------------------------------- /tests/VelloSharp.WinForms.Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using VelloSharp.Windows; 2 | -------------------------------------------------------------------------------- /tests/VelloTextParityTests/ShapingParityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/tests/VelloTextParityTests/ShapingParityTests.cs -------------------------------------------------------------------------------- /tests/VelloTextParityTests/TestFontLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wieslawsoltes/VelloSharp/HEAD/tests/VelloTextParityTests/TestFontLoader.cs --------------------------------------------------------------------------------