internal extern static unsafe Boolean DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, UInt32 nBytes, LayerPlaneDescriptor* plpd);
internal static bool DescribeLayerPlane(IntPtr hDc, int pixelFormat, int layerPlane, uint nBytes, LayerPlaneDescriptor* plpd);
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); }
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); }
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); }
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); } } }