예제 #1
0
파일: WglCore.cs 프로젝트: challal/scallion
 internal extern static unsafe Boolean DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, UInt32 nBytes, LayerPlaneDescriptor* plpd);
예제 #2
0
파일: Wgl.cs 프로젝트: Zeludon/FEZ
 internal static bool DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor* plpd);
예제 #3
0
파일: Wgl.cs 프로젝트: Zeludon/FEZ
 public static unsafe bool DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, int nBytes, LayerPlaneDescriptor* plpd)
 {
     return Wgl.Delegates.wglDescribeLayerPlane(hDc, pixelFormat, layerPlane, (uint) nBytes, plpd);
 }
예제 #4
0
파일: Wgl.cs 프로젝트: Zeludon/FEZ
 public static unsafe bool DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, uint nBytes, ref LayerPlaneDescriptor plpd)
 {
     fixed (LayerPlaneDescriptor* plpd1 = &plpd)
     return Wgl.Delegates.wglDescribeLayerPlane(hDc, pixelFormat, layerPlane, nBytes, plpd1);
 }
예제 #5
0
 unsafe Boolean DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, Int32 nBytes, LayerPlaneDescriptor* plpd)
 {
     return Delegates.wglDescribeLayerPlane((IntPtr)hDc, (int)pixelFormat, (int)layerPlane, (UInt32)nBytes, (LayerPlaneDescriptor*)plpd);
 }
예제 #6
0
 Boolean DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, UInt32 nBytes, ref LayerPlaneDescriptor plpd)
 {
     unsafe
     {
         fixed (LayerPlaneDescriptor* plpd_ptr = &plpd)
         {
             return Delegates.wglDescribeLayerPlane((IntPtr)hDc, (int)pixelFormat, (int)layerPlane, (UInt32)nBytes, (LayerPlaneDescriptor*)plpd_ptr);
         }
     }
 }