gr_context_create_with_defaults() private method

private gr_context_create_with_defaults ( GRBackend backend, IntPtr backendContext ) : IntPtr
backend GRBackend
backendContext System.IntPtr
return System.IntPtr
Ejemplo n.º 1
0
 public static GRContext Create(GRBackend backend, GRGlInterface backendContext)
 {
     if (backendContext == null)
     {
         throw new ArgumentNullException(nameof(backendContext));
     }
     return(GetObject <GRContext> (SkiaApi.gr_context_create_with_defaults(backend, backendContext.Handle)));
 }
Ejemplo n.º 2
0
 public static GRContext Create(GRBackend backend, IntPtr backendContext)
 {
     return(GetObject <GRContext> (SkiaApi.gr_context_create_with_defaults(backend, backendContext)));
 }
Ejemplo n.º 3
0
 public static GRContext Create(GRBackend backend, GRGlInterface backendContext)
 {
     return(GetObject <GRContext> (SkiaApi.gr_context_create_with_defaults(backend, backendContext.Handle)));
 }