コード例 #1
0
ファイル: WglCore.cs プロジェクト: challal/scallion
 internal extern static unsafe Boolean UseFontOutlinesW(IntPtr hDC, Int32 first, Int32 count, Int32 listBase, float thickness, float deviation, Int32 fontMode, GlyphMetricsFloat* glyphMetrics);
コード例 #2
0
ファイル: Wgl.cs プロジェクト: 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);
 }
コード例 #3
0
ファイル: Wgl.cs プロジェクト: nebenjamin/cpsc-431-project
 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);
 }
コード例 #4
0
ファイル: Wgl.cs プロジェクト: Zeludon/FEZ
 internal static bool UseFontOutlinesW(IntPtr hDC, int first, int count, int listBase, float thickness, float deviation, int fontMode, GlyphMetricsFloat* glyphMetrics);
コード例 #5
0
ファイル: Wgl.cs プロジェクト: nebenjamin/cpsc-431-project
 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);
         }
     }
 }