corliss
corliss
SvgGaussianBlur has a bunch of code for computing the gaussian blur of an image, but none of it seems to actually be called. Am I missing something? Cheers.
These are all the uses of Linq I could find in SharpFont: TrueType\Header.cs: `return rec.Created.Select(x => (int)x).ToArray();` TrueType\Header.cs: `return rec.Modified.Select(x => (int)x).ToArray();` FaceInfo.cs: `return rec.xuid.Select(x => (uint)x).ToArray();` Library.cs: `ParameterRec[] paramRecs...
This [page](https://developer.xamarin.com/guides/android/application_fundamentals/cpu_architectures/) lists the supported Android processor architectures: - armeabi - armeabi-v7a - arm64-v8a - x86 - x86_64 Verify that SharpFont runs on each of these without the user needing...
It would be convenient to have a single repo for all SharpFont code, including SharpFont.HarfBuzz and any other assemblies created going forward. I can't think of a good reason to...
Currently SharpFont and SharpFont.HarfBuzz and portable class libraries that target Profile111, which supports the following (taken from http://danrigby.com/2014/04/16/xamarin-pcl-profile-notes/ ) ### Profile 111 (.NET 4.5, Windows 8.0, Windows Phone 8.1) (netstandard...
How is the iOS Freetype binary located and installed? The p/invoke code previously used the path "__Internal", which I removed as part of the Portable unification checkin. But I wasn't...
Architectures: x86, x64, Arm. Verify that fonts can be loaded through a streaming file API or memory-mapped file API, i.e. not just as byte arrays, which are memory-hungry. Here's a...
This should already be supported. But worth testing again since we've converted to a Portable library.
Verify that SharpFont runs without needing the user to install freetype manually.
I've managed to build and run the project, and have a few questions: 1. How can I turn off the wireframe lines? 2. When I run this on Windows, what...