C# Class QuickFont.QFontShadowConfiguration

The configuration used when building a font drop shadow.
显示文件 Open project: Pireax/neovim.cs Class Usage Examples

Public Properties

Property Type Description
ForcePowerOfTwo bool
GlyphMargin int
PageHeight int
PageWidth int
Scale float
blurPasses int
blurRadius int

Property Details

ForcePowerOfTwo public_oe property

Whether to force texture pages to use a power of two.
public bool ForcePowerOfTwo
return bool

GlyphMargin public_oe property

The margin (on all sides) around glyphs when rendered to their texture page. Note this is in addition to 3xblurRadius margin which is automatically added.
public int GlyphMargin
return int

PageHeight public_oe property

The standard height of texture pages (the page will automatically be cropped if there is extra space)
public int PageHeight
return int

PageWidth public_oe property

The standard width of texture pages (the page will automatically be cropped if there is extra space)
public int PageWidth
return int

Scale public_oe property

Scale in relation to the actual font glyphs
public float Scale
return float

blurPasses public_oe property

Number of blur passes. Caution: high values will greatly impact the time it takes to build a font shadow
public int blurPasses
return int

blurRadius public_oe property

The blur radius. Caution: high values will greatly impact the time it takes to build a font shadow
public int blurRadius
return int