SkiaSharp.SKSurface.Create C# (CSharp) Method

Create() public static method

public static Create ( SKImageInfo info, IntPtr pixels, int rowBytes, SKSurfaceProps props ) : SKSurface
info SKImageInfo
pixels System.IntPtr
rowBytes int
props SKSurfaceProps
return SKSurface
		public static SKSurface Create (SKImageInfo info, IntPtr pixels, int rowBytes, SKSurfaceProps props)
		{
			return GetObject<SKSurface> (SkiaApi.sk_surface_new_raster_direct (ref info, pixels, (IntPtr)rowBytes, ref props));
		}
		

Same methods

SKSurface::Create ( GRContext context, GRBackendRenderTargetDesc desc ) : SKSurface
SKSurface::Create ( GRContext context, GRBackendRenderTargetDesc desc, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( GRContext context, GRBackendTextureDesc desc ) : SKSurface
SKSurface::Create ( GRContext context, GRBackendTextureDesc desc, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info, int sampleCount ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info, int sampleCount, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( SKImageInfo info ) : SKSurface
SKSurface::Create ( SKImageInfo info, IntPtr pixels, int rowBytes ) : SKSurface
SKSurface::Create ( SKImageInfo info, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, IntPtr pixels, int rowBytes ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, IntPtr pixels, int rowBytes, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, SKSurfaceProps props ) : SKSurface