Cairo.XlibSurface.FromBitmap C# (CSharp) Метод

FromBitmap() публичный статический Метод

public static FromBitmap ( IntPtr display, IntPtr bitmap, IntPtr screen, int width, int height ) : XlibSurface
display System.IntPtr
bitmap System.IntPtr
screen System.IntPtr
width int
height int
Результат XlibSurface
        public static XlibSurface FromBitmap(IntPtr display, IntPtr bitmap, IntPtr screen, int width, int height)
        {
            IntPtr ptr = NativeMethods.cairo_xlib_surface_create_for_bitmap (display, bitmap, screen, width, height);
            return new XlibSurface(ptr, true);
        }