cairo_directfb_surface_create() приватный Метод

private cairo_directfb_surface_create ( IntPtr dfb, IntPtr surface ) : IntPtr
dfb System.IntPtr
surface System.IntPtr
Результат System.IntPtr
Пример #1
0
 public DirectFBSurface(IntPtr dfb, IntPtr dfb_surface)
 {
     surface = NativeMethods.cairo_directfb_surface_create(dfb, dfb_surface);
     lock (surfaces.SyncRoot) {
         surfaces [surface] = this;
     }
 }
Пример #2
0
 public DirectFBSurface(IntPtr dfb, IntPtr dfb_surface)
     : base(NativeMethods.cairo_directfb_surface_create(dfb, dfb_surface), true)
 {
 }