msdfgen-lib 0.1.0

Bundled msdfgen library (multi-channel signed distance field generator)
Documentation
  • Coverage
  • 100%
    1 out of 1 items documented1 out of 1 items with examples
  • Size
  • Source code size: 43.72 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 993.06 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 26s Average build duration of successful builds.
  • all releases: 26s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • katyo/msdfgen-rs
    27 9 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • katyo

Bundled msdfgen library

License: MIT Crates.io Package Docs.rs API Docs Travis-CI Status

This crate provides bundled msdfgen library for using with msdfgen crate.

Usage

You can simply add this as dependency to your manifest:

[dependencies]
msdfgen = "^0.1"

# Use bundled library to avoid unresolved links
msdfgen-lib = "^0.1"

Next you should say compiler that you want to use that crate:

// Either in traditional manner
extern crate msdfgen_lib;

// Or in Rust2018 manner
use msdfgen_lib as _;

Features

You can apply some customizations to library using those features:

  • shared Force bundle shared (or dynamic) library instead of static (default)
  • libcxx Link with libc++ instead of libstdc++ (default)
  • stdcxx-static Link with static C++ stdlib instead of shared (default)