Example #1
0
 internal extern static unsafe Boolean UseFontOutlinesW(IntPtr hDC, Int32 first, Int32 count, Int32 listBase, float thickness, float deviation, Int32 fontMode, GlyphMetricsFloat* glyphMetrics);
Example #2
0
File: Wgl.cs Project: Zeludon/FEZ
 public static unsafe bool UseFontOutlinesW(IntPtr hDC, int first, int count, int listBase, float thickness, float deviation, int fontMode, GlyphMetricsFloat* glyphMetrics)
 {
     return Wgl.Delegates.wglUseFontOutlinesW(hDC, first, count, listBase, thickness, deviation, fontMode, glyphMetrics);
 }
Example #3
0
 unsafe Boolean UseFontOutlinesW(IntPtr hDC, Int32 first, Int32 count, Int32 listBase, float thickness, float deviation, Int32 fontMode, GlyphMetricsFloat* glyphMetrics)
 {
     return Delegates.wglUseFontOutlinesW((IntPtr)hDC, (Int32)first, (Int32)count, (Int32)listBase, (float)thickness, (float)deviation, (Int32)fontMode, (GlyphMetricsFloat*)glyphMetrics);
 }
Example #4
0
File: Wgl.cs Project: Zeludon/FEZ
 internal static bool UseFontOutlinesW(IntPtr hDC, int first, int count, int listBase, float thickness, float deviation, int fontMode, GlyphMetricsFloat* glyphMetrics);
Example #5
0
 Boolean UseFontOutlinesA(IntPtr hDC, Int32 first, Int32 count, Int32 listBase, float thickness, float deviation, Int32 fontMode, ref GlyphMetricsFloat glyphMetrics)
 {
     unsafe
     {
         fixed (GlyphMetricsFloat* glyphMetrics_ptr = &glyphMetrics)
         {
             return Delegates.wglUseFontOutlinesA((IntPtr)hDC, (Int32)first, (Int32)count, (Int32)listBase, (float)thickness, (float)deviation, (Int32)fontMode, (GlyphMetricsFloat*)glyphMetrics_ptr);
         }
     }
 }