Esempio n. 1
0
 internal extern static unsafe Boolean UseFontOutlinesW(IntPtr hDC, Int32 first, Int32 count, Int32 listBase, float thickness, float deviation, Int32 fontMode, GlyphMetricsFloat* glyphMetrics);
Esempio n. 2
0
File: Wgl.cs Progetto: 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);
 }
Esempio n. 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);
 }
Esempio n. 4
0
File: Wgl.cs Progetto: Zeludon/FEZ
 internal static bool UseFontOutlinesW(IntPtr hDC, int first, int count, int listBase, float thickness, float deviation, int fontMode, GlyphMetricsFloat* glyphMetrics);
Esempio n. 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);
         }
     }
 }