SkiaSharp.SKSurface.Create C# (CSharp) Method

Create() public static method

public static Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType ) : SKSurface
width int
height int
colorType SKColorType
alphaType SKAlphaType
return SKSurface
		public static SKSurface Create (int width, int height, SKColorType colorType, SKAlphaType alphaType) => Create (new SKImageInfo (width, height, colorType, alphaType));
		public static SKSurface Create (int width, int height, SKColorType colorType, SKAlphaType alphaType, SKSurfaceProps props) => Create (new SKImageInfo (width, height, colorType, alphaType), 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, IntPtr pixels, int rowBytes, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( SKImageInfo info, SKSurfaceProps props ) : 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