Ejemplo n.º 1
0
 internal extern static unsafe Boolean DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, UInt32 nBytes, LayerPlaneDescriptor* plpd);
Ejemplo n.º 2
0
Archivo: Wgl.cs Proyecto: Zeludon/FEZ
 internal static bool DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor* plpd);
Ejemplo n.º 3
0
Archivo: Wgl.cs Proyecto: 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);
 }
Ejemplo n.º 4
0
Archivo: Wgl.cs Proyecto: 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
         }
     }
 }