Aprillz.MewVG.Core 0.6.0

dotnet add package Aprillz.MewVG.Core --version 0.6.0
                    
NuGet\Install-Package Aprillz.MewVG.Core -Version 0.6.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aprillz.MewVG.Core" Version="0.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aprillz.MewVG.Core" Version="0.6.0" />
                    
Directory.Packages.props
<PackageReference Include="Aprillz.MewVG.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aprillz.MewVG.Core --version 0.6.0
                    
#r "nuget: Aprillz.MewVG.Core, 0.6.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Aprillz.MewVG.Core@0.6.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aprillz.MewVG.Core&version=0.6.0
                    
Install as a Cake Addin
#tool nuget:?package=Aprillz.MewVG.Core&version=0.6.0
                    
Install as a Cake Tool

한국어

<p align="center"> <img src="assets/logo/logo_h-960.png" alt="MewVG" height="240" /> </p>

MewVG

.NET Windows Linux macOS License: MIT NuGet NuGet Downloads


MewVG is a cross-platform, fully managed .NET vector graphics library based on NanoVG.

Packages

Package Description
Aprillz.MewVG.Core Platform-agnostic NanoVG context and path API
Aprillz.MewVG.GL OpenGL rendering backend (Windows, Linux)
Aprillz.MewVG.Metal Metal rendering backend (macOS)

Highlights

  • Pure C# / Fully Managed — no native dependencies required
  • Cross-platform — OpenGL (Win32, X11) and Metal (macOS) backends
  • NanoVG-compatible API — familiar drawing model for paths, fills, strokes, and text
  • NativeAOT / Trim friendly — targets net8.0 and net10.0

Requirements

Backend Minimum
MewVG.GL OpenGL 3.1 / GLSL 1.40
MewVG.Metal Metal (macOS 10.11+)

Getting Started

dotnet add package Aprillz.MewVG.Core
dotnet add package Aprillz.MewVG.GL      # for OpenGL
# or
dotnet add package Aprillz.MewVG.Metal    # for macOS Metal

Project Structure

MewVG/
├── src/
│   ├── MewVG.Core/       Core NanoVG context, types, math
│   ├── MewVG.GL/         OpenGL rendering backend
│   └── MewVG.Metal/      Metal rendering backend
├── samples/
│   ├── MewVG.Demo.Windows/  Windows demo (OpenGL)
│   ├── MewVG.Demo.Linux/    Linux demo (X11 + OpenGL)
│   └── MewVG.Demo.MacOS/    macOS demo (Metal)
└── build/
    └── MewVG.Common.props

License

This project is licensed under the MIT License.

NanoVG

MewVG is based on the following projects:

  • NanoVG by Mikko Mononen — zlib License

    Copyright (c) 2013 Mikko Mononen memon@inside.org

    This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

    Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

    1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
    2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
    3. This notice may not be removed or altered from any source distribution.
  • MetalNanoVG by Ollix — MIT License

    Copyright (c) 2017 Ollix

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.

  • libtess2 by Mikko Mononen — SGI Free Software License B (Version 2.0)

    SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) Copyright (C) 2011 Silicon Graphics, Inc. All Rights Reserved.

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice including the dates of first publication and either this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Silicon Graphics, Inc.

  • LibTessDotNet by speps — SGI Free Software License B (Version 2.0)

    SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) Copyright (C) 2011 Silicon Graphics, Inc. All Rights Reserved.

    Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

    The above copyright notice including the dates of first publication and either this permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be included in all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    Except as contained in this notice, the name of Silicon Graphics, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from Silicon Graphics, Inc.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Aprillz.MewVG.Core:

Package Downloads
Aprillz.MewVG.GL

OpenGL rendering backend for Aprillz.MewVG

Aprillz.MewVG.Metal

Metal rendering backend for Aprillz.MewVG

Aprillz.MewUI.Backend.MewVG.Win32

MewVG (NanoVG) OpenGL backend for Aprillz.MewUI on Win32

Aprillz.MewUI.Backend.MewVG.X11

MewVG (NanoVG) OpenGL backend for Aprillz.MewUI on Linux X11

Aprillz.MewUI.Backend.MewVG.MacOS

MewVG (NanoVG/Metal) backend for Aprillz.MewUI on macOS

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aprillz.MewVG.Core:

Repository Stars
aprillz/MewUI
A cross-platform and lightweight, code-first .NET GUI framework aimed at NativeAOT.
Version Downloads Last Updated
0.6.0 51 7/6/2026
0.5.5 482 6/26/2026
0.5.4 137 6/20/2026
0.5.3 1,484 6/7/2026
0.5.2 223 5/11/2026
0.5.1 157 5/10/2026
0.5.0 149 5/10/2026
0.4.0 159 4/24/2026
0.3.2 1,303 4/13/2026
0.3.1 152 4/9/2026
0.3.0 1,419 3/9/2026
0.2.1 165 2/28/2026
0.2.0 295 2/26/2026
0.1.1 160 2/5/2026
0.1.0 162 2/3/2026