FT_CeilFix() private method

private FT_CeilFix ( IntPtr a ) : IntPtr
a System.IntPtr
return System.IntPtr
Example #1
0
 public static Fixed16Dot16 CeilFix(Fixed16Dot16 a)
 {
     return(Fixed16Dot16.FromRawValue((int)FT.FT_CeilFix((IntPtr)a.Value)));
 }
Example #2
0
 /// <summary>
 /// A very simple function used to compute the ceiling function of a 16.16 fixed number.
 /// </summary>
 /// <remarks>This is a native FreeType function.</remarks>
 /// <returns>The result of ‘(a + 0x10000 - 1) &amp; -0x10000’.</returns>
 public Fixed16Dot16 CeilingFix()
 {
     return(FromRawValue((int)FT.FT_CeilFix((IntPtr)this.Value)));
 }