├── .github └── workflows │ └── main.yml ├── .gitignore ├── Cargo.toml ├── README.md └── src ├── bitmap_render_target.rs ├── com_helpers.rs ├── font.rs ├── font_collection.rs ├── font_collection_impl.rs ├── font_face.rs ├── font_fallback.rs ├── font_family.rs ├── font_file.rs ├── font_file_loader_impl.rs ├── gdi_interop.rs ├── geometry_sink_impl.rs ├── glyph_run_analysis.rs ├── helpers.rs ├── lib.rs ├── outline_builder.rs ├── rendering_params.rs ├── test.rs ├── text_analysis_source.rs ├── text_analysis_source_impl.rs └── types.rs /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | *~ 4 | #~# 5 | 6 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/bitmap_render_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/bitmap_render_target.rs -------------------------------------------------------------------------------- /src/com_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/com_helpers.rs -------------------------------------------------------------------------------- /src/font.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font.rs -------------------------------------------------------------------------------- /src/font_collection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_collection.rs -------------------------------------------------------------------------------- /src/font_collection_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_collection_impl.rs -------------------------------------------------------------------------------- /src/font_face.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_face.rs -------------------------------------------------------------------------------- /src/font_fallback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_fallback.rs -------------------------------------------------------------------------------- /src/font_family.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_family.rs -------------------------------------------------------------------------------- /src/font_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_file.rs -------------------------------------------------------------------------------- /src/font_file_loader_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/font_file_loader_impl.rs -------------------------------------------------------------------------------- /src/gdi_interop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/gdi_interop.rs -------------------------------------------------------------------------------- /src/geometry_sink_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/geometry_sink_impl.rs -------------------------------------------------------------------------------- /src/glyph_run_analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/glyph_run_analysis.rs -------------------------------------------------------------------------------- /src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/helpers.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/outline_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/outline_builder.rs -------------------------------------------------------------------------------- /src/rendering_params.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/rendering_params.rs -------------------------------------------------------------------------------- /src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/test.rs -------------------------------------------------------------------------------- /src/text_analysis_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/text_analysis_source.rs -------------------------------------------------------------------------------- /src/text_analysis_source_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/text_analysis_source_impl.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/servo/dwrote-rs/HEAD/src/types.rs --------------------------------------------------------------------------------